/* Note: Background images take precedent over background colours. */

.shadetabs{
padding: 13px 0;
margin: 0 0 0 0;
font: bold 10px Verdana;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
background: white url(tabs-off-bg.gif) top left repeat-x;
border: 1px solid #135a87;
}

.shadetabs li{
display: inline;
margin: 0 -4px 0 0;
}

.shadetabs li a{
text-decoration: none;
padding: 13px;
margin: 0px;
/*border-right: 1px solid #135a87;*/
color: #FFFFFF;
background-color: #C7CEE1; /*deselected main tab style*/
background: white url(tabs-off-bg.gif) top left repeat-x;
}

.shadetabs li a:visited{
}

.shadetabs li a:hover{
background-color: #FFFFFF; /*hover main tab style*/
background-image: url(tabs-on-bg.gif);
text-decoration: none;
color: #336699;
/*border: 1px solid #ababab;*/
border-bottom-color: #666666;
}

.shadetabs li.selected{
position: relative;
top: 0px;
color: #336699;
}

.shadetabs li.selected a{ /*selected main tab style*/
background-color: #FFFFFF;
background-image: url(tabs-on-bg.gif);
/*border: 1px solid #ababab;*/
border-bottom-color: #666666;
color: #336699;
}

.shadetabs li.selected a:hover{ /*selected main tab style*/
background-color: #FFFFFF;
text-decoration: none;
}

.tabcontentstyle{ /*style of tab content oontainer*/
border: 1px solid #666666;
width: 96%;
margin-bottom: 1em;
padding: 10px;
background-color: #FFFFFF;
}

.tabcontent{
display:none;
background-color: #FFFFFF;
}

@media print {
.tabcontent {
display:block!important;
}
}