@CHARSET "UTF-8";

/* 
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  additionally, much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/
html, body { height: 100%; min-height: 100%;}
html { font-size: 100%; }
/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header, 
hgroup, menu, nav, section, menu,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

/* tags HTML5 qui se comportent comme des blocs */ 
article, aside, audio, canvas, datagrid, datalist, details, dialog, figure, footer, header, menu, nav, section, video { display: block; } 
/* tags de type en ligne */ 
abbr, eventsource, mark, meter, time, progress, output, bb { display:inline; }


nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; border:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; /*color:#000;*/ text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted #000; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }
/* END RESET CSS */


/*
fonts.css from the YUI Library: developer.yahoo.com/yui/
          Please refer to developer.yahoo.com/yui/fonts/ for font sizing percentages

There are two custom edits:
 * make the line-height relative and unit-less
 * remove the pre,code styles as we use a recommendation from Eric Meyer instead
*/
body { font:13px arial,helvetica,"Nimbus Sans L", "Bitstream Vera Sans", sans-serif; *font-size:small; *font:x-small; line-height:1.22; }

table { font-size:inherit; font:100%; }

select, input, textarea { font:99% arial,helvetica,"Nimbus Sans L", "Bitstream Vera Sans", sans-serif; }


/* normalize monospace sizing 
 * meyerweb.com/eric/thoughts/2010/02/12/fixed-monospace-sizing/
 */
code, pre { font-family: "Courier New", monospace, serif; font-size: 1em; }
 


/* 
 * minimal base styles 
 */


/* #444 looks better than black: c */ 
body, select, input, textarea { color:#444; }

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
 
/* www.aestheticallyloyal.com/public/optimize-legibility/ */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; text-rendering: optimizeLegibility; }

