/* ######### CSS for Indented CSS Tabs. Remove if not using ######### */


.indentmenu{
float:left;
width:100%;
font-size:90%;
line-height:normal;
border-bottom: 0px solid #7e9fff; /*Add border strip to bottom of menu*/
}

.indentmenu ul{
list-style-type: none;
margin:0;
margin-left: 21px; /*Left offset of entire tab menu relative to page*/
padding:0;
}

.indentmenu ul li{
display:inline;
margin:0;
padding:0;
}

.indentmenu ul li a{
float:left;
background:url(../images/glowtab-left.gif) no-repeat left top;
margin:0;
margin-right: 1px; /*spacing between each tab*/
padding:0 0 0 9px;
text-decoration:none;
}

.indentmenu ul li a span{
	float:left;
	display:block;
	background:url(../images/glowtab.gif) no-repeat right top;
	color:#3B3B3B;
	padding-top: 4px;
	padding-right: 12px;
	padding-bottom: 0px;
	padding-left: 3px;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
}

.indentmenu ul li a span {float:none;}
/* End IE5-Mac hack */

.indentmenu ul li a:hover span {
color: black;
}

.indentmenu ul li a:visited{
color: white;
}

.indentmenu ul li a.selected{
background-position:0 -22px; /*Shift background image up to start of 2nd tab image*/
}

.indentmenu ul li a.selected span{
background-position:100% -22px; /*Shift background image up to start of 2nd tab image*/
color: black;
}

.indentmenu ul li a:hover{ /*onMouseover style*/
background-position:0% -22px; /*Shift background image up to start of 2nd tab image*/
}

.indentmenu ul li a:hover span{ /*onMouseover style*/
background-position:100% -22px; /*Shift background image up to start of 2nd tab image*/
}


.tabcontentstyle{ /*style of tab content oontainer*/
border: 1px solid gray;
width: 450px;
margin-bottom: 1em;
padding: 10px;
}

.tabcontent{
display:none;
}

@media print {
.tabcontent {
display:block !important;
}
}