/*! normalize.css 2011-11-04T15:38 UTC - http://github.com/necolas/normalize.css */

/* =============================================================================
 HTML5 display definitions
 ========================================================================== */

/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */

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

/*
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 */

audio, canvas, video {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

/*
 * Prevents modern browsers from displaying 'audio' without controls
 */

audio:not([controls]) {
	display: none;
}

/*
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */

[hidden] {
	display: none;
}

/* =============================================================================
 Base
 ========================================================================== */

/*
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Keeps page centred in all browsers regardless of content height
 * 3. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */

html {
	font-size: 100%; /* 1 */
	overflow-y: scroll; /* 2 */
	-webkit-text-size-adjust: 100%; /* 3 */
	-ms-text-size-adjust: 100%; /* 3 */
}

/*
 * Addresses margins handled incorrectly in IE6/7
 */

body {
	margin: 0;
}

/*
 * Addresses font-family inconsistency between 'textarea' and other form elements.
 */

body, button, input, select, textarea {
	font-family: sans-serif;
}

/* =============================================================================
 Links
 ========================================================================== */

/*
 * Addresses outline displayed oddly in Chrome
 */

a:focus {
	outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test
 */

a:hover, a:active {
	outline: 0;
}

/* =============================================================================
 Typography
 ========================================================================== */

/*
 * Neutralise smaller font-size in 'section' and 'article' in FF4+, Chrome, S5
 */

h1 {
	font-size: 2em;
}

/*
 * Addresses styling not present in IE7/8/9, S5, Chrome
 */

abbr[title] {
	border-bottom: 1px dotted;
}

/*
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
 */

b, strong {
	font-weight: bold;
}

blockquote {
	margin: 1em 40px;
}

/*
 * Addresses styling not present in S5, Chrome
 */

dfn {
	font-style: italic;
}

/*
 * Addresses styling not present in IE6/7/8/9
 */

mark {
	background: #ff0;
	color: #000;
}

/*
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */

pre, code, kbd, samp {
	font-family: monospace, serif;
	_font-family: 'courier new', monospace;
	font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers
 */

pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

/*
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */

/* 1 */

q {
	quotes: none;
}

/* 2 */

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

small {
	font-size: 75%;
}

/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

/* =============================================================================
 Lists
 ========================================================================== */

ul, ol {
	margin-left: 0;
	padding: 0 0 0 40px;
}

dd {
	margin: 0 0 0 40px;
}

nav ul, nav ol {
	list-style: none;
	list-style-image: none;
}

/* =============================================================================
 Embedded content
 ========================================================================== */

/*
 * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */

img {
	border: 0; /* 1 */
	-ms-interpolation-mode: bicubic; /* 2 */
}

/*
 * Corrects overflow displayed oddly in IE9
 */

svg:not(:root) {
	overflow: hidden;
}

/* =============================================================================
 Figures
 ========================================================================== */

/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */

figure {
	margin: 0;
}

/* =============================================================================
 Forms
 ========================================================================== */

/*
 * Corrects margin displayed oddly in IE6/7
 */

form {
	margin: 0;
}

/*
 * Define consistent border, margin, and padding
 */

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects alignment displayed oddly in IE6/7
 */

legend {
	border: 0; /* 1 */
	*margin-left: -7px; /* 2 */
}

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */

button, input, select, textarea {
	font-size: 100%; /* 1 */
	margin: 0; /* 2 */
	vertical-align: baseline; /* 3 */
	*vertical-align: middle; /* 3 */
}

/*
 * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
 */

button, input {
	line-height: normal; /* 1 */
}

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *    Known issue: inner spacing remains in IE6
 */

button, input[type="button"], input[type="reset"], input[type="submit"] {
	cursor: pointer; /* 1 */
	-webkit-appearance: button; /* 2 */
	*overflow: visible; /* 3 */
}

/*
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 */

input[type="checkbox"], input[type="radio"] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}

/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */

input[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box; /* 2 */
	box-sizing: content-box;
}

/*
 * Removes inner padding that is displayed in S5, Chrome on OS X
 */

input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/*
 * Removes inner padding and border in FF3+
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */

button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */

textarea {
	overflow: auto; /* 1 */
	vertical-align: top; /* 2 */
}

/* =============================================================================
 Tables
 ========================================================================== */

/*
 * Remove most spacing between table cells
 */

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
 960 Grid System ~ Core CSS.
 Learn more ~ http://960.gs/

 Licensed under GPL and MIT.
 */

/*
 Forces backgrounds to span full width,
 even if there is horizontal scrolling.
 Increase this if your layout is wider.

 Note: IE6 works fine without this fix.
 */

body {
	min-width: 960px;
}

/* `Container
 ----------------------------------------------------------------------------------------------------*/

.container_12 {
	margin-left: auto;
	margin-right: auto;
	width: 960px;
}

/* `Grid >> Global
 ----------------------------------------------------------------------------------------------------*/

.grid_1, .grid_2, .grid_3, .grid_4, .grid_5, .grid_6, .grid_7, .grid_8, .grid_9, .grid_10, .grid_11, .grid_12 {
	display: inline;
	float: left;
	margin-left: 10px;
	margin-right: 10px;
}

.push_1, .pull_1, .push_2, .pull_2, .push_3, .pull_3, .push_4, .pull_4, .push_5, .pull_5, .push_6, .pull_6, .push_7, .pull_7, .push_8, .pull_8, .push_9, .pull_9, .push_10, .pull_10, .push_11, .pull_11 {
	position: relative;
}

/* `Grid >> Children (Alpha ~ First, Omega ~ Last)
 ----------------------------------------------------------------------------------------------------*/

.alpha {
	margin-left: 0;
}

.omega {
	margin-right: 0;
}

/* `Grid >> 12 Columns
 ----------------------------------------------------------------------------------------------------*/

.container_12 .grid_1 {
	width: 60px;
}

.container_12 .grid_2 {
	width: 140px;
}

.container_12 .grid_3 {
	width: 220px;
}

.container_12 .grid_4 {
	width: 300px;
}

.container_12 .grid_5 {
	width: 380px;
}

.container_12 .grid_6 {
	width: 460px;
}

.container_12 .grid_7 {
	width: 540px;
}

.container_12 .grid_8 {
	width: 620px;
}

.container_12 .grid_9 {
	width: 700px;
}

.container_12 .grid_10 {
	width: 780px;
}

.container_12 .grid_11 {
	width: 860px;
}

.container_12 .grid_12 {
	width: 940px;
}

/* `Prefix Extra Space >> 12 Columns
 ----------------------------------------------------------------------------------------------------*/

.container_12 .prefix_1 {
	padding-left: 80px;
}

.container_12 .prefix_2 {
	padding-left: 160px;
}

.container_12 .prefix_3 {
	padding-left: 240px;
}

.container_12 .prefix_4 {
	padding-left: 320px;
}

.container_12 .prefix_5 {
	padding-left: 400px;
}

.container_12 .prefix_6 {
	padding-left: 480px;
}

.container_12 .prefix_7 {
	padding-left: 560px;
}

.container_12 .prefix_8 {
	padding-left: 640px;
}

.container_12 .prefix_9 {
	padding-left: 720px;
}

.container_12 .prefix_10 {
	padding-left: 800px;
}

.container_12 .prefix_11 {
	padding-left: 880px;
}

/* `Suffix Extra Space >> 12 Columns
 ----------------------------------------------------------------------------------------------------*/

.container_12 .suffix_1 {
	padding-right: 80px;
}

.container_12 .suffix_2 {
	padding-right: 160px;
}

.container_12 .suffix_3 {
	padding-right: 240px;
}

.container_12 .suffix_4 {
	padding-right: 320px;
}

.container_12 .suffix_5 {
	padding-right: 400px;
}

.container_12 .suffix_6 {
	padding-right: 480px;
}

.container_12 .suffix_7 {
	padding-right: 560px;
}

.container_12 .suffix_8 {
	padding-right: 640px;
}

.container_12 .suffix_9 {
	padding-right: 720px;
}

.container_12 .suffix_10 {
	padding-right: 800px;
}

.container_12 .suffix_11 {
	padding-right: 880px;
}

/* `Push Space >> 12 Columns
 ----------------------------------------------------------------------------------------------------*/

.container_12 .push_1 {
	left: 80px;
}

.container_12 .push_2 {
	left: 160px;
}

.container_12 .push_3 {
	left: 240px;
}

.container_12 .push_4 {
	left: 320px;
}

.container_12 .push_5 {
	left: 400px;
}

.container_12 .push_6 {
	left: 480px;
}

.container_12 .push_7 {
	left: 560px;
}

.container_12 .push_8 {
	left: 640px;
}

.container_12 .push_9 {
	left: 720px;
}

.container_12 .push_10 {
	left: 800px;
}

.container_12 .push_11 {
	left: 880px;
}

/* `Pull Space >> 12 Columns
 ----------------------------------------------------------------------------------------------------*/

.container_12 .pull_1 {
	left: -80px;
}

.container_12 .pull_2 {
	left: -160px;
}

.container_12 .pull_3 {
	left: -240px;
}

.container_12 .pull_4 {
	left: -320px;
}

.container_12 .pull_5 {
	left: -400px;
}

.container_12 .pull_6 {
	left: -480px;
}

.container_12 .pull_7 {
	left: -560px;
}

.container_12 .pull_8 {
	left: -640px;
}

.container_12 .pull_9 {
	left: -720px;
}

.container_12 .pull_10 {
	left: -800px;
}

.container_12 .pull_11 {
	left: -880px;
}

/* `Clear Floated Elements
 ----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */

.clearfix:before, .clearfix:after, .container_12:before, .container_12:after {
	content: '.';
	display: block;
	overflow: hidden;
	visibility: hidden;
	font-size: 0;
	line-height: 0;
	width: 0;
	height: 0;
}

.clearfix:after, .container_12:after {
	clear: both;
}

/*
 The following zoom:1 rule is specifically for IE6 + IE7.
 Move to separate stylesheet if invalid CSS is a problem.
 */

.clearfix, .container_12 {
	zoom: 1;
}

/* ==========================================================================
 Title: HMS
 Version: Sherlock
 Authors: S. Hayez et P. Mergey
 Copyright: 2011-2015
 ========================================================================== */

/* Palette de la charte graphique
 ========================================================================== */
/*
 * #000000	rgb(0, 0, 0)		Noir
 * #555555	rgb(85, 85, 85)		Gris foncé
 * #AAAAAA	rgb(170, 170, 170)	Gris clair
 * #FFFFFF	rgb(255, 255, 255)	Blanc
 * #CC0000	rgb(204, 0, 0)		Rouge sombre
 * #FF0000	rgb(255, 0, 0)		Rouge uni (pour bouton)
 * #990000	rgb(153, 0, 0)		Rouge très sombre (pour bouton)
 * #0000FF	rgb(0, 0, 255)		Bleu uni (pour bouton)
 * #000099	rgb(0, 0, 153)		Bleu très sombre (pour bouton)
 */

/* ==========================================================================
 Bases stylistiques
 ========================================================================== */

/* Liens
 ========================================================================== */

a:link, a:visited {
	font-weight: normal;
	text-decoration: none;
	outline: none;
	background: transparent;
	color: rgb(85, 85, 85);
	border-bottom: 1px solid rgb(85, 85, 85);
}
a:hover {
	color: rgb(255, 255, 255);
	border-bottom: none;
	background: rgb(85, 85, 85);
}
.over {
	/* stupid-simple-jquery-accordion.js */
	color: rgb(255, 255, 255) !important;
	background: rgb(85, 85, 85) !important;
}
.on {
	/* stupid-simple-jquery-accordion.js */
	color: rgb(255, 255, 255) !important;
	background: rgb(204, 0, 0) !important;
}
.pan_action {
	/* stupid-simple-jquery-accordion.js */
	cursor: pointer;
}

/* Emphases
 ========================================================================== */

em {
	font-style: italic;
}
strong {
	font-weight: bold;
}

/* Blocs spécifiques
 ========================================================================== */

body {
	font-size: 16px;
	font-family: 'Arial, Helvetica', sans-serif;
	background-color: rgb(85, 85, 85);
	background-image: url(gradient.png);
	background-repeat: repeat scroll;
	background-position: center;
	color: rgb(0, 0, 0);
}
body > div {
	background-color: rgb(255, 255, 255);
	color: rgb(0, 0, 0);
}
.container_12 > div + div.clearfix {
	margin: 4em 0;
}
noscript {
	margin: 20px 0;
	background-color: rgba(204, 0, 0, .875);
	color: rgb(250, 250, 250);
	font-size: 1.25em;
	line-height: 1.5em;
}
noscript p {
	margin: 0;
	padding: 20px;
}

/* Exceptions
 ========================================================================== */

figure#logotype a:link, figure#logotype a:visited, #lightbox-secNav-btnClose, #lightbox-loading a:link, a[href*="Imaginaire"]:link, a[href*="Imaginaire"]:visited, a[href*="Imaginaire"]:hover {
	border-bottom: none !important;
	background: transparent ! important;
}
figure#logotype a:hover {
	background: transparent;
}

