/***********************************************************************************************
Copyright (c) 2005 - Alf Magne Kalleland post@dhtmlgoodies.com
Get this and other scripts at www.dhtmlgoodies.com
You can use this script freely as long as this copyright message is kept intact.
***********************************************************************************************/
#mainMenu{
	background-color: #906;	/* Background color of main menu */
	height:28px;	/* Height of main menu */
	position:relative;	/* Don't change this position attribute */
	clear:both;
	padding-bottom:0px;
}
#mainMenu a{
	padding:5px;
	font-weight:bold;
	/* Don't change these two options */
	position:absolute;
	color:#FFF !important;
	text-transform:uppercase;
	border-right:#ad3385 solid 1px;
}
#submenu{		
	background-color:#fdf0e8;	/* Background color of sub menu items */
	width:976px;	/* Don't change this option */
	height:18px;
	overflow:hidden;
	padding:4px 5px;
	border:#906 solid 1px;
	border-top:none;
}	
#submenu div{
	white-space:nowrap;	/* Don't change this option */
	
}
/*
Style attributes of active menu item 
*/
#mainMenu .activeMenuItem{	
 color:#FCC !important;
 text-decoration:underline;
 font-weight:bold; 
 background:url(/site/img/menu-principal-ativo.gif) bottom center no-repeat;
}

#mainMenu .activeMenuItem img{
	position:absolute;
	bottom:0px;
	right:0px;
}
	
/*
Style attributes of inactive menu items
*/
#mainMenu .inactiveMenuItem{		
	color: #000;	/* Text color */
	cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
}

#submenu a{	
	text-decoration:none;	/* No underline on sub menu items - use text-decoration:underline; if you want the links to be underlined */
	padding-left:5px;	/* Space at the left of each sub menu item */
	padding-right:5px;	/* Space at the right of each sub menu item */
	color: #000;	/* Text color */
	text-transform:uppercase;
	border-right:#e8cad1 solid 1px;
}

#submenu a:hover{
	color: #FF0000;	/* Red color when the user moves the mouse over sub menu items */
}
