/****************************** 
The top-level stuff 
*******************************/
/* This is style for the main #menu nav (the black) */
#menu {
	background: #000;
	font-size: 12px;
	font-family: Helvetica, Arial, Sans-Serif;
	text-align: center;
	margin: 0px; padding: 0px;
	height: 40px; line-height: 40px;
	display: block;
}
/* This is the style for the first UL (the grey) */
#menu ul {
	display: block;
	background: #333;
	width: 950px;
	height: 40px; line-height: 40px;
	margin: 0px auto; padding: 0px 0px 0px 10px;
}
/* This is the style for the top level list items */
#menu ul li {
	width: auto;
	display: block;
	float: left;
	list-style-type: none;
	height: 40px; line-height: 40px;
	margin: 0px; padding: 0px;
}
/* The style for all links */
#menu a {
	color: #FFF;
	text-decoration: none;
}
/* The hover state colors and background for all LI items and links */
#menu li:hover,
#menu li.sfhover,
#menu li a:hover {
	color: #FFF;
	background: #D9241B;
	text-decoration: none;
}
/* This is the style for the top level links */
#menu ul li a {
	display: block;
	height: 40px; line-height: 40px;
	margin: 0px; padding: 0px 15px;
	text-decoration: none;
}
/* if you want to set a "current page item" style, do it here */
#menu ul li.current_page_item a {
}

/****************************** 
The second-level stuff 
*******************************/

/* This hides the nested UL before you hover */
#menu li ul {
	clear: both;
	position: absolute;
	width: 150px;
	left: -999em;
}
/* This shows the nested UL when you hover */
#menu li:hover ul, #menu li.sfhover ul {
	left: auto;
	display:  block;
	z-index: 1000;
}

/* This is the style for the nested UL */
#menu li:hover ul, #menu li.sfhover ul {
	background: transparent;
	display: block;
	margin: 0px; padding: 0px;
}
/* This is the style for the LI items within the nested UL */
#menu li:hover ul li,
#menu li.sfhover ul li {
	background: #333;
	width: 180px;
	display: block;
	padding: 0px; margin: 0px;
	height: 30px; line-height: 30px;
	text-align: left;
	border-top: 1px solid #FFF;
}
/* This is the style for the links within the LI items within the nested UL */
#menu li:hover ul li a,
#menu li:hover ul li.current_page_item a,
#menu li.sfhover ul li a,
#menu li.sfhover ul li.current_page_item a {
	background: #333;
	width: 170px;
	display: block;
	margin: 0px; padding: 0px 5px;
	height: 30px; line-height: 30px;
	border: none;
	color: #AAA;
	font-weight: bold;
}
/* This is the style for the hover state on the links within the LI items within the nested UL */
#menu li:hover ul li a:hover, 
#menu li.sfhover ul li a:hover {
	color: #FFF;
	background: #D9241B;
	text-decoration: none;
	margin: 0px; padding: 0px 5px;
	height: 30px; line-height: 30px;
	font-weight: bold;
}