/* ==========================================================================
 Structure générale
 ========================================================================== */

/* #frontispice (en-tête général)
 ========================================================================== */

#frontispice {
	margin-bottom: 20px;
}
#frontispice, #frontispice > ul {
	height: 290px;
	z-index: 0;
}

/* header[role=banner] (retour vers l'accueil)
 ========================================================================== */

header[role=banner] {
	height: 160px;
	z-index: 1;
	position: relative;
	margin-top: -290px;
	padding: 0;
}
figure#logotype {
	height: 160px;
	position: relative;
	z-index: 2;
	float: left;
	margin-top: 0;
	padding: 0;
}
figure#logotype img {
	z-index: 3;
	margin: 0 9px;
}
figure#logotype a img {
	-o-transition: all ease-in-out 1500ms;
	-moz-transition: all ease-in-out 1500ms;
	-webkit-transition: all ease-in-out 1500ms;
	transition: all ease-in-out 1500ms;
}
figure#logotype a:hover img, figure#logotype a:focus img {
	background: rgba(204, 0, 0,.75);
}

/* nav[role=navigation] (menu principal)
 ========================================================================== */

nav[role=navigation] {
	position: relative;
	margin-top: -130px;
	font-family: 'Alice', serif;
	font-size: 1.25em;
	line-height: 1.25em;
	z-index: 1;
}
nav[role=navigation] a {
	border-bottom: none;
}
nav[role=navigation] ul {
	margin: 20px 0;
	padding: 0;
	list-style: none;
	position: relative;
}
nav[role=navigation] ul ul {
	margin: 0;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all .5s linear;
	-moz-transition: all .5s linear;
	-ms-transition: all .5s linear;
	-o-transition: all .5s linear;
	transition: all .5s linear;
}
nav[role=navigation] ul li:hover > ul {
	visibility: visible;
	opacity: 1;
	z-index: 2;
}
nav[role=navigation] ul:after {
	content: "";
	clear: both;
	display: block;
}
nav[role=navigation] ul li {
	float: left;
}
nav[role=navigation] ul li:hover a {
	background-color: rgb(170,170,170);
	color: rgb(0,0,0);
	border-left: 5px solid rgba(85, 85, 85, .75);
}
nav[role=navigation] ul li a {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 255, 255);
	display: block;
	padding: 20px 20px 20px 15px;
	border-left: 5px solid rgb(204, 0, 0);
}
nav[role=navigation] ul ul {
	font-size: .8em;
	line-height: 1.2em;
	padding: 0;
	position: absolute;
	top: 100%;
}
nav[role=navigation] ul ul li {
	float: none;
	position: relative;
}
nav[role=navigation] ul ul li a {
	padding: .5em;
}
nav[role=navigation] ul li:hover ul li a {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 255, 255);
	border-left: 5px solid rgb(204, 0, 0);
}
nav[role=navigation] ul li:hover ul li a:hover {
	background-color: rgb(170, 170, 170);
	color: rgb(0, 0, 0);
	border-left: 5px solid rgba(85, 85, 85, .75);
}

