/*

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... */
    .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;
	padding: 0 0 1px;
	background-image: url(../public/Image/www/tabs/tabs-border-bottom.gif);
	background-repeat: repeat-x;
	background-position: left top;	 
}
.anchors:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.anchors li {
    float: left;
	display: inline;
    margin: 0 1px 0 0;
}
.anchors a {
	display: block;
	height: 30px; 
	color: #000;
	text-decoration: none;
	background-image: url(../public/Image/www/tabs/active-left.gif);
	background-repeat: no-repeat;
	
}
.anchors a strong{
	background-image: url(../public/Image/www/tabs/active-right.gif);
	background-repeat: no-repeat;
	background-position: right top;
	display: block;
	padding: 5px 12px 2px 12px;
	height: 27px;
	float: left;
	 
}

.anchors .tabs-selected a {
background-image: url(../public/Image/www/tabs/noactive-left.gif);
}
.anchors .tabs-selected a strong{
background-image: url(../public/Image/www/tabs/noactive-right.gif);
	}
.anchors .tabs-selected a {
     
     
}
.anchors .tabs-selected a, .anchors a:hover, .anchors a:focus, .anchors a:active,
.fragment {
    
}
.anchors .tabs-selected a:link, .anchors .tabs-selected a:visited,
.anchors .tabs-disabled a:link, .anchors .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 .tabs-disabled {
    opacity: .4;
}
.anchors .tabs-disabled a:hover, .anchors .tabs-disabled a:focus, .anchors .tabs-disabled a:active {
    background: transparent;
}
.fragment {
    padding: 0 10px;
}
.anchors .tabs-selected .tabs-loading {
    padding-left: 25px;
    background-image: url(loading.gif);
    background-position: 4px 50%;
    background-repeat: no-repeat;
}