/* Start of CMSMS style sheet 'Home' */
/*****************
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: Tahoma, sans-serif, Verdana, Geneva, Arial, Helvetica;
   font-size: 71.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: #6699CC; 
   font-weight:bold;
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #6699CC;                /* 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: #6699CC;
}

/*****************
basic layout 
*****************/
body {
   background-color: #fff;
   color: #666;
   margin:0em; /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 0px solid #CCCCCC;
   margin: 0 auto;     /* this centers wrapper */
   max-width: 866px; /* IE wont understand these, so we will use javascript magick */
   min-width: 866px;
   background-color: #FFFFFF;;
   color: #666;
}
h2 {
   color: #6699CC; 
   font-size: 1.4em; 
   text-align: left; 
/* some air around the text */
   padding-left: 1.8em;
   padding-bottom: 1px;
/* set borders around header */
   background: #F6F6F6 url(images/cms/bleu.jpg) no-repeat 0 3px; 
   line-height: 1.5em;
/* and some air under the border */
   margin: 0 0 0.5em 0;
}

/* End of 'Home' */

