/* ######### CSS for Indented CSS Tabs. Remove if not using ######### */


.indentmenu{
font: bold 10px Arial;
width: 100%; /*leave this value as is in most cases*/
}

.indentmenu ul{
margin: 0;
padding: 0;
float: left;
/* width: 80%; width of menu*/
background: #FFFF85;
}

.indentmenu ul li{
display: inline;
}

.indentmenu ul li a{
float: left;
color: #ccc; /*text color*/
padding: 3px 9px;
text-decoration: none;
border-right: 1px solid #fff; /*navy divider between menu items*/
}

.indentmenu ul li a:visited{
color: #ccc;
}

.indentmenu ul li a.selected{
color: #ccc !important;
padding-top: 6px; /*shift text down 1px*/
padding-bottom: 1px;
background: #f9f4bc url(indentbg2.gif) center center repeat-x;
}


.tabcontentstyle{ /*style of tab content container*/
border: 1px solid #f9f4bc;
width: 450px;
height: 300px;
margin-bottom: 0px;
padding: 10px;
overflow : auto;
}

.tabcontent{
display:none;
}

@media print {
.tabcontent {
display:block !important;
}
}
