.menu{
	width:705px;
	float:right;
}


#cor {
	background-color: #0077c0;
}

#nav2{
	list-style:none;
	margin-bottom:10px;
	/* Clear floats */
	float:left;
	width:100%;
}

#nav2 li{
	font-family: 'Lato', serif;
	font-weight: 400;
    font-size: 14px;
    margin: 0px;
    padding: 6px 0px 0px 0px;
    list-style: none;
	float:left;
	text-decoration:none;
}

#nav2 a{
	display:block;
	padding:6px 20px;
	color:#000;
	text-decoration:none;
}

#nav2 a:hover{
	color:#0077c0;
}

#nav2 a:active{
	color: #0077c0;
	text-decoration:none;
}

/*--- DROPDOWN ---*/
#nav2 ul{
	
	padding-top: 10px;
	background:#000; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	z-index:1000;
}
#nav2 ul li{
	padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
}
#nav2 ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#nav2 li:hover ul{ /* Display the dropdown on hover */
	margin-left:0px;
	left:0; /* Bring back on-screen when needed */
	background:#fff;
}
#nav2 li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	
	text-decoration:none;
}
#nav2 li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
}
#nav2 li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background-color:#fede38;
}


/*------------------------------------*\
	2 nivel menu
\*------------------------------------*/

#nav2 li ul ul {
	margin: -30px 0 0 1em;
}

#nav2, #nav2 ul {
	padding: 0;
	margin: 0;
	list-style: none; 
	line-height: 1;
}
#nav2 li:hover ul ul, #nav2 li.sfhover ul ul {
	left: -999em;
	margin-left:99px;
}
#nav2 li:hover ul, #nav2 li li:hover ul, #nav2 li.sfhover ul, #nav2 li li.sfhover ul {
	left: auto;
}