/* Start of CMSMS style sheet 'Joël Montigny - Site' */
/*****************
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: 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: #e2001a;
   font-weight : bold;
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #e2001a;                /* 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: #e2001a;
   font-weight : bold;
}

/*****************
basic layout 
*****************/
body {
   background : #000;
   color: #fff;
}

div#skin {
  font-size : 90%;
  position:absolute;
  top:0px;
  left:50%;
  width:1060px;
  height:216px;
  margin-left : -530px;
  z-index : 2;
}

div#menu_horizontal {
  position:absolute;
  top:177px;
  left:50%;
  width:1060px;
  min-height:400px;
  margin-left : -530px;
  z-index : 6;
  align-text:center;
}

div#sous_menu_horizontal {
  position:absolute;
  top:220px;
  left:50%;
  width:750px;
  min-height:400px;
  margin-left : -375px;
  z-index : 6;
  align-text:center;
}

div#cadre_texte {
  position:absolute;
  top:250px;
  left:50%;
  width:1060px;
  min-height:400px;
  margin-left : -530px;
  z-index : 6;
  align-text:center;
}

div#content {
  padding:5px;
  width:750px;
  margin: 0 auto;
  min-height:400px;
}

div#main {
  width:750px;
}

div#main div {
clear:both;
}

div#main p {
clear:both;
}

div#main table {
  display: block;
  clear:both;
}

div#bandeau_clear_bas {
  font-size : 95%;
  width:1060px;
  height:30px;
  padding-top:5px;
  margin: 0 auto;
  text-align:center;
  color: #fff;
}

div#bandeau_clear_bas  a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
   text-decoration : none;
}

div#bandeau_clear_bas  a:hover {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
   text-decoration : underline;
}

/********************
CONTENT STYLING
*********************/

/* HEADINGS */
h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1.3em;
   margin-bottom: 0.5em;
   margin-left:0px;
   font-family: Arial;
   color : #e2001a;
   font-weight:bold;
}

h2 {
   color: #e2001a; 
   font-size: 1.3em; 
   text-align: left; 
   padding-left: 0.5em;
   padding-bottom: 1px;
   border-bottom: 0px solid #e2001a; 
   line-height: 1.5em;
   margin: 0 0 0.5em 0;
}

h3 {
   color: #e2001a; 
   font-size: 1.2em;
   line-height: 1.2em;
   margin: 0 0 0.5em 0;
}

h4 {
   color: #e2001a; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}

h5 {
   color: #e2001a; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}

h6 {
   color: #e2001a; 
   font-size: 0.9em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 1.4em;
   padding: 0;
}

/* LISTS */
/* lists in content need some margins to look nice */
div#cadre_texte ul,
div#cadre_texte ol,
div#cadre_texte dl {
   font-size: 1.0em;
   line-height: 1.4em;
   margin: 0 0 1.5em 0;
}

div#cadre_texte ul li,
div#cadre_texte ol li {
   margin: 0 0 0.25em 3em;
}

/* definition lists topics on bold */
div#cadre_texte dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#cadre_texte dl dd {
   margin: 0 0 1em 1em;
}

div#cadre_texte dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}


/* END LISTS */
/* End of 'Joël Montigny - Site' */

