/* CSS Document */



ul.menubar 
{
	margin: 0px;
	padding: 0px;
	background-color: #FFFFFF; /* IE6 Bug */
	font-size: 100%;
   } 

ul.menubar .menuvertical 
{
	list-style: none;
	background-color: #FFFFFF;
	float:left;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #ccc;
	border-bottom-color: #ccc;
	border-left-color: #ccc;
} 

ul.menubar ul.menu 
{ 
   display: none; 
   position: absolute; 
   margin: 0px; 
} 

ul.menubar a 
{
	display:block;
	text-decoration: none;
	color: #666666;
	padding-top: 5px;
	padding-right: 13px;
	padding-bottom: 5px;
	padding-left: 14px;
} 
#barra .menuvertical a {
	font-size: 85%;
	font-family: tahoma, arial;
	font-weight: bold;
}



ul.menu, 
ul.menu ul 
{
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #ccc;
	width: 150px; /* Width of Menu Items */
	background-color: #FFFFFF; /* IE6 Bug */
} 

ul.menu li 
{ 
   position: relative; 
   list-style: none; 
   border: 0px; 
} 

ul.menu li a 
{ 
   display: block; 
   text-decoration: none; 
   border: 1px solid #ccc; 
   border-bottom: 0px; 
   color: #777; 
   padding: 5px 10px 5px 5px; 
} 

/* 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: 149px; /* 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(arrow.gif) right center no-repeat; } 

ul.menu li a:hover {
	color: #477960;
	background-color: #EAEAEA;
} 

