/*
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: left;
    margin: 0 1px 0 0;
}
.anchors a {
    display: block;
    position: relative;
    bottom: -1px;
    border: 1px solid #bdbdbd;
    border-bottom: 0;
    z-index: 2;
    padding: 3px 9px 5px;
    color: #000;
    text-decoration: none;
	background: #cbcbca;
}
.anchors .on a , .tabs-selected a{
    padding-bottom: 5px;
    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, .tabs-selected a/*,
.fragment */{
    background: #e7ebec;    
}
.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 {
    padding: 10px;
	border: 1px solid #bdbdbd; 
	background: #e7ebec;
     position: relative; top: -1px;
     min-height: 180px;
}
*html .fragment {  height: 180px;}

