

/* ######### CSS for Indented CSS Tabs. Remove if not using ######### */


.indentmenu{

font: bold 13px Verdana;
width: 100%; /*leave this value as is in most cases*/
height: expression(document.body.clientHeight > 0 ? "0px" : "auto");

}

.indentmenu ul{


/* width: 80%; width of menu*/
border-top: 0px solid navy; /*navy border*/
background: white url(indentbg.gif) center center repeat-x;

 position:relative; 
top:-50px;
 left:450px; 


}

.indentmenu ul li{

display: inline;


}

.indentmenu ul li a{
float: left;
color: #006699; /*text color*/
font-size:13px;
padding: 5px 5px;
text-decoration: none;
border-right: 5px solid navy; /*navy divider between menu items*/
border-color:white; 

}

.indentmenu ul li a:visited{
color: #006699;
}

.indentmenu ul li a.selected{
color: #AB000B !important;
padding-top: 6px; /*shift text down 1px*/
padding-bottom: 4px;
background: white url(indentbg2.gif) center center repeat-x;

}


.tabcontentstyle{ /*style of tab content oontainer*/
/*border: 0px solid gray;*/
width: 450px;

margin-bottom: 1em;
padding: 10px;
}

.tabcontent{
display:none;
}

@media print {
.tabcontent {
display:block !important;
}
}