@charset "UTF-8";/* CSS Document *//* ================================================================ This copyright notice must be untouched at all times.The original version of this stylesheet and the associated (x)htmlis available at http://www.cssplay.co.uk/menus/final_drop.htmlCopyright (c) 2005-2007 Stu Nicholls. All rights reserved.This stylesheet and the associated (x)html may be modified in any way to fit your requirements.=================================================================== */#menu {
	width:750px;	height:43px;	font-size:0.85em;	position:relative;	z-index:100;	margin-top: 24px;
}

/* remove all the bullets, borders and padding from the default list styling */
#nav, #nav ul {
	padding:0;
	margin:0;
	list-style-type:none;
}

#nav ul ul {	width:150px;}

/* style the links for the top level */#nav a, #nav a:visited {	display:block;	font-size:11px;	text-decoration:none;	color:#1c2133;	width:150px;	height:43px;	line-height:29px;}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#nav li {
	float:left;	width:150px;	position:relative;	color: 1c2133;
}

#nav li ul {
	position: absolute;
	width: 150px;
	left: -999em;
}

#nav li:hover ul {
	left: auto;
}

#nav li:hover ul, #nav li.sfhover ul {
	left: auto;
}

/* style the second level links */#nav ul a, #nav ul a:visited {	background:#a6a9b2;	color:#1c2133;	height:auto;	line-height:1em;	padding:10px 10px;	width:128px;	border-width:0 1px 1px 1px;	border-bottom-width: 1px;	border-bottom-style: solid;	border-bottom-color: #CCCCCC;	font-family: Helvetica, Verdana, Arial, Geneva, sans-serif;	font-weight: bold;}

/* style the top level hover */#nav a:hover, #nav ul a:hover{color:#fff;}#nav :hover > a, #nav ul :hover > a {	color:#ebebd7;}