/* Start of CMSMS style sheet 'Exterieurement Votre - Intro' */
/*****************
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; 
   font-weight : bold;
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
   font-weight : bold;
}

/* remove underline on hover and change color */
a:hover {
   text-decoration: underline;
   font-weight : bold;
}

/*****************
basic layout 
*****************/
body {
   background : #ccbbab url('images/template/fond-vert.gif') repeat-y center top;
   color: #000000;
   margin-top:0px;
}

div#body-intro {
  position:absolute;
  width : 420px;
  height : 250px;
  top: 380px;
  left:50%;
  margin-left : -415px;
  text-align : left;
  color : #235b11;
  overflow : auto;
  padding-top:5px;
  z-index:10;
}

div#body-intro A {
  color : #fff;
}

div#body-intro A:hover {
  color : #fff;
}

div#body-intro P:first-letter { 
  font-size: 250%; 
  float: left;
}

div#content {
  width : 100%;
  height : 800px;
  z-index:1;
}

div#content-gauche {
  float:left;
  display: inline;
  background : url('images/template/fond-lambri-gche.jpg') no-repeat left 350px;
  width : 49%;
  height : 800px;
}

div#content-droite {
  float:left;
  display: inline;
  background : url('images/template/fond-lambri-dte.jpg') no-repeat right 350px;
  width : 50%;
  height : 800px;
}

div#main {
  position:absolute;
  top: 0px;
  left:50%;
  width:940px;
  height:800px;
  margin-left : -470px;
  z-index:2;
}

div#header {
  vertical-align: bottom;
  width:940px;
  height:720px;
}

div#pre-titre {
  width:940px;
  height:40px;
}

div#pre-titre2 {
  position:absolute;
  top: 40px;
  left:50%;
  width:940px;
  height:280px;
  margin-left : -485px;
  z-index:20;
}

div#pre-titre3 {
  position:absolute;
  top: 197px;
  left:50%;
  width:196px;
  height:268px;
  margin-left : 154px;
  z-index:15;
}

div#footer {
   float: right;       /* keep footer below content and menu */
   color: #4d3520;
   width: 940px;
}

div#footer p {
   font-size: 100%;
   padding: 1em 80px 2em 80px;       /* some air for footer */
   text-align: center;  /* centered text */
   margin: 0;
}

div#footer a {
   color: #4d3520; /* needed becouse footer link would be same color as background otherwise */
   text-decoration : none;
}

div#footer a:hover {
   color: #4d3520; /* needed becouse footer link would be same color as background otherwise */
   text-decoration : underline;
}
/* End of 'Exterieurement Votre - Intro' */

