

/* full_top_menu_item_width = 125 */

/** Dropdowns **/
#nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: left;
	z-index: 9999;
}

#nav * {
	z-index: 9999;
}

#nav li { /* all list items */
	position: relative;
	float: left;
	z-index: 9999;
	
	/*width: 125px;*/
	/* width: 125px; */
}
#nav li ul { 
	width: 125px;
	position: absolute;
	left: -2000px;
	/*margin-left: 2px;*/
	margin-top: 31px;
	z-index: 9999;
}
#nav li ul ul { /* third-and-above-level lists */
	left: -2000px;
	margin-top: 0px;
}

/* TOP MENU STYLE */
#nav li a {
	/* must be ([#nav li].width - padding.left - padding.right - border(2px)) */
	/* width: 110px; */
	display: block;
	text-decoration: none;
	/*padding-left: 10px;
	padding-right: 5px;
	padding-top: 5px;
	padding-bottom: 5px;*/
	z-index: 9999;
	margin: 0;
	text-align: center;
}

/* TOP MENU STYLE ON MOUSE OVER */
#nav li a:hover {
	background: transparent url("../i/link_hover.jpg") no-repeat;
}

/* SUB MENU STYLE */
#nav li ul a { /* second-level lists a */
	font-weight: normal;
	padding-left: 10px;
	padding-right: 5px;
	color: white;
	width: 170px;
	text-align: left;
	padding-top: 5px;
	padding-bottom: 5px;
	background: #083381;
	border-bottom: 1px solid #057;
}

/* SUB MENU STYLE ON MOUSE OVER */
#nav li ul a:hover { /* second-level lists a */
	background: #9c004a;
}

/* HIDE ALL OTHER */
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li:hover ul ul ul ul, #nav li.iehover ul ul, #nav li.iehover ul ul ul, #nav li.iehover ul ul ul ul {
	left: -2000px;
}
/* SHOW THEM WHE NEEDED */

#nav li li:hover ul, #nav li.iehover ul { /* lists nested under hovered list items */
	left: 185px;
	top: 0px;
}

#nav li li li:hover ul, #nav li li li li:hover ul, #nav li li.iehover ul, #nav li li li.iehover ul, #nav li li li li.iehover ul { /* lists nested under hovered list items */
	left: 185px;
	top: 0px;
}
#nav li:hover ul { /* lists nested under hovered list items */
	left: 0px;
	top: auto;
}

/** Support for the IE select on top problem **/
#nav iframe {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	filter: progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0);
}
/** end **/
