

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


.indentmenu{
font: bold 13px Verdana;
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 solid White; /*navy border*/
	background: White url(indentbg.gif) repeat-x center center;
}

.indentmenu ul li{
display: inline;
}

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

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

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

.tabcontentstyle{ /*style of tab content oontainer*/
border: 1px solid gray;
width: 450px;
margin-bottom: 1em;
padding: 10px;
}


.tabcontent{
	background-color: #F7F7F7;
	border: thin dashed #BBBBBB;
	display: none;
	padding-left: 20px;
	padding-bottom: 6px;
	padding-top: 6px;
}

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