
#nav{
height:50px;
width:100%;}

.gap{
width:1000px;
margin:0 auto;
padding: 0 20px 0 20px;}


#nav ul { /* all lists */
	width:960px;
	padding:0;
	list-style: none;
	line-height: 1;
}
 
#nav a {
text-decoration:none;
	display: block;	
}

#nav li { /* all list items */
	float: left;
	width: auto;
}
 
#nav li ul li { /* all list items */
	float: left;
	width: 200px; /* width needed or else Opera goes nuts */
}
 

/* normal states */

/* first level */
#nav li a:link, #nav li a:visited{
width:40px; /* must have a fixed width for ie6 */
height:50px;
line-height:50px;
padding:0 12px 0 12px;
background:url(../images/over_bg.jpg);
margin-left:10px;
color:#1b3759;
font-size: 16px;
font-weight:bold;
}

/* variable width setting can be used for other browsers */
html>body #nav li a:link, html>body #nav li a:visited {
width:auto;
} 

/* second level - dropdown menu */
#nav li ul {
	position: absolute;
	width: 10em;
	left: -999em;
}

#nav li:hover ul {
	left: auto;
}

#nav li ul a{
	background-color:#eceef1;
	width:150px;
	height:35px;
	padding-left:20px;;
	margin:0;
	line-height: 35px;
	color:#fff;
	text-decoration:none;
}


/* normal states */

/* first level */
#nav li a:hover, #nav li a.active:link, #nav li a.active:visited {
background-position:bottom;
color:#ffffff;
}
