
.indentmenu{
font: bold 11px Arial;
width: 100%; /*leave this value as is in most cases*/
}

.indentmenu ul{
margin: 0;
padding: 0;
float: left;
/* width: 100%; width of menu*/
border-top: 0px solid navy; /*navy border*/
background: #ff9f00;
}

.indentmenu ul li{
display: inline;
}

.indentmenu ul li a{
float: left;
font-size: 10px;
color: white; /*text color*/
padding: 5px 11px;
text-decoration: none;
border-right: 0px; /*navy divider between menu items*/
}

.indentmenu ul li a:visited{
color: white;
font-size: 10px;
}


.indentmenu ul li a:hover{
Color : #f8931d;
font-size: 10px;
}

.indentmenu ul li a.selected{
color: white !important;
font-size: 10px;
padding-top: 6px; /*shift text down 1px*/
padding-bottom: 5px;
background: #ff7200;
}


.tabcontentstyle{ /*style of tab content oontainer*/
border: 0px solid gray;
width: 250px;
margin-bottom: 0;
padding: 10px;
}

.tabcontent{
display:none;
border: 0px solid gray;
font-size: 11px;
color: white; /*text color*/
}

@media print {
.tabcontent {
display:block !important;
}
}