/*
IMPORTANT:
Use classes for showing/hiding tab content, so that visibility can be controlled in different media types...
*/
@media projection, screen {
    .tabs-hide {
        display: none;
    }
}

/*
TAB STYLES:
Some more styles, not important for making tabs work, just for the look of it...
*/
.anchors {
    list-style: none;
    margin: 0;
    padding: 0 0 1px;
}
.anchors:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}


.anchors li {
    float: right;
    margin: 0 1px 0 0;

}
.anchors a {
    display: block;
    position: relative;
    top: 1px;
    border: 1px solid #eaeaea;
    border-bottom: 0;
    z-index: 2;
    padding: 2px 9px 1px;
    color: #000;
	color: #74A8F5;
    text-decoration: none;
	font-size: 10pt;
	border-color: #fff;
}
.anchors .on a {
    padding-bottom: 2px;
    border-color: #eaeaea;	
    color: #9a9a9a;		
	background-color: #fff;	
    /*font-weight: bold;*/
}
.anchors a:focus, .anchors a:active {
    outline: none; /* @ Firefox 1.5, remove ugly dotted border */
}
.anchors .on a, .anchors a:hover, .anchors a:focus, .anchors a:active,
.fragment {
    /*background: #eaeaea;    */
}


.anchors a:hover{
    background: #74A8F5;
	color: white;
	text-decoration: none;
}

.anchors .on a:hover {
    /*background: #eaeaea; 
	color: #000;
	*/
	background-color: #fff;
	color: #000;
}


.anchors .on a:link, .anchors .on a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
.anchors a:hover, .anchors a:focus, .anchors a:active {
    cursor: pointer;
}
.fragment {
	border-top: solid 1px #e8e8e8;
	margin-top: -1px;
	margin-bottom: 30px;
}
