/* 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 {
	padding-bottom: 0.5px;
	border-bottom: 1px solid #5D89B6;
    list-style: none;
    margin: 0 !important;
}

.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}

.tabs-nav li {
    float: left;
    margin: 0 5px 0 0;
    min-width: 84px; /* be nice to Opera */
}

.tabs-nav a, .tabs-nav a {
    display: block;
    background: #EDF2F6;
    border: none !important;
    -moz-border-radius: 6px 6px 0 0;
    -webkit-border-top-left-radius: 6px;
    -webkit-border-top-right-radius: 6px;
}

.tabs-nav a {
	position: relative;
	top: 1px;
	height: 26px;
	z-index: 2;
	color: #5D89B6 !important;
	font-size: 12px;
	line-height: 21px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap; /* required in IE 6 */    
}

.tabs-nav a { padding: 0 10px; }

.tabs-nav a {
    min-width: 64px;
    height: 25px;
    min-height: 18px;
    padding-top: 6px;
    padding-right: 10px;
}

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

.tabs-nav .tabs-selected a {
	display: block;
  background: url('../images/tab-button.jpg') repeat-x;
  color: #DDEDFB !important;
  height: 26px;
}

.tabs-nav .tabs-disabled {
    opacity: .4;
}

.tabs-container {
    padding: 1em 8px;
    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
}

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