/*

Tabs - important styles to ensure accessibility in print

*/
@media projection, screen { /* Use class for showing/hiding tab content, so that visibility can be better controlled in different media types... */
    .ui-tabs-hide {
        display: none;
    }
}
@media print {
    .anchors {
        display: none;
    }
}

/*

Tabs - not important for accessibility, just for the look of it...

*/
.anchors {
    list-style: none;
    margin: 0 0 10px 0;
    padding: 0 0 0 35px;
	background:url("../gfx/common/main-tab-bg.gif");
	font-size:1.1em;
	width:509px;

}
.anchors:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.anchors li {
    float: left;
    margin: 0 1px 0 0;
	padding-right:5px;
}
.anchors a {
    display: block;
    position: relative;
    top: 0px;
    border: 1px solid #d3d3d3;
    border-bottom: 0;
    z-index: 2;
    padding: 9px 5px;
    color: #999;
    text-decoration: none;
	white-space:nowrap;

}
.anchors .ui-tabs-selected a {
    font-weight: bold;
}
.anchors .ui-tabs-selected a, .anchors a:hover, .anchors a:focus, .anchors a:active, .fragment {
    background: url("../gfx/common/tabs-bg-on.gif") top right;
	color:#7c1f1f;

}
.anchors .ui-tabs-selected a:link, .anchors .ui-tabs-selected a:visited,
.anchors .ui-tabs-disabled a:link, .anchors .ui-tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
.anchors a:hover, .anchors a:focus, .anchors a:active {
    cursor: pointer;
}
.anchors .ui-tabs-disabled {
    opacity: .4;
}
.anchors .ui-tabs-disabled a:hover, .anchors .ui-tabs-disabled a:focus, .anchors .ui-tabs-disabled a:active {
    background: transparent;
}
.fragment {
    padding: 0 10px;
}
.anchors .ui-tabs-selected .ui-tabs-loading {
    padding-left: 25px;
    background-image: url(loading.gif);
    background-position: 4px 50%;
    background-repeat: no-repeat;
}