/* Tabs */
ul#tab-list {
	list-style: none;
	border-bottom: 1px solid #B2B2B2;
	height: 16px !important;
	height: 12px;
	margin-top: 14px;
	margin-bottom: 10px;
}

html* ul#tab-list {
	height: 15px;
}

	ul#tab-list li {
		display: inline;
	}
	
		ul#tab-list li a {
			position: relative;
			top: 0px !important;
			top: 2px;
			display: block;
			float: left;
			height: 21px;
			overflow: hidden;
			color: #081424;
			font-size: .8em;
		}
	
		ul#tab-list li.tabs-selected a {
			color: #2D7897;
		}
		
			ul#tab-list a span {
				display: block;
			}
					
/* 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;
    }
}

/* IE */
.tabs-nav { /* auto clear */
    display: inline-block;
}
.tabs-nav .tabs-disabled a {
    filter: alpha(opacity=40);
}
 /* END IE */

/* Skin */
.tabs-nav {
}

.tabs-nav a {
    display: block;
    position: relative;
    z-index: 2;
	text-decoration: none;
	font-weight: bold;
	margin-right: 8px;
}

.tabs-nav a:hover {
}

.tabs-nav a span {
	padding: 0px 8px 0px 0;
	border-right: 1px solid #B2B2B2;
	line-height: 1;
}

.tabs-nav .tabs-selected a {
}

.tabs-nav .tabs-selected a:hover {
	color: #000;
}

.tabs-nav .tabs-selected a span {
}

.tabs-nav .tabs-selected a, .tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
    outline: 0; /* @ Firefox, switch off dotted border */
}

.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... */
    
}

.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 {
	clear: both;
    background: #FFF; /* declare background color for container to avoid distorted fonts in IE while fading */
}
