

/* full_top_menu_item_width = 108 */


/** 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;
	border-left: 1px solid #dbdbdb;
	width: 100px;
	z-index: 9999;
	
	/* width: 108px; */
}
#nav li ul { 
	width: 108px;
	position: absolute;
	left: -2000px;
	margin-left: 0px;
	margin-top: 0px;
	z-index: 9999;
}
#nav li ul ul { /* third-and-above-level lists */
	left: -2000px;
}

/* TOP MENU STYLE */
#nav li a {
	/* must be ([#nav li].width - padding.left - padding.right - border(2px)) */
	/* width: 90px; */
	display: block;
	font-weight: bold;
	text-decoration: none;
	padding-left: 12px;
	padding-right: 6px;
	padding-top: 3px;
	padding-bottom: 4px;
	z-index: 9999;

	margin: 0;
	color: black;
	background-image: url("../images/middle-menu-background.gif");

	text-align: center;
}

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

/* SUB MENU STYLE */
#nav li ul a { /* second-level lists a */
	font-weight: normal;
	padding-left: 12px;
	color: black;
	background-color: #F9F9F9;
	width: 182px;
	text-align: left;
	padding-top: 5px;
	padding-bottom: 7px;
	border: 1px solid #dbdbdb;
}

/* SUB MENU STYLE ON MOUSE OVER */
#nav li ul a:hover { /* second-level lists a */
	background-color: #ebebeb;
	font-weight: bold;
}

/* 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: 200px;
	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: 200px;
	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 **/