/*
	Theme Name: Boilerplate
	Theme URI: http://aarontgrogg.com/boilerplate/
	Description: A merger created by Aaron T. Grogg (<a href="http://aarontgrogg.com/">http://aarontgrogg.com/</a>) of the HTML5 Boilerplate (<a href="http://html5boilerplate.com/">http://html5boilerplate.com/</a>) and the Starkers theme (<a href="http://starkerstheme.com/">http://starkerstheme.com/</a>), Boilerplate: Starkers provides developers with an ideal, bleeding-edge, clean-start theme.  Mark-up is minimal (thanks Elliott) and the most edge-case web technology is baked right in (thanks Paul, Divya and a large cast of supporting characters)!  Boilerplate themes are designed to serve as a Parent theme to whatever Child (<a href="http://codex.wordpress.org/Child_Themes">http://codex.wordpress.org/Child_Themes</a>) you care to add, but you could just as easily use this as a starting point and alter the PHP as your design needs.  More about this theme can be found at <a href="http://aarontgrogg.com/boilerplate/">http://aarontgrogg.com/boilerplate/</a>.
	Author: Aaron T. Grogg, based on the work of Paul Irish, Divya Manian, and Elliot Jay Stocks
	Version: 2.1.3
	Tags: custom-menu, editor-style, theme-options, threaded-comments, sticky-post, microformats, rtl-language-support, translation-ready

	License: GNU General Public License v2.0
	License URI: http://www.gnu.org/licenses/gpl-2.0.html
	
	This CSS file is a concatenation of style.css from HTML5 Boilerplate and style.css from Starkers.
	Comment blocks indicate where each begins and ends, like this, for example...
*/
/*
	HTML5 ✰ Boilerplate 

	style.css contains a reset, font normalization and some base styles.

	credit is left where credit is due.
	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
*/
/*
	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/
*/
#appfondu { display:none; }
.my_select { display:none; }

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, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

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; 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; 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/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 

/* 
 * minimal base styles 
 */


body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #444; 
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}

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

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

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

a, a:active, a:visited { color: #444;}
a:hover { color: #036; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 

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 */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* 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; }
.ie7 input[type="checkbox"] { 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; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


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

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

/* 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: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* 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/  &  j.mp/visuallyhidden  */
.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: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }






 /* Primary Styles
    Author: 
 */

* html, div#main_container{
	 height:100%;
     /*overflow:auto;*/
}

* html body{
  overflow:hidden;
} 
body {
	/*height:100%;*/
	line-height:18px;
	margin:0;
	padding:36px 0 50px 0;
}

@media screen{
  body>#header{
   position:fixed;
  }
  body>#footer{
   position:fixed;
  }
 }
 
 /* IE6/7/8 (via Keith Clarke) */
@media \0screen\,screen\9 {
body>#header{
   position:fixed;
  }
  body>#footer{
   position:fixed;
  }
 }


select { display:none; }

	
/* FOOTER
----------------------------------------------------------------------------------------------------*/
footer, #footer {
	/*
	position: fixed;
	bottom:0;
	padding : 8px 0 6px 0;
	margin: 0 10px;
	background-color: #ffffff;
	z-index:120;
	*/
	/*
	position: relative;
	margin: 0 auto;
	padding:0 0 0px 0;
	z-index: 120;
	width: 940px;
	height: 20px;
*/
  position:absolute;
  bottom:10px;
  left:0;
  width:100%;
  height:20px;
  z-index:1000;
}

footer .caption a {
	color:#888888;
}
footer .caption a:hover {
	color:#00FF00;
}

#logo-footer { padding: 6px 0 0 10px; margin: 0 0px 0 0; height:12px; width:45px;}
#logo-footer img { display:block; float:left; margin: 0; padding: 0; }

.grid_footer { 
	border-top: 0px solid #444;
}

.grid_footer ul{ 	
	margin:0px 0 0 10px;
}

.grid_footer ul li {font-size:9px;}
/*
footer {position: fixed;
	margin-top: -18px; /* negative value of footer height */
	/*
	height: 18px;
	clear:both;} 
	*/

/*Opera Fix*/
/*
body:before {
	content:"";
	height:100%;
	float:left;
	width:0;
	margin-top:-32767px;
}
*/

/* GENERIQUE
----------------------------------------------------------------------------------------------------*/

h1 {
  font-size: 25px;
  line-height: 30px;
}

