.shadetabs{
padding: 6px 0px 0px 0px;
margin: 6px 0px 0px 0px;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.shadetabs li{ /*don't change this - it doesn't affect anything*/
display: inline;
margin: 0;
}

.shadetabs li a{ /*unselected tab settings */
text-decoration: none;
padding: 5px 8px 5px 8px;
margin: 0px 0px 1px 0px;
/*background-image: url(unselected-tab-bg.gif);*/
background-color: #f3f3f3;
border: 1px solid #e3e3e2;
font-size: 8pt;
font-family: Arial, Helvetica, sans-serif;
color: #555555;
}

.shadetabs li a:hover{ /*unselected tab when hovered over*/
text-decoration: none;
color: #a8131d;
}

.shadetabs li.selected{ /*selected tab - changing this doesn't affect anything */
position: relative;
}

.shadetabs li.selected a{ /*selected tab */
/*background-image: url(selected-tab-bg.gif);*/
background-color: #ffffff;
border-bottom: 1px solid #ffffff; /* use this as the color to erase the bottom border line for the selected tab - it deceives the eye */
color: #a8131d;
}

.shadetabs li.selected a:hover{ /*selected tab when hovered over */
text-decoration: none;
color: #a8131d;
}

.tabcontentstyle{ /*style of content container */
height: 290px;
margin: 5px 0px 0px 0px;
padding: 10px;
overflow: auto;
border: 1px solid #e3e3e2;
/*border-top: 1px solid #cccccc;
border-left: 1px solid #cccccc;*/
width: 388px;
}

.tabcontent{
display: none;
}

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