/* form#recherche (formulaire de recherche
 ========================================================================== */

#recherche {
	/*background-color: rgba(170, 170, 170, .5);*/
	padding: 20px 0;
	margin: 0 10px 20px 10px;
}
#recherche input[type="text"] {
	font-size: .75em;
	max-width: 210px;
	padding: .375em;
	font-style: italic;
	color: rgb(170, 170, 170);
	border: 1px solid rgb(170, 170, 170);
}
#recherche input[type="submit"] {
	cursor: pointer;
	display: inline-block;
	position: relative;
	padding: .375em;
	text-align: center;
	font-variant: small-caps;
	font-weight: 600;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .25);
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, .25), inset 1px 1px 1px rgba(255, 255, 255, .25);
	-moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, .25), inset 1px 1px 1px rgba(255, 255, 255, .25);
	box-shadow: 1px 1px 1px rgba(0, 0, 0, .25), inset 1px 1px 1px rgba(255, 255, 255, .25);
	-webkit-transition: all 0.15s ease;
	-moz-transition: all 0.15s ease;
	-o-transition: all 0.15s ease;
	-ms-transition: all 0.15s ease;
	transition: all 0.15s ease;
	border: 0 solid rgb(0, 0, 0);
	background: rgb(255, 0, 0);
	background: -moz-linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(255, 0, 0)), color-stop(100%, rgb(153, 0, 0)));
	background: -webkit-linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
	background: -o-linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
	background: -ms-linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
	background: linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
}
#recherche input[type="submit"]:hover {
	-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, .5), inset 0px 0px 3px rgba(0, 0, 0, .5);
	-moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, .5), inset 0px 0px 3px rgba(0, 0, 0, .5);
	box-shadow: 1px 1px 1px rgba(0, 0, 0, .5), inset 0px 0px 3px rgba(0, 0, 0, .5);
}
#recherche input[type="submit"]:active {
	-webkit-box-shadow: inset 0px 0px 6px rgba(0, 0, 0, .75);
	-moz-box-shadow: inset 0px 0px 6px rgba(0, 0, 0, .75);
	box-shadow: inset 0px 0px 6px rgba(0, 0, 0, .75);
}

