/***************************************************************************
 *  Copyright (C) 2003-2018 Polytechnique.org                              *
 *  http://opensource.polytechnique.org/                                   *
 *                                                                         *
 *  This program is free software; you can redistribute it and/or modify   *
 *  it under the terms of the GNU General Public License as published by   *
 *  the Free Software Foundation; either version 2 of the License, or      *
 *  (at your option) any later version.                                    *
 *                                                                         *
 *  This program is distributed in the hope that it will be useful,        *
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of         *
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
 *  GNU General Public License for more details.                           *
 *                                                                         *
 *  You should have received a copy of the GNU General Public License      *
 *  along with this program; if not, write to the Free Software            *
 *  Foundation, Inc.,                                                      *
 *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                *
 ***************************************************************************/

/*******************************************************************************
    1   Styles par défauts
        [ balises sans attributs ou classes sans contexte ]
*******************************************************************************/

body {
    font-family: "Arial", sans-serif;
    color: #000000;
    background: #ffffff;
}

a:link, a:visited, a:active, a:hover { color: #003399; background: none; }
img   { vertical-align: middle; }
a img { border: 0px; }
td    { vertical-align: top; }
li    { padding-left: 3px; padding-right: 3px; text-align: justify; }
hr    { width: 90%; text-align: center }
dt    { font-weight: bold; }

fieldset {
    border: 1px #336699 solid;
    background: #eeeeee;
    color: inherit;

    margin: 1em 0 1em 0;
}

legend {
    border: 1px #336699 solid;
    background: #f4d09c;
    color: inherit;

    padding-left: 4px;
    padding-right: 4px;
}

.center { text-align: center; }
.right  { text-align: right; }
.middle { vertical-align: middle; }
.smaller { font-size: smaller; font-style: italic; }
.spacer { clear: both; }

.float2 { float: left; width: 49%; }
.float3 { float: left; width: 33%; }

/*******************************************************************************
    2   Styles <p>, <div>, <span>, <li>
        [ styles classiques d'effets de texte ]
*******************************************************************************/

p {
    margin-bottom: 0.5em;
    text-align: justify;
}

.errors {
    margin-top: 10px;
    border: 1px solid #f00;
    background-color: #fcc;
    width: 98%;
}

.warnings {
    margin-top: 10px;
    border: 1px solid #ed0;
    background-color: #ffc;
    width: 98%;
}

.success {
    margin-top: 10px;
    border: 1px solid #0d2;
    background-color: #cfd;
    width: 98%;
}

.erreur {
    font-weight: bold;
    color: #ff0000;
    background: inherit;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.erreur a:link, .erreur a:visited, .erreur a:active, .erreur a:hover {
    color: #ff3333;
    background: inherit;
}

.hinted {
    border-bottom: 1px dashed black;
}

input.error, textarea.error {
    background-color: #faa;
}

input.valid, textarea.valid {
    background-color: #afa;
}

input.warning, textarea.warning {
    background-color: #fda;
}

h1 {
    color: #555555;
    background: url('../images/skins/default_titre.gif');
    background-repeat: no-repeat;

    text-indent: 0.2em;
    text-align: left;
    font-size: 120%;
    font-family: "helvetica", sans-serif;
    font-weight: bolder;

    margin: 1em 0em 1em 0em;
    padding: 0em 0em 0em 0.5em;
}

h2 {
    padding: 0.5em 0em 0em 0em;
    margin: 0em;
    font-size: 100%;
    font-weight: bold;
}

h3 {
    margin: 0em;
    font-weight: bold;
    padding: 0.25em;
    font-size: 100%;
}

p.explication, div.explication {
    font-style: italic;
    padding: 0em 1ex 1ex 1ex;
}

li.spaced {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    text-align: justify;
}

.nowrap {
    white-space: nowrap;
}

/*******************************************************************************
    3   Tableaux bicolores + classes utiles
        [ Tableaux à lignes alternées, en taille normale, ou tiny ]
*******************************************************************************/

table.bicol {
    color: inherit;
    background: #eeeeee;
    border: 1px solid #336699;
    border-collapse: collapse;
    width: 100%;
    margin-left: 0;
}
table.tinybicol {
    color: inherit;
    background: #eeeeee;
    border: 1px solid #336699;
    border-collapse: collapse;
    width: 70%;
    margin-left: 15%;
}

table.tinybicol tr.impair, table.bicol tr.impair {}
table.tinybicol tr.pair, table.bicol tr.pair {
    color: inherit;
    background: #eeeed0;
}

table.tinybicol th, table.bicol th {
    color: #ffffff;
    background: #336699;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
}

table.tinybicol th a:link, table.tinybicol th a:visited,
table.tinybicol th a:active, table.tinybicol th a:hover,
table.bicol th a:link, table.bicol th a:visited,
table.bicol th a:active, table.bicol th a:hover {
    color: #9999FF;
    background: inherit;
}

table.tinybicol td, table.bicol td {
    color: #000000;
    background: inherit;
}

table.tinybicol td.error, table.bicol td.error {
    background: #faa;
}

table.tinybicol td.warning, table.bicol td.warning {
    background: #fda;
}

table.tinybicol td.valid, table.bicol td.valid {
    background: #afa;
}

table.tinybicol td, table.bicol td, table.tinybicol tr, table.bicol tr { padding: 4px; }

td.half { width: 50%; padding: 4px; }
td.titre {
    color: #000000;
    background: inherit;
    font-weight: bold;
}
td.action {
    white-space: nowrap;
    text-align: right;
    font-weight: bold;
    vertical-align: middle;
}
td.action a { padding: 0px 2px 0px 2px; }

div.titre {
    color: #000000;
    background: inherit;
    font-weight: bold;
}

span.titre {
    color: #000000;
    background: inherit;
    font-weight: bold;
}

/*******************************************************************************
    4   Tableau de choix de skins
        [ Styles pour les tableaux de types de ceux des skins ]
*******************************************************************************/

#skin {
    border-bottom: 1px solid #003399;
    border-top: 1px solid #003399;
    width: 98%;
    margin-left: 1%;
}
#skin td {
    border-bottom: 2px solid #003399;
    border-top: 1px solid #003499;
    vertical-align: middle;
}
#skin td.skigauche {
    background: #eeeeee;
    color: inherit;
    vertical-align: middle;
}
#skin td.skimilieu {
    padding-left: 1em;
    width: 100%;
}
#skin td.skidroite { padding: 0; }

