/* 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;
    position:relative;
	float:left;

}

.tabs-nav li {
    float: left;
    min-width: 84px; /* be nice to Opera */
}
 
.tabs-nav a {
	color:#00296f; 
	display:block; 
	padding:5px 12px;
	text-decoration:none;
	outline: none;
    text-align: center;
    white-space: nowrap; /* required in IE 6 */   
	margin: 0 1px 0 0;
}
.tabs-nav .tabs-selected a {
	background:#F66AAC;
    color: #fff;
}
.tabs-nav .tabs-selected a, .tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
    background:#F66AAC;
	color: #fff;
    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: #FCE0F0;
	color:#00296f;
}


.tabs-nav .tabs-selected a span {
   /* padding-top: 7px;*/
}
.tabs-nav .tabs-selected a span, .tabs-nav a:hover span, .tabs-nav a:focus span, .tabs-nav a:active span {
  /*  background-position: 0 -50px;*/
}
.tabs-nav a span, .tabs-nav .tabs-disabled a:hover span, .tabs-nav .tabs-disabled a:focus span, .tabs-nav .tabs-disabled a:active span {
   /* background-position: 0 0;*/
}
.tabs-nav .tabs-selected a:link, .tabs-nav .tabs-selected a:visited, .tabs-nav .tabs-disabled a:link, .tabs-nav .tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
.tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}
.tabs-nav .tabs-disabled {
    opacity: .4;
}
.tabs-container {
	width:530px;
	height:420px;
	overflow: auto;
    background: transparent; /* declare background color for container to avoid distorted fonts in IE while fading */
	clear: both;
}

.tabs-container .inner{
	padding:0 15px 15px 12px;
	
}

.tabs-loading em {
    padding: 0 0 0 20px;
    background: url(loading.gif) no-repeat 0 50%;
}


a.mt, a.mt:visited {
	text-decoration:none;
	margin: 0 4px 0 0; 
	padding: 5px 12px; 
	display: block; 
	background: #FCE0F0; 
	float: left; 
	cursor:pointer;
}

a.mt:hover { 
background: #F66AAC;
color:#fff;
}

a.anf {
display:block; height:8px;
}

a.anf span {
display:none;
}
