/**
 * onglets tableau references d un article-catalogue
 /*
 
IMPORTANT:
Essential styles to ensure accessibility
*/
@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 { /* retain accessibility by overriding inline style used by animations... */
    .fragment {
        display: block !important;
        height: auto !important;
        opacity: 1 !important;
    }
}

/*
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;
}
.anchors:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.anchors li {
    float: left;
    margin: 0;
    background: #f37405;
	border-right:1px solid #b20005;
	border-left:1px solid #b20005;
}
.anchors li+ li{ border-left:0; }

.anchors a {
    display: block;
    position: relative;

    z-index: 2;
    padding: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-top:1px solid #b20005;
}

.anchors .on a {
    padding-bottom: 6px;
    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 {  
    background: #fff8b5; /* url(../img/fd_onglets_on.gif) repeat-x */
    color: #220005;
}

.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 {background:#c0c0cc; padding:2px;}