/* footer[role=contentinfo] (pied-de-page général)
 ========================================================================== */

footer[role=contentinfo] {
	background-color: rgba(85, 85, 85, .75);
	color: rgb(255, 255, 255);
	font-size: .75em;
	line-height: 1.25em;
}
footer[role=contentinfo] abbr {
	border-bottom: 1px dotted rgb(170, 170, 170);
	letter-spacing: .125em;
	cursor: help;
	text-decoration: none;
}
footer[role=contentinfo] dl, footer[role=contentinfo] ul, footer[role=contentinfo] form {
	margin: 20px 0;
}
footer[role=contentinfo] a:link, footer[role=contentinfo] a:visited {
	font-weight: normal;
	text-decoration: none;
	outline: none;
	background: transparent;
	color: rgb(255, 255, 255);
	border-bottom: 1px solid rgb(170, 170, 170);
}
footer[role=contentinfo] a:hover {
	color: rgb(255,255,255);
	border-bottom: 1px solid rgb(204, 0, 0);
}
footer[role=contentinfo] .adr dt {
	font-size: 1.25em;
	margin-bottom: .5em;
}
footer[role=contentinfo] .adr dd {
	margin: 0;
}
footer[role=contentinfo] .adr dd a img {
	margin: .5em 0 0 0;
}
footer[role=contentinfo] .adr dd:last-child {
	font-size: .9375em;
}
footer[role=contentinfo] .adr .locality, footer[role=contentinfo] .adr .country-name {
	font-variant: small-caps;
}
#formulaire h1 {
	margin: 20px 0;
	padding: 0 .25em;
	font: 1.25em 'Arial, Helvetica', sans-serif;
	font-weight: normal;
	text-decoration: none;
	outline: none;
	background: transparent;
	color: rgb(255, 255, 255);
	border-bottom: 1px solid rgb(170, 170, 170);
}
footer[role=contentinfo] aside ul {
	padding: 0;
	font-size: .9375em;
	line-height: 1.25em;
}
footer[role=contentinfo] aside li {
	list-style-type: none;
}
footer[role=contentinfo] aside li:nth-child(1) {
	font-weight: bold;
}
footer[role=contentinfo] form fieldset {
	border: none;
	margin: 0;
}
footer[role=contentinfo] form legend {
	font-size: 1.25em;
	margin-bottom: .25em;
	font-style: italic;
}
footer[role=contentinfo] form ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
footer[role=contentinfo] form ul li {
	display: block;
	line-height: 16px;
	list-style: none outside none;
	margin-bottom: .0625em;
	padding: .5em .5em;
}
footer[role=contentinfo] form label {
	float: left;
	width: 35%;
	margin: .5em 0;
	font-weight: 700;
}
footer[role=contentinfo] form input:not([type="radio"]) {
	padding: .375em;
	width: 60%;
	font-style: italic;
	color: rgb(170, 170, 170);
	border: 1px solid rgb(170, 170, 170);
}
footer[role=contentinfo] form .radio label {
	float: left;
	width: 75%;
}
footer[role=contentinfo] form input[type=radio] {
	margin: .5em 0;
}
footer[role=contentinfo] form textarea {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 10em;
	margin: 0 0 1em 0;
}
footer[role=contentinfo] form input[type="submit"] {
	color: white;
	cursor: pointer;
	display: inline-block;
	position: relative;
	padding: .75em;
	text-align: center;
	font-variant: small-caps;
	font-weight: 600;
	font-style: normal;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .25);
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, .25), inset 1px 1px 1px rgba(255, 255, 255, .25);
	-moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, .25), inset 1px 1px 1px rgba(255, 255, 255, .25);
	box-shadow: 1px 1px 1px rgba(0, 0, 0, .25), inset 1px 1px 1px rgba(255, 255, 255, .25);
	-webkit-transition: all 0.15s ease;
	-moz-transition: all 0.15s ease;
	-o-transition: all 0.15s ease;
	-ms-transition: all 0.15s ease;
	transition: all 0.15s ease;
	border: 0 solid rgb(0, 0, 0);
	background: rgb(255, 0, 0);
	background: -moz-linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(255, 0, 0)), color-stop(100%, rgb(153, 0, 0)));
	background: -webkit-linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
	background: -o-linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
	background: -ms-linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
	background: linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
	float: right;
	width: 25%;
}

