/* MENU DE NAVEGAÇÃO HORIZONTAL *******************************************/
/*URL: http://www.dynamicdrive.com/style/csslibrary/item/css_indent_menu */
/************************************************************************/

.indentmenu{
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-size:12px;
font-weight:bold;
text-shadow:0 0px 3px #fff;
width: 880px; /*leave this value as is in most cases*/
padding-left:10px;
padding-right:10px;
height:29px;
color: #000;
}

.indentmenu ul{

margin: 0;
padding: 0;
float: left;
width: 100%; /*width of menu*/
background-image:url(menu-off.png);
background-position: top;
background-repeat:repeat-x;
background-color:#D9D9D9;
border-bottom-color:#386D51;
border-bottom-style:solid;
border-bottom-width:1px;
color: #030;
}

.indentmenu ul li{
display: inline;

}

.indentmenu ul li a{
float: left;
padding: 7px;
text-decoration: none;
text-shadow:0 0px 3px #fff;
color: #386D51;
}

.indentmenu ul li a:visited{
}

.indentmenu ul li a:hover, .indentmenu ul li .current{
padding: 7px;
background-color:#386D51;
background-image:url(menu-on.png);
background-position: top;
background-repeat:repeat-x;
color: #fff;
}


