/*****************
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: 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: inherit; 
}

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: underline;
/*   color: #385C72;*/
}

/*****************
basic layout 
*****************/
body {
   color:#34373c;
   margin:1em; /* gives some air for the pagewrapper */
   background: #fff url(../images/design/bg.png) repeat 0 0px; 
}

/* center wrapper, min max width */
.wrapper,
div#pagewrapper {
   border: 0px solid black;
   margin: 0 auto;     /* this centers wrapper */
   width: 840px; /* IE wont understand these, so we will use javascript magick */
   min-height: 65em;
   background-color: #fff;;
}


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

div#header {
   height: 207px; /* adjust according your image size */
   width:595px;
   /*background: #fff url(../images/image_dessus_index.jpg) no-repeat 0 0px; */
   float:left;
}
div#subheader {
   height: 17px; /* adjust according your image size */
   width:840px;
   background: #fff url(../images/mage_d_menu.jpg) no-repeat 0 0px; 
   clear:both;
}

div#logo {
   width:245px;	
   height:207px;
   background: #fff url(../images/design/logo.jpg) no-repeat 0 0px; 
   float:left;
}
div#logo h1 a {
/* you can set your own image here */
   display: block; 
   width:245px;
   height: 207px;             /* 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 */
}
div#subheader2 {
   float: left;
   width: 100%;     /* enough width for the search input box */
   text-align: left;
   padding: 0.0em 0 0.0em 0;
   margin: 0 0em;   
   background: #fff url(../images/design/sous_menu.jpg) no-repeat 0 0px; 
   height:50px;
}
div#middle-search {
	width: 280px;     /* enough width for the search input box */
	float: left;
}
div#slidetext {
   float: left;
   width: 500px;     /* enough width for the search input box */
   text-align: left;
   color:#fff;
   margin-left:255px;
   margin-top:5px;
   margin-top:0.7em;
}
div#slidetext ul {
}

div#search label {
   padding-left: 0.5em;
   padding-top: 0.5em;
}
div#search input {
   margin-left: 0.5em;
}

div#content {
   margin: 0em auto 2em 0; /* some air above and under menu and content */
   float:right;
   padding-top:0px;

}
div#content a {
   color:#34373c;
}
div#main {
   margin-left: 23%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 22%; /* and some air on the right */
   min-height: 25em;
   padding-right:20px;
   text-align:justify;
}

div#main a {
/*background:transparent url(../images/fond_lien.png) no-repeat scroll right center;
padding-right:13px;
text-decoration:underline;*/
}

div#main-col-left {
   /*margin-left: 23%;*/ /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   min-height: 25em;
   /*padding-right:20px;*/
   text-align:justify;
   /*float:right;*/
}

div#main-one-col {
   min-height: 25em;
   padding-right:20px;
   padding-left:20px;
   text-align:justify;
}

div#main-one-col .middle {
   padding-right:25px;
}

div#main-col-right {
   margin-right: 0%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   min-height: 25em;
   padding-right:20px;
   text-align:justify;
   padding-left:20px;
   padding-top:25px;
}

div#frame_sidebar {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 189px;    /* sidebar width, if you change this please also change #main margins */
   margin-bottom:15px;
   height:100%;
   background: #fff url(../images/design/fond_menu.jpg) no-repeat 0 0px;    
}

div#sidebar {
   width: 189px;    /* sidebar width, if you change this please also change #main margins */
   /*display: inline; */ /* FIX ie doublemargin bug */
   margin: 0px;
   margin-top:30px;
   
}
div#sidebar img {
   display: block;
   margin:0;
}
div#sidebar p {
    padding:0px 	0px;
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0px;
   width: 189px;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
   min-height:350px;
/*   padding-left:10px;
   padding-top:10px;*/
   height:100%;
}

#top_right,
#bottom_right,
#top_left,
#bottom_left {
   height: 13px;
   width: 13px;
   background-repeat: no-repeat;
   font-size:1px; /* correction d'un bug IE */

}
#top_right {
   float: right;
   background: url(../images/hautdroit.jpg);
}

#bottom_right {
   float: right;
   background: url(../images/basdroit.jpg);   
}

#top_left {
   background: url(../images/gauche.jpg);   
}

#bottom_left {
   background: url(../images/gauche.jpg);   
}

div#rightbar {
   float:right;
   width: 212px;    /* sidebar width, if you change this please also change #main margins */
   min-height:200px;
   margin-bottom:15px;
   padding-top:40px;
}
div#sidebar  ol,
div#sidebar  ul,
div#rightbar ol,
div#rightbar ul {
   list-style:none;
}
div#rightbar img {
   padding-bottom:10px;
}
div#rightbar p {
   text-align:justify;
}
div#rightbar p,
div#rightbar h3,
div#rightbar h4,
div#rightbar h5 {
   padding:0px 10px;
}
div#rightbar a {
   color:#34373c;
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #000;
   float:left;
   background-color:#fff;
}

div#footer p {
   font-size: 0.8em;
   padding: 1.4em;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
}

div#footer p a {
   color: #000; /* 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: 1px dotted black;
}

/* relational links under content */
div.left49 {
  float: left;
  width: 49%;  /* 50% for both left and right might lead to rounding error on some browser */
   display:none;
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;

   display:none;
}




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

}

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
   color:#01577f;
   font-size: 1.5em; 
   text-align: left; 
/* some air around the text */
   padding-left: 0em;
   padding-bottom: 1px;
/* set borders around header */
   line-height: 1.5em;
/* and some air under the border */
   margin: 0 0 0.5em 0;
}
div#content h3 {
   color:#01577f;
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
/*div#content h4 {
   color:#fff;
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}*/
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;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:1.4em;
   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;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */

#payment_form_ogone_basic li li {
	line-height:25px;
}