/* maxvoltar.com/archive/-webkit-font-smoothing */
html { -webkit-font-smoothing: antialiased; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:active { outline: none; }
a:focus { outline: thin dotted; }

a, a:active,  a:visited { color:	#fff;	/*#607890;*/ }
a:hover { color:#fff	/*#036;*/ }


ul { margin-left:30px; }
ol { margin-left:30px; list-style-type: decimal; }

small { font-size:85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align:top; }

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom;}
input[type="checkbox"] { vertical-align: bottom; *vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #dbeeb2; color:#00f; text-shadow: none; }
::selection { background:#dbeeb2; color:#00f; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 


/* always force a scrollbar in non-IE 
html { overflow-y: scroll; }
*/
/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display:block; text-indent:-999px; overflow:hidden; background-repeat: none; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display:none; visibility:hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/ 
   Solution from: j.mp/visuallyhidden - Thanks Jonathan Neal! */
.visuallyhidden { position:absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX << */
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; } /* Hides from IE-mac \*/
.clearfix { display: block; }



/***** BluePrint ******/
/* forms.css */
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;}
input[type=text], input[type=password], input.text, input.title, textarea, select {background-color:#fff;border:1px solid #bbb;}
input[type=text]:focus, input[type=password]:focus, input.text:focus, input.title:focus, textarea:focus, select:focus {border-color:#666;}
input[type=text], input[type=password], input.text, input.title, textarea, select {margin:0.5em 0;width:265px;}
input.text, input.title {padding:5px;}
input.title {font-size:1.5em;}
/*textarea {width:265px; padding:5px;}*/
input[type=checkbox], input[type=radio], input.checkbox, input.radio {position:relative;top:.25em;}
form.inline {line-height:3;}
form.inline p {margin-bottom:0;}
.error, .notice, .success {padding:.8em;margin-bottom:1em;border:2px solid #ddd;}
.error, .errors {background:#FBC2C4;color:#8a1f11;border-color:#FBC2C4;}
.notice {background:#FFF6BF;color:#514721 !important;border-color:#FFD324;}
.success {background:#E6EFC2;color:#264409 !important;border-color:#C6D880;}
.error a {color:#8a1f11;}
.notice a {color:#514721;}
.success a {color:#264409;}
/* petit ajout aux forms */
#container label.required:after { content:' *';}
.error, .notice, .success {
	list-style: none;
	width: 70%;
}

/* polices embarquées */
@font-face {
	font-family: 'JaneAusten';
	src: url('fonts/JaneAusten.eot'); /* IE6-8 */
	src: local('☺'), 
	     url('fonts/JaneAusten.woff') format('woff'), /* FF3.6, IE9 */
	     url('fonts/JaneAusten.ttf') format('truetype'), /* Saf3+,Chrome,FF3.5,Opera10+ */
	     url('fonts/JaneAusten.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}


/* layout */
body { background-color: #000;}
/*
div.bg.accueil { background: url('img/fd_accueil3.jpg') repeat; }
div.bg.entreprise { background: url('img/fd_entreprise2.jpg') repeat; }
div.bg.actualite { background: url('img/fd_actu3.jpg') repeat; }
div.bg.ptvente { background: url('img/fd_ptvente2.jpg') repeat; }
div.bg.contact { background: url('img/fd_contact.jpg') repeat; }
*/
div.bg { 
	width: 100%; 
	height: 100%;
	min-height: 700px;
	padding-top: 150px; 
	position: relative;
}

div.bg img.background {
	position: absolute;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
	z-index: 0;
}
div#identity {
	position: absolute;
	top: 0px;
	right: 20px;
	width: 280px;
	color: #999;
	margin: 1em;
}

div#identity fieldset { border:none; margin:0; padding:0 }
div#identity fieldset dt { float:left; width: 100px; line-height: 20px;}
div#identity fieldset  dd { clear: right; margin-left: 100px; width: 180px; line-height: 20px;}
div#identity input { width: 175px; padding-left:5px; background: #9e9d99; border: 0;}
div#identity input[type="submit"] {background:#FFE667; border: none; width: 100px; float: right;}

div#identity label { color: #FFE667; }
div#identity p { text-align: right; }

div#identity a {
	color: #FFE667;
	text-decoration: none;
}
div#identity a.deco {color: #999;}
div#identity a:hover {
	text-decoration: underline;
}
div#identity #lang a { color: #999; }

div#container {
	width: 860px;
	top: 50%; margin: -300px auto 0;	/* 0 auto */
	position: relative;
	
}

nav a, nav a:visited {
	font-size: 1.3em;
	text-decoration: none;
	color: #68634f;
}
nav .active a, nav a:hover, nav a:active { color: #fff; }
nav li { margin-bottom: 1em; }

nav#main {
	width: 159px;
	height: 500px;
	float: left;
	/*border-right: 1px solid #cab655;*/
}
#content {
	margin-left: 160px;
	width: 680px;
	height: 450px;
}
nav#sub {width: 680px; height: 40px;}
nav#sub ul { margin: 0; padding: 0; }
nav#sub li {
	float: left;
	width: 170px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 0.9em;
	margin: 0;
	
	background: url('img/fd_menu.png') repeat-x left -46px;
}
nav#sub li a {
	color: #fff; 
	line-height: 40px;
    display: block;
    height: 40px;
}
nav#sub li.active, nav#sub li:hover {
	background-position: left top;
	color: #000;
	font-weight: bold;
}
nav#sub li.active a, nav#sub li:hover a {color: #000;}

footer { 
	position:absolute;
	left: 100px;
	bottom: 50px;
	color: #999;
	height: 16px;
	line-height: 16px;
	width: 90%;
}
footer a:link, footer a:active, footer a:visited { 
	color: #999; 
	height: 16px;
	line-height: 16px;
}
footer a#authorlink {
	position: absolute;
	right: 20px;
	font-size: 0.8em;
}

img.gauche { float: left; margin: 0.5em;}
img.droite { float: right; margin: 0.5em; }

/* page accueil / diapos */
#diapo {
	width: 678px;
	height: 500px;
}
.entreprise #diapo { border: 1px solid #97948f; }
/*#diapo img {
	width: 680px;
	height: 460px;
}*/
#diapo div.photo {
	width: 678px;
	height: 460px;
	/*background-color: #000 !important;*/
	background-repeat: no-repeat !important;
	background-position: center !important;
}
#diapo div.text { padding: 30px; }
#diapo h3 { margin-bottom: 1.2em; font-size: 1.7em; }
#diapo p { margin-bottom: 1em; font-size: 1.5em;}
#diapo .black { color:#000; }
#diapo .white { color:#fff; }
#diapo .jane  { font-family: JaneAusten, cursive; font-size: 2em; }
#diapo .normal { font-family: inherit; }

/* diapos designers */
#diapodesigners {
	width: 678px;
	height: 400px;
	border: 1px solid #97948f;
	position: relative;
}
#diapodesigners .designer {
	width: 676px;
	height: 418px;
	padding: 5px;
}
#diapodesigners .designer img {
	width: 225px;
	height: 180px;
	position: absolute;
	left: 40px;
	top: 40px;
}
#diapodesigners .designer .bio {
	position: absolute;
	left: 300px;
	top: 80px;
	width: 340px;
}
#diapodesigners h3 {font-size: 1.3em; margin: 1em; color: #fff;}
#diapodesigners .designer p, #diapodesigners .designer h3 {
	font: 1.2em Arial, sans-serif;
	color: #fff;
	margin: 0 0 1em 0;
	text-align: justify;
}


