

/* -------------------------------------------------------------- 
  
   reset.css
   * Resets default browser CSS.
   
-------------------------------------------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

body { 
  line-height: 1.5; 
}

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
table, td, th { vertical-align: middle; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* Remove annoying border on linked images. */
a img { border: none; }


/* -------------------------------------------------------------- 
   
   grid.css
   * Sets up an easy-to-use grid of 24 columns.
   
   By default, the grid is 950px wide, with 24 columns 
   spanning 30px, and a 10px margin between columns.
   
   If you need fewer or more columns, namespaces or semantic
   element names, use the compressor script (lib/compress.rb)
   
   Note: Changes made in this file will not be applied when
   using the compressor: make changes in lib/blueprint/grid.css.rb
   
-------------------------------------------------------------- */

/* A container should group all your columns. */
.container {
  width: 950px;
  margin: 0 auto;
}

/* Use this class on any .span / container to see the grid. */
.showgrid { background: url(src/grid.png);  }


/* Columns
-------------------------------------------------------------- */

/* Sets up basic grid floating and margin. */
.column, div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, 
div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, 
div.span-11, div.span-12, div.span-13, div.span-14, div.span-15, 
div.span-16, div.span-17, div.span-18, div.span-19, div.span-20, 
div.span-21, div.span-22, div.span-23, div.span-24 {
  float: left;
  margin-right: 10px; 
}

/* The last column in a row needs this class. */
.last, div.last { margin-right: 0; }

/* Use these classes to set the width of a column. */
.span-1  { width: 30px; }
.span-2  { width: 70px; }
.span-3  { width: 110px; }
.span-4  { width: 150px; }
.span-5  { width: 190px; }
.span-6  { width: 230px; }
.span-7  { width: 270px; }
.span-8  { width: 310px; }
.span-9  { width: 350px; }
.span-10 { width: 390px; }
.span-11 { width: 430px; }
.span-12 { width: 470px; }
.span-13 { width: 510px; }
.span-14 { width: 550px; }
.span-15 { width: 590px; }
.span-16 { width: 630px; }
.span-17 { width: 670px; }
.span-18 { width: 710px; }
.span-19 { width: 750px; }
.span-20 { width: 790px; }
.span-21 { width: 830px; }
.span-22 { width: 870px; }
.span-23 { width: 910px; }
.span-24 { width: 950px; margin: 0; }

/* Add these to a column to append empty cols. */
.append-1  { padding-right: 40px; }  
.append-2  { padding-right: 80px; } 
.append-3  { padding-right: 120px; } 
.append-4  { padding-right: 160px; } 
.append-5  { padding-right: 200px; } 
.append-6  { padding-right: 240px; } 
.append-7  { padding-right: 280px; } 
.append-8  { padding-right: 320px; } 
.append-9  { padding-right: 360px; } 
.append-10 { padding-right: 400px; } 
.append-11 { padding-right: 440px; } 
.append-12 { padding-right: 480px; } 
.append-13 { padding-right: 520px; } 
.append-14 { padding-right: 560px; } 
.append-15 { padding-right: 600px; } 
.append-16 { padding-right: 640px; } 
.append-17 { padding-right: 680px; } 
.append-18 { padding-right: 720px; } 
.append-19 { padding-right: 760px; } 
.append-20 { padding-right: 800px; } 
.append-21 { padding-right: 840px; } 
.append-22 { padding-right: 880px; } 
.append-23 { padding-right: 920px; } 

/* Add these to a column to prepend empty cols. */
.prepend-1  { padding-left: 40px; }  
.prepend-2  { padding-left: 80px; } 
.prepend-3  { padding-left: 120px; } 
.prepend-4  { padding-left: 160px; } 
.prepend-5  { padding-left: 200px; } 
.prepend-6  { padding-left: 240px; } 
.prepend-7  { padding-left: 280px; } 
.prepend-8  { padding-left: 320px; } 
.prepend-9  { padding-left: 360px; } 
.prepend-10 { padding-left: 400px; } 
.prepend-11 { padding-left: 440px; } 
.prepend-12 { padding-left: 480px; } 
.prepend-13 { padding-left: 520px; } 
.prepend-14 { padding-left: 560px; } 
.prepend-15 { padding-left: 600px; } 
.prepend-16 { padding-left: 640px; } 
.prepend-17 { padding-left: 680px; } 
.prepend-18 { padding-left: 720px; } 
.prepend-19 { padding-left: 760px; } 
.prepend-20 { padding-left: 800px; } 
.prepend-21 { padding-left: 840px; } 
.prepend-22 { padding-left: 880px; } 
.prepend-23 { padding-left: 920px; } 


