

/* ######### CSS for Indented CSS Tabs. Remove if not using ######### */


.indentmenu{
font: bold 12px Arial;  /* type & size of font within the tabs */
width:80%; /*was 100%; -- the tabs wouldnt move from LEFT to CENTER, so i changed this  */
}

.indentmenu ul{
padding-top: 3px; /* added both "paddings" to adjust for skinny tabs when "float" is removed-*/
padding-bottom: 5px;
margin: 0;
float: none;   /*to get the tab centered, remove both "floats"...but then the tabs are too skinny??? */
text-align: center;
 /*width: 80%;  width of menu   was removed  */
border-top: 1px solid navy; /*navy border*/
background: #66A7C5 url(indentbg.gif) center center repeat-x;
}

.indentmenu ul li{
display: inline;
}

.indentmenu ul li a{
float: none; 
text-align: center;
color: #FFFFFF; /*text color*/
padding: 5px 11px;  /* was 5px 11px; */
text-decoration: none;

border-right: 1px solid navy; /*navy divider between menu items*/
}

.indentmenu ul li a:visited{
color: white;
}

.indentmenu ul li a.selected{
color: #0000CC !important;
padding-top: 3px; /*shift text down 1px*/
padding-bottom: 5px;
background: #66A7C5 url(indentbg2.gif) center center repeat-x;
}


.tabcontentstyle{ /*style of tab content container*/
border: 1px solid gray;
width: 450px;
margin-bottom: 1em;
padding: 10px;
}

.tabcontent{
display:none;
}

@media print {
.tabcontent {
display:block !important;
}
}