

/* full_top_menu_item_width = 124 */


/** Dropdowns **/
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: left;
	background-image: url('images/menu-back.gif');
	background-repeat: repeat-x;
}
#nav li { /* all list items */
	position: relative;
	float: left;
	background-image: url("../images/menu-back.gif");
	/* width: 124px; */
}
#nav li ul { 
	width: 124px;
	position: absolute;
	left: -2000px;
	margin-left: 0px;
	margin-top: 0px;
}
#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;

	margin: 0;
	color: black;
	border: 0px solid #343537;
	/*border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;*/

	text-align: center;

	padding-left: 24px;
	padding-right: 10px;
	padding-top: 9px;
	padding-bottom: 9px;
	background-repeat: no-repeat;
	background-position: 0px 6px;
}


/* TOP MENU STYLE ON MOUSE OVER */
#nav li a:hover {
	color: gray;
	background-image: url("../images/menu-back.gif");
}

/* SUB MENU STYLE */
#nav li ul a { /* second-level lists a */
	font-weight: normal;
	padding-left: 10px;
	color: black;
	background: #e8eadb;
	width: 120px;
	border: 1px solid #cccccc;
	border-top: 0;
	text-align: left;
	padding-top: 5px;
	padding-bottom: 5px;
}

/* SUB MENU STYLE ON MOUSE OVER */
#nav li ul a:hover { /* second-level lists a */
	color: black;
	background: #d2d7d9;
	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:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li li li li:hover ul, #nav li.iehover 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: 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 **/
