@charset "utf-8";
/* CSS Document */


.indentmenu{
font: bold 14px Arial;
width: 100%; /*leave this value as is in most cases*/
overflow: hidden;
}

.indentmenu ul{
margin: 0;
padding: 0;
float: left;
width: 100%; /*width of menu*/
border: 0px solid #5a7085; /*dark purple border*/
border-width: 0px 0;
/*background: black url(images/menu/indentbg.gif) center center repeat-x;*/
}

.indentmenu ul li{
display: inline;

}

.indentmenu ul li a{
/*width:125px;*/
float: left;
color: #fff; /*text color*/
padding: 6px 0px;
text-decoration: none;
text-align:center;
border-right: 0px solid #5a7085; /*dark purple divider between menu items*/
/*background: black url(images/menu/indentbg.gif) center center repeat-x;*/
}

.indentmenu ul li a:visited{
color: white;
}

.indentmenu ul li a:hover, .indentmenu ul li .current{
color: #facb48 !important; /*text color of selected and active item*/
/*padding-top: 6px;*/ /*shift text down 1px for selected and active item*/
/*padding-bottom: 4px;*/ /*shift text down 1px for selected and active item*/
/*background: black url(images/menu/indentbg2.gif) center center repeat-x;*/
}