/* ==========================================================================
 Composition de pages
 ========================================================================== */

/* Satellites latéraux (dont .colophon et .special)
 ========================================================================== */

.colophon {
	font-size: .625em;
	line-height: auto;
	color: rgb(170, 170, 170);
	text-align: right;
}
.colophon dl, .colophon dd {
	margin: 0;
	padding: 0;
}
.colophon dd strong {
	font-size: 1.125em;
	font-weight: bold;
	color: rgb(0, 0, 0);
}
.colophon dl {
	border-bottom: solid 1px rgb(170, 170, 170);
	padding-bottom: .75em;
}
.colophon dt {
	margin-top: .75em;
}
.special {
	margin-top: 1em;
	padding: .75em 0 0 0;
	border-top: solid 1px rgb(204, 0, 0);
	color: rgb(204,0,0);
}
.special li {
	list-style: none;
	margin: .5em 0;
	padding: 0 .5em;
}
.satellite h1 {
	font-size: .625em;
	line-height: 1.25em;
	color: rgb(170, 170, 170);
	border-bottom: solid 1px rgb(170, 170, 170);
	padding: 0 0 1em 0;
	margin: 1.5em 0;
}
.satellite div {
	margin: 5px 0;
	max-width: 140px;
}
.satellite ul {
	padding: 0;
	margin: 0;
	list-style-position: inside;
	list-style-type: none;
}
.satellite ul li {
	font-size: .75em;
	line-height: 1.25em;
}
.satellite ul li+ li {
	margin-top: .75em;
}
.satellite ul li a:link, .satellite ul li a:visited {
	border-bottom: 1px solid rgb(85, 85, 85);
}
#annonces section h1 {
	background-color: rgba(85, 85, 85, .5);
	float: left;
	font-size: 1em;
	font-weight: normal;
	color: rgba(255, 255, 255, .75);
	height: 20px;
	margin-bottom: -20px;
	margin-top: 0;
	padding: 10px;
	border-left: 10px solid rgba(204, 0, 0, .75);
	position: relative;
	top: -220px;
	width: 270px;
	z-index: 3;
}

/* .fiche
 ========================================================================== */

