﻿/* ######### CSS for Indented CSS Tabs. Remove if not using ######### */


.indentmenu{
font: bold 13px Arial;
width: 95%; /*leave this value as is in most cases*/
}

.indentmenu ul
{
	margin: 0 0 0 0px;
	padding: 0;
	float: left; /* width: 80%; width of menu*/
	border-top: 1px solid navy; /*navy border*/
	background: #000000 url(indentbg.gif) repeat-x center center;
	width: 648px;
	height: 57px;
}


.indentmenu ul li{
display: inline;
}

.indentmenu ul li a{ 
float: left;
color: #FFFFCC; /*text color*/
 padding: 5px 12px;
text-decoration: none;
border-right: 1px solid blue;
border-bottom: 1px solid blue;
height: 18px;
	margin-left: 4px;
	width: 100px;
 }


.indentmenu ul li a:visited{
color: #FFFFCC;
}

.indentmenu ul li a.selected{  
color: green !important;
background-color: #00FFFF;
 padding-top: 6px; /*shift text down 1px*/
padding-bottom: 4px;
width: 100px;
	margin-left: 4px;
 }




.tabcontentstyle
{
	/*style of tab content oontainer*/
	border: 1px solid black;
	width: 450px;
	margin-bottom: 1em;
	padding: 10px;
	background-color: #CCFFFF;
}


.tabcontent{
display:none;
}

@media print {
.tabcontent {
display:block !important;
}
}