/*******************************************************************************
    5   Contacts
        [ Styles liés à l'affichage de contacts ]
*******************************************************************************/

div.contact-list {
    width: 98%;
    margin-left: 5px;
}

div.contact-list div.contact {
    width: 100%;
    text-align: left;
    border-top: 1px solid #003399;
    background: #F4D09C;
    color: inherit;
}

div.contact-list div.grayed {
   color: #444444;
   font-style: italic;
   background: #eee;
}

.contact .photo {
    float: left;
}

.contact .photo img {
    width: 40px;
    margin-right: 4px;
}

div.contact div.identity {
    float: left;
    width: 85%;
}

div.contact div.nom {
    font-weight: bold;
}

div.contact div.bits {
    text-align: right;
    float: right;
    width: 14%;
}

div.contact div.long {
    width: 100%;
    clear: both;
    background: white;
    color: inherit;
    padding-top: 1px;
    padding-bottom: 1px;
}

div.long table { width: 100%; }
div.long td.lt { width: 18%; font-style: italic; }
div.long td.rt { width: 82%; }

/*******************************************************************************
    6   Profil
        [ onglets des profils ]
*******************************************************************************/

.wizard {
    margin-top: -4px;
    margin-left: -16px;
}

.wizard .wiz_header {
    height: 32px;
    width: 100%;
    background: url('../images/skins/wiz_background.png') top right repeat-x;
    margin-bottom: 1em;
}

.wizard .wiz_header .wiz_tab {
    background: url('../images/skins/wiz_normal.png') #aaa top left repeat-x;
    height: 100%;
    text-align: center;
    font-size: 75%;
    border-right: 1px solid #888;
}

.wizard .wiz_header .wiz_tab:hover {
    background: url('../images/skins/wiz_hover.png') #777 top left repeat-x;
    color: #fff;
}

.wizard .wiz_header .active, .wizard .wiz_header .active:hover {
    background: url('../images/skins/wiz_active.png') #444 top left repeat-x;
    color: #fff;
}

.wizard .wiz_header a {
    color: #000;
    text-decoration: none;
}

.wizard .wiz_header a.active {
    color: #fff;
}

.wizard .wiz_content {
    margin-left: 16px;
}

.flags .texte {
    font-size: smaller;
    font-weight: bold;
    margin-left: -6px;
    padding: 0 12px 0 0;
}
.flags img {
    padding: 0 6px 0 0;
}

.marker_label {
    border: 1px solid black;
    background-color: white;
    white-space: nowrap;
}

.marker_label a {
    color: black;
}

/*******************************************************************************
    7   fiche.php & fiche_referent.php
        [ cas de la fiche ]
*******************************************************************************/

#fiche {
    width: 760px;
    font-size: 100%;
    vertical-align: top;

    border: 1px solid #369;
}

#fiche em { color: purple; }

#fiche h2 {
    color: #369;
    padding: 0px 4px;
    margin: 0.5em 0em;
    font-weight: bold;
    border-bottom: 1px dotted #369;
}

#fiche .part {
    float: left;
    clear: left;
    width: 70%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}

