/* Start of CMSMS style sheet '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: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

/*
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: underline;
/* 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: #18507C; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #18507C;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #C3D4DF;
   color: #385C72;
}

/*****************
basic layout 
*****************/
body {
   background-color: #d0d0d0;
   color: #d0d0d0;
   margin:1em;
}

/* center wrapper, min max width */
div#pagewrapper {
   border: none;
   margin: 0 auto;     /* this centers wrapper */
   max-width: 80em;  /*   IE wont understand these, so we will use javascript magick */
   min-width: 60em; 
   background-color: #d0d0d0;
   color: black;
}



div#content {
        position: absolute;
	width: 430px;
	height: 140px;
        float:left;
	margin-left: 280px;
	margin-top: -620px;
}

div#accroche {
        position: absolute;
	width: 125px;
	height: 125px;
        float:left;
	margin-left: 30px;
	margin-top: -340px;

}



/********************
CONTENT STYLING
*********************/
div#content {
   color: #fff; 
   font-size: 0.8em; 
   text-align: left; 
}

div#footer {
   color: #fff; 
   font-size: 0.6em; 
   text-align: left;
   margin-left: 630px;
   padding-top: 3px;
}


/* End of 'accueil' */

