/* 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;
	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 0 0 5px;

	
}
.tabs-nav a, .tabs-nav a span {
    display: block;
    padding: 0;
}
.tabs-nav a {
    position: relative;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
	margin:0;
	padding:0 10px 0 10px;
    white-space: nowrap; /* required in IE 6 */ 
	-webkit-border-radius: 5px 5px 0 0;
 -moz-border-radius: 5px 5px 0 0;    
}
.tabs-nav .tabs-selected a {
    color: #000;
}
.tabs-nav .tabs-selected a, .tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
  background:#68d5f9;
    outline: 0; /* prevent dotted border in Firefox */
}
.tabs-nav a, .tabs-nav .tabs-disabled a:hover, .tabs-nav .tabs-disabled a:focus, .tabs-nav .tabs-disabled a:active {
   
    background: #11b0e3;
}
.tabs-nav a span {
    padding: 5px 0 5px 0;
}
*>.tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}

.tabs-container {
    padding: 5px;
}

