@charset "utf-8";
/* CSS Document */

#nav{
float:left;
width:800px;
height:51px; 
margin:0px 0px 15px 0px;
padding:0px;
list-style:none;}


#nav ul { /* all lists */
	padding: 0;
	margin:0;
	list-style: none;
	line-height: 1;
}
 
#nav a {
	display: block;	
}

#nav li { /* all list items */
	float: left;
	width: auto;
	margin-left:10px;
}
 
#nav li ul li { /* all list items */
	float: left;
	margin-top:5px;
	margin-left:0px;
	width: 101px; /* width needed or else Opera goes nuts */
}
 
#nav li ul { /* second-level lists */

	position: absolute;
	width: 101px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
 
#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

/* normal states */

/* first level */
#nav li a:link, #nav li a:visited{

text-align:center;
width:101px;
height:51px;

color:#FFFFFF;
font-family: Arial, Helvetica, sans-serif;
line-height:51px;
display:block;
background-image:url(../images/menu.jpg);
background-repeat:repeat-x;
}

/* second level */
#nav li ul a:link, #nav li ul a:visited{
width:101px;
height:51px;
margin:5px 0 0 0;
background-image:url(../images/menu2.jpg);
background-repeat:repeat-x;
}

/* normal states */

/* first level */
#nav li a:hover{
background-position:-101px;
}
/* second level */
#nav li ul a:hover{
background-position:-101px;
}