/* Border on right hand side of a column. */
.border {
  padding-right: 4px;
  margin-right: 5px;
  border-right: 1px solid #eee;
}

/* Border with more whitespace, spans one column. */
.colborder {
  padding-right: 24px;
  margin-right: 25px;
  border-right: 1px solid #eee;
}


/* Use these classes on an element to push it into the 
   next column, or to pull it into the previous column.  */

.pull-1 { margin-left: -40px; }
.pull-2 { margin-left: -80px; }
.pull-3 { margin-left: -120px; }
.pull-4 { margin-left: -160px; }
.pull-5 { margin-left: -200px; }

.pull-1, .pull-2, .pull-3, .pull-4, .pull-5 {
  float:left;
	position:relative;
}

.push-1 { margin: 0 -40px 1.5em 40px; }
.push-2 { margin: 0 -80px 1.5em 80px; }
.push-3 { margin: 0 -120px 1.5em 120px; }
.push-4 { margin: 0 -160px 1.5em 160px; }
.push-5 { margin: 0 -200px 1.5em 200px; }

.push-1, .push-2, .push-3, .push-4, .push-5 { 
  float: right;
	position:relative;
}


/* Misc classes and elements
-------------------------------------------------------------- */

/* In case you need to add a gutter above/below an element */
.prepend-top { 
	margin-top:1.5em; 
}
.append-bottom { 
	margin-bottom:1.5em; 
}

/* Use a .box to create a padded box inside a column.  */ 
.box { 
  padding: 1.5em; 
  margin-bottom: 1.5em; 
  background: #E5ECF9; 
}

/* Use this to create a horizontal ruler across a column. */
hr {
  background: #ddd; 
  color: #ddd;
  clear: both; 
  float: none; 
  width: 100%; 
  height: .1em;
  margin: 0 0 1.45em;
  border: none; 
}
hr.space {
  background: #fff;
  color: #fff;
}


/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clearfix:after, .container:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix, .container {display: block;}

/* Regular clearing
   apply to column that should drop below previous ones. */

.clear { clear:both; }


/* -------------------------------------------------------------- 
   
   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   
   Usage:
   * For text fields, use class .title or .text
   
-------------------------------------------------------------- */

label       { font-weight: bold; }
fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.2em; }


/* Form fields
-------------------------------------------------------------- */

input.text, input.title,
textarea, select {
  margin:0.5em 0;
  border:1px solid #bbb;
}

input.text:focus, input.title:focus,
textarea:focus, select:focus {
  border:1px solid #666;
}

input.text, 
input.title   { width: 300px; padding:5px; }
input.title   { font-size:1.5em; }
textarea      { width: 390px; height: 250px; padding:5px; }


/* Success, notice and error boxes
-------------------------------------------------------------- */

.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }

.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }


/* -------------------------------------------------------------- 
   
   typography.css
   * Sets up some sensible default typography.
   
-------------------------------------------------------------- */

/* Default font settings. 
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
body { 
  font-size: 75%;
  color: #222; 
  background: #fff;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}


/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }

h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 2em; margin-bottom: 0.75em; }
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }

h1 img, h2 img, h3 img, 
h4 img, h5 img, h6 img {
  margin: 0;
}


/* Text elements
-------------------------------------------------------------- */

p           { margin: 0 0 1.5em; }
p img.left  { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }

