/* Caution! Ensure accessibility in print and other media types... */
@media projection, screen { /* Use class for showing/hiding tab content, so that visibility can be better controlled in different media types... */
    .tabs-hide {
        display: none;
    }
}

/* Hide useless elements in print layouts... */
@media print {
    .tabs-nav {
        display: none;
    }
}

/* Skin */
.tabs-nav {
    list-style: none; margin: 0; height:23px;;
}
.tabs-nav:after { display: block; clear: both; content: " "; }
.tabs-nav li a span { float:left; height:20px; width:101px; }
.tabs-nav li {float:left; margin-right:6px; height:23px; width:101px;}
 
.tabs-nav a {white-space: nowrap; padding-top:3px; background:url(../images/tab-bg.png) no-repeat 0 23px; height:20px; width:100%; }
.tabs-nav a {float:left; width:101px; z-index: 2; color: #5c5c5c; font:12px 'lucida sans unicode'; text-align: center; text-decoration: none; white-space: nowrap; /* required in IE 6 */  }
.tabs-nav .tabs-selected a { 
    color: #fff;
} 
.tabs-nav .tabs-selected a, .tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
	background-position: 0 0;
   
}
.tabs-nav a, .tabs-nav .tabs-disabled a:hover, .tabs-nav .tabs-disabled a:focus, .tabs-nav .tabs-disabled a:active {
       background-position: 0 -23px; height:20px; 
	   
}

*>.tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: 20px;
}

.tabs-nav .tabs-selected a:link, .tabs-nav .tabs-selected a:visited, .tabs-nav .tabs-disabled a:link, .tabs-nav .tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
.tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
	color:#fff;
}
.tabs-nav .tabs-disabled {
    opacity: .4; 
}

