/* ---------------------------------------------------- */
/* Global Settings                                      */
/* ---------------------------------------------------- */
/*
-----------------------------------------------------------------------------------
Author   : Jalpesh Shah
Creation Date   : 12 Oct 2006
Last Updated  : dd Month yyyy
Reviewed By  :
Purpose   : This File Is used to Define Styles for menu and sub Menu.
Comments  :
------------------------------------------------------------------------------------- 
History  : Date  Modified by  Description
------------------------------------------------------------------------------------- 
       
------------------------------------------------------------------------------------
*/
_menuCloseDelay=600;
_menuOpenDelay=200;
_subOffsetTop=0;
_subOffsetLeft=-1;
//Below is used to define main menu styles.
with(mainmenuStyle=new mm_style())
{
	fontfamily="Verdana, Arial, Helvetica, sans-serif";
	fontsize="12px";
	fontstyle="normal";
	padding=2;
	pagecolor="#FFFFFF";
	valign='middle';
	align='center';
	itemwidth=100;
	itemheight=51;
	//Class is used to define font size,color on Mouse Over.
	onclass="OnMouse";
	//Class is used to define font size,color on Mouse Off.
	offclass="OffMouse";
}

//Below is used to define Sub menu styles.
with(submenuStyle=new mm_style())
{
	borderstyle="solid";
	borderwidth=1;
	bordercolor="#000000";
	fontfamily="Arial, Helvetica, sans-serif";
	fontsize="11px";
	fontweight='normal';
	//Specify the bgcolor for sub menu.
	offbgcolor="#E5F1F7";
	//Specify the bgcolor for sub menu on mouse over.
	onbgcolor="#BFDCEA";
	offcolor="#000000";
	oncolor="#000000";
	outfilter="Fade(duration=0.2);";
	overfilter="Fade(duration=0.2);Alpha(opacity=100);";
	padding=2;
	pagecolor="#000000";
	separatorcolor="#000000";
	separatorsize=1;
	valign=top;
	subimagepadding=2;
	itemwidth=150;
	itemheight = 6;
}
