﻿/* ######### CSS for Shade Tabs. Remove if not using ######### */

.tabdiv {
border:1px solid #000066;
width:50px;
margin-bottom: 1em;
padding: 10px;
}
.tabdiv2 {
border-left: 3px #000066 solid;
border-right: 3px #000066 solid;
border-bottom: 3px #000066 solid;
width:100%;
padding: 2px;
margin-bottom: 1em;	
background-color: #ccccff;
}

.shadetabs{
padding: 3px 0 0 0;
margin-left: 0;
margin-top: 1px;
margin-bottom: 0;
list-style-type: none;
color: #000066;
text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.shadetabs li{
display: inline;
margin: 0;
color: #000066;
}

.shadetabs li a{
position: relative;
text-decoration:none;
z-index: 5;
font: bold verdana;
font-size: 14px;
color:#fff;
height: 40px;
padding: 10px 5px 0px 5px; 
background-color: #0066cc;
width: 190px;
border-left: 3px #000066 solid;
border-right: 3px #000066 solid;
border-top: 3px #000066 solid;
}

.shadetabs li a:visited{
color: #0066cc;
}

.shadetabs li a:hover{
color: #FFF;
padding: 10px 5px 0px 5px; 
background: #cc9900;
}

.shadetabs li a.selected{ /*selected main tab style */
color: #000066;
padding: 10px 5px 0px 5px; 
background: #ccccff;
border-width:3px 3px 0px 3px;
border-color: #000066;
border-style: ridge;
}


.tabcontent{
display: block;
}

@media print {
.tabcontent {
display:block !important;
}
}

