/* 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;
    }
}

.tabs-container {
    padding: 0;
}
.tabs_nav{
	position: absolute;
	top: 20px;
	right: 20px;
    width: auto;	
    height: 20px;
	border-right: 1px solid #000;
		
}
ul.tabs_nav{
    padding: 0;
    margin: 0;
	display: block;
}
ul.tabs_nav li{
    display: inline;
    list-style-type: none;
	vertical-align: middle;
    padding:0 10px;
    margin: 0;
    width: auto;
 	height: 20px;
	text-align: right;
	float: left;
	text-transform: uppercase;
	border-left: 1px solid #000;
}
