/*Pour toutes les pages du site
/////////////////////////////////////////////////////////////////////////////////////////////////////////*/

body
{
 
   margin: auto;  /*a ne pas changer, c'est pour une meilleur disposition */
   background-color: white;
 
}
#news
{
  width: 520;
  height: 350;
  overflow: auto;
}
#page  /* Pour toutes les pages dans leur contenu (donc sans le menu) */
{
  background-color: white;
  background-image: url("images/design/fond.png");
  background-repeat: repeat-y;
  background-position: center;
  font-size: 80%; /* taille du texte */
  padding: 0px;
  padding-top: 0px; /* marge du haut, sous la baniere*/
  
}
table /* Pour tous les tableau */
{ 

border: none; /* pas de bordure */

}

a  /* les liens */
{ 
   color: #b9b9b9; /*leur couleur */
   font-weight: bold; /* ils sont en gras */
   text-decoration: none; /* ils ne sont pas soulignés */
}

a:hover /* les liens lorsque l'on a le curseur dessus */
{
  color: #000000; 
}

/*//////////////////////////////////////////////////////////////////////*/
/* Pour la bannière
//////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
html *
{
  margin: 0;
  padding: 0;
}

/*//////////////////////////////////////////////////////////////////////*/
/* Pour les images
//////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

img /*image*/
{
border: none;
}

/*--------- Lightbox -----------*/
#lightbox{
    background-color:#eee;
    padding: 10px;
    border-bottom: 2px solid #666;
    border-right: 2px solid #666;
}

#lightboxDetails{
    font-size: 0.9em;
    color: #555;
    padding-top: 0.5em;
}

#closeButton{ top: 5px; right: 5px; }

#lightboxCaption{ float: left; }

#keyboardMsg{ float: right; }

#lightbox img{ border: none; }

#overlay img{ border: none; }

#overlay{ background-image: url(/images/overlay.png); }

* html #overlay{ /*Hack IE */
    background-color: #000;
    background-color: transparent;
    background-image: url(blank.gif);
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="/images/overlay.png", sizingMethod="scale");
}
/*-------- fin lightbox -------*/