/* Start of CMSMS style sheet 'Layout: Top menu + 2 columns' */
/*****************
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;
}

/*
Initialisation des styles de polices de caracteres
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 78.01%;
   font-size: 11px;
   line-height: 14px;

   color: #1d1d1d;
   margin:0em; /* gives some air for the pagewrapper */
   background:url(images/cms/bg-stripe-red.gif) repeat-x #212121;

}

/*
Défintion de la taille des polices pour tous les divs,
this overrides some body rules
*/
div {
   font-size: 1em;
    font-size: 11px;
}
/* Myrame frame google map */
#myframe
{
   height:300px;
}


/*
Si une image est dans un "a" elle aura une
bordure : ah non alors !!
*/
img {
   border: solid 1px #000;
}
/* en fait vaut mieux utiliser les classes
*/
.imgtxt
{
   border:1px solid #5e0000;
   margin : 5px 5px 5px 0px;
   float:left;
  -moz-border-radius:5px;
  box-shadow:2px 2px 3px #000;
  -webkit-border-radius:5px;
  -webkit-box-shadow:2px 2px 3px #000;
}
.txtimg
{
   border:1px solid #5e0000;
   margin : 5px 0px 5px 5px;
   float:right;
  -moz-border-radius:3px;
  -webkit-border-radius:3px;

}
.imgtop
{
   border:1px solid #000;
   margin : 5px 0px 5px 0px;
}
.imgtxt2
{
   border:0px solid #000;
   margin : 5px 5px 5px 0px;
   float:left;
}
.txtimg2
{
   border:0px solid #000;
   margin : 5px 0px 5px 5px;
   float:right;
}
.imgtop2
{
   border:0px solid #000;
   margin : 5px 0px 5px 0px;
}
/* image et ombre */
.img-ombre {
  float:left;
  /* La première ligne permet d'utiliser l'ombre au format png pour la plupart*/
  /* des navigateur. La seconde utilisera le format gif pour IE. */
  background: url(images/cms/bg-ombre.png) no-repeat bottom right !important;
  background: url(images/cms/bg-ombre.gif) no-repeat bottom right;
  margin: 10px 0 0 10px !important;
  margin: 10px 0 0 5px;
  }
.img-ombre img {
  display: block;
  position: relative;
  border: 1px solid #ffffff;
  /* Cette ligne permet de placer correctement notre image par rapport à notre*/       
/*ombre.  Les valeur sont choisi en conséquence de l'étendue de l'ombre. */
  margin: -6px 6px 6px -6px;
  }
/* image et ombre */
.ombre {

  /* La première ligne permet d'utiliser l'ombre au format png pour la plupart*/
  /* des navigateur. La seconde utilisera le format gif pour IE. */
  background: url(images/cms/bg-ombre.png) no-repeat bottom right !important;
  background: url(images/cms/bg-ombre.gif) no-repeat bottom right;
  margin: 10px 0 0 10px !important;
  margin: 10px 0 0 5px;
  }
.ombre img {
  display: block;
  position: relative;
  border: 1px solid #ffffff;
  /* Cette ligne permet de placer correctement notre image par rapport à notre*/       
/*ombre.  Les valeur sont choisi en conséquence de l'étendue de l'ombre. */
  margin: -6px 6px 6px -6px;
  }
.imgleft-ombre {
  float:left;
  /* La première ligne permet d'utiliser l'ombre au format png pour la plupart*/
  /* des navigateur. La seconde utilisera le format gif pour IE. */
  background: url(images/cms/bg-ombre.png) no-repeat bottom right !important;
  background: url(images/cms/bg-ombre.gif) no-repeat bottom right;
  margin: 10px 0 0 10px !important;
  margin: 10px 0 0 5px;
  }
.imgleft-ombre img {
  display: block;
  position: relative;
  border: 1px solid #ffffff;
  /* Cette ligne permet de placer correctement notre image par rapport à notre*/       
/*ombre.  Les valeur sont choisi en conséquence de l'étendue de l'ombre. */
  margin: -6px 6px 6px -6px;
  }
.imgright-ombre {
  float:right;
  background: url(images/cms/bg-ombre.png) no-repeat bottom right !important;
  background: url(images/cms/bg-ombre.gif) no-repeat bottom right;
  margin: 10px 0 0 10px !important;
  margin: 10px 0 0 5px;
  }