h2 {
  font-size: 23px;
  margin : 0 0 12px 0;
}

h3 {
  font-size: 21px;
  line-height: 24px;
}

h4 {
  font-size: 19px;
  margin : 0 0 10px 0;
}

h4.rub {
	letter-spacing:1px;
	font-size:11px;
	color: #444;
	text-transform: uppercase;	
margin : 0 0 10px 0;
}

h5 {
  font-size: 17px;
}

h6 {
  font-size: 15px;
}

table {
	margin:0;
}

.legend span { font-size:11px; }

#contenu-projet h1, #contenu-store h1, #contenu-product h1, #contenu-company h1, #mentions h1, #legend h1, #wpcf7-f1389-t1-o1 h1, #contact_form h1 {
	margin: 0 0 5px 0;
	font-weight: normal;
	/*float:left;*/
}

#bloc-titre-home h1 {
	font-size:30px;
	margin: 0 0 8px 0;
	font-weight: bold;
	line-height:36px;
	/*float:left;*/
}

#contenu-projet h3, #contenu-store h3, #contenu-product h3, #mentions h3, #contact_form h3, #wpcf7-f1389-t1-o1 h3{
	font-weight: normal;
	color:#999;
	margin:0;
	padding:0 0 0px 0;
	font-size: 18px;
}

#produit-infos-texte p, #projet-infos-texte p, #mentions p {
	margin: 0px 0 10px 0;
}

/* LIENS 
----------------------------------------------------------------------------------------------------*/
a {
	text-decoration:none;
}
a:hover {
  color:#00FF00;  
}

/* TEXTE PARAGRAPHE 
----------------------------------------------------------------------------------------------------*/

p , .c_caption, .tech {
font-size:11px;
letter-spacing: 0.08em;
line-height:16px;
}

/* SPACING
----------------------------------------------------------------------------------------------------*/
.vspace {
padding-bottom: 18px;
}

.vspace_2 {
padding-bottom: 36px;
} 

.vspace_3 {
padding-bottom: 72px;
}

/* HEADER
----------------------------------------------------------------------------------------------------*/
header {
	/*position: fixed;*/
	white-space: nowrap;
	padding : 18px 0 18px 0;
	margin: 0 10px;
	background-color: #ffffff;
	z-index: 120;
	/*width:940px;*/
	
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:36px;
}

header img {
	float:right;
}


/* NAVIGATIONS
----------------------------------------------------------------------------------------------------*/
nav ul li{
	float:left;
	display:block; 
	text-transform: uppercase;
	font-size:9.5px;
	border:0;
	line-height: 9px;
	padding: 0 7px 0px 7px;
	border-left: 0px solid #666;
	white-space: nowrap;  
}

nav.sub_nav ul li{
text-transform: lowercase;
font-size: 11px;
letter-spacing: 0.03em;
}

nav.sub_nav {
clear: both;
padding: 8px 0 0px 0;
}


nav ul li:first-child {
	border:0;
	margin:0;
	padding: 0 10px 0px 0px;
}

nav#access {
	margin-top: 7px;
	padding-bottom:7px;
	/*border-bottom: 1px solid #444;*/
	white-space: nowrap;
}

nav ul li a, nav ul li a:visited {
	text-decoration: none;
	color:#666;
}

nav ul li a:hover {
	color:#1A1A1A;
}

#othermarkets{
border-left: 1px solid #666; padding: 0 7px 0px 7px;
}
#slogan{
padding:0;
float:right;
text-transform:initial;
font-size: 15px;
margin: -2px 0 0 0;
font-weight: lighter;
}
nav ul.qtrans_language_chooser {
float:left;
margin: 0 0 0 7px;
}

nav ul.qtrans_language_chooser li {
padding: 0 7px 0px 7px;
/*float:right;*/
border:0;
}

nav ul.qtrans_language_chooser li:first-child {
padding: 0 7px 0px 0px;
border-right:1px solid #666;
}

nav ul.qtrans_language_chooser li.active a {
color: #00FF00;
}

li.current-menu-item a {
color: #00FF00 !important;
}

/* SECTION
----------------------------------------------------------------------------------------------------*/
section {
	padding: 60px 0 35px 0;
}


/* HOMEPAGE
----------------------------------------------------------------------------------------------------*/
#contenu-home h3 p {
	font-weight: normal;
	color:#999;
	margin:0;
	padding:0 0 0px 0;
	font-size: 18px;
	line-height:24px;
}

