/* 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;
}
.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.tabs-nav li {
    float: left;
}
.tabs-nav a, .tabs-nav a span {
    display: block;
}
.tabs-nav a {
    position: relative;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
}
.tabs-nav .tabs-selected a {
    color: #fff;
}

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

.tabs-nav a span:hover, .tabs-nav a span:focus, .tabs-nav a span:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
	color:#fff;
}
.tabs-nav .tabs-disabled {
    opacity: .4;
}
#container {
	min-height:350px;
}
#container ul {
	margin-left:400px;
	width:450px;
	background:#145266;
}
#container li a {
	color:#8faab3;
	padding:8px 23px 7px 23px;
	font-size:14px;
}
.tabs-container {
    border-top: 1px solid #fff;
    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
}

#container a img {
	margin-right:10px;	
}

#container a img.last {
	margin-right:0px;	
}