/* Start of CMSMS style sheet 'Joël Montigny - Accueil' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   /*text-align: left;*/
   font-family: Georgia, "Times New Roman", Times, serif;
   font-size: 70%;
   line-height: 1.35em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #fff;
   font-weight : bold;
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #fff;                /* a different color can be used for visited links */
   font-weight : bold;
}

/* remove underline on hover and change color */
a:hover {
   text-decoration: underline;
   color: #fff;
   font-weight : bold;
}

/*****************
basic layout 
*****************/
body {
   background : #000;
   color: #fff;
}

div#skin {
  font-size : 90%;
  position:absolute;
  top:30px;
  left:50%;
  width:510px;
  height:542px;
  margin-left : -255px;
  z-index : 2;
}

div#bouton_entrer {
  font-size : 90%;
  position:absolute;
  top:540px;
  left:50%;
  width:143px;
  height:21px;
  margin-left : -150px;
  z-index : 7;
}

div#bandeau_clear_bas {
  font-size : 90%;
  position:absolute;
  top:610px;
  left:50%;
  width:800px;
  height:30px;
  margin-left : -400px;
  z-index : 4;
  text-align:center;
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #000;
  position:relative;
  left : 0px;
  top : -50px;
}

div#footer p {
   font-size: 95%;
   padding: 0.8em 0.2em 2em 0.2em;       /* some air for footer */
   text-align: center;  /* centered text */
   margin: 0;
}

div#footer p a {
   color: #000; /* needed becouse footer link would be same color as background otherwise */
   text-decoration : none;
}


/* End of 'Joël Montigny - Accueil' */