span.more-home{
	color: #444;
	font-size:26px;
}

a h1 {
	color:#444;
}


a:hover h1, a:hover h3, a:hover .more-home {
	color:#00FF00;
}

#bloc-titre-home {
	position:relative;
	background-color: #fff;
}
/*
#bloc-titre-home h1 {
line-height: 36px;
text-transform:uppercase;
font-weight:normal;
letter-spacing: 0.02em;
color:#1A1A1A;
} 
*/


.home-rub {
	/*border-right: 1px dotted #999999;*/
}

.home-rub a {
	display:block;
	font-size: 11px;
	line-height:16px;
}

.home-rub img {
	margin-top:0px;
} 

.home-rub p {
	width:200px;
	margin:0;
}

#premier {
	border:0;
}
.bloc-news {
	border-top: 1px dotted #333;  
}

.bloc-news p {
	margin: 9px 0 9px 0;
}

a.link_news {
	margin: 5px 0 5px 0;
	padding:0;
	display: block;
	color:#666;	
	font-size:11px;
	line-height:16px;
	text-decoration: none;
}

a.link_news:hover {
	color:#666;
}

a.link_news span {
	clear:left;
	color: #1A1A1A;
}

.legend {
	display:block;
	float:left;
}
/* INDEX PRODUCTS
----------------------------------------------------------------------------------------------------*/

.my_page_product {
	float:left;
	clear: none;
}

#nav-index-produits {
	float:right;
	width:auto;
	white-space:nowrap;
	padding: 7px 0;
}

.vign-index a {
	display:block;
	width: 300px;
	height: 425px;
	margin: 0 0 5px 0;
}


#filtres {
	visibility: hidden;
	font-size: 11px;
	/*text-transform: uppercase;*/
}

#filtres table {
	/*margin: 0;*/
	margin: 0 auto;
}

#filtres td, td img {
	vertical-align: bottom;
}

#filtres .col1 {
	text-align: left;
	border-right-style: dotted;
	border-right-color: #999;
	border-right-width: 1px;
	padding: 0 25px 0 0px;
	vertical-align: bottom;
}

#filtres .col2 {
	width: 80px;
	white-space: nowrap;
	padding: 0 0px 4px 25px;
	text-align: center;
}

a.archivign {
	display:block;
	width:140px;
	height: 140px;
}

.filtre-source{
	text-align:center;
	float:none;
	clear:left;
	height:22px;
	margin: 0 0 10px 0;
} 

.filtre-source a {
	float:none;
	text-align:left;
	display: block;
	height:20px;
	margin: 10px 0 0 0;
	color:#666;	
}

.filtre-source a.premier{
	margin: 0;
}

.filtre-typo a img {
	vertical-align: top;
}

.filtre-typo .caption {
margin: 13px 0 0 0;
}

.filtre-typo a {
	height: 100%;
	color:#666;
}

/*
.filtre-source a:hover, .filtre-typo a:hover, .filtre-source a:hover img, .filtre-typo a:hover img {
	color:#444;
}
*/

.filtre-source a:hover img, .filtre-typo a:hover img {
	background-color:#333;
}


.filtre-source a.active, .filtre-typo a.active {
	color:#00FF00;
}

.filtre-source a.active img, .filtre-typo a.active img {
	background-color:#00FF00;
}

.filtre-typo img {
	background-color:#CCCCCC;
}

.filtre-typo .active img, .filtre-source .active img {
	background-color:#00FF00;
}

.filtre-source img {
	vertical-align: middle;
	width:20px;
	height:20px;
	background-color:#CCCCCC;
} 
  
/* SINGLE PRODUCT
----------------------------------------------------------------------------------------------------*/
#contenu-projet #titre {
	margin: 0 0 30px 0;
}

#contenu-product #titre {
	margin: 0 0 10px 0;
	position:relative;
}

#contenu-company #titre {
	margin: 0 0 0px 0;
	position:relative;
}
/*
#col_left img{
	border: 1px solid #929292;
}
*/

#col_right a{
	float:left;
	line-height: 0;
	margin:0;
	padding:0;
}

#infos-texte {
	border-right: 1px dotted #999;
}

#infos-texte p {
	font-size: 12px;
}

/* navigation page */
#nav-pagin {
	float:left;
}

div.pagination {position:relative; padding: 0 40px 0 0; height:20px;}
#nav-index-produits .pagination a, #nav-index-produits .pagination span {color:#444; padding: 0 8px 0 0; display:none;}
#nav-index-produits .current { color:#00FF00;}
/* next */

