#nav {
	padding: 0px;
	margin: 0px;
	line-height: 1;
	text-align: left;
	list-style-type: none;
}

#nav ul {
	padding: 5px;
	margin: 0px;
	line-height: 15px;
	text-align: left;
	list-style-type: none;
	border:1px solid #f4ac14; 
	background-color: #098ace;	
}

#nav a {
	display: block;
	padding-right:25px;
	color: white;
	padding-bottom:10px;	
}


#nav ul a {
	display: block;
	width: 150px;
	color: white;
	padding-bottom:0px;	
}

#nav a:hover {
	color: #f4ac14;	
}

#nav li { /* root items */
	float: left;
	padding-left:10px;
	background-image: url('../images/pont.png');
	background-repeat: no-repeat;
	text-align: left;
	font-size: 12px;
	font-weight: bold;
}
#nav ul li { /* second and above level list items */
	float: left;
	text-align: left;
	font-size: 12px;	
	font-weight: bold;
	padding-bottom:2px;
	background-image: none;
	margin: 0px;
	padding: 0px;
}

#nav li ul { /* second-level lists */
	position: absolute;
	margin-top: -10px;
	width: 160px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 5em;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

#nav li:hover, #nav li.sfhover {  /*  IE7 Bugfix */
    position: static;
}

