/* 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 {
        display: none;
    }
}

/* Skin */
.tabs {
    list-style: none;
    margin: 0;
    padding: 0;
}
.tabs:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.tab-menu li {
    float: left;
    margin: 0;
	padding:0;
    width:auto !important;
}
.tabs a, .tabs a span {
	display:block;
    padding: 0 10px;    
}
.tabs a {
    position: relative;
    top: 1px;	
    z-index: 2;
    padding-left: 0;
    color: #888;
    font-size: 12px;    
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */ 
	border-top:1px solid #eaeaea;
	border-right:1px solid #eaeaea;
	border-bottom:1px solid #eaeaea;
	border-left:0;
	background:#fff;
	width:auto !important;
}
.tabs li.borda-left a {border-left:1px solid #eaeaea;}

li a.selected  {
    color: #888;
	font-weight:bold;
	border-top:1px solid #caced4;
	border-right:1px solid #caced4;
	border-bottom:1px solid #fff;
	border-left:0;
}

.selected , .tabs a:hover, .tabs a:focus, .tabs a:active {
    background-position: 100% -150px;
    outline: 0; /* prevent dotted border in Firefox */
}
.tabs a:hover{
	text-decoration:underline;
}

.tabs a span {
    
    height: 18px; /* IE 6 treats height as min-height */
    min-height: 18px;
    padding-top: 6px;
    padding-right: 0;
}

.selected  {
    padding-top: 7px;
}
.selected , .tabs a:hover span, .tabs a:focus span, .tabs a:active span {
    background-position: 0 -50px;
}

.selected { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
.tabs a:hover, .tabs a:focus, .tabs a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}