.imgright-ombre img {
  display: block;
  position: relative;
  border: 1px solid #ffffff;
  /* Cette ligne permet de placer correctement notre image par rapport à notre*/       
/*ombre.  Les valeur sont choisi en conséquence de l'étendue de l'ombre. */
  margin: -6px 6px 6px -6px;

  }
#imgtxt
{
   border:1px solid #000;
   margin : 5px 5px 5px 0px;
   float:left;
}
#txtimg
{
   border:1px solid #000;
   margin : 5px 0px 5px 5px;
   float:right;
}
#imgtop
{
   border:1px solid #000;
   margin : 5px 5px 5px 0px;
   float:right;
}

/*
Liens par défaut 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: #00045d; 
}

a:visited {
   text-decoration: none;
   background-color: inherit;
  color: #00045d;                  /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: underline;
   background-color: transparent;
   color: #990000;

}

/*****************
basic layout 
*****************/


/* center wrapper, min max width */
div#pagewrapper {
   border: 0px solid black;
   margin: 0 auto;     /* this centers wrapper */
   max-width: 80em; /* IE wont understand these, so we will use javascript magick */
   min-width: 60em;
   width:800px;
   background-color: #FFF;
   color: #161616;
   padding-left:19px;
   padding-right:21px;
   background: url(images/cms/bg-external-content.gif) no-repeat;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
   height: 230px; /* adjust according your image size */
  background: url(images/cms/logo.jpg) top left no-repeat;
}


div#header h8 a {
/* you can set your own image here */

   width:10px;
   display: block; 
   height: 0px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
  b_ackground: url(images/cms/logo.jpg) top no-repeat;

}
div#search {
   float: right;
   width: 27em;     /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;             /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em;              /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 0px dotted #000;
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 }


div#content {
   margin: 1.5em auto 2em 0; /* some air above and under menu and content */
background : url(images/cms/br-graphic.gif) bottom center no-repeat;
}

div#main {
   m_argin-left:width: 230px; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 2%; /* and some air on the right */   
   line-height: 1.5em;
}


div#sidebar {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 210px;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0;
background-color:#c6c6c6;
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0;
   width: 210px;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}
/********* News ***********/
#news
{

    background-color: #fff;
}

/************* Menu gauche ********/

#sub-menu {
	padding-top: 15px;
	padding-left: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #161616;
        color: #000000;
	padding-bottom: 6px;

	}
/* #sub-menu ul */
.menu_horiz {
        margin:0px 0px 0px 5px;
        padding:0px 0px 0px 0px;
	display: block;
	width: 200px;
        border:  solid 0px #000;
        border-bottom:0px;
	}

.menu_horiz li {
	list-style-type: none;
	padding-top: 0px;
	padding-bottom: 2px;
        margin-top:2px;
        border-left : solid 3px #000000;
        border-bottom : solid 1px #000;
	text-align: center;
}
#sub-menu  li.current
{

        border-left : solid 3px #990000;
        border-bottom : solid 1px #000;
}

#sub-menu a {
	color: #000000;
	text-decoration: none;
	margin-left: 0px;

	}

#sub-menu a.current {
	color: #990000;
	text-decoration: none;
	margin-left: 0px;
        
	}

#sub-menu a:hover {
	color: #990000;
        background-color:transparent;
	text-decoration: normal;
	}

#sub-menu li ul li {
	list-style-type: none;
	padding-top: 4px;
	padding-bottom: 4px;
	border-bottom-width: 0px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
        
	}
#sub-menu li ul li a{
    margin-left:0px;
    font-size:11px;
}

/* Pied de page */

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #fff;
   background-color: #990000; /* same bg color as in header */
}

div#footer p {
   font-size: 90%;
   padding: 5px;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
}

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   border-bottom: 0px dotted #666666;
}

/* relational links under content */
div.left49 {
  font-size:10px;
  float: left;
  width: 70%;  /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
   font-size:10px;
  float: right;
  width: 70px;
  text-align: right;
}




/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */

div#content h1 {
   Font-family: verdana,arial,helvetica,clean,sans-serif;
   color:#5e0000;
   font-size: 13px;
   line-height: 1em;
   letter-spacing:0em;
   font-weight:normal;
   margin:5px 0px 10px 0px;
   padding : 0px 0px 5px 0px;
   font-variant: small-caps;
   text-align:left;
   border-bottom:solid 1px #666666;

}
div#content h1:first-letter {
   font-size: 14px;
