/*
* menu
*/
ul.menubar 
{ 
   margin: 0px; 
   padding: 0px; 
   background-color: #C6C6C6; /* IE6 Bug */ 
   
   } 

ul.menubar .menuvertical 
{ 
   margin: 0px; 
   padding: 0px; 
   list-style: none; 
   background-color: #C6C6C6; 
   border: 1px solid #C6C6C6; 
   float:left;   
} 

ul.menubar ul.menu 
{ 
   display: none; 
   position: absolute; 
   margin: 0px; 
} 

ul.menubar a 
{ 
   padding: 3px; 
   display:block; 
   text-decoration: none; 
   color: #777; 
} 


ul.menu, 
ul.menu ul 
{ 
   margin: 0; 
   padding: 0; 
   border-bottom: 1px solid #fff; 
   width: 147px; /* Width of Menu Items */ 
   background-color: #C6C6C6; /* IE6 Bug */ 
} 

ul.menu li 
{ 
   position: relative; 
   list-style: none; 
   border: 0px;
}  

ul.menu li a 
{ 
   display: block; 
   text-decoration: none; 
   border-top: 1px solid #fff; 
   border-bottom: 0px; 
   color: #000; 
   padding: 5px 8px 5px 5px; 
   font-size: 14px;
   font-weight: bold; 
} 

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

ul.menu ul 
{ 
   position: absolute; 
   display: none; 
   left: 146; /* Set 1px less than menu width */ 
   top: 0px; 
} 

ul.menu li.submenu ul { display: none; } /* Hide sub-menus initially */ 

ul.menu li.submenu { background: transparent url(../img/seta.gif) right center no-repeat;} 

ul.menu li a:hover { color: #EEDD82; background-color: #555; text-decoration: none; } 
/*
* fim menu
*/