.fiche {
	padding: 0 0 1em 0;
}
.fiche .hgroup, .fiche nav ul {
	border-bottom: solid 1px rgb(170, 170, 170);
	padding-bottom: 1em;
}
.fiche h1, .galerie h1, #editorial h1, .fiche h2, .fiche h3, .fiche h4, .fiche h5, .fiche h6 {
	font-family: 'Alice', serif;
	margin-top: 0;
	margin-bottom: .25em;
}
.fiche h3, .fiche h4, .fiche h5, .fiche h6 {
	font-weight: normal;
}
.fiche h1, #editorial h1 {
	font-size: 2em;
	color: rgb(204, 0, 0);
}
.fiche h2 {
	font-size: 1.75em;
}
.fiche h3 {
	font-size: 1.5em;
}
.fiche h4 {
	font-size: 1.25em;
}
.fiche h5 {
	font-size: 1.125em;
}
.fiche h6 {
	font-size: 1em;
}
.fiche h5 img {
	margin: 0;
	padding: 2px 4px 2px 0;
	vertical-align: bottom;
}
.fiche ul[role=menubar] {
	margin: 0 0 1em 0;
	padding: 1em 0;
	text-align: center;
}
.fiche ul[role=menubar] li {
	display: inline;
	font-size: .75em;
	letter-spacing: .0625em;
	padding: 0;
	margin: 0;
	word-spacing: .125em;
}
.fiche ul[role=menubar] li a {
	padding: 1em;
	display: inline;
	border: none;
}
.fiche ul[role=menubar] li a:link, .fiche ul[role=menubar] li a:visited {
	background: transparent;
	color: rgb(85, 85, 85);
}
.fiche ul[role=menubar] li.active a {
	background: rgb(204, 0, 0);
	color: rgb(255, 255, 255);
}
.fiche ul[role=menubar] li a:hover {
	color: rgb(255, 255, 255);
	background: rgb(85, 85, 85);
}
.fiche dt {
	font-size: .875em;
	line-height: 1.25em;
	color: rgb(204, 0, 0);
}
.fiche dd {
	font-size: .75em;
	line-height: 1.25em;
	margin-left: 0;
}
.fiche dd+ dt {
	margin-top: .5em;
}
.fiche blockquote p:last-child {
	text-align: right;
}
.fiche blockquote p:last-child:before {
	content: '\2014' '\202F';
}
.fiche p, #editorial p {
	text-align: justify;
	font-size: .9375em;
	line-height: 1.25em;
	margin: 0 0 .5em 0;
}
.fiche blockquote p {
	font-size: .75em;
	line-height: 1.25em;
	color: rgb(0, 0, 0);
}
.fiche .paiement {
	border-top: 1px solid rgb(170, 170, 170);
	border-bottom: 1px solid rgb(170, 170, 170);
	background-color: rgba(170, 170, 170, .125);
	padding: 1em 0;
	margin-bottom: 1.5em;
}
.fiche .paiement p {
	font-size: .75em;
	margin: 0 .5em;
}
.fiche .paiement form input {
	margin-top: .5em;
}
.fiche .paiement p.abonnement {
	margin-top: 1.25em;
	display: block;
	float: left;
}
.couverture {
	line-height: 1.25em;
	font-size: .75em;
}
.couverture img, .galerie img {
	border: solid 1px rgb(85, 85, 85);
}
.couverture img, .galerie img, .couverture figcaption, .galerie figcaption, .illustration img, .illustration figcaption {
	margin-bottom: 1em;
}
#editorial .galerie {
	margin-top: 1em;
}
.couverture figcaption, .galerie figcaption, .illustration figcaption {
	text-align: right;
}
.couverture figcaption, .galerie figcaption, .illustration figcaption {
	margin-left: 0;
	color: rgb(0,0,0);
	padding: 1em 0;
	border-bottom: solid 1px rgb(85, 85, 85);
}
#hardcover {
	color: rgb(170, 170, 170);
	padding-bottom: .5em;
	border-bottom: solid 1px rgb(170, 170, 170);
}
#hardcover p {
	font-size: 1em;
	line-height: 1.5em;
	text-align: right;
}
#biographie {
	margin-top: 1em;
}
.notule > p:nth-child(1) {
	color: rgb(204, 0, 0);
}
.notule > p:nth-child(1):first-letter, #editorial section p:nth-child(1):first-letter {
	float: left;
	font-size: 3em;
	line-height: 1em;
	font-weight: 700;
}
.notule > p:nth-child(1):first-letter, x:-moz-any-link, x:default {
	margin-top: .125em;
}
.notule > p:nth-child(2) {
	color: rgb(0, 0, 0);
}
.notule > p:nth-child(n+3) {
	color: rgb(170, 170, 170);
}
.notule blockquote {
	width: 75%;
	text-align: right;
	padding: 0;
	margin: 0 0 0 25%;
}
#presse blockquote {
	margin: 0 0 2em 0;
	padding: 0 0 1em 0;
	border-bottom: dashed 1px rgb(170, 170, 170);
}
.fiche > section > section {
	margin: 1em 0;
}
.fiche > section h1, .galerie h1 {
	padding: .25em 0;
	margin: .25em 0;
	color: rgb(0,0,0);
	border-bottom: solid 1px rgb(85, 85, 85);
	font-weight: normal;
	font-size: 1.25em;
}
.galerie h2 {
	padding: .25em 0;
	margin: .25em 0;
	color: rgb(0,0,0);
	border-bottom: dotted 1px rgb(170, 170, 170);
	font-weight: normal;
	font-size: 1.125em;
}
.galerie figcaption {
	font-size: .75em;
}
#diaporama figure {
	width: 620px;
	max-height: 310px;
	overflow: hidden;
	position: relative;
}
#diaporama figure img {
	max-width: 100%;
	max-height: 100%;
}
.rslides_tabs {
	background-color: rgba(85, 85, 85, .75);
	padding: 10px 0 10px 0;
	font-size: 1em;
	height: 20px;
	position: relative;
	float: left;
	width: 100%;
	top: -40px;
	margin-top: 0;
	margin-bottom: -20px;
	z-index: 3;
}
.rslides_tabs li {
	display: inline;
	position: relative;
}
.rslides_tabs li a {
	text-decoration: none;
	background: transparent;
	padding: .5em;
	color: rgb(255, 255, 255);
	border: none;
}
.rslides_tabs li a:hover {
	color: rgb(255, 255, 255);
	background: rgb(85, 85, 85);
}
.bandeau figure, figure.annonce {
	max-width: 300px;
	height: 200px;
	overflow: hidden;
}
figure.annonce {
	margin-bottom: 20px;
}
figure.annonce img {
	width: 300px;
	height: auto;
}
ul.commande {
	list-style: none;
	margin: 0;
}
ul.commande {
	padding: 1em;
}
.commande li a:link, .commande li a:active, .commande li a:hover, .commande li a:visited {
	text-decoration: none;
	border-bottom: none;
	background-color: transparent;
	color: rgb(255, 255, 255);
	font-weight: 600;
}
.commande li a {
	font-size: 1.5em;
}
.commande li span {
	font-size: .75em;
	display: block;
	margin-top: .5em;
	text-transform: uppercase;
}
.statut {
	padding: 0 1em;
	list-style: none;
	margin: 0;
	font-size: 1.125em;
}
.statut li {
	display: block;
	color: rgb(255, 255, 255);
	margin: 0;
	background-color: rgb(0, 0, 0);
	padding: .75em;
	text-align: center;
}
input[type="submit"] {
	color: rgb(255, 255, 255);
	font-size: .875em;
}
dl + ul.statut {
	margin-top: 1em;
}
.statut li + li {
	padding-top: 0;
}
.statut li:first-child {
	text-transform: uppercase;
}
.bibliographie, .inventaire {
	list-style: none;
	padding: 0;
	column-count: 2;
	column-gap: 20px;
	column-fill: balance;
	-moz-column-count: 2;
	-moz-column-gap: 20px;
	-moz-column-fill: balance;
	-webkit-column-count: 2;
	-webkit-column-gap: 20px;
	-webkit-column-fill: balance;
}
.inventaire li, .inventaire dt {
	font-size: .75em;
	line-height: 1.5em;
}
.inventaire li {
	width: 300px;
}
.inventaire dt {
	width: 140px;
	color: rgb(85, 85, 85);
}
.inventaire dd {
	color: rgba(85, 85, 85, .75);
	font-size: .6875;
}
.inventaire li img {
	margin: 0;
	padding: 0 .25em 0 0;
	vertical-align: bottom;
}
.bibliographie dt, .bibliographie dd {
	width: 220px;
	line-height: 1.25em;
	word-wrap: break-word;
}
.illustration {
	overflow: hidden;
}
.fiche ol {
	padding: 0 0 0 80px;
	margin: .5em 0;
}
.fiche ol li {
	font-size: .75em;
	line-height: 1.25em;
	text-align: justify;
}
.fiche h3 + ul li {
	font-size: .75em;
	line-height: 1.25em;
	list-style: none;
}
#complement {
	border-top: 1px solid rgb(85, 85, 85);
	font-size: .75em;
}
#complement h1 {
	border-bottom: 1px solid rgb(170, 170, 170);
	color: rgb(170, 170, 170);
	line-height: 1.25em;
	margin: 1.25em 0;
	padding: 0 0 1em;
}
#complement p, #complement li {
	text-align: justify;
	line-height: 1.25em;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
	word-wrap: break-word;
	padding: .5em 0;
}
#complement strong {
	color: rgb(204, 0, 0);
	font-weight: bold;
}
#complement form {
	margin: 1em 0;
}
#complement fieldset {
	border: 1px solid rgb(85, 85, 85);
	margin: 0 0;
	padding: 10px 5px;
}
#complement legend {
	color: rgb(85, 85, 85);
}
#complement input[type=text] {
	max-width: 140px;
	padding: .375em;
	font-style: italic;
	color: rgb(170, 170, 170);
	border: 1px solid rgb(170, 170, 170);
}
#complement input+ input {
	margin-left: 6px;
}
#complement input[type="submit"] {
	cursor: pointer;
	display: inline-block;
	position: relative;
	padding: .75em;
	text-align: center;
	font-variant: small-caps;
	font-weight: 600;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .25);
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, .25), inset 1px 1px 1px rgba(255, 255, 255, .25);
	-moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, .25), inset 1px 1px 1px rgba(255, 255, 255, .25);
	box-shadow: 1px 1px 1px rgba(0, 0, 0, .25), inset 1px 1px 1px rgba(255, 255, 255, .25);
	-webkit-transition: all 0.15s ease;
	-moz-transition: all 0.15s ease;
	-o-transition: all 0.15s ease;
	-ms-transition: all 0.15s ease;
	transition: all 0.15s ease;
	border: 0 solid rgb(0, 0, 0);
	background: rgb(255, 0, 0);
	background: -moz-linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(255, 0, 0)), color-stop(100%, rgb(153, 0, 0)));
	background: -webkit-linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
	background: -o-linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
	background: -ms-linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
	background: linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
}
#complement input[type="submit"]:hover {
	-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, .5), inset 0px 0px 3px rgba(0, 0, 0, .5);
	-moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, .5), inset 0px 0px 3px rgba(0, 0, 0, .5);
	box-shadow: 1px 1px 1px rgba(0, 0, 0, .5), inset 0px 0px 3px rgba(0, 0, 0, .5);
}
#complement input[type="submit"]:active {
	-webkit-box-shadow: inset 0px 0px 6px rgba(0, 0, 0, .75);
	-moz-box-shadow: inset 0px 0px 6px rgba(0, 0, 0, .75);
	box-shadow: inset 0px 0px 6px rgba(0, 0, 0, .75);
}
#complement ul {
	list-style: none;
	padding: 0;
	overflow-y: hidden;
}
#complement li time {
	color: rgb(85, 85, 85);
	font-style: italic;
	display: block;
}
#complement li.liste_1 {
	background-color: transparent;
}
#complement li.liste_2 {
	background-color: rgba(170, 170, 170, .25);
}
#complement li+ li {
	margin-top: .25em;
}

