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


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

}

.indentmenu ul{
	margin: 0;
	padding: 0;
	float: left; /* width: 80%; width of menu*/;
	border-top: 1px white solid; /*navy border*/
	background: white url(indentbg.gif) center center repeat-x;
}

.indentmenu ul li{
display: inline;
}

.indentmenu ul li a{
float: left;
color: white; /*text color*/
padding: 2px 7px;
text-decoration: none;
/*navy divider between menu items*/
border: solid 1px white;
background:black;
}

.indentmenu ul li a:visited{
color: white;
}

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


.tabcontentstyle{ /*style of tab content container*/

width: 400px;
margin-bottom: 1em;
padding: 5px;
}

.tabcontent{
display:none;
}

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