/******************************************************************************
 * 
 ******************************************************************************/
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
}

body {
  background: #d0e5e5 url(../images/bg_body.png);
  color: #2b2b2b;
  font-family: Arial, Verdana, Helvetica, sans-serif;
  font-size: 80%;
}

#container {
  background: white;
  margin: auto;
  width: 800px;
}

/******************************************************************************
 * 
 ******************************************************************************/
.col_top,
.col_bottom,
#fix_ie_bottom_margin {
  font-size: 0;
}

/******************************************************************************
 * 
 ******************************************************************************/
#header {
  background: #8fc1c1 url(../images/bg_header.png) repeat-x;
  height: 120px;
  position: relative; /* Pour servir de référence pour certains positionnements */
}

#header h1 {
  background: url(../images/logo.png);
  clip: rect(0, 265px, 180px, 0);
  clip: rect(0 265px 180px 0); /* Syntaxe reconnue par IE */
  height: 180px;
  padding-left: 265px;
  position: absolute;
}

/* Note: #header p est redéfini dans un fichier séparé car l'image du slogan
dépend de la langue */
#header p {
  color: #004546;
  font-size: 140%;
  font-style: italic;
  font-weight: bold;
  line-height: 120px;
  padding-right: 10px;
  text-align: right;
}

/******************************************************************************
 * 
 ******************************************************************************/
#translate {
  height: 45px;
  margin: 10px;
  text-align: right;
}

#translate a {
  color: green;
  font-style: italic;
  font-weight: bold;
  text-decoration: none;
}

#translate a:hover,
#translate a:focus {
  color: #803300;
}

/******************************************************************************
 * 
 ******************************************************************************/
#sidebar {
  float: right;
  margin: 5px 0 30px;
  width: 240px;
}

/******************************************************************************
 * 
 ******************************************************************************/
.menu li {
  list-style-type: none;
  margin-bottom: 2px;
  text-align: center;
}

.menu li a {
  background: teal url(../images/menu_default.png) no-repeat;
  color: white;
  display: block;
  font-weight: bold;
  padding-top: 7px;
  text-decoration: none;
}

.menu li a .col_bottom {
  background: url(../images/menu_default.png) no-repeat bottom;
  display: block;
  height: 7px;
}

.menu li.active a {
  background-color: green;
  background-image: url(../images/menu_active.png);
}

.menu li.active a .col_bottom {
  background-image: url(../images/menu_active.png);
}

.menu li a:hover,
.menu li a:focus,
.menu li.active a:hover,
.menu li.active a:focus {
  background-color: #803300;
  background-image: url(../images/menu_over.png);
}

.menu li a:hover .col_bottom,
.menu li a:focus .col_bottom,
.menu li.active a:hover .col_bottom,
.menu li.active a:focus .col_bottom {
  background-image: url(../images/menu_over.png);
}

/******************************************************************************
 * 
 ******************************************************************************/
#search {
  background: #004546 url(../images/bg_search_middle.png) repeat-y;
  color: white;
  margin: 30px 0;
}

#search .col_top,
#search .col_bottom {
  height: 5px;
}

#search .col_top {
  background-image: url(../images/bg_search_top.png);
}

#search .col_bottom {
  background-image: url(../images/bg_search_bottom.png);
}

#search form {
  text-align: center;
}

#search form fieldset {
  border: 0 none;
  margin: 5px 0;
}

#search form input {
  vertical-align: middle;
}

#ajaxSearch_input {
  background: white;
  border: 0 none;
  color: #2b2b2b;
  padding: 1px 2px;
}

#ajaxSearch_submit {
  background: #004546;
  border: 1px solid white;
  color: white;
  margin-left: 2px;
  padding: 0 2px;
}

#ajaxSearch_submit:hover,
#ajaxSearch_submit:focus {
  background-color: white;
  border-color: #004546;
  color: #004546;
}

.ajaxSearch_resultsInfo {
  font-weight: bold;
}

.ajaxSearch_highlight {
  background: yellow;
}

.ajaxSearch_paging {
  display: block;
  text-align: center;
}

.ajaxSearch_result {
  margin: 10px 0;
}

.ajaxSearch_resultDescription {
  display: block;
  font-style: italic;
}

/******************************************************************************
 * 
 ******************************************************************************/
#footer {
  background: #8fc1c1;
  clear: both;
  padding: 0.5em 0;
  text-align: center;
}

