/* 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 {
border-bottom: 1px solid #7F8E87;
padding-bottom:3px;
margin-bottom:15px;
}
.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
display: block;
clear: both;
content: " ";
}
.tabs-nav li {
display:inline;
padding:0px 15px 0px 0px;
}
.tabs-nav a {
font-size: 1em;
font-weight: bold;
text-align: center;
text-decoration: none;   
}
.tabs-nav .tabs-selected a {
color: #2b2b2b;
text-transform:uppercase;
border-bottom:3px solid #999;
}
.tabs-nav .tabs-selected a, .tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
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 {
}
.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: default;
text-decoration:none;
}
.tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active { /* @ Opera, we need to be explicit again here now... */
cursor: pointer;
}
.tabs-container {
background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
clear:both;
}

.contentTabs dl, .contentTabs ul {
margin-bottom:15px;
}
.contentTabs dt {
color:#C16913;
font-size:1.1em;
}

.contentTabs li, .contentTabs dt {
line-height:18px;
}