/* ==========================================================================
 Paramétrage de composantes
 ========================================================================== */

/* jquery.lightbox.min.js
 ========================================================================== */

#jquery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
}
#jquery-lightbox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	text-align: center;
	line-height: 0;
	background-color: transparent;
}
#jquery-lightbox a img {
	border: none;
}
#lightbox-container-image-box {
	position: relative;
	background-color: rgb(255, 255, 255);
	min-width: 250px;
	min-height: 250px;
	margin: 0 auto;
}
#lightbox-container-image {
	padding: 20px;
}
#lightbox-container-image-data-box {
	font: .75em 'Arial, Helvetica', sans-serif;
	color: rgb(0, 0, 0);
	background-color: rgb(255, 255, 255);
	margin: 0 auto;
	line-height: 1.25em;
	overflow: auto;
	width: 100%;
	padding: 0 20px;
}
#lightbox-container-image-data {
	padding-bottom: 40px;
}
#lightbox-container-image-data #lightbox-image-details {
	width: 70%;
	float: left;
	text-align: left;
}
#lightbox-secNav-btnClose {
	width: 25% x;
	float: right;
	padding: 0;
	margin: 0;
}
#lightbox-secNav-btnClose:hover {
	background-color: transparent;
}
#lightbox-loading {
	position: absolute;
	top: 50%;
	left: 0%;
	height: 50%;
	width: 100%;
	text-align: center;
	line-height: 0;
}

