* {
  padding: 0;
  margin: 0;
  font-family: Arial, Verdana, Tahoma, sans-serif;
}
body, html {
  color: #000; 
  background-color: #eee; 
  text-align: center; /*** Centers the design in old IE versions ***/
  height: 100%;
}
body {
  font-size: 10pt;
}
img {
  border-width: 0;
}
hr {
  margin-top: 8px;
  margin-bottom: 16px;
}
a {
  color: #D01220;
  text-decoration: none;
  border: none;
}
a:hover {
  text-decoration: underline;
}
.clear { 
  clear: both; 
}
#mainContainer {
  width: 760px;
  margin: 0 auto; /*** Centers the design ***/
  padding: 0 5px 0 5px;
  min-height: 100%;
  background: #fff;
  text-align: left;
}
* html #mainContainer {
  height: 100%;  /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
#header {
  background: #D01220 url(pictures/header.png);
  height: 25px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 95px 0 0 65px;
}
#header a {
  text-decoration: none;
  color: #FFF;
}
#subheader {
  height: 18px;
  font-size: 10px;
  padding: 3px;
  border-bottom: 1px solid #f6edee;
}
.outer {
  margin-top: 5px;
  padding-left: 165px;  
}
* html .outer {
  padding-right: 120px; /* Normally this shouldn't be in this hack, it should be in .outer, but because of IE7 I had to */
}
.inner {
  width: 595px; /*** This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
  padding-bottom: 30px;
}
* html .inner {
  width: 100%;
}
.float-wrap {
  float: left;
  width: 590px;
  margin-left: -165px; /*** Same length as .outer padding-left but with negative value ***/
}
* html .float-wrap {
  /*** No need for hacking IE on this layout ***/
}
#content {
  float: right;
  width: 430px;
  background: #fff;
}
DIV#content.without_right_column {
  width: 600px;
}
* html #content {
  position: relative;  /*** IE needs this  ***/
}
.contentWrap{
  padding: 5px;
}
.contentWrap h1 {
  background: url(pictures/title-bg.png) no-repeat;
  padding: 3px;
  font-size: 12pt;
}
.contentWrap p {
  padding: 10px 5px;
}
.contentWrap ul {
  padding-left: 20px;
}
#left {
  float: left;
  width: 150px;
}
* html #left {
  position: relative;  /*** IE needs this  ***/
}
#right {
  float: right; 
  width: 160px;
}
* html #right {
  position: relative;  /*** IE needs this  ***/
  margin-right: -120px; /*** IE gets this margin. ***/
}
#footer {
  width: 760px;
  height: 22px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 30px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
  margin: 0 auto;
  margin-top: -25px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
  padding-top: 3px;
  text-align: center;
  background-color: #D01220;
  color: #fff;
}
.box {
  border: 2px solid #D01220;
  margin: 4px 0 4px 0;
}
.red {
  background-color: #D01220;
}
.shiftcontainer {
  position: relative;
  left: 7px; /*Number should match -left shadow depth below*/
  top: 7px; /*Number should match -top shadow depth below*/
}

.shadowcontainer {
  margin: 0 8px 0 8px;
  background: transparent url(pictures/bigshadow.gif) no-repeat bottom right;
}

.shadowcontainer2 {
  margin: 1px 8px 0 8px;
  background: transparent url(pictures/bigshadow2.gif) no-repeat bottom right;
}

.shadowcontainer .innerdiv, .shadowcontainer2 .innerdiv {
  background-color: #D01220;
  padding: 6px;
  position: relative;
  left: -7px; /*shadow depth*/
  top: -7px; /*shadow depth*/
}

span.checkbox {
  width: 19px;
  height: 25px;
  padding: 0 5px 0 0;
  background: url(./pictures/checkbox.png) no-repeat;
  display: block;
  clear: left;
  float: left;
}
span.radio {
  width: 19px;
  height: 23px;
  padding: 0px 5px 0 0;
  background: url(./pictures/radio.png) no-repeat;
  display: block;
  clear: left;
  float: left;
}
span.select {
  position: absolute;
  width: 158px; /* With the padding included, the width is 190 pixels: the actual width of the image. */
  height: 21px;
  padding: 0 24px 0 8px;
  color: #fff;
  font: 12px/21px arial,sans-serif;
  background: url(./pictures/select.gif) no-repeat;
  overflow: hidden;
}
span.bc_item {
  margin-bottom:-10px;
}

/* Weekly Newsletter subscription */
div#weeklySubscription {
  padding:8px;
  background-color:#EEE;
  border: 2px solid #D01220;
}

a.au-fil-du-vent-download {
  display:block;
  width:302px;
  height:48px;
  background:url(/pictures/download-pdf.png) no-repeat 0 0;
  text-indent:-99999px;
}
a.au-fil-du-vent-download:hover {
  background-position:0 -48px;
}

