@charset "utf-8";
/* CSS Document */

.shadetabs {
border-bottom: 1px solid #333;
padding: 3px 0 5px 20px;
font-weight: normal;
list-style-type: none;
margin: 0;
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;
position: relative;
z-index: 1;
padding: 5px 10px;
margin-right: 3px;
border: 1px solid #333;
color: #0099cc;
display: inline;
-moz-border-radius-topleft: 3px;
-moz-border-radius-topright: 3px;
-webkit-border-top-left-radius: 3px;
-webkit-border-top-right-radius: 3px;
}

.shadetabs li a:visited {
color: #0099cc;
}

.shadetabs li a:hover {
color: #eee;
}

.shadetabs li a.selected { /*selected main tab style */
position: relative;
}

.shadetabs li a.selected { /*selected main tab style */
background: transparent url(../graphics/login/sidebar_tab3.jpg) repeat-x scroll left top;
border-bottom-color: #111;
color: #eee;
}

.shadetabs li a.selected:hover { /*selected main tab style */
text-decoration: none;
}

.tabcontent{
display:none;
}

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