/* responsiveslides.min.js
 ========================================================================== */

.rslides {
	position: relative;
	list-style: none;
	overflow: hidden;
	width: 100%;
	padding: 0;
	margin: 0;
}
.rslides li {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
}
.rslides img {
	display: block;
	height: auto;
	float: left;
	width: 100%;
	border: 0;
}

/* jquery.tweet.js
 ========================================================================== */

li .tweet_time {
	font-style: italic;
}
.tweet_list .tweet_even {
	background-color: rgba(170, 170, 170, .25);
}

/* qTip.js
 ========================================================================== */

#qTip {
	padding: 1em;
	display: none;
	background: rgba(0, 0, 0, .75);
	border-left: 5px solid rgba(204, 0, 0, .75);
	color: rgb(255, 255, 255);
	font: .75em Arial, sans-serif;
	line-height: 1.25em;
	position: absolute;
	z-index: 100;
	max-width: 220px;
}

/* ==========================================================================
 Classes pour boutons
 ========================================================================== */

.action {
	cursor: pointer;
	display: inline-block;
	position: relative;
	padding: .75em;
	text-align: center;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .25);
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, .25), inset 1px 1px 1px rgba(255, 255, 255, .25);
	-moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, .25), inset 1px 1px 1px rgba(255, 255, 255, .25);
	box-shadow: 1px 1px 1px rgba(0, 0, 0, .25), inset 1px 1px 1px rgba(255, 255, 255, .25);
	-webkit-transition: all 0.15s ease;
	-moz-transition: all 0.15s ease;
	-o-transition: all 0.15s ease;
	-ms-transition: all 0.15s ease;
	transition: all 0.15s ease;
	border: 0 solid rgb(0, 0, 0);
}
.action:hover {
	-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0,.5), inset 0px 0px 3px rgba(0, 0, 0, .5);
	-moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, .5), inset 0px 0px 3px rgba(0, 0, 0, .5);
	box-shadow: 1px 1px 1px rgba(0, 0, 0, .5), inset 0px 0px 3px rgba(0, 0, 0, .5);
}
.action:active {
	-webkit-box-shadow: inset 0px 0px 6px rgba(0, 0, 0, .75);
	-moz-box-shadow: inset 0px 0px 6px rgba(0, 0, 0, .75);
	box-shadow: inset 0px 0px 6px rgba(0, 0, 0, .75);
}
.commander {
	background: rgb(255, 0, 0);
	background: -moz-linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(255, 0, 0)), color-stop(100%, rgb(153, 0, 0)));
	background: -webkit-linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
	background: -o-linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
	background: -ms-linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
	background: linear-gradient(top, rgb(255, 0, 0) 0%, rgb(153, 0, 0) 100%);
}
.payer {
	background: rgb(0, 0, 255);
	background: -moz-linear-gradient(top, rgb(0, 0, 255) 0%, rgb(0, 0, 153) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(0, 0, 255)), color-stop(100%, rgb(0, 0, 153)));
	background: -webkit-linear-gradient(top, rgb(0, 0, 255) 0%, rgb(0, 0, 153) 100%);
	background: -o-linear-gradient(top, rgb(0, 0, 255) 0%, rgb(0, 0, 153) 100%);
	background: -ms-linear-gradient(top, rgb(0, 0, 255) 0%, rgb(0, 0, 153) 100%);
	background: linear-gradient(top, rgb(0, 0, 255) 0%, rgb(0, 0, 153) 100%);
}
.temporaire {
	background: rgb(0, 153, 0);
	background: -moz-linear-gradient(top, rgb(0, 153, 0) 0%, rgb(0, 76, 0) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(0, 153, 0)), color-stop(100%, rgb(0, 76, 0)));
	background: -webkit-linear-gradient(top, rgb(0, 153, 0) 0%, rgb(0, 76, 0) 100%);
	background: -o-linear-gradient(top, rgb(0, 153, 0) 0%, rgb(0, 76, 0) 100%);
	background: -ms-linear-gradient(top, rgb(0, 153, 0) 0%, rgb(0, 76, 0) 100%);
	background: linear-gradient(top, rgb(0, 153, 0) 0%, rgb(0, 76, 0) 100%);
}