/* 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;
    margin: 0;
    padding: 0 0 0 12px;
    margin-top: 28px;
    background: url(../img/backgrounds/announcement-tab-background.gif) bottom no-repeat;
}

.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}

.tabs-nav li {
    float: left;
    margin: 0 4px 0 0;
    min-width: 20px; /* be nice to Opera */
}

.tabs-nav a {
	display: block;
    padding: 0 8px 0 8px;
    color: #fff;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */
    background: url(../img/backgrounds/announcement-tab.gif) repeat-x #827d65;
}

.tabs-nav .tabs-selected a {
    color: #000;
    border: 1px #c9c4b0 solid;
    border-bottom: 0;
    background-image: none;
    background-color: #fafaf0;
}

.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 {
    background: #fafaf0;
}

.tabs-loading em {
    padding: 0 0 0 20px;
    background: url(loading.gif) no-repeat 0 50%;
}

