/* Start of CMSMS style sheet 'Ferme des Fourneaux - 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: Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   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: #ffec00;
   font-weight : bold;
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #ffec00;                /* 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: #ffec00;
   font-weight : bold;
}

/*****************
basic layout 
*****************/
body {
   background : #e1dfd9;
   color: #000000;
   /*margin-top:40px;*/
}

div#content {
  overflow: hidden;
}

div#main {
  position:absolute;
  top:50%;
  left:50%;
  width:1287px;
  /*height:687px;*/
  margin-left : -640px;
  margin-top : -400px;
}

TD.header{
   background: #FFF url('images/template/fond_image_header.jpg') no-repeat;
   padding-left:20px;
   padding-top:0px;
}

TD.texte {
  background:#FFF url('images/template/fond_texte.jpg') repeat-x;
  padding-top:25px;
  font-size: 12px;
  line-height:1.1em;
  vertical-align:top;
  text-align:left;
}

TD.texte1 {
  padding-top:25px;
  text-align:center;
}

TD.texte2 {
  padding-top:40px;
  text-align:center;
}

div#bouton_accueil{
  position:relative;
  left:50%;
  width:125px;
  height:50px;
  left : 353px;
  top : -195px;
   z-index:30;
}

div#lien_intro{
  position:absolute;
  left:50%;
  width:796px;
  height:482px;
  left : 9px;
  top : 189px;
  z-index:20;
}

div#logo_intro{
  position:absolute;
  left:50%;
  width:249px;
  height:275px;
  left : 265px;
  top : 3px;
  z-index:50;
}

div#photo_intro{
  position:absolute;
  left:50%;
  width:796px;
  height:482px;
  left : 9px;
  top : 189px;
}

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 'Ferme des Fourneaux - Accueil' */