#nav-index-produits span.next {
	position:absolute;
	right:0;
	top:0;
	display:block;
	width:8px;
	height:16px;
	margin: 0px;
	padding: 0;
	background: url('images/nav-page.png') -72px 0px no-repeat;
}

#nav-index-produits a.next {
	display:block;
	width:8px;
	height:16px;
	margin: 0 ;
	padding: 0;
	position:absolute;
	right:0;
	top:0;
	background: url('images/nav-page.png') -16px  0px no-repeat;
}

#nav-index-produits a.next:hover {
	display:block;
	width:8px;
	height:16px;
	position:absolute;
	right:0;
	top:0;
	margin: 0;
	padding: 0;
	background: url('images/nav-page.png') -24px 0px no-repeat;
}

/* prev */

#nav-index-produits span.prev {
	position:absolute;
	right:10px;
	top:0;
	width:8px;
	display:block;
	height:16px;
	margin: 0 10px 0 10px;
	padding: 0;
	background: url('images/nav-page.png') -64px 0px no-repeat;
}

#nav-index-produits a.prev {
	display:block;
	width:8px;
	height:16px;
	margin: 0 10px 0 10px;
	padding: 0;
	position:absolute;
	right:10px;
	top:0;
	background: url('images/nav-page.png') 0px 0px no-repeat;
}

#nav-index-produits a.prev:hover {
	display:block;
	width:8px;
	height:16px;
	position:absolute;
	padding: 0;
	right:10px;
	top:0;
	background: url('images/nav-page.png') -8px 0px no-repeat;
}

/*----------------------------------*/

#nav-previous {
	float:left;
	width:8px;
	height:16px;
	margin: 0 10px 0 10px;
	background: url('images/nav-page.png') -64px 0px no-repeat;
}

#nav-next {
	float:left;
	width:8px;
	height:16px;
	margin: 0 10px 0 0px;
	background: url('images/nav-page.png') -72px 0px no-repeat;
}

#nav-next a.next:hover {
	display:block;
	width:8px;
	height:16px;
	float:left;
	background: url('images/nav-page.png') -24px 0px no-repeat;
}

#nav-previous a {
	display:block;
	width:8px;
	height:16px;
	float:left;
	background: url('images/nav-page.png') 0px 0px no-repeat;
}

#nav-previous a:hover {
	display:block;
	width:8px;
	height:16px;
	float:left;
	background: url('images/nav-page.png') -8px 0px no-repeat;
}

#nav-next a {
	display:block;
	width:8px;
	height:16px;
	float:left;
	background: url('images/nav-page.png') -16px  0px no-repeat;
}

#nav-next a:hover {
	display:block;
	width:8px;
	height:16px;
	float:left;
	background: url('images/nav-page.png') -24px 0px no-repeat;
}


#nav-close {
	float:left;
	width:16px;
	height:16px;
	margin: 0 0px 0 0;
}

#nav-close a {
	display:block;
	width:16px;
	height:16px;
	float:left;
	margin: 0 0px 0 0;
	background: url('images/nav-page.png') -32px 0px no-repeat;
}

#nav-close a:hover {
	display:block;
	width:16px;
	height:16px;
	float:left;
	margin: 0 0px 0 0;
	background: url('images/nav-page.png') -48px 0px no-repeat;
}

/* navigation images cycle */
#navpix a, .navpix a{
float:left;
display:block;
font-size:11px;
margin: 0 8px 0 0;
color:#333;
}

#navpix a.activeSlide, .navpix a.activeSlide {
color:#00FF00;
}

.anim {
	border-bottom: 1px dotted #999;
	padding: 0 0 10px 0;
}

.infosplus {
	border-top: 1px dotted #999;
	padding: 6px 0 6px 0;
}
.infosplus h4, .tech h4 {
	letter-spacing:1px;
	font-size:11px;
	margin:0;
	color: #444;
	/*font-weight: normal;*/
	text-transform: uppercase;	
}

.infosplus p, .c_caption {
	margin: 0;
}

#src-typo {
	
	position: absolute;
	top: -25px;
	right: 0px;

}

a.carre, a.carre2, a.noimage {
	float: left;
	display:block;
	width: 10px;
	height: 10px;
	margin: 5px 5px 5px 0;
	background-color: #444;
}

.c_caption {
	display:none;
}

