/* CSS Document */

.indentmenu{
font: bold 13px 'Tahoma';
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 #e1e1e1; /*navy border*/
background: url(../images/indentbg.gif) center center repeat-x;
}

.indentmenu ul li{
display: inline;
}

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

.indentmenu ul li a:visited{
color: #666666;
}

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


.tabcontentstyle{ /*style of tab content oontainer*/
font: normal 13px 'Tahoma';
border: 1px solid #e1e1e1;
width: 270px;
margin-bottom: 1em;
padding: 10px;
}

.tabcontent{
padding-top: 4px; 
font: normal 12px 'Tahoma';
color: #666666;
display:none;
}

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