@charset "utf-8";
/* CSS Document */
.indentmenu{
font: bold 14px Verdana, Arial, Helvetica, sans-serif;
width: 800px; /*leave this value as is in most cases*/
/* Was 100%, modify to acomodate Facebook logo */
overflow: hidden;
}

.indentmenu ul{
margin: 0;
padding: 0;
float: left;
width: 100%; /*width of menu*/
/* border: 1px solid #564c66; */ /*dark purple border*/
border-right: 1px solid #564c66;
border-width: 1px 0;
background: #E87733;
}

.indentmenu ul li{
display: inline;
}

.indentmenu ul li a{
float: left;
color: white; /*text color*/
padding: 9px 21px;                  /* Increasing Decreasing Hight 12px--> */
text-decoration: none;
border-left: 1px solid #FF0000; /*dark purple divider between menu items*/
}

.indentmenu ul li a:visited{
color: white;
}

.indentmenu ul li a:hover, .indentmenu ul li .current_m{
color: white !important; /*text color of selected and active item*/
padding-top: 8px; /*shift text down 1px for selected and active item*/   /* Increasing Decreasing Hight 12px--> */
padding-bottom: 10px; /*shift text down 1px for selected and active item*/
background: black url(media/indentbg2.gif) center center repeat-x;
}

