/* Note: Background images take precedent over background colours. */

.shadetabs{
padding: 3px 0;
margin-left: 0;
margin-top: 1px;
margin-bottom: 0;
font: bold 10px Verdana;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.shadetabs li{
display: inline;
margin: 0;
}

.shadetabs li a{
text-decoration: none;
padding: 3px 7px;
margin-right: 0px;
border: 1px solid #778;
color: #CCCCCC;
background-color: #4C4C4C; /*deselected main tab style*/
}

.shadetabs li a:visited{
color: #CCCCCC;
}

.shadetabs li a:hover{
background-color: #4C4C4C; /*hover main tab style*/
text-decoration: none;
color: #CCCCCC;
}

.shadetabs li.selected{
position: relative;
top: 0px;
}

.shadetabs li.selected a{ /*selected main tab style*/
background-color: #4C4C4C;
color: #000000;
border-bottom: #4C4C4C;
}

.shadetabs li.selected a:hover{ /*selected main tab style*/
background-color: #F3CA04;
color: #000000;
text-decoration: none;
}

.tabcontentstyle{ /*style of tab content oontainer*/
border: 1px solid gray;
width: 96%;
margin-bottom: 1em;
padding: 10px;
background-color: #4C4C4C;
}

.tabcontent{
display:none;
background-color: #4C4C4C;
}

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