	/*DIV MENU QUE CONTÉM AS ULs*/
	
	#menu_topo {
		position: relative;
		float: right;
		top: 15px;	
		height: 20px;
		width: 100%;
		text-align: right;
		margin: 0px auto;
			margin-top: -15px; /* HACK IE */ 
		padding: 0px;
		border-top: solid #366 4px;
		/*background: #699;*/
			
}

/* CONSTRUÇÃO DO MENU */

#menu_topo  ul {
	float: right;
	margin: 0px auto;
	padding: 0px 0px 0px 5px;
	list-style: none;
	height: 20px;
		filter: alpha(opacity=75); 
		-moz-opacity: .85; 
		opacity: .85;
	}

#menu_topo  ul li ul {
	width: 290px; /* bug de rolagem no IE */
	}

#menu_topo  ul li {
	float: left;
	height: 20px;
	position:relative;
	
	}

#menu_topo  ul li a {
	display: block;
	text-decoration: none;
	color: #cce5e6;
	font-size: 10px;
	font-weight: 600;
		/*background: #699;  IE6 Bug */
	padding: 3px 5px;
	}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; width: 1%; }
* html ul li a { height: 1%; width: 1%; }
/* End */

#menu_topo  ul li a:hover { color: #fff; background: #366; filter: alpha(opacity=100); -moz-opacity: 1; opacity: 1; } /* Hover Styles */

#menu_topo  ul ul { /* seta a posição dos submenus */
	position:absolute;
	display:none;
	left: -55px; 
	top: 19px;
}

#menu_topo  li ul li a { background: #699; padding: 2px 5px; white-space:nowrap; border-top: #366 solid 1px; filter: alpha(opacity=100); -moz-opacity: 1; opacity: 1; } /* Sub Menu Styles */

#menu_topo  li:hover ul ul, li.over ul ul { display:none; }

#menu_topo  li:hover ul, li.over ul { display: block; } /* The magic */