#diapodesigners div.adresse { padding: 20px !important; }

/* actualités */
#actus { 
	border-left: 1px solid #cab655;
	padding-left: 40px;
	height: 100%;
	background: url('img/actu_logo_nu.png') bottom right no-repeat;
}

#actus h1 {
	color: #ffe667;
	font-size: 2em;
	font-weight: normal;
	float: left;
}
#actus ul#salon { padding: 1em 0 3em 100px}
#actus ul#presse { padding: 1em 0 0 220px}
#actus h2 { 
	color: #ffe667;
	font-weight: normal;
	font-size: 1.3em;
}
#actus li { list-style: none;  margin-bottom: 0.8em;}
#actus li P { color:#66644f; font-size: 1.2em;}
#actus li a {
	background: url('img/fleche_dl.png') left no-repeat;
	padding-left: 15px;
}
#actus li a:link, #actus li a:visited { color:#66644f; text-decoration: none; }
#actus li a:hover, #actus li a:active { color: #ffe667; }


/* Points de vente */
.ptvente #content {
	color: #fff;
	overflow: hidden;	/* auto */
}

#ptvente > div {
	width: 110px;	/* 200px */
	height: 420px;
	overflow: hidden;
	float: left;
	border-left: 1px solid #cab655;
	margin: 0;
	padding: 17px 0 17px 10px;
	position: relative;
}
#ptvente a.bottom {
	position: absolute;
	bottom: 1px;
	right: 0;
}
#ptvente a.top {
	position: absolute;
	top: 0px;
	right: 0;
}
#ptvente ul {
	width: 110px;
	height: 430px;
	overflow: hidden;
	margin: 0;
}

#ptvente ul a {
	color: #cab655;
	font-weight: bold;
	text-decoration: none;
}
#ptvente ul a.choose { color: #dbeeb2; }
#ptvente ul a:hover { color: #ffe667; }
#ptvente li { 
	margin-bottom: 1.2em;
	color: #cab655;
	list-style: none;
}

#ptvente > div.point { width: 305px; /* 350px */ }
.ptvente address {
	padding: 10px;
	color: #000;
	background: rgba(202, 182, 85, 0.5);
}
.ie7 .ptvente address, .ie8 .ptvente address {
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#80cab655,endColorstr=#80cab655);
}
.ptvente #map {
	width: 305px;	/* 350 */
	height: 250px;
	margin-top: 20px;
}

/* Contact */
div#contact { 
	border: 1px solid #cab655;
	padding: 1em 2.5em;
	height: 100%;
	overflow: auto;
	position: relative;
}
#contact label, #contact p { 
	color : #fff;
	font-weight: normal;
	
}
#contact #logonu{
	position:absolute;
	top:10px;
	right:10px;
}
#contact fieldset dt {
	float: left;
	line-height: 20px;
}
#contact fieldset dd { 
	margin-left: 140px; 
	clear: right;
}
#contact fieldset input[type="text"] {
	width: 437px;
	height: 20px;
	line-height: 20px;
}
#contact fieldset input[type="submit"] {
	width: 150px;
	height: 40px;
	float: right;
	margin-right: 15px;
	background-color: #FFE667;
	font-weight: bold;
	border: 1px outset buttonface;
}
#contact fieldset textarea {
	width: 450px;
}
#contact fieldset {
	border: none;
	padding: 0;
}

#contact ul.errors {
	margin: 0;
	width: 452px;
}
#contact ul.errors li { padding-left: 1em; }

#contact #requiered_fields {
	position: relative;
	top: -50px;
	display: none;
	width: 150px;
}


/* Annexes */
div.bg.annex {
	background: url('../images/pro/logo.jpg') 50px 50px no-repeat #ffffff;
}
div.bg.annex #content { 
	overflow: auto;
	padding-right: 5px;
	/*color: #fff;*/
}
div.bg.annex p {
	margin-bottom: 1em;
}