/*****************************************************************************
 *
 * ALFOS.EU
 * Feuille de styles des onglets.
 *
 * Fichier "tabs.css":
 *
 * Auteur               : Sylvain NAVARRE
 * Date de création     : 29/01/2007
 * Date de modification : 29/01/2007
 *
 * Copyright : (c) 2007 ALFOS SARL. Tous droits réservés.
 *
 *****************************************************************************/
 
 /*
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 3px 0 0;
    background:  url(../img/fd_onglets.gif) repeat-x bottom;
}
.anchors a {
    display: block;
    position: relative;
    top: 1px;
    border: 1px solid #ddd;
    border-bottom: 0;
    z-index: 2;
    padding: 6px 1.4em;
    color: #777;
    font-size: 1.6em;
    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:  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 {
    padding: 2em;
    border: 1px solid #ddd;
    background:  url(../img/fd_tab.jpg) no-repeat bottom left;
}