#menu {
	clear:both; background:#687888; height:0.2em;
}

#nav
{
	 width:99%; 
	}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	width: 8em;
}

#nav a:hover {
	background:#ffa500;
	border:1px white solid;
}

#nav li a {
	text-align:center;
	font: bold 0.85em Tahoma,Arial,Helvetica,sans-serif;
	text-decoration:none;
	color:white;
	background:#687888;
}

#nav li { /* all list items */
	float: left;
	width: 8em; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #ffa500;
	width: 8em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border:1px #ccc outset;
}

#nav li ul li a { 
	border:1px white solid;
	background: #ffa500;
	padding:1%;
	width: 100%; /*?*/
}

#nav li ul li a:hover { 
	background: #ccc;
}


#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

/* Arreglo para IE7 */
#nav li:hover, #nav li.hover {
     position: static;
}
