@media projection, screen {
    .tabs-hide {
        display: none;
    }
}

@media print {
    .tabs-nav {
        display: none;
    }
}

/* Skin */
.tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}
.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.tabs-nav li {
    float: left;
    margin: 0; padding: 0;
}
.tabs-nav a, .tabs-nav a span {
    display: block;
    padding: 0 0px;
	margin: 0 1px;
}
.tabs-nav a {
    position: relative;
    color: #706D6F;
    font-size: 12px;
    font-weight: bold;
	margin: 5px 5px 10px 0;
	padding: 10px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
}
.tabs-nav .tabs-selected a {
	background: #706D6F;
    color: white;
}
.tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active { /* @ Opera, we need to be explicit again here now... */
	background: #272526;
	color: white; 
    cursor: pointer;
    text-decoration: none;
}
.tabs-nav a span {

}
*>.tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}
.tabs-nav .tabs-selected a span {
/*    padding-top: 7px;*/
}
.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-container {
/*    background: white;*/
	margin: 5px 20px;
	padding: 0;
}

.tabs-selected a { background: #B98E28; }
