/*--------------------------[ Main Elements ]--------------------------*/
#topMenu
{
    position: absolute;
	padding: 10px 0 0 50px;
	margin: 0 auto; /*For centralized the menu location */
	text-align: center;
	width: auto;
}
#nav
{
	position: relative;
	text-align:center;
	/*background: transparent url( '../CSSImages/topMenu/menu_bg.gif' ) repeat-x bottom left;
	font: normal normal bold 12px Helvetica,Arial,Verdana,sans-serif;*/
	font: normal normal normal 11px/12px Tahoma;
	width: auto;
	height: 33px;		
	color: #E0E0E0;
	display: block;
	list-style: none;
	margin: 0 auto;
	padding: 0;  /*For centralized the menu location */
	z-index: 5;
}

#subMenusContainer
{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	overflow: visible;
	z-index: 1000000000;
}
/*--------------------------[ End Main Elements ]--------------------------*/

/*--------------------------[   Sub menus Div   ]--------------------------*/
/* Submenu Outer Wrapper - each submenu is inside a div with this class - javascript users only */
.smOW
{
	display: none;
	position: absolute;
	overflow: hidden; /*the 2px left & right padding lets you have a 1px border on the ul or ol inside since overflow is set to hidden*/
	padding: 0;
	margin: 0;
}
/*--------------------------[ End Sub menus Div ]--------------------------*/

/*--------------------------[    ULs and OLs    ]--------------------------*/
/* All ULs and OLs */
#nav ul, #subMenusContainer ul
{
	margin: 0;
	list-style: none;
}

/* All submenu OLs and ULs */
#nav ul, #subMenusContainer ul
{
	/*border around submenu goes here	  	 	
	-moz-border-radius: 8px; 	 	
	-webkit-border-radius: 8px;*/
	background-color: #183b73;
	font: normal normal normal 11px/12px Tahoma;
/*	font: normal normal bold 12px Helvetica,Arial,Verdana,sans-serif;
	border: solid 1px #6aa3c4;
	border-top: none;*/
	padding: 0;
	margin: 0;
}

/*--------------------------[  End ULs and OLs  ]--------------------------*/

/* all menu links */
#nav a, #subMenusContainer a
{
	display: block;
	color: #EAF3F8;
	text-decoration: none;
	padding: 8px 10px 4px 10px;
	height: 16px;
}

/* All menu links on hover or focus */
#nav a:hover, #nav a:focus, #subMenusContainer a:hover, #subMenusContainer a:focus, #nav a.mainMenuParentBtnFocused, #subMenusContainer a.subMenuParentBtnFocused
{
	color: #6DA3CE;
	/*background: transparent url( '../CSSImages/topMenu/menu_bg_active.gif' ) repeat-x bottom left;*/
}

/* submenu links on hover or focus */
#subMenusContainer a:hover, #subMenusContainer a:focus, #nav a.mainMenuParentBtnFocused, #subMenusContainer a.subMenuParentBtnFocused, #nav li a:hover, #nav li a:focus
{
	color: #6DA3CE;
	/*background: transparent url( '../CSSImages/topMenu/menu_bg_active.gif' ) repeat-x bottom left;*/
}

/* Just submenu links */
#subMenusContainer a, #nav li li a
{
	text-align: left;
}

#subMenusContainer li
{
	list-style: none;
}

/* List items in main menu */
#nav li
{
	/*great place to use a background image as a divider*/
	display: block;
	list-style: none;
	position: relative;
	float: left;
	padding: 0 ; /* Space between horizental menu Items */
}

#nav li a.current span
{
	display: block;
	padding: 12px 15px 0 0;
	width: auto;
	color: #6DA3CE;
	/*background: #1D6893 url( '../CSSImages/topMenu/menu_right_active.gif' ) no-repeat top right;*/
}

#nav li a.current, #nav li a.current:hover
{
	padding: 0 0 0 15px;
	color: #6DA3CE;
	/*background: #1D6893 url( '../CSSImages/topMenu/menu_left_active.gif' ) no-repeat top left;*/
}

#nav li
{
	display: block;
	float: left;
	margin: 0 1px;
}

#nav li a
{
	display: block;
	float: left;
	color: #fff;
	text-decoration: none;
	padding: 0 0 0 15px; /* Right padding for more space on hover */
	height: 33px;
}
/*Only pointer for <a> with true link*/
#nav li a:link
{
	cursor:pointer;
	cursor:hand;
}
#nav li a span
{
	padding: 12px 15px 0 0; /* Left padding for more space on hover */
	height: 21px;
	float: left;
}





















/*---------------[   Don't Change This Section Just Incase needed   ]---------------*/


/* ---[ extra positioning rules for limited noscript keyboard accessibility ]-------*/

#nav li a:focus + ul
{
	margin-left: 0;
	margin-top: 2.2em;
}
#nav li li a:focus + ul
{
	left: 0;
	margin-left: 1010em;
	margin-top: -2.2em;
}
#nav li li a:focus
{
	left: 0;
	margin-left: 1000em;
	width: 10em;
	margin-top: 0;
}
#nav li li li a:focus
{
	left: 0;
	margin-left: 2010em;
	width: 10em;
	margin-top: -1em;
}
#nav li:hover a:focus
{
	margin-left: 0;
}
#nav li li:hover a:focus + ul
{
	margin-left: 10em;
}
#nav ul li a span
{
	color: #fff;
}
/* ---------------------[ End of extra positioning rules ]--------------------------*/


/* -------------[ The below is just for non-javscript users ]---------------*/
#nav li li
{
	float: none;
}

#nav li li a
{
	/* Just submenu links*/
	position: relative;
	float: none;
}

#nav li ul
{
	/* second-level lists */
	position: absolute;
	width: 10em;
	margin-left: -1000em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	margin-top: 2.2em;
}

/* third-and-above-level lists */
#nav li ul ul
{
	margin: -1em 0 0 -1000em;
}
#nav li:hover ul ul
{
	margin-left: -1000em;
}

/* lists nested under hovered list items */
#nav li:hover ul
{
	margin-left: 0;
}
#nav li li:hover ul
{
	margin-left: 10em;
	margin-top: -2.5em;
}
/* -------------[ End The below is just for non-javscript users ]---------------*/


/* Just main menu links --[for non-javascript users this applies to submenu links as well]*/
#nav a
{
	margin: 0;
	float: left;
}

/*----------------------------[   Buttens???   ]----------------------------*/

/* Parent Sub Menu Links ---[javascript users only]*/
.subMenuParentBtn
{
	background: url(../img/arrow_right.gif) right center no-repeat;
}

/* Parent Sub Menu Links on hover or focus ---[javascript users only]*/
.subMenuParentBtnFocused
{
	background: url(../img/arrow_right_over.gif) right center no-repeat;
}

/* Parent Main Menu Links ---[javascript users only]*/
.mainMenuParentBtn
{
	background: url(../img/arrow_down.gif) right center no-repeat;
}

/* Parent Main Menu Links on hover or focus ---[javascript users only]*/
.mainMenuParentBtnFocused
{
	background: url(../CSSImages/topMenu/arrow_down_over.png) right center no-repeat;
}
/*----------------------------[  End Buttens???   ]----------------------------*/


/*----------[   End Don't Change This Section Just in needed Incase   ]----------*/