text-shadow: 0px -1px #ffd0a6, 0px -1px #000000;
}

div#content h3,h4 {
   color: #333333; 
   font-weight:bold;
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
   font-size: 110%;
  
}
div#content h3 {
    font-size: 100%;
    font-weight:bold;
   color:#333333; 
   padding : 0 0 3px 0;
   border-bottom:solid 1px #666666;
}

div#content h4 {
  text-decoration : underline;
   font-weight:normal;
   color: #294B5F; 
  
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}

h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h2
{
     font-size: 100%;
     color:#990000;
      border-bottom:solid 1px #000;
      border-left: solid 4px #990000;
      border-right: solid 0px #000;
      border-bottom:solid 1px #000000;
      font-weight:bold;
      height:14px;
      margin:0px 0px 5px 0px;;
      padding: 2px 0px 5px 4px;
      text-align:left;
}
div#co_ntent .h2cadreaccueil
{
      color:#990000;
      border-bottom:solid 1px #000;
      border-left: solid 4px #990000;
      border-right: solid 0px #000;
      border-bottom:solid 1px #000000;
      font-weight:bold;
      height:14px;
      margin:0px;
      padding: 2px 5px;
      text-align:left;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 100%;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   padding: 0;
}
blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

/* END TEXT */

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
   list-style-image : url(images/cms/puce.gif);

}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* table classement */
.classement
{
   width:100%;
  border:solid 1px;
text-transform: lowercase;
 text-align: center;
  padding:0px;
  margin:0px;
  border-collapse: collapse;

}
.classement tr
{
  padding:0px;
  margin:0px;
    border-bottom:solid 1px;
}

/* table couleur */
.tableautitre
{
     background-color:#900000;
     color:#fff;
}
.tableaul1,.t1promo
{
     background-color:#c0c0c0;
     color:#000;
}
.tableaul2,.t2promo
{
     background-color:#fff;
     color:#000000;
}
/* table couleur */
.tabtitle,.tabtitle1
{
     background-color:#900000;
     color:#fff;
}
.tabtitle1
{
     text-align:center;
}
.tabl1
{
     background-color:#c0c0c0;
     color:#000;
     text-align:center;
}
.tabl2
{
     background-color:#fff;
     color:#000000;
 text-align:center;
}
.t2promo,.t1promo
{
   text-align: center;
   font-size: medium;
   color: #800000;
}
.table_1
{
    width:95%;
}
#cadreaccueil,.cadreaccueil
{
   width:540px;
   border-collapse:collapse;
   border-bottom:solid 0px #666;
   border-top:solid 0px #666;
   padding: 10px;
}
#cadreaccueil td
{
    vertical-align:top;
    padding: 10px 0px 5px 5px;
    margin: 0px 0px 0px 5px;
 border-bottom:solid 0px #666;
}
.cadreaccueil1
{
   width:520px;
   border-collapse:collapse;
   border-bottom:solid 0px #000;
   border-top:solid 0px #000;
   padding: 10px;
}
.cadreaccueil1 td
{
    vertical-align:top;
    align:left;
    padding: 10px 0px 5px 5px;
    margin: 0px 0px 0px 5px;
   border-bottom:solid 0px #000;
}

/* video */
.cadrevideo {

   color: #333333;
   margin:0em; /* gives some air for the pagewrapper */
   width : 100%;
   height:292px;
   background:url(images/cms/bg-video.jpg) no-repeat #CCCCCC;
border:solid 0px #000;
}
.txtvideo
{
  border:0px solid #fff;
   padding-right:21px;
   margin : 0px 0px 5px 5px;
   float:right;
   width: 300px; 
   height: 250px;
}
/* expand */
#expandDef
{
    text-decoration: underline;


}
/* cadre image */


.cadreimg
{

    float:right;
    padding: 1px 0px 0px 1px; 
    background: url(http://www.clubhippiquedepollionnay.com/images/cms/bg-vignette-3.jpg) repeat scroll 0% 0%; 
    width: 173px; 
    height: 115px;

}
/* END LISTS */
/* End of 'Layout: Top menu + 2 columns' */

