/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.

By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don't need to copy all
your theme's stylesheet content.

*/
#nav {
/*background: url(images/bg-dark.png);*/
	background-color: #bbb;
	border-left: 1px solid #666;
	border-right: 1px solid #666;
	border-top: 1px solid #666;
	border-bottom: 1px solid #666;
	clear: both;
	color: #333;
	font-family: 'PT Sans Narrow', sans-serif;
	margin: 0 auto;
	overflow: hidden;
	text-transform: uppercase;
	width: 960px;
	font-weight: 700;
}

#nav ul {
	float: left;
	width: 100%;
}

#nav li {
	float: left;
	list-style-type: none;
}

#nav li a {
	color: #333;
	display: block;
	font-size: 17px;
	padding: 9px 15px;
	position: relative;
	text-decoration: none;
}

#nav li a:hover,
#nav li a:active,
#nav .current_page_item a,
#nav .current-cat a,
#nav .current-menu-item a {
	color: #900;
}

#nav li li a,
#nav li li a:link,
#nav li li a:visited {
/*background: url(images/bg-dark.png);*/
	background-color: #bbb;
	border: 1px solid #666;
	border-top-width: 0;
	color: #333;
	font-size: 17px;
	padding: 5px 10px;
	position: relative;
	text-transform: none;
	width: 118px;
}

#nav li li a:hover,
#nav li li a:active {
	color: #900;
}

#nav li ul {
	height: auto;
	left: -9999px;
	position: absolute;
	width: 140px;
	z-index: 9999;
}

#nav li ul a {
	width: 120px;
}

#nav li ul ul {
	margin: -33px 0 0 139px;
}

#nav li:hover>ul,
#nav li.sfHover ul {
	left: auto;
}	
}