#footer a {
  color: white;
  text-decoration: underline;
}

#footer a:hover,
#footer a:focus {
  color: #803300;
}

/******************************************************************************
 * 
 ******************************************************************************/
#homepage #intro {
  background-color: #d0e5e5;
  border: 10px solid #8fc1c1;
  margin: 30px 20px 50px;
  padding: 15px 0;
  text-align: center;
}

/******************************************************************************
 * 
 ******************************************************************************/
#contents {
  background: url(../images/bg_content_middle.png) repeat-y;
  margin-bottom: 30px;
  margin-right: 250px;
  padding: 0 25px;
  text-align: justify;
}

#contents .col_top,
#contents .col_bottom {
  height: 21px;
  margin: 0 -25px;
}

#contents .col_top {
  background-image: url(../images/bg_content_top.png);
}

#contents .col_bottom {
  background-image: url(../images/bg_content_bottom.png);
}

#contents .col_top + * {
  margin-top: 0;
}

#contents h1 {
  border-bottom: 1px solid #004546;
  color: #004546;
  font-family: "Times New Roman", serif;
  font-size: 150%;
  margin-bottom: 1em;
  padding: 5px 0;
}

#contents h2 {
  color: #004546;
  font-size: 120%;
  margin: 1.2em 0 0.8em;
}

#contents ul,
#contents ol {
  margin-left: 2em;
}

#contents p,
#contents ul,
#contents ol {
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}

#contents a {
  color: green;
  text-decoration: underline;
}

#contents a:hover,
#contents a:focus {
  color: #803300;
}

#contents table {
  border-collapse: collapse;
}

#contents table th,
#contents table td {
  border: 1px solid #686868;
  padding: 2px;
  vertical-align: top;
}

/******************************************************************************
 * 
 ******************************************************************************/
#contents table.coordonnees th,
#contents table.coordonnees td {
  border: 0 none;
  padding-left: 0;
}

#contents table.coordonnees th {
  font-weight: normal;
  padding-right: 5px;
}

/*******************************************************************************
 *
 *******************************************************************************/
#client_ident p {
  text-align: center;
}

#client_ident .wlpe_message {
  color: red;
  font-weight: bold;
}

#client_ident form > * {
  margin: 10px 0;
}

#client_ident .form_textfield label {
  float: left;
  margin-right: 5px;
  text-align: right;
	width: 255px; 
}

#client_ident .form_textfield input {
  border: 1px solid #686868;
  background: white;
  color: black;
  padding: 0 2px;
  width: 150px;
}

#client_ident .form_submit input {
  margin-left: 260px;
}

#client_ident .form_checkboxfield {
  text-align: center;
}

#client_ident .action_link {
  display: block;
  text-align: center;
}

/*******************************************************************************
 *
 *******************************************************************************/
#contactForm fieldset {
  border: 1px solid teal;
  margin-bottom: 5px;
  padding: 0 5px;
}

#contactForm fieldset > * {
  margin: 5px 0;
}

#contactForm legend {
  color: teal;
}

#contactForm .form_textfield * {
  vertical-align: middle;
}

#contactForm .form_textarea * {
  vertical-align: top;
}

#contactForm .form_textfield input,
#contactForm textarea {
  border: 1px solid #686868;
  background: white;
  color: black;
  padding: 0 2px;
  width: 300px;
}

#contactForm textarea { /*surcharge par tatonnement*/
  font-family: Arial, Verdana, Helvetica, sans-serif;
  font-size: 100%; /*pour FF*/
}

#contactForm .form_textfield label,
#contactForm .form_textarea label,
#contactForm .form_filefield label {
  float: left;
  width: 150px;
}

#contactForm .form_submit {
  text-align: center;
}

#contactForm .form_submit input {
  border: 2px outset #8fc1c1;
  background: #d0e5e5;
  color: black;
  margin-top: 10px;
  padding: 1% 0;
  width: 50%;
}

#contactForm .form_submit input:hover,
#contactForm .form_submit input:focus {
  background-color: teal;
  border-color: white;
  color: white;
}

#contactForm .errors {
  color: red;
  text-align: center;
}

#contactForm label.required {
  color: red;
  font-weight: bold;
}

#contactForm label.invalid {
  color: red;
}

#contactForm input.required,
#contactForm input.invalid,
#contactForm textarea.required,
#contactForm textarea.invalid {
  background-color: #ffffa2;
}