#fiche #photo {
    float: right;
    width: 30%;
    padding-left: 0;
    margin-left: 0;
    clear: right;
}

#fiche #photo img {
    width: 100%;
}

#fiche_identite {
    padding: 5px;
}

#fiche_identite div.civilite {
    text-align: center;
    font-weight: bold;
    width: 80%;
    float: left;
}

#fiche_identite div.maj {
    float: left;
    width: 20%;
    font-size: 75%;
    text-align: right;
    clear: right;
    padding-bottom: 1ex;
}

#fiche_identite div.contact {
    clear: both;
    margin: 1em;
    padding: 1ex;
    background: #fff;
    border: 1px dotted #69c;
}
#fiche_identite div.email {
    clear: left;
    float: left;
}
#fiche_identite div.mob {
    float: right;
    clear: right;
    text-align: right;
}

#fiche_identite div.formation {
    margin: 0em 1em;
    clear: both;
}

div.adresse {
    min-width: 30%;
    padding: 0px;
    margin: 0px 2% 1ex 1%;
}

div.adresse strong {
    font-size: 90%;
}

div.adresse ul {
    margin-top: 0px;
    margin-bottom: 0px;
    list-style-type: none;
    padding-left: 0px;
}

#fiche .medal_frame {
    float: left;
    width: 33%;
}

#fiche .medal_frame img {
    float: left;
    padding: 0ex 1ex;
}

/* only for fiche_referent.php*/

#fiche_referent .part {
    width: 100%;
}

#fiche_referent #fiche_identite div.civilite {
    width: 100%;
}

#fiche_referent{
    width: 100%;
}

#fiche_referent div.rubrique_referent{
    float: left;
    width: 31%;
    padding: 0px;
    margin: 0px 1% 1ex 1%;
    text-align: justify;
}

#fiche_referent em{color: purple;}
#fiche_referent ul { margin: 0px; padding: 0px 1em; }
#fiche_referent li { font-weight: bold; margin: 0px; padding: 0px; text-align: left; }

/*******************************************************************************
    A   SKIN
        [ choix de classes faites par le skinneur
*******************************************************************************/

#dev {
    width: auto;
    text-align: center;
    padding: 1px;

    color: #003399;
    background: #e0ffff;

    font-family: 'Bauhaus Md BT','Bitstream Vera',sans-serif;
    font-size: 10pt;
    font-weight: bold;
}

#dev a { text-decoration: underline; }
#dev a:hover { color: #003399; background: #c0e0e0; }

.backtrace div.hide       { display: none; }
.backtrace:hover div.hide { display: block }

#suid {
    color: red;
    background: #ffc0cb;
    width: auto;
    font-weight: bold;
    text-align: center;
}
#suid a {
    color: red;
    background: inherit;
    text-decoration: none;
    display: block;
}
#suid:hover {
    color: red;
    background: #ffffcb;
}
#suid a:hover {
    color: #ff7000;
    background: inherit;
}

#body {
    width: 740px;
    margin-left: auto;
    margin-right: auto;
}

#body-logo {
    width: 140px;
    border-right: 1px solid gray;
    text-align: center;
    font-family: "MS Sans Serif", sans-serif;
    padding-top: 4px;
    border-bottom: 1px solid gray;
}

#body-top {
    border-bottom: 1px solid gray;
    text-align: center;
    font-size: 95%;
    padding: 4px;
    padding-bottom: 16px;
    font-family: "Arial", sans-serif;
}

#body-top table { width: 100%; padding: 4px; }
#body-top .date-heure { text-align: left; }
#body-top .inscrits { text-align: right; }

#body-bottom {
    border-top: 1px solid gray;
    text-align: center;
    padding: 4px;
    font-size: 75%;
    font-family: "MS Sans Serif", sans-serif;
}

#body-menu {
    width: 140px;
    border-right: 1px solid gray;
    text-align: center;
    font-family: "MS Sans Serif", sans-serif;
    font-size: 75%;
    font-weight: bold;
    white-space: nowrap;
}

#body-menu .menu_item {
    padding-left: 4px;
    padding: 2px;
    text-align: left;
}

#body-menu .menu_item a {
		text-decoration:none;
}

#body-menu .menu_title {
    color: gray;
    background: #eeeeee;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
    padding: 1px;
    margin-top: 4px;
    text-align: center;
}

#content {
    width: 600px;
    padding: 4px 0px 4px 16px;
    font-size: 95%;
    vertical-align: top;
}

.quick_search {
    color: gray;
    text-align: right;
}

div#content {
    padding: 1em;
    margin: 0em;
}

#content input {
    font-size: 95%;
}

#menu-evts {
    font-size: 85%;
}

/* vim: set et ts=4 sts=4 sw=4: */