a:focus, 
a:hover     { color: #000; }
a           { color: #009; text-decoration: underline; }

blockquote  { margin: 1.5em; color: #666; font-style: italic; }
strong      { font-weight: bold; }
em,dfn      { font-style: italic; }
dfn         { font-weight: bold; }
sup, sub    { line-height: 0; }

abbr, 
acronym     { border-bottom: 1px dotted #666; }
address     { margin: 0 0 1.5em; font-style: italic; }
del         { color:#666; }

pre 				{ margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }


/* Lists
-------------------------------------------------------------- */

li ul, 
li ol       { margin:0 1.5em; }
ul, ol      { margin: 0 1.5em 1.5em 1.5em; }

ul          { list-style-type: disc; }
ol          { list-style-type: decimal; }

dl          { margin: 0 0 1.5em 0; }
dl dt       { font-weight: bold; }
dd          { margin-left: 1.5em;}


/* Tables
-------------------------------------------------------------- */

table       { margin-bottom: 1.4em; width:100%; }
th          { font-weight: bold; }
thead th 		{ background: #c3d9ff; }
th,td,caption { padding: 4px 10px 4px 5px; }
tr.even td  { background: #e5ecf9; }
tfoot       { font-style: italic; }
caption     { background: #eee; }


/* Misc classes
-------------------------------------------------------------- */

.small      { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large      { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.hide       { display: none; }

.quiet      { color: #666; }
.loud       { color: #000; }
.highlight  { background:#ff0; }
.added      { background:#060; color: #fff; }
.removed    { background:#900; color: #fff; }

.first      { margin-left:0; padding-left:0; }
.last       { margin-right:0; padding-right:0; }
.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }


/* General
-------------------------------------------------------------- */
body {
    color: #222;
    background: #e8e6e0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 76%;
}

h1,h2,h3,h4{margin:0; padding:0;font-family: "Times New Roman", Times, serif;}
h1{
    font-size: 0.2em;
    color: #fff;
}
#header{
    height: 71px;
}
.clear{
    clear: both;
}
#content{
    position: relative;
    top:0;
    left:0;
}
.down_button{
    width: 19px;
    padding-right: 29px;
    background: transparent url('../img/general_down_arrow.png') no-repeat center right;
}

fieldset{margin:0; padding:0; border: none;}
a:link,a:visited,a:hover,a:active,a:focus{color:#34a1a8; font-weight:bold;text-decoration:none;}
a:hover{text-decoration:underline;}
a.special:link,a.special:visited,a.special:hover,a.special:active,a.special:focus{color:#405161; text-decoration:none;}
.up_button{
    width: 19px;
    padding-right: 29px;
    background: transparent url('../img/general_up_arrow.png') no-repeat center right;
}
.up_button_big{
    width: 19px;
    padding-right: 29px;
    padding-bottom: 10px;
    background: transparent url('../img/general_up_arrow_big.png') no-repeat top right;
}
.pdf{
    padding-left: 19px;
    background: transparent url('../img/pdficon_small.gif') no-repeat center left;
}
.center{ text-align: center;}
.long_button{
    display: block;
    width: 110px;
    height:17px;
    line-height:17px;
    text-align: center;
    color:#3f5162;
    text-transform: uppercase;
    font-size:10px;
}
.long_button a{text-decoration: none;text-align: center;color:#3f5162;
    text-transform: uppercase;
    font-size:10px;text-align: center;font-weight:bold;display: block;}
a.long_button:link,a.long_button:visited,a.long_button:hover,a.long_button:active{
    text-decoration: none;
}
.yellow_button{
    background: transparent url('../img/button_yellow.png') no-repeat center right;
    color:#fff !important;
}
.yellow_button_extra_long{
    background: transparent url('../img/button_yellow_extra_long.png') no-repeat center right;
    width:200px;
    color:#fff !important;
}

.delete_button,.delete_button:link, .delete_button:visited, .delete_button:hover,.delete_button:focus,.delete_button:active{
    color: #FF0000;
    border: 1px solid #FF0000;
}

.yellow_button a, .yellow_button a:link, .yellow_button a:visited,.yellow_button a:hover,.yellow_button a:focus,.yellow_button a:active,
.yellow_button_extra_long a, .yellow_button_extra_long a:link, .yellow_button_extra_long a:visited,.yellow_button_extra_long a:hover,.yellow_button_extra_long a:focus,.yellow_button_extra_long a:active{color:#fff; text-transform:uppercase;}
.grey_button{
    background: transparent url('../img/button_grey.png') no-repeat center right;
    width:130px;
    height:17px;
    line-height:17px;
    display: block;
}
.grey_border{border: 1px solid #a3acb3;}
ul li, p{color: #405161; text-align: justify;}

a.maisonpedia_link:link, a.maisonpedia_link:visited, a.maisonpedia_link:hover, a.maisonpedia_link:active, a.maisonpedia_link:focus {
padding-right: 20px; background: transparent url('../img/maisonpedia_link.png') no-repeat center right !important;text-decoration:none;}



/* Switch languague
-------------------------------------------------------------- */
#language_switch{
    background: #e8e6e0;
    padding: 0 0 9px 0;
    padding-right: 20px;
}
#language_wrap{
    height: 27px;
    position: relative;
    top: 0;
    left: 322px;
    text-align: center;
}
#selected_language_wrap{
}
#languages_slide,#languages_slide li{
    margin:0;
    padding:0;
    list-style:none;
}
#languages_slide{
    position: absolute;
    z-index: 5000;
    top: 0;
    left: 0;
    text-align: center;
    padding: 2px 0;
}
#languages_slide li {
    float: left;
    height: 14px;
    line-height: 14px;
    text-align: center;
    padding:0 0 0 4px;
}

/* Connexion Pad
-------------------------------------------------------------- */
#connection_pad{
    background: #34a1a8;
    height: 36px;
    line-height: 36px;
    color:#fff;
    font-weight: bold;
    padding-right: 20px;
}
#connection_pad fieldset {
    margin:0;
    padding:0;
    background: transparent;
    height: 36px;
}
#connection_pad label{
    color:#fff;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0 10px;
}
input.login{
    display: inline;
    color:#3f5162;
    border-right: 2px #34a1a8 solid;
    font-weight: bold;font-size:1.0em;
    width:100px;height:18px;
    margin: 0;
    padding: 0;
    position : relative;
    top: -3px;
    left: 0;
    padding: 0 10px;}
.login_button {
    border: none;
    background: url('/img/entrance_arrow.png') no-repeat center center;
    cursor: pointer;
    width:20px;
    height: 36px;
}
.logout_button {
    border: none;
    cursor: pointer;
    background: url('/img/cross.png') no-repeat center left;
    width:18px;
    height: 17px;
}
#connection_pad a:link,#connection_pad a:visited,#connection_pad a:hover,#connection_pad a:focus{
    color:#fff;
    text-decoration:none;
}


/* Content Backgrounds
-------------------------------------------------------------- */
.content_top_left{
    background: transparent url('../img/content_top_left_default.png') no-repeat top left;
    padding-right: 20px;
    min-height:181px;
}

.content_repeat{
    background: transparent url('../img/content_repeat_default.png') repeat-y 0 0;
    padding-right: 20px;
    min-height:1%;
}

div.related_items{background:transparent url('../img/related_items_bg_default.png') repeat top left;padding-right: 20px;}
/* Header
-------------------------------------------------------------- */
#header{background: #10273f;}
#header h1#page_title{
    position: relative;
    top: 0;
    left: 0;
    cursor: pointer;
}
#header h1#page_title span{
    height: 71px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #10273f url('../img/header_top_left.png') no-repeat top left;
}
#header_bottom_left{
    height: 72px;
    background: #3f5162 url('../img/header_bottom_left') no-repeat top left;
    padding-right: 20px;
}


/* Menu Top
-------------------------------------------------------------- */
#menu_top{
    color: #fff;
    background-color: #3f5162;
    height: 72px;
    position: relative;
    top:0;
    left: 0;
}
ul li.menu0,ul li.menu1, ul li.menu2, ul li.menu3{
    color: #fff;
    text-align:left;
}
#menu_top ul{
    margin: 0 0;
    padding: 0 0;
    list-style-type: none;
}
#menu_top > ul.menu0 {
    width: 650px;
    position: relative;
    top:0;
    left: 0;
    background-color: #3f5162;
}

li.menu0{
    color: #fff;
    font-size: 12px;
    text-align: center;
    float:left;
    height: 36px;
    line-height: 36px;
    text-align:center;

}
li.menu0 > a.menu0:link,li.menu0 > a.menu0:visited{
    color: #fff;
    width: 110px;
    font-size: 12px;
    text-align: center;
    display: block;
    height: 36px;
    line-height: 36px;
    text-transform: uppercase;
    text-decoration: none;
}
li.menu0 > a.selected:link,li.menu0 > a.selected:visited, li.menu0 > a.selected:hover, li.menu0 > a.selected:focus, li.menu0 > a.selected:active{
    background: transparent url('../img/menu_roll.png') no-repeat 0 0;
}


li.menu0 > a.menu0:hover, li.menu0 > a.menu0:focus, li.menu0 > a.menu0:active{
    color: #fff;
    width: 110px;
    font-size: 12px;
    text-align: center;
    display: block;
    height: 36px;
    line-height: 36px;
    text-transform: uppercase;
    background: transparent url('../img/menu_roll.png') no-repeat 0 0;
}

ul.menu1{
    background-color: #647481;
    width: 650px;
    display: none;
    height: 36px;
    position: absolute;
    top:36px;
    left: 0;
    z-index : 0;
}
ul.menu1 > li.menu1{
    float: left;
    text-align: center;
    height: 36px;
    padding: 0 10px;
    line-height: 36px;
    font-weight: bold;
    position: relative;
    top:0;
    left: 0;
}

#services  li.menu1{
}


