﻿
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	
}

#nav a {
	display: block;
	width: 10em;
	text-decoration: none;
	text-align: center;
    background:none repeat scroll 0 0 #FFFFFF;
    color:#999999;
    display:block;
    font-size:14px;
    height:30px;
    line-height:29px;
    padding-left:0;
    text-align:center;
    text-decoration:none;
    font-weight: bold;
    border: solid 1px #fff;
    width: 153px;
}

#nav a:hover {
	display: block;
	text-decoration: none;
    background: #16abe2;
    color:#999999;
    display:block;
    font-size:14px;
    height:30px;
}

#nav li { /* all list items */
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
	background: #84c7f2;
	margin-right: 20px;

}

#nav li ul li { width: auto; }
#nav li ul li a { text-align: left; background: #16abe2; color: #fff; padding: 0px 0px 0px 10px; width: auto;  }
#nav li ul li a:hover {  }
#nav li div { background-color: none; position: absolute; padding-left: 45px; display: none; }

#nav li ul { /* second-level lists */
	position: absolute;
	width: 10em;
	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;
    color: #999999;
    
}