/* vignettes */
.thumb_rlt {
	overflow: auto;
	margin: 0 0 30px 0;
}

.caption {
font-size: 11px;
font-weight:normal;
line-height:12px;
}

#data_sheet a {
	display:block;
	height: 15px;
	padding: 0 0 0 20px;
	background: url('images/datasheet.png') 0px 0px no-repeat;
}

#data_sheet div{
	display:block;
	height: 15px;
	width: 15px;
	padding: 0px 5px 0 0;
	float:left;
	background: url('images/datasheet.png') 0px 0px no-repeat;
}

#data_sheet:hover div, #data_sheet:hover a {
	background: url('images/datasheet.png') 0px -15px no-repeat;
}

#presskit a {
	display:block;
	height: 15px;
	padding: 0 0 0 20px;
	background: url('images/presskit.png') 0px 0px no-repeat;
}

#presskit a:hover {
	background: url('images/presskit.png') 0px -15px no-repeat;
}

/* infos bulles */
.tinyTip			{  z-index:1000; padding: 0px; display: block; text-align: center;}
.tinyTip .content	{ padding: 0px 10px 0px 10px; font-size: 10px;  color: #fff; text-align:center; background: url('images/tinyTip-content.png') 0px 0px repeat-y; }
.tinyTip .top		{ width: 100%; height: 7px; background: url('images/infobulle-fleche.png') 50% 0px no-repeat; font: 0px/0px sans-serif; }

a.tTip {
	display:block;
	float:left;
	width: 49px;
	height : 49px;
	z-index:10;
	overflow: hidden;
	border: 0px solid lime;
}

.minivign {
	position:relative;
	float:left;
	width: 49px;
	height: 49px;
}

/* vignettes couleur */
.couleur {
	position: absolute;
	top: 0;
	left: 0;
	z-index:0;
}
/* vignettes grises */
.gris {
	position: absolute;
	display:block;
	top: 0;
	left: 0;
	z-index:2;
}

#fancybox-title {
	top: 0px;
	width: auto;
}

/*
#azimut-system {
	width: 140px;
	height: 40px;
	background: url('images/azimut-systeme.png') 0px 0px no-repeat;
}

#images {
	margin: 0 0 20px 0;
}
*/

/* SINGLE PRODUCT ARCHI
----------------------------------------------------------------------------------------------------*/
#fiche-technique {
	display: none;
}

/* tableau technique fiche archilight */
.tech tr.title td {
	padding:20px 0 5px 0;
	margin:0;
	border: 0;
}

.tech td {
	width:300px;
	border-bottom: 1px dotted #999;
}

.tech td.col1 {
	width:120px;
}

.tech td.col2 {
	
}

.tech .ligne1 td {
	/*background-color:#f0f0f0;*/
	padding :6px;
}

.tech .ligne2 td{
	/*background-color:#f9f9f9;*/
	padding :6px;
}

a.company {
	display: block;
	margin: 0 0 10px 0;
}


/* INDEX PROJETS
----------------------------------------------------------------------------------------------------*/
.serti-projet {
	position: absolute;
	top: 0;
	left: 0;
	width: 136px;
	height : 89px;
	border : 2px solid #00FF00;
	z-index:1;
}

a.vign-projet {
	position:relative;
	width:140px;
	height:93px;
}

a.vign-press {
	position:relative;
	width:142px;
	height:142px;
	overflow:hidden;
	border: 1px solid #CCCCCC;
}

a.vign-press:hover {border: 1px solid #00FF00;}

#urlproduit {display:none;}

#index-projets h2,  #index-presse h2, #preindex-products h2 {
	/*text-transform: uppercase;*/
	font-weight: normal;
	letter-spacing: 1px;
}

#index-presse h2 {
 	font-size: 18px;
	font-weight: normal;
	letter-spacing: 1px;	
}

#presskit_form, #contact_form {
	font-size:11px;
	line-height:14px;
	padding: 15px 0 0 0;
	margin: 0 10px 0 10px;
}

#presskit_form table td, #contact_form table td {
	text-align:left;
	padding: 5px 0;
}

#presskit_form table input[type='text'], #contact_form table input[type='text'] {
	width:160px;
	height: 16px;
	padding: 2px;
	border: 1px dotted #6F6E6E;
}


#contact_form textarea, #contact_form textarea {
	width:300px;
	height: 170px;
	padding: 2px;
	border: 1px dotted #6F6E6E;
}

