/* ######### CSS for Indented CSS Tabs. Remove if not using ######### */
.indentmenu{
font: bold 13px Arial;
width: 100%; /*leave this value as is in most cases*/
padding:0;
}
.indentmenu ul{
margin:0;
padding-left:10px;
/* width: 80%; width of menu*/
width:99%
}
.indentmenu ul li{
display: inline;
}
.indentmenu ul li a{
float: left;
color: white; /*text color*/
padding: 3px 11px;
text-decoration: none;
background-color:#307D7E;
border-right: 1px solid darkred; /*darkred divider between menu items*/
}
.indentmenu ul li a:visited{
color:white;
background-color:#307D7E; 
}
.indentmenu ul li a:hover{
color:orange;
background-color:#307D7E; 
}
.indentmenu ul li a.selected{
color:white!important;
padding-top: 4px; /*shift text down 1px*/
padding-bottom: 2px;
background-color:#3B9C9C
}
