/* Une partie de ce fichier est issu des tutoriels css.alsacreations.com */
/**************************************
 GENERAL
**************************************/
@page {
 size: portrait;
 margin: 2cm; 
}

body {
 font: normal 10pt "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, Arial, Helvetica, sans-serif;
 background-color: white;
}

ul li {
 list-style-type: disc;
 background-image: none;
 padding-left: 0.2em;
 margin-left: 0.5em;
}

ol li { /* pour IE, c'est obliger de redéfinir. En effet, ne reconnait pas la syntaxe enfant > */
 list-style-type: decimal;
 background: white;
 padding-left: 0;
}

/*a:after { content: " (" attr(href) ") "; }*/

/**************************************
 STRUCTURE
**************************************/
#page {
 position: static; /* Pas de positionnement absolu pour l'impression */
 text-align: center;
 width: 485pt; /* pour impression sur IE sinon 510pt */
 margin: 0;
 background-color: white;
 
 line-height: 12pt;
}


#entete {
 background: white;
 margin: 0;
 padding-top: 2pt;
 color: #339900;
 padding-top: 0;
}

#recherche{
 display: none;
}

#centre {
 margin: 0;
 padding: 0;
 background: white;
 text-align: left;
}

#gauche {
 display: none;
}

#gaucheBas {
 display: none;
}

#piedDePage {
 border-top: 1px solid #A7C1CD;
 padding-top: 2pt;
}

.print {
 line-height: 20pt;
}

.print h1 {
 font-size: 18pt;
 font-weight: bold;
}

/**************************************
 MENU PRINCIPAL
**************************************/
ul#menuListe li
{
 list-style-type: none;
}

/**************************************
 MENU GAUCHE
**************************************/
ul#menuGauche {
 display: none;
}

/**************************************
 MENU SECONDAIRE (en bas)
**************************************/
#menuSecondaire {
 display: none;
}

/**************************************
 FICHE
**************************************/
.fiche h1 {
 border-bottom: 1px solid #A7C1CD;
 background: white;
 color: #339900;
 font-weight: bold;
 padding: 0.2em 0.4em 0.2em 0;
}

.fiche samp {
 display: block;
 background-color: #F2F3F5;
}