/* SINGLE PROJETS
----------------------------------------------------------------------------------------------------*/
#images {
	margin: 0 0 20px 0;
}

/* STORE LOCATOR
----------------------------------------------------------------------------------------------------*/
#continents, #pays, #regions, #zones {
	margin: 0 0 10px 0;
}

#contenu-store h4 {
font-weight:normal;
font-size:11px;
text-transform:capitalize;
line-height:14px;
font-weight: bold;
margin: 0 0 0px 0;
padding: 0 0 4px 0;
background-image:none;
} 

#contenu-store #col_right a{
	float:none;
}

#titre {
	margin: 0 0 60px 0;
} 

.sbHolder{
	background-color: #fff;
	border: dotted 1px #515151;
	font-size: 11px;
	font-weight: normal;
	height: 30px;
	position: relative;
	width: 160px;
}

#col_right a.filtres-stores, a.typeaccessoire, a.filtres-stores {
	display: block;
	position: relative;
	text-transform: uppercase;
	background-color: #fff;
	border: dotted 1px #515151;
	font-size: 10px;
	font-weight: normal;
	height: 30px;
	line-height: 30px;
	text-indent: 10px;
	padding: 0px;
	margin: 0 0 10px 0;
}

a.filtre-fiche {
	float:left;
	display: block;
	position: relative;
	text-transform: uppercase;
	background-color: #fff;
	border: dotted 1px #515151;
	font-size: 10px;
	font-weight: normal;
	height: 30px;
	line-height: 30px;
	text-indent: 10px;
	padding: 0px;
	margin: 0px 10px 0px 0;
	text-align:center;
	width: 140px;
}

#btn-switch {
	padding: 20px 0 25px 0;
}

#col_right a.filtres-stores .num{
	float:right;
	padding: 0 10px 0 0;
}

a.filtres-stores .num{
	display: block;
}


#col_right a.filtres-stores.actif, a.typeaccessoire.actif, a.filtre-fiche.actif, a.typeaccessoire.active {
	background-color: #444;
	color:#00FF00;
}


.sbSelector{
	display: block;
	height: 30px;
	left: 0;
	line-height: 30px;
	outline: none;
	overflow: hidden;
	position: absolute;
	text-indent: 10px;
	top: 0;
	width:130px;
}
.sbSelector:link, .sbSelector:visited, .sbSelector:hover{
	color: #00FF00;
	outline: none;
	text-decoration: none;	
}

.sbToggle{
	background-image: url('images/fleche-liste.png');
	background-position: top left;
	background-repeat: no-repeat;
	display: block;
	height: 30px;
	outline: none;
	position: absolute;
	right: 0;
	top: 0;
	width: 30px;
}
.sbToggle:hover{
	background-position: 0 -30px;
}
.sbToggleOpen{
	background: url('images/fleche-liste.png') 0 -60px no-repeat;
}
.sbToggleOpen:hover{
	background: url('images/fleche-liste.png') 0 -90px no-repeat;
}
.sbHolderDisabled{
	background-color: #3C3C3C;
	border: solid 1px #515151;
}
.sbHolderDisabled .sbHolder{
	
}
.sbHolderDisabled .sbToggle{
	
}
.sbOptions{
	background-color: #fff;
	border-right: dotted 1px #515151;
        border-left: dotted 1px #515151;
        border-bottom: dotted 1px #515151;
	list-style: none;
	left: -1px;
	margin: 0;
	padding: 0 0 30px 0;
	position: absolute;
	top: 30px;
	width: 160px;
	z-index: 200;
	overflow-y: auto;
}
.sbOptions li{
	margin:0;
	padding: 0 7px;
}
.sbOptions a{
	border-bottom: dotted 1px #515151;
	display: block;
	outline: none;
	padding: 7px 0 7px 3px;
}
.sbOptions a:link, .sbOptions a:visited{
	color: #444;
	text-decoration: none;
}
.sbOptions a:hover{
	color: #00FF00;
}
.sbOptions li.last a{
	border-bottom: none;
}



/*|--------------------|*/
/*| carte interactive  |*/
/*|--------------------|*/

#liste-stores img {
position: absolute;
top:0px;
left: 0px;
z-index: -20;
}

#liste-stores {
position: relative;
}

#world {
position: relative;
width: 520px;
height: 286px;
background: url('images/map/wholeworld.png') 0 0px no-repeat;
padding: 0;
margin:0;
}