li.menu1 > a{
    text-align: center;
    color:#fff;
    height: 36px;
    line-height: 36px;
    font-weight: bold;
    text-decoration: none;

}

#menu_top ul.menu2{
    background-color: #babfc0;
    display: block;
    opacity: 1;
    padding: 10px 40px 10px 40px;
    width: 610px;
    color: #fff;
    text-align: left;
    position: absolute;
    top:36px;
    left: -235px;
}

.close{
    position: absolute;
    bottom: -18px;
    right: 0;
    width: 80px;
    height:18px;
    line-height: 18px;
    text-align: center;
    background-color: #babfc0;
    color: #fff;
    text-decoration: none;
}
a.close:link,a.close:visited, a.close:hover,a.close:focus,a.close:active{
    color: #fff;
    text-decoration: none;
}
#styles li.menu2, #periods li.menu2{
    float: left;
    width: 150px;
    height: 15px !important;
    line-height: 15px !important;
}

#styles  li.menu2 > a, #periods  li.menu2 > a{
    height: 15px;
    line-height: 15px;
}

ul#categories li.menu2{
    margin-bottom: 26px;
    float: left;
    color: #fff;
    background-color: transparent;
    display: block;
    font-weight: bold;
}
#menu_top li.menu3{
    width: 150px;
}
#menu_top li.menu2 a{
    color: #fff;
    height: 15px;
    font-weight: normal;
    text-decoration: none;
}
#menu_top ul#categories li.menu2 a{
    color: #fff;
    height: 15px;
    font-weight: bold;
    text-decoration: none;
}
#menu_top ul#categories li.menu2 li.menu3{
    line-height: 15px;
}
#menu_top ul#categories li.menu2 li.menu3 a{
    font-weight: normal;
    line-height: 15px;
}


