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

body{
background-color: #232323;
}

.blacktabs{
width: 100%;
overflow: hidden;
background: #2b2b2b;
border-bottom: none; /*bottom horizontal line that runs beneath tabs*/
}

.blacktabs ul{
margin: 0;
padding: 0;
padding-left: 0px; /*offset of tabs relative to browser left edge*/
font-family : "Trebuchet MS", Verdana, Arial, serif;
font-size: 11px;
text-decoration: none;
list-style-type: none;
}

.blacktabs li{
display: inline;
margin: 0;
font-size: 11px;
}

.blacktabs li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
padding: 5px 10px; /*padding inside each tab*/
border-right: none; /*right divider between tabs*/
color: #cccccc;
background: #2b2b2b;
font-size: 11px;
}


.blacktabs li a:hover, .blacktabs li a.selected{
background: #232323; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */
}



</style>


.tabcontent{
display:none;
}

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

