@charset "utf-8";
/* CSS Document */
@charset "utf-8";
/* CSS Document */


.indentmenu{
font: bold 11px 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: 1px 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:145px;
height:120px;
float: left;
margin-right:6px;
color: white; /*text color*/
padding: 6px 0px;
text-decoration: none;
text-align:center;

}

.indentmenu ul li a:visited{
color: white;
}

.indentmenu ul li a:hover, .indentmenu ul li .current{
width:135px;
height:105px;
/*color: white !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*/
border: 5px solid #f90; /*dark purple divider between menu items*/
border-bottom: 12px solid #f90; /*dark purple divider between menu items*/
background: #f90;
}