/* Footer
-------------------------------------------------------------- */
#footer{
    background: transparent url('../img/footer.png') no-repeat 0 0;
    height:317px;color:#fff;
    font-size:10px;
    height: 215px;
}
#footer p{
    margin: 0;
    padding: 0;
}
#footer h3{
    color:#fff;
    text-transform: uppercase;
    margin: 5px 0;
    font-size: 14px;
    border-bottom: none;
}
#footer-links{
    height: 162px;
    text-align: left;
}
#footer ul{
    margin: 0;
    padding: 0;
}
#footer ul li{
    margin: 0;
    padding: 0;
    list-style-position: outside;
    list-style-type: none;
    line-height:12px;
}
#footer ul li a{
    color: #fff;
    text-decoration: none;
}
#footer-services{
    background-color:#0F253C;
    height: 162px;
}
#footer-categories{
    background-color:#3F5261;
    height: 162px;}
#footer-categories ul,#footer-categories h3 {
    margin-left: 10px;
}
#footer-contact-wrap{
    background-color:#647481;
    height: 162px;
    position: relative;
    top:0;
    left: 0;
}
#footer-contact{
    margin: 0;
    padding: 0;
    background-color:#647481;
    height: 162px;
    width: 360px;
    position: absolute;
    top:0;
    left: 10px;
}
#footer-contact p,#footer-contact h3 {
    color:#fff;
}
#footer-copyright-wrap{
    position: relative;
    top:0;
    left: 0;
    height: 50px;
}
#footer-copyright{
    position: absolute;
    top:0;
    left: 10px;
}
#footer-copyright{
    width: 920px;
    text-align: center;
    height: 52px;
    background: #a3acb3;
}
#footer-copyright p{
    margin: 0;
    padding: 0; text-align: center;
    line-height: 25px;}
#footer-copyright a{
    text-decoration: underline;
    color:#0F253C;
}

/* Message
-------------------------------------------------------------- */

.message{position: absolute; top: 20px; left: 20px;z-index:5000;}

