/*
 *

 * Feuille de styles des onglets.
 *
 * Fichier "tabs.css":
 *
 * Auteur               : Sylvain NAVARRE
 * Date de création     : 29/01/2007
 * Date de modification : 29/01/2007
 *

 *
 */
 
 /*
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: #000033 url(../img/fd_onglets.gif) repeat-x;
}

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

    /*z-index: 2;*/
    padding: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.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: #c0c0cc url(../img/fd_onglets_on.gif) repeat-x;
    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 {background:#c0c0cc; padding:2px;}
