/* css  LD   louis@daubignard.com        */
/*                                                               */
/* start : 06/03/2008                          */
/* update :                                           */
/*                                                                */
/* file : style/style.css                         */
/* Declaration des variables standard
debut */

/*<La page web>*/
body
{
   margin                                 : auto;                                                 /* Pour centrer notre page */
   margin-top                         : 5px;                                                         /* Pour éviter de coller avec le haut de la fenêtre du navigateur. */
   margin-bottom                 : 20px;                                                    /* Idem pour le bas du navigateur */
   background-color                 : #000000;                                                 /*couleur du fond   */
   background-image                 : url("../images/fond.gif");           /*image de fond  */
   font-family                         : Arial, "Arial Black", "Times New Roman", Times, serif;
   color                                : #FFFFFF;
   font-size                         : 12px;
}

/*<En tete>*/
#en_tete
{
   height                                 : 20px;
   margin                                  : auto;
   background-image                 : url("../images/banniere.gif");
   background-repeat         : no-repeat;
   margin-bottom                 : 10px;
}

/*<contenu>*/
#contenu
{
   padding-top                        : 20px;
   margin                                : auto;
}

/*<Le pied de page >*/
#pied
{
   padding                                : 5px;
   text-align                        : left;
   color                                : #bbbbbb;
}

/*<Le tableau>*/
table
{
  border-collapse                : collapse;
  font-size                                : 15px;
}

/*<Le titre du tableau>*/
caption
{
   margin                                : auto;
   font-weight                        : bold;
   font-size                        : 15px;
}

/*<Le titre de colonne dans les tableau>*/
th
{
   font-size                        : 12px;
   text-align                        : Left;
}

/*<La cellule du tableau>*/
td
{
   font-size                        : 12px;
   height                                : 25px;
   text-align                        : Left;
   color                                : #FFFFFF;
}

/*<Le lien hypertext>*/
a
{
   color                                : #ffffff;
   text-decoration                : none;
}

/*<Le survol du lien hypertext>*/
a:hover
{
   color                                : #ff0000;
}

img
{
   border                                : none;
}

/*<Les Paragraphe rubriques>*/
p
{
  font-size                                : 1.4em;
  padding                                 : 5px;
}


/*<Le titre de niveau 4>*/
.nom
{
   font-size                        : 1.4em;
   color                                : #d3f314;
}

/*<Le champs text>*/
input
{
   background-color         : #666666;
   border                                : 1px solid #ffffff;
}

/*<Le texarea>*/
textarea
{
   background-color         : #666666;
   border                                : 1px solid #ffffff;
}

/*<Le fond contact>*/
.fond_contact
{
   background-color         : #1d1f1c;
}
/*<text du formulaire contact>*/
.gris
{
   font-size                        : 12px;
   color                                : #999999;
}

/*<Le fond exhibition>*/
.fond_exhibition
{
   background-color         : #999999;
}

/*<Le fond des photos>*/
.fond_photos
{
   background-image                 : url("../images/fond_photos.gif");
   background-repeat         : no-repeat;
   background-position  : center;
   width                                : 700px;
   height                                : 500px;
   padding-bottom                : 50px;
}

/*<Le menu déroulant>*/
select
{
   font-size                        : 1em;
   border                                : 1px outset #FFFFFF;
}

/* Definition des classes specifiques */

input.inimg
{
   border                                 : none;
}

.milieu
{
  padding                                : 25px;
}

.centre
{
  text-align                        : center;
}

fin