/* Form general
-------------------------------------------------------------- */
input{border: none;}
.user .input{margin: 10px 0;height:20px;}
.user input{border: 1px solid #3f5261;width: 200px;float: left; height:20px;line-height:20px;}
.user textarea{border: 1px solid #3f5261;width: 200px;float: left; height:50px;}
.user label{color:#3f5261;width: 200px;padding-left:5px;display: block; float: left;height:20px;line-height:20px;}
.user input[type=submit]{clear:both;cursor:pointer;border: none;background-color:#34a1a8;color:#fff;float:right;margin-bottom: 5px;width:auto;}
fieldset.user{margin: 0; padding: 0;border-bottom:5px solid #34a1a8;background-color: #e9e6e1;}
h3.user, p.user{margin:0; padding: 0;text-align: right;}

/* Quick Search
-------------------------------------------------------------- */
fieldset.quicksearch {
    margin: 0;
    padding: 0;
    height: 36px;
    line-height: 36px;
}
.quicksearch input[type=text]{
    margin: 0 0;
    border: none;
    height: 18px;
    line-height: 18px;
    font-style: italic;
    color:#a3acb3;
    font-size:0.9em;
    background : transparent url('../img/quicksearch_bg.png') no-repeat 0 0;
    padding-left:18px;
    position:relative; top:-3px;left:0;
}
button.submit {
    width: 30px;
    height: 18px;
    cursor: pointer;
    text-indent: -9999px;
    margin: 0 0;
    padding: 0 0;
    border : none;
    background : transparent url('../img/research_bt_arrow.png') no-repeat 0 0;
}


/* Layout
-------------------------------------------------------------- */

.content_top_best_image{
    background: transparent url('../img/content_top_best_image_bg_default.png') no-repeat top left;
    padding-right: 20px;
    height:296px;
}

/* Extra
-------------------------------------------------------------- */

#extra_menu_home li{list-style-type: none; border-bottom: 1px #a3acb3 solid;}
#extra_menu_home a{color:#405161;}
.blog {
    display:block;background: transparent url('../img/blog.png') no-repeat center left;
    height:43px;
    line-height:43px;
    padding-left:49px;}
.maisonpedia {display:block;background: transparent url('../img/maisonpedia.png') no-repeat center left; height:48px; line-height:48px;padding-left:49px;}
.monthly_column {display:block;background: transparent url('../img/monthly_column.png') no-repeat center left; height:56px; line-height:56px;padding-left:49px;}
#polaroid{margin : auto;}

/* Images / Carousel and main
-------------------------------------------------------------- */
.wrap_center{text-align: center;margin-top:13px;background:transparent;}
#image_rotate{list-style-type:none;margin:0;padding:0;}
#image_rotate img{border: 4px solid #fff;margin:0;padding:0;}
.rotate_wrap{height: 270px;margin:0;padding:0;}

#categories_menu_home{background:transparent; }
#categories_menu_home {height: 270px;list-style-type:none;margin:0;padding:0;margin-left: 10px;margin-top:22px;}
#categories_menu_home div{
list-style-type:none;margin:0;padding:0;
width:230px;height:35px;line-height:35px;text-align:left;margin-bottom:1px;}
#categories_menu_home a:link,#categories_menu_home a:visited,#categories_menu_home a:hover,#categories_menu_home a:focus,#categories_menu_home a:active{
display:block;
margin: 0;
padding:0;
width:230px;
height:35px;
background: transparent url('../img/home_cat_bg.png') no-repeat top left;
color:#fff;text-transform: uppercase;text-decoration: none;
font-family: "Times New Roman", Times, serif;
font-size:12px;}
#categories_menu_home ul li a:hover{
background: transparent url('../img/home_cat_selected_bg.png') no-repeat top left;
}

.best_li{position:relative;top:0;left:0}
.best_link_wrap{
width:664px; height: 40px;line-height: 20px;position:absolute;bottom:10px;left:5px;color:#fff;font-weight:bold;
text-align:left;
background:transparent url('../img/best_image_bg.png') repeat 0 0;}
a.best_name:link,a.best_name:visited,a.best_name:hover,a.best_name:active,a.best_name:focus{
display: block;height: 20px;line-height: 20px;
padding-left: 10px;font-size:1.2em;text-decoration: none; color:#fff;background-color: transparent;text-align:left;}
a.best_category:link,a.best_category:visited,a.best_category:hover,a.best_category:active,a.best_category:focus{
display: block;height: 20px;line-height: 20px;
font-size: 0.9em;text-transform: uppercase;padding-left: 10px;text-decoration: none; color:#fff;background-color: transparent;text-align:left;}

#text_content{padding-top:20px;background:#fff;min-height:483px;}

/* General
-------------------------------------------------------------- */

p{font-size:1.0em;color:#0f2535;}
p.big{font-size:1.2em;color:#6e6d6a;font-weight:bold;}
h2{font-family: "Times New Roman", Times, serif;font-size:28px;font-style:italic;color:#405161;text-indent:40px;line-height:60px;}