@charset "utf-8";
/* CSS Document */

/* top level */
ul#topnav {
	margin: 0; padding: 0;
	float:left;
	width: 100%;
	list-style: none;
	font-size: 1em;
}
ul#topnav li {
	float: left;
	margin: 0; padding: 0;
	position: relative; /*--Important--*/
}
ul#topnav li a {
	float: left;
/*	text-indent: -9999px; --Push text off of page--*/
	height: 26px;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	padding: 4px 10px 4px 10px;
	color: #FFFFFF;
	line-height:1;
	font-size: 1em;
}
ul#topnav li:hover a, ul#topnav li a:hover { color:#FF0000;  } /*--Hover State--*/
ul#topnav a.home {
/* 	background: url(nav_home.png) no-repeat; */
	width: auto;
}
ul#topnav a.products {
/* 	background: url(nav_products.png) no-repeat; */
	width: auto;
}

/* subnav */

ul#topnav li .sub {
	z-index: 900000;
	position: absolute; /*--Important--*/
	top: 22px; 
	background: #000000; /*--Background gradient--*/
	padding: 10px 10px 10px;
	float: left;
	/*--Bottom right rounded corner--*/
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	/*--Bottom left rounded corner--*/
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
	display: none; /*--Hidden for those with js turned off--*/
}
#cars { left: -150px; }
#deve { left: -100px; }
#dcho { left: 0px; }
ul#topnav li .row { /*--If needed to break out into rows--*/
	clear: both;
	float: left;
	width: 100%;
	margin-bottom: 10px;
}
ul#topnav li .sub ul{
	list-style: none;
	margin: 0; padding: 0;
	width: 165px;
	float: left;
}
ul#topnav .sub ul li {
	width: 100%; /*--Override parent list item--*/
	color: #fff;
	font-size: 0.9em;
}
ul#topnav .sub ul li h2 { /*--Sub nav heading style--*/
	padding: 0;  margin: 0;
	font-size: 1.1em;
	font-weight: normal;
}
ul#topnav .sub ul li h2 a { /*--Sub nav heading link style--*/
	padding: 5px 0;
	background-image: none;
	color: #cf1f10;
	display: block;
}
ul#topnav .sub ul li a {
	float: none;
	text-indent: 0; /*--Override text-indent from parent list item--*/
	height: auto; /*--Override height from parent list item--*/
	padding: 3px 2px 3px 10px;
	display: block;
	text-decoration: none;
	color: #fff;
}
ul#topnav .sub ul li a:hover {
	color: #999999;
}
