@charset "utf-8";
/* CSS Document */

/* Styling */

#nav a {
	color: #fff;
	text-align: left;
	line-height: 25px;
}

#nav a:hover {
	color: #FFCC00;
	background-color: #000000;
}	

#nav li {
	border-left: 1px solid #444444;	
}

#nav li li {
	border: none;
}

#nav li li {
	background-color: #f99b1b;
	padding-left: 1px;
}

#nav li a {
	padding-left: 5px;
}

#nav li li a {
	background-color:#000;
	font-size:11px;
}

#nav li li a:hover {
	background-color: #000;
}

#nav li li a {
	border: #303030 1px solid;
	border-top: 0;
}

#nav li li li.first a {
	border-top: #303030 1px solid;
}

/* Layout and Widths. Don't touch this unless you understand it. */

#nav a {
	display: block;
	width: 142px;
	height: 100%;
	text-decoration: none;
}

ul#nav {
	float: left;
}

ul#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: left;
}

#nav li { /* all list items */
	float: left;
	position: relative;
	width: 147px;
	left: -1px;
}

ul#nav li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 25px;
	left: -1px;
	text-align: left;
}

#nav ul li ul {
	display: none;
	position: absolute;
	top: -1px;
	left: -151px; /* LI width + padding and margin of LI and A elements */
}

#nav ul li ul li, #nav ul li ul a {
	width: 180px;
}

#nav li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	display: block;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	display: none;
}

#nav li li:hover ul, #nav ul li.sfhover ul {
	display: block;
}

#nav #content {
	clear: left;
}
