

/* full_top_menu_item_width = 110 */

/** Dropdowns **/
#nav, #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;
	background-color: none;
	
}
#nav li:hover {
	background-color: #f3f3f3;
}
#nav li ul { 
	
	position: absolute;
	left: -2000px;
	margin-left: 2px;
	margin-top: 47px;
	z-index: 9999;
	background: #f3f3f3;
	
	color: #3e99ac;
	width: 450px;
	position: absolute;
}

#nav li ul ul { /* third-and-above-level lists */
	left: -2000px;
}

#nav li ul li{
	padding-bottom:10px;
	float: none;
}

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

/* TOP MENU STYLE ON MOUSE OVER */
#nav li a:hover {
	color: #2f2f2f;
}

/* SUB MENU STYLE */
#nav li ul a { /* second-level lists a */
	color: #3e99ac;
	
	width: 220px;
	text-align: left;
	cursor: pointer;
}

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

/* 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: 350px;
	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: 350px;
	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);
}

#nav li ul li a{
	padding-left: 15px;
	padding-top: 5px;
	padding-bottom: 0px;
}
/** end **/