#world li {
display: block;
position: absolute;
list-style: none;
margin: 0;
padding: 0;
}

#world a {
display: block;
text-decoration: none;
outline: none;
}

#africa{left:219px; top:122px;}
#asia{left:286px; top:23px;}
#north-america{top:0px; left:0px;}
#south-america{left:126px; top:164px;}
#europa{top:43px; left:209px;}
#oceania{top:185px; left:409px;}

#africa a{width:98px; height:121px;}
#asia a{width:235px; height:174px;}
#north-america a{width:228px; height:174px}
#south-america a{width:68px; height:122px;}
#europa a{width:98px; height:79px}
#oceania a{width:94px; height:81px;}

#africa a:hover, #africa.actif {
background: url('images/map/spriteworld.png') -259px -175px no-repeat;
}
#asia a:hover, #asia.actif {
background: url('images/map/spriteworld.png') -230px 1px no-repeat;
}
#north-america a:hover, #north-america.actif {
background: url('images/map/spriteworld.png') 0px 0px no-repeat;
}
#south-america a:hover, #south-america.actif {
background: url('images/map/spriteworld.png') -98px -174px no-repeat;
}
#europa a:hover, #europa.actif {
background: url('images/map/spriteworld.png') 1px -173px no-repeat;
}
#oceania a:hover,#oceania.actif {
background: url('images/map/spriteworld.png') -165px -173px no-repeat;
}













/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}

/** END HTML5 Boilerplate CSS **/


/* TYPOGRAPHY */
/* ----------------------------------------- */

h1, h2, h3, h4, h5, h6 { font-weight:bold } /* This helps to identify headings at the initial build stage, so I thought it'd be useful to have it */
.alert { background:red; color:white } /* 'alert' has a basic style, since it's useful to have it standing out for testing purposes.



/* Font stack options

	The following represents a list of font stacks, as recommended by Nathan Ford in
	http://unitinteractive.com/blog/2008/06/26/better-css-font-stacks/

	I've added inverted commas around the relevant family names to ensure compatibility.
	p = balanced for paragraphs or body copy
	t = balanced for headlines or titles

	- - - -

Arial, "Helvetica Neue", Helvetica, sans-serif - p, t

Baskerville, "Times New Roman", Times, serif - p
Baskerville, "Times, Times New Roman", serif - t

Cambria, Georgia, Times, "Times New Roman", serif - p, t
"Century Gothic", "Apple Gothic", sans-serif - p, t

Consolas, "Lucida Console", Monaco, monospace - p, t

"Copperplate Light", "Copperplate Gothic Light", serif - p, t

"Courier New", Courier, monospace - p, t

"Franklin Gothic Medium", "Arial Narrow Bold", Arial, sans-serif - p, t

Futura, "Century Gothic", "Apple Gothic", sans-serif - p, t

Garamond, "Hoefler Text", "Times New Roman", Times, serif - p
Garamond, "Hoefler Text", Palatino, "Palatino Linotype", serif - t

Geneva, "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif - p
Geneva, Verdana, "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", sans-serif - t

Georgia, Palatino, "Palatino Linotype", Times, "Times New Roman", serif - p
Georgia, Times, "Times New Roman", serif - t

GillSans, Calibri, Trebuchet, sans-serif - p
GillSans, Trebuchet, Calibri, sans-serif - t

"Helvetica Neue", Arial, Helvetica, sans-serif - p
Helvetica, "Helvetica Neue", Arial, sans-serif - t

Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif - p, t

"Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", sans-serif - p, t

Palatino, "Palatino Linotype", Georgia, Times, "Times New Roman", serif - p
Palatino, "Palatino Linotype", "Hoefler Text", Times, "Times New Roman", serif - t

Tahoma, Geneva, Verdana - p
Tahoma, Verdana, Geneva - t

Times, "Times New Roman", Georgia, serif - p, t

Trebuchet, "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif - p
Trebuchet, Tahoma, Arial, sans-serif - t

Verdana, Geneva, Tahoma, sans-serif - p
Verdana, Tahoma, Geneva, sans-serif - t

*/

/** END Starkers CSS **/

/** START WordPress-Defined CSS Classes **/
.wp-caption-text{}
.gallery-caption{}
.bypostauthor{}
.sticky{}
/** END WordPress-Defined CSS Classes **/



nav ul li.lang-de {
border-right: 1px solid #666 !important;
border-left: 1px solid #666 !important;
}