/* 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;
    }
}
@media projection, screen {
.tabs-nav {
	padding: 3px 0;
	text-align: center;
	font: bold 1em Verdana, sans-serif;
}
.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.tabs-nav li {
	list-style: none;
	display: inline;
	line-height: 120%;
}
/*.tabs-nav a, .tabs-nav a span {
    display: block;
    padding: 0 10px;
}*/
.tabs-nav a {
	padding: 4px 9px;
	background: #F5E5A9;
	text-decoration: none;
	color: #410;
	text-align: center;
	position:relative;  
}
.tabs-nav .tabs-selected a {
	background:#fff;
	border-bottom: 1px solid #fff;
}
.tabs-nav .tabs-selected a, .tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
	background:#fff;
	border-bottom: 1px solid #fff;
}
.tabs-nav a, .tabs-nav .tabs-disabled a:hover, .tabs-nav .tabs-disabled a:focus, .tabs-nav .tabs-disabled a:active {

}
.tabs-nav a span {
    width: 64px; /* IE 6 treats width as min-width */
    min-width: 64px;
    height: 18px; /* IE 6 treats height as min-height */
    min-height: 18px;
    padding-top: 6px;
    padding-right: 0;
}
*>.tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}
.tabs-nav .tabs-selected a span {
    padding-top: 7px;
}
.tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active { 
    cursor: pointer;
}
.tabs-nav .tabs-disabled {
}
.tabs-container {
	padding: 30px;
	border:1px solid #BBBBBB;
    background: #fff;
}
.tabs-loading em {
    padding: 0 0 0 20px;
    background: url(loading.gif) no-repeat 0 50%;
}
}