/*
	Styles globaux
*/


/* Style d'alignements - NE PAS MODIFIER */
.left { text-align: left !important; }
.right { text-align: right !important; }
.center { text-align: center !important; }
.justify { text-align: justify !important; }

.valign-top { vertical-align: top !important; }
.valign-middle { vertical-align: middle !important; }
.valign-bottom { vertical-align: bottom !important; }

.float-left { float: left; }
.float-right { float: right; }

.clear-left { clear: left; }
.clear-right { clear: right; }
.clear-both { clear: both; }
.clearer { clear: both; height: 0.01em; font-size: 0.01em; padding: 0; line-height: 0px; }

.display-none { display: none; }
.hidden { position: absolute; left: -9999px; top: 0; }
/* /Style d'alignements */


.centrer
{
   margin-left: auto;
   margin-right: auto;
   padding-left: 1em;
   padding-right: 1em;
  
}



/* = Balises de base = */
body {
	color: #414141;
	font: 0.75em/1.4em Arial, Helvetica, sans-serif;
	background: #fffbde;
}

h1, .h1 {font-family: Arial, Helvetica, sans-serif; color:#000; font-size:3em; font-weight:normal; margin:0.25em; line-height:1.2em;}
h2, .h2 {font-family: Arial, Helvetica, sans-serif; color: #1a606c; font-weight:normal; font-size:1.5em;margin:1em 0;}
h3, .h3 {margin: 0.5em 0;}
h4, .h4 {margin: 0.5em 0;}
h5, .h5 {margin: 0.5em 0;}
h6, .h6 {margin: 0.5em 0;}

p { margin: 1em 0; }
ul, ol { margin: 0 1em; }
ul li,
ol ul li {}
ol li { list-style-type: decimal; list-style-position: inside; }

table { border: 2px solid #aaa; }
caption { text-align: center; font-weight: bold; padding: 0.5em; }
th, td { border: 1px solid #aaa; padding: 0.4em; }
th { text-align: center; font-weight: bold; }

hr { background: #000; color: #000; clear: both; float: none; width: 100%; height: 1px; margin: 0 0 15px; border: none; font-size: 1px; display: block; }
code { border: 1px solid #eee; background-color: #fff; display: block; padding: 0.7em; font-family: "courier new", courier, monospace; }



.pure-table {
    /* Remove spacing between table cells (from Normalize.css) */
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    border: 1px solid #cbcbcb;
}

.pure-table caption {
    color: #000;
    font: italic 85%/1 arial, sans-serif;
    padding: 1em 0;
    text-align: center;
}

.pure-table td,
.pure-table th {
    border-left: 1px solid #cbcbcb;/*  inner column border */
    border-width: 0 0 0 1px;
    font-size: inherit;
    margin: 0;
    overflow: visible; /*to make ths where the title is really long work*/
    padding: 2px 4px; /* cell padding */
}
.pure-table td:first-child,
.pure-table th:first-child {
    border-left-width: 0;
}

.pure-table thead {
    background: #e0e0e0;
    color: #000;
    text-align: left;
    vertical-align: bottom;
}

/*
striping:
   even - #fff (white)
   odd  - #f2f2f2 (light gray)
*/
.pure-table td {
    background-color: transparent;
}
.pure-table-odd td {
    background-color: #f2f2f2;
}

/* nth-child selector for modern browsers */
.pure-table-striped tr:nth-child(2n-1) td {
    background-color: #f2f2f2;
}

/* BORDERED TABLES */
.pure-table-bordered td {
    border-bottom: 1px solid #cbcbcb;
}
.pure-table-bordered tbody > tr:last-child td,
.pure-table-horizontal tbody > tr:last-child td {
    border-bottom-width: 0;
}


/* HORIZONTAL BORDERED TABLES */

.pure-table-horizontal td,
.pure-table-horizontal th {
    border-width: 0 0 1px 0;
    border-bottom: 1px solid #cbcbcb;
}
.pure-table-horizontal tbody > tr:last-child td {
    border-bottom-width: 0;
}

/*!
Pure v0.4.2
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
https://github.com/yui/pure/blob/master/LICENSE.md
*/
/*csslint regex-selectors:false, known-properties:false, duplicate-properties:false*/

.pure-g {
    letter-spacing: -0.31em; /* Webkit: collapse white-space between units */
    *letter-spacing: normal; /* reset IE < 8 */
    *word-spacing: -0.43em; /* IE < 8: collapse white-space between units */
    text-rendering: optimizespeed; /* Webkit: fixes text-rendering: optimizeLegibility */

    /*
    Sets the font stack to fonts known to work properly with the above letter
    and word spacings. See: https://github.com/yui/pure/issues/41/

    The following font stack makes Pure Grids work on all known environments.

    * FreeSans: Ships with many Linux distros, including Ubuntu

    * Arimo: Ships with Chrome OS. Arimo has to be defined before Helvetica and
      Arial to get picked up by the browser, even though neither is available
      in Chrome OS.

    * Droid Sans: Ships with all versions of Android.

    * Helvetica, Arial, sans-serif: Common font stack on OS X and Windows.
    */
    font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif;

    /*
    Use flexbox when possible to avoid `letter-spacing` side-effects.

    NOTE: Firefox (as of 25) does not currently support flex-wrap, so the
    `-moz-` prefix version is omitted.
    */

    display: -webkit-flex;
    -webkit-flex-flow: row wrap;

    /* IE10 uses display: flexbox */
    display: -ms-flexbox;
    -ms-flex-flow: row wrap;
}

/* Opera as of 12 on Windows needs word-spacing.
   The ".opera-only" selector is used to prevent actual prefocus styling
   and is not required in markup.
*/
.opera-only :-o-prefocus,
.pure-g {
    word-spacing: -0.43em;
}

.pure-u {
    display: inline-block;
    *display: inline; /* IE < 8: fake inline-block */
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
}

/*
Resets the font family back to the OS/browser's default sans-serif font,
this the same font stack that Normalize.css sets for the `body`.
*/
.pure-g [class *= "pure-u"] {
    font-family: sans-serif;
}

.pure-u-1,
.pure-u-1-1,
.pure-u-1-2,
.pure-u-1-3,
.pure-u-2-3,
.pure-u-1-4,
.pure-u-3-4,
.pure-u-1-5,
.pure-u-2-5,
.pure-u-3-5,
.pure-u-4-5,
.pure-u-5-5,
.pure-u-1-6,
.pure-u-5-6,
.pure-u-1-8,
.pure-u-3-8,
.pure-u-5-8,
.pure-u-7-8,
.pure-u-1-12,
.pure-u-5-12,
.pure-u-7-12,
.pure-u-11-12,
.pure-u-1-24,
.pure-u-2-24,
.pure-u-3-24,
.pure-u-4-24,
.pure-u-5-24,
.pure-u-6-24,
.pure-u-7-24,
.pure-u-8-24,
.pure-u-9-24,
.pure-u-10-24,
.pure-u-11-24,
.pure-u-12-24,
.pure-u-13-24,
.pure-u-14-24,
.pure-u-15-24,
.pure-u-16-24,
.pure-u-17-24,
.pure-u-18-24,
.pure-u-19-24,
.pure-u-20-24,
.pure-u-21-24,
.pure-u-22-24,
.pure-u-23-24,
.pure-u-24-24 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
}

.pure-u-1-24 {
    width: 4.1667%;
    *width: 4.1357%;
}

.pure-u-1-12,
.pure-u-2-24 {
    width: 8.3333%;
    *width: 8.3023%;
}

.pure-u-1-8,
.pure-u-3-24 {
    width: 12.5000%;
    *width: 12.4690%;
}

.pure-u-1-6,
.pure-u-4-24 {
    width: 16.6667%;
    *width: 16.6357%;
}

.pure-u-1-5 {
    width: 20%;
    *width: 19.9690%;
}

.pure-u-5-24 {
    width: 20.8333%;
    *width: 20.8023%;
}

.pure-u-1-4,
.pure-u-6-24 {
    width: 25%;
    *width: 24.9690%;
}

.pure-u-7-24 {
    width: 29.1667%;
    *width: 29.1357%;
}

.pure-u-1-3,
.pure-u-8-24 {
    width: 33.3333%;
    *width: 33.3023%;
}

.pure-u-3-8,
.pure-u-9-24 {
    width: 37.5000%;
    *width: 37.4690%;
}

.pure-u-2-5 {
    width: 40%;
    *width: 39.9690%;
}

.pure-u-5-12,
.pure-u-10-24 {
    width: 41.6667%;
    *width: 41.6357%;
}

.pure-u-11-24 {
    width: 45.8333%;
    *width: 45.8023%;
}

.pure-u-1-2,
.pure-u-12-24 {
    width: 50%;
    *width: 49.9690%;
}

.pure-u-13-24 {
    width: 54.1667%;
    *width: 54.1357%;
}

.pure-u-7-12,
.pure-u-14-24 {
    width: 58.3333%;
    *width: 58.3023%;
}

.pure-u-3-5 {
    width: 60%;
    *width: 59.9690%;
}

.pure-u-5-8,
.pure-u-15-24 {
    width: 62.5000%;
    *width: 62.4690%;
}

.pure-u-2-3,
.pure-u-16-24 {
    width: 66.6667%;
    *width: 66.6357%;
}

.pure-u-17-24 {
    width: 70.8333%;
    *width: 70.8023%;
}

.pure-u-3-4,
.pure-u-18-24 {
    width: 75%;
    *width: 74.9690%;
}

.pure-u-19-24 {
    width: 79.1667%;
    *width: 79.1357%;
}

.pure-u-4-5 {
    width: 80%;
    *width: 79.9690%;
}

.pure-u-5-6,
.pure-u-20-24 {
    width: 83.3333%;
    *width: 83.3023%;
}

.pure-u-7-8,
.pure-u-21-24 {
    width: 87.5000%;
    *width: 87.4690%;
}

.pure-u-11-12,
.pure-u-22-24 {
    width: 91.6667%;
    *width: 91.6357%;
}

.pure-u-23-24 {
    width: 95.8333%;
    *width: 95.8023%;
}

.pure-u-1,
.pure-u-1-1,
.pure-u-5-5,
.pure-u-24-24 {
    width: 100%;
}
/*csslint regex-selectors:false, known-properties:false, duplicate-properties:false*/

.pure-g-r {
    letter-spacing: -0.31em;
    *letter-spacing: normal;
    *word-spacing: -0.43em;

    /*
    Sets the font stack to fonts known to work properly with the above letter
    and word spacings. See: https://github.com/yui/pure/issues/41/

    The following font stack makes Pure Grids work on all known environments.

    * FreeSans: Ships with many Linux distros, including Ubuntu

    * Arimo: Ships with Chrome OS. Arimo has to be defined before Helvetica and
      Arial to get picked up by the browser, even though neither is available
      in Chrome OS.

    * Droid Sans: Ships with all versions of Android.

    * Helvetica, Arial, sans-serif: Common font stack on OS X and Windows.
    */
    font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif;

    /*
    Use flexbox when possible to avoid `letter-spacing` side-effects.

    NOTE: Firefox (as of 25) does not currently support flex-wrap, so the
    `-moz-` prefix version is omitted.
    */

    display: -webkit-flex;
    -webkit-flex-flow: row wrap;

    /* IE10 uses display: flexbox */
    display: -ms-flexbox;
    -ms-flex-flow: row wrap;
}

/* Opera as of 12 on Windows needs word-spacing.
   The ".opera-only" selector is used to prevent actual prefocus styling
   and is not required in markup.
*/
.opera-only :-o-prefocus,
.pure-g-r {
    word-spacing: -0.43em;
}

/*
Resets the font family back to the OS/browser's default sans-serif font,
this the same font stack that Normalize.css sets for the `body`.
*/
.pure-g-r [class *= "pure-u"] {
    font-family: sans-serif;
}

.pure-g-r img {
    max-width: 100%;
    height: auto;
}

@media (min-width: 980px) {
    .pure-visible-phone {
        display: none;
    }
    .pure-visible-tablet {
        display: none;
    }
    .pure-hidden-desktop {
        display: none;
    }
}

@media (max-width: 480px) {
    .pure-g-r > .pure-u,
    .pure-g-r > [class *= "pure-u-"] {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .pure-g-r > .pure-u,
    .pure-g-r > [class *= "pure-u-"] {
        width: 100%;
    }
    .pure-hidden-phone {
        display: none;
    }
    .pure-visible-desktop {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 979px) {
    .pure-hidden-tablet {
        display: none;
    }
    .pure-visible-desktop {
        display: none;
    }
}




/* Hyperliens
---------------------------------------------- */




/* = Menu d'accès rapide = */
#acc-links { margin: 0; padding: 0; position: absolute; top: 70px; left: 10px; }
#acc-links li { display: inline; background: none; padding: 0; margin-right: 0.5em; }
#acc-links a:link,
#acc-links a:visited {
	position: absolute; top: 0; left: -9999em;
	background-color: #fff;
	padding: 0.5em;
	white-space: nowrap;
}

#acc-links a:focus,
#acc-links a:active {
	left: 0;
}

.target { outline: 2px dashed red; overflow: hidden; }



/* = header = */

.header-1-wrapper {
	position: relative;
	z-index: 2;
	background: url('../img/header/header-1.png') repeat-x bottom left #1f2222;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#1f2222), to(#3d4042));
	background-image: -webkit-linear-gradient(top, #1f2222, #3d4042);
	background-image:    -moz-linear-gradient(top, #1f2222, #3d4042);
	background-image:      -o-linear-gradient(top, #1f2222, #3d4042);
	background-image:         linear-gradient(to bottom, #1f2222, #3d4042);
}
.ie7 .header-1-wrapper {	height: 50px; }

.header-1 {
	width: 1000px;
	margin: 0 auto;
	position: relative;
}

.header-logo-wrapper {
	margin: 0px 10px 0 0;
	float: left;
	padding-top: 10px;
	vertical-align: middle;
}
.header-logo-wrapper img { display: block; }

.header-2-wrapper {
	position: relative;
	z-index: 1;
	background: url('../img/header/header.jpg') no-repeat top center;
	min-height: 0px;
	padding-top: 6px;
}
.header-2 {
	width: 1000px;
	margin: 0 auto;
	overflow: hidden;
}

.header-3-wrapper {
	position: relative;
	z-index: 1;
	background: url('../img/header/header.jpg') no-repeat top center;
	min-height: 25px;
	padding-top: 6px;
}
.header-3 {
	width: 1000px;
	margin: 0 auto;
	overflow: hidden;
}


.header-title {
	color: #c6d782;
	font-size: 2.667em;
	font-weight: bold;
	line-height: 1.1em;
	margin: 0 0 10px 0;
	padding: 6px 0 0 22px;
	clear: both;
}
.header-title span {
	font-size: 0.781em;
	font-weight: normal;
}


/* = Taille de caractère =  */
.change-car-size {
	float: right;
	border-right: 1px solid #474d4e;
	border-left: 1px solid #1e1e1e;
	min-height: 33px; /*48*/
	padding: 15px 10px 0;
}
.change-car-size-2 {
	float: right;
}

.change-car-size-2 button,
.change-car-size button {
	border: none;
	background: none;
	padding: 0;
	margin: 0;
}


/* = Tous nos sites = */
.sites-mf
{
	float: right;
	border-right: 1px solid #474d4e;
	border-left: 1px solid #474d4e;
}
.sites-mf .sites-mf-content
{
	min-height: 38px; 
	padding: 10px 10px 0;
	border-left:1px solid #1e1e1e;
}
.sites-mf-trigger:link,
.sites-mf-trigger:visited
{
	font-size: 0.834em;
	color: #fff;
	display: block;
	background: url(../img/sites-mf.png) repeat-x top left #292c2e;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	min-height: 32px;
}
.sites-mf-trigger span
{
	display: block;
	background: url(../img/sites-mf-arrows.png) no-repeat 95% 50%;
	padding: 8px 30px 8px 8px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
}
.sites-mf-trigger.active:link,
.sites-mf-trigger.active:visited
{
	background: url(../img/sites-mf-active.png) repeat-x top left #45484b;
	min-height: 40px;
	-webkit-border-radius: 3px 3px 0 0;
	-moz-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
	behavior: url(PIE.htc);
}
.sites-mf-trigger.active span
{
	background: url(../img/sites-mf-arrows-active.png) no-repeat 95% 50%;
	-webkit-border-radius:  3px 3px 0 0;
	-moz-border-radius:  3px 3px 0 0;
	border-radius:  3px 3px 0 0;
	behavior: url(PIE.htc);
}
.sites-mf-list
{
	border:0;
	padding:0;
	z-index:-1;
	position: absolute;
	top: 50px;
	right:0;
	color:#ffffff;
	width:767px;
	background: #45484b url(../img/grad-grey-sites-mf-list.png) 0 100% repeat-x;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#45484b), to(#2a2d2e));
	background-image: -webkit-linear-gradient(top, #45484b, #2a2d2e);
	background-image:    -moz-linear-gradient(top, #45484b, #2a2d2e);
	background-image:      -o-linear-gradient(top, #45484b, #2a2d2e);
	background-image:         linear-gradient(to bottom, #45484b, #2a2d2e);
	-webkit-border-radius: 5px;
	-moz-border-radius:5px;
	border-radius:5px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	-moz-box-shadow: 0px 2px 3px #2a2d2e;
	-webkit-box-shadow: 0px 2px 3px #2a2d2e;
	box-shadow:0px 2px 3px #2a2d2e;
	display:none;
}
.sites-mf-list,
.sites-mf-list .sites-mf-list-blocs { overflow:hidden; }
.sites-mf-list .sites-mf-list-blocs { padding: 0.5em; }
.sites-mf-list .close
{
	float:right;
	margin-bottom:1px;
	-webkit-border-radius:0 0 5px 5px;
	-moz-border-radius:0 0 5px 5px;
	border-radius:0 0 5px 5px;
}
.sites-mf-list .close span
{
	display:block;
	padding:3px 27px 3px 10px;
	background:url(../img/sprite.png) -2px -1795px no-repeat;
}
.sites-mf-list .sites-mf-list-bloc
{
	width:229px;
	padding:10px 10px 0 10px;
	float:left;
}
.sites-mf-list ul
{
	list-style: none;
	margin: 0;
	padding: 0;
}
.sites-mf-list ul li { margin-bottom:15px; }
.sites-mf-list ul li.last { margin-bottom:0; }
.sites-mf-list a:link,
.sites-mf-list a:visited { color: #fff; }
.sites-mf-list .title,
.sites-mf-list .title a
{
	color:#c6d782;
	display:block;
}
.sites-mf-list .title
{
	border-bottom:1px solid #3e3e3e;
	font-size:1em;
	font-weight: bold;
}
.sites-mf-list .title a
{
	border-bottom:1px solid #2c2b2b;
	padding-bottom:2px;
	font-size:1.083em;
}
.sites-mf-list p
{
	margin:5px 0 0 0;
	line-height:1em;
}
.sites-mf-list .sites-mf-list-bloc .custom-select-container-style-3 { min-width:182px; }
.sites-mf-list .sites-mf-list-bloc .custom-select
{
	background:url(../img/grad-grey-site-a.png) repeat-x scroll left bottom #FFFFFF;
	border-radius:3px;
}
.sites-mf-list .sites-mf-list-bloc .custom-select-container-style-3 .custom-select > span
{
	background:url(../img/sites-mf-arrows.png) no-repeat scroll 95% 50% transparent;
	border:1px solid #000000;
	text-shadow:0 1px 1px #000000;
	color:#ffffff;
	line-height:2em;
	border-radius:3px;
}
.sites-mf-list .sites-mf-list-bloc .custom-select-container-style-3 .custom-select span span,
.sites-mf-list .sites-mf-list-bloc .custom-select-container-style-3 .replaced { height: 2em; }
.sites-mf-list a:hover,.sites-mf-list a:focus,.sites-mf-list a:active {
	text-decoration: underline;
}


/* = Menu 1 = */

.nav { min-height: 50px; }
.nav ul {
	padding: 0;
	margin: 0;
	width: 600px;
	float: right;
	list-style: none;
}
.ie7 .nav ul,
.ie8 .nav ul {
	border-right: 0;
}

.nav li {
	float: left;
	vertical-align: middle;
	text-align: left;
	padding: 0;
	border-right: 1px solid #474d4e;
	border-left: 1px solid #1e1e1e;

	background: url('../img/header/header-1.png') repeat-x bottom left #1f2222;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#1f2222), to(#3d4042));
	background-image: -webkit-linear-gradient(top, #1f2222, #3d4042);
	background-image:    -moz-linear-gradient(top, #1f2222, #3d4042);
	background-image:      -o-linear-gradient(top, #1f2222, #3d4042);
	background-image:         linear-gradient(to bottom, #1f2222, #3d4042);
}
/*.ie7 .nav li { display: inline; zoom: 1; vertical-align: middle; }*/

.nav li.last { border-right: 0; }
.nav li.one-line { padding-top: 9px; }


.nav a:link,
.nav a:visited {
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 1.083em;
	padding: 8px 13px;
	display: block;
	height: 32px;
  position: relative;
  display: block;
  vertical-align: middle;
}
.nav .one-line a {
	height: 23px;
}

.nav li.active,
.nav li:hover {
	background: url('../img/header/nav-active.png') repeat-x bottom left #123e44;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#123e44), to(#1e616c));
  background-image: -webkit-linear-gradient(top, #123e44, #1e616c);
  background-image:    -moz-linear-gradient(top, #123e44, #1e616c);
  background-image:      -o-linear-gradient(top, #123e44, #1e616c);
  background-image:         linear-gradient(to bottom, #123e44, #1e616c);

    -webkit-border-radius: 0 0 5px 5px;
       -moz-border-radius: 0 0 5px 5px;
            border-radius: 0 0 5px 5px;
    -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;

}


.nav a:hover,
.nav a:focus,
.nav a:active,
.nav .active a:link,
.nav .active a:visited {
	color: #c6d782;	
  text-decoration: none;
  vertical-align: bottom;
  height: 40px;
}
.nav a:hover span,
.nav a:focus span,
.nav a:active span,
.nav .active a:link span,
.nav .active a:visited span {
	position: relative;
	bottom: -7px;
}


.nav .one-line a:hover,
.nav .one-line a:focus,
.nav .one-line a:active,
.nav .active.one-line a:link,
.nav .active.one-line a:visited {
  height: 31px;
}



/* = Menu 2 = */

.nav-2 { position: relative; }
.nav-2 ul {
	padding: 0;
	margin: 0;
	display: table;
	width: 100%;
	background: url('../img/header/nav-2.png') repeat-x top left #f3f3f3;
}
.ie7 .nav-2 ul { display: block; }
.nav-2 ul li {
	display: table-cell;
	vertical-align: top;
	list-style: none;
	font-size: 1.25em;
	padding: 0;
	margin: 0;
	
}
.ie7 .nav-2 ul li { display: inline; zoom: 1; vertical-align: top; }

.nav-2 a:link,
.nav-2 a:visited {
	border: #d4d4d4 solid 1px;
	border-left-width: 0;
	text-decoration:none;
	color: #555555;
	font-weight: bold;
	background: url('../img/header/nav-2.png') repeat-x top left #f3f3f3;
	display: block;
	padding: 8px 10px;
	text-align: left;
	min-height: 34px;
	line-height: 1.1em;
	text-align: center;
}

.site-dp .nav-2 a:link,
.site-dp .nav-2 a:visited {
	padding: 8px 8px;
}

.ie7 .nav-2 a:link,
.ie7 .nav-2 a:visited {
	padding-left: 11px;
}
.nav-2 li:first-child a {
	border-left-width: 1px;
}
.ie7 .nav-2 li:first-child a {
	padding-left: 13px;
	padding-right: 13px;
}

.ie7 .site-dp .nav-2 a:link,
.ie7 .site-dp .nav-2 a:visited {
	padding-left: 9px;
}
.ie7 .site-dp .nav-2 li:first-child a {
	padding-left: 15px;
	padding-right: 15px;
}

.nav-2 .one-line a:link,
.nav-2 .one-line a:visited {
	padding-top: 16px;
	padding-bottom: 0;
}


.nav-2 a:hover,
.nav-2 a:focus,
.nav-2 a:active,
.nav-2 .active a {
	color: #c6d782;
	background: #1f3c47;
	border-color: #1f3c47;
	text-decoration: none;
}



/* = Menu 3 = */

.nav-3 { position: relative; }
.nav-3 ul {
	padding: 0;
	margin: 0;
	display: table;
	width: 100%;
	background: url('../img/header/nav-2.png') repeat-x top left #f3f3f3;
}
.ie7 .nav-3 ul { display: block; }
.nav-3 ul li {
	display: table-cell;
	vertical-align: top;
	list-style: none;
	font-size: 0.8em;
	padding: 0;
	margin: 0;
	
}
.ie7 .nav-3 ul li { display: inline; zoom: 1; vertical-align: top; }

.nav-3 a:link,
.nav-3 a:visited {
	border-left-width: 0;
	text-decoration:none;
	color: #555555;
	font-weight: bold;
	font-size:12px;
	display: block;
	padding: 4px 4px;
	text-align: left;
	min-height: 14px;
	line-height: 0.8em;
	text-align: center;
}



.nav-3 a:hover,
.nav-3 a:focus,
.nav-3 a:active,
.nav-3 .active a {
	color: #c6d782;
	background: #1f3c47;
	text-decoration: none;
}


/* = sommaire 3 colonnes  = */

.sommaire-colonnes {
	padding: 10px;
}

.lire-article {
}

.lire-article a,
.lire-article a:hover,
.lire-article a:focus,
.lire-article a:active,
.lire-article .active a {
	color: #ff0000;
	text-decoration: none;
}



/* = Fil d'Ariane = */
.breadcrumb { font-size: 0.917em; margin: 0 0 0.5em; margin-left:130px; }
.breadcrumb-bottom { margin: 0.5em 0 0.5em 1em; }
.breadcrumb ul { margin: 0; padding: 0; color: #1f3c47; }
.breadcrumb li { list-style: none; display: inline; padding: 0; }
.breadcrumb a:link,
.breadcrumb a:visited { color: #555555; }
.breadcrumb .current { font-weight: bold; }


/* = Footer = */

.footer {
	margin-top: 10px;


}
.footer a:link,
.footer a:visited {
	color: #FFF;
	text-decoration: none;
}
.footer a:hover,
.footer a:focus {
	text-decoration: underline;
}

.footer .footer-1 {
	background-color: #0f2737;
	padding: 0 15px;

	text-align: left;
	overflow:hidden;
}
.footer .footer-col {
	padding: 12px;
	margin: 0;
	width: 218px;
	float: left;
}
.footer .footer-col-last {
	padding-right: 0;
	width: 230px;
}


.footer .footer-title {
	background: url('../img/title-border.png') no-repeat 0 center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.25em;
	font-weight: bold;
	text-transform: uppercase;
	padding: 15px 0 15px 15px;
	border-bottom: #53626c solid 1px;
	margin: 0;
	color: #ffffff;
}
.footer .footer-title-2-lines {
	position: relative;
	top: -7px;
}

.footer .footer-col ul {
	margin: 0;
	padding: 5px 0 10px;
	list-style: none;
}
.footer .footer-col ul li {
	display: block;
	font-size: 1em;
	margin-bottom: 2px;
}
.footer .autres-sites-mf {
	margin-top: 0px;
	margin-bottom: 6px;
	color: #FFF;
}
.footer .autres-sites-mf a:link,
.footer .autres-sites-mf a:visited {
	color: #d3e09f;
	font-weight: bold;
}
.footer .autres-sites-mf p {
	margin: 0;
}

.footer .footer-2 {
	background-color: #121f29;
	text-align: left;
	padding: 15px 20px 20px 10px;
	border-left: 20px solid #0f2737;
	overflow: hidden;
}
.footer .footer-logo-wrapper {
	float: left;
	margin-right: 15px;
	margin-top: 2px;
}
.footer .footer-logo {
	display: block;
}
.footer .footer-links {
	padding: 0;
	margin: 0;
	list-style: none;
}
.footer .footer-links li {
	color: #FFF;
	font-size: 1em;
	padding: 0 4px 0 0;
	float: left;
}
.footer .footer-links a:link,
.footer .footer-links a:visited {
	margin-right: 4px;
	white-space: nowrap;
}
.footer-logos {
	margin: 1em 0;
	text-align: center;
}

.footer-share {
	border: 1px solid #53626c;
	border-width: 1px 0;
	padding: 8px 0;
}
.footer-share h2 {
	color: #fff;
	font-size: 1em;
	margin: 0 0 4px 0;
}
.footer-share-networks {
	text-align: center;
	margin: 0;
	padding: 0 !important;
}
.footer-share-networks li {
	display: inline !important;
}
.footer-share-networks img {
	vertical-align: middle;
}

.footer-share-rss {
	border-bottom: 1px solid #53626c;
	padding: 12px 0;
}
.footer-share-rss h2 {
	color: #fff;
	font-size: 1em;
	margin: 0 4px 0 0;
	display: inline;
}
.footer-share-rss-link img {
	vertical-align: middle;
}


/* = Titres = */

.section-title-1 {
	background: url('../img/pattern.png') repeat-x 0 0;
	padding-left: 0;
	font-size: 1.42em;
	font-weight: bold;
	margin: 0.5em 0 0.3em 0;
	color: #1A606C;
	line-height: 1em;
}
.section-title-1 span { display: block; }
.section-title-1 span.tiretvert {
	background: url('../img/sprite.png') no-repeat 0 -68px;
	padding-left: 5px;
}
.section-title-1 span.fondblanc {
	background-color: #fff;
	display: inline-block;
	padding: 3px 5px 3px 5px;
}


.page-title-1 {
	padding-left: 0;
	font-size: 1.416em;
	font-weight: bold;
	margin: 0 0 0.1em 0;
	color: #1a606c;
}
.title-sep {
	border-top: 1px solid #bbbbbb;
	margin-top: 10px;
	margin-bottom: 5px;
	height: 1px;
}

.section-title-2 {
	padding-left: 0;
	font-size: 1.42em;
	font-weight: bold;
	margin: 0.5em 0 0.3em 0;
	color: #1a606c;
}

.section-title-3 {
	font-size: 1.42em;
	padding: 6px 0;
	border-top: #C5C5C5 solid 1px;
	border-bottom: #C5C5C5 solid 1px;
	font-weight: bold;
	margin: 5px 0 0 0;
}

.section-title-4 {
	padding: 0;
	margin: 0.5em 0 0.5em 0;
	font-size: 1.167em;
	font-weight: bold;
	color: #1a606c;
}

.list-count {
	margin: 0;
	color: #1a606c;
}



/* = Listes = */

.list-style-1 {
	margin: 0 0 0 1em;
	padding: 0;
	list-style: none;
}
.list-style-1 li {
	background: url('../img/sprite.png') no-repeat 0 -404px;
	padding-left: 7px;
	line-height: 1.3em;
	margin-bottom: 0.3em;
}
.list-style-1 li a:link,
.list-style-1 li a:visited {
	color: #555;
}


.list-style-2 {
	list-style: none;
	margin: 0;
	padding: 0;
	color: #555555;
	font-size: 1.167em;
}
.list-style-2 > li {
	margin-bottom: 0.7em;
}
.list-style-2 a:link,
.list-style-2 a:visited {
	background: url('../img/sprite.png') no-repeat 0 -464px;
	padding-left: 10px;
	display: block;
	color: #555555;
	text-decoration:none;
}

.list-style-2 a:hover {
	text-decoration:underline;
}


.list-style-2 ul {
	list-style: none;
	margin: 0.5em 0 0.5em 0.5em;
	padding: 0;
	font-size: 0.857em;
}
.list-style-2 .active,
.list-style-2 .active:link,
.list-style-2 .active:visited {
	color: #1a606c;
	font-weight: bold;
}
.list-style-2 .active:link,
.list-style-2 .active:visited {
	background: url('../img/sprite.png') no-repeat 0 5px;
}




.list-style-3 {
	margin: 0;
	padding: 0;
	list-style: none;
}
.list-style-3 li {
	line-height: 1.3em;
	margin-bottom: 0.3em;
}
.list-style-3 li a:link,
.list-style-3 li a:visited {
	color: #1f3c47;
	background: url('../img/sprite.png') no-repeat 0 -463px;
	padding-left: 10px;
	font-size: 1.083em;
	font-weight: normal;
}



.list-style-4 {
	margin: 0 0 0 0.5em;
	padding: 0;
	list-style: none;
}
.list-style-4 li {
	line-height: 1.3em;
	margin-bottom: 0.3em;
}
.list-style-4 li a:link,
.list-style-4 li a:visited {
	color: #555555;
	background: url('../img/sprite.png') no-repeat 0 -463px;
	padding-left: 10px;
	font-size: 1em;
	font-weight: normal;
}


.section-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.section-list li{
	margin: 0;
	padding: 8px 0 8px 0;
}

.section-list a {
	margin: 0;
	padding-left: 12px;
	color: #555555;
}




/* = Blocs = */

.sep-left {
	border-left: 1px solid #e6e5e5;
}
.offset-left {
	padding-left: 1em;
}
.offset-right {
	padding-right: 1em;
}

.offset-left-05 {
	padding-left: 0.5em;
}
.offset-right-05 {
	padding-right: 0.5em;
}



.block-1 {
	border: 1px solid #d5d5d5;
	margin: 0 0 1em;
}
.block-1 .block-header {
	background: url('../img/grad-grey-3.png') repeat-x bottom left #F9F9F9;
	border-bottom: 1px solid #d5d5d5;
}
.block-1 .block-header h2 {
	color: #555555;
	font-weight: bold;
	font-size: 1.416em;
	margin: 0;
	padding: 0.5em;
}
.block-1 .block-body {
	background: url('../img/grad-grey-5.png') repeat-x bottom left #fff;
	padding: 0.5em;
}



/* = Boutons = */
.btn-1,
.btn-1:link,
.btn-1:visited {
	color: #FFF;
	font-size: 1.083em;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	padding: 8px 8px;
	display: block;
	text-align: center;
	background: url('../img/btn-1.png') repeat-x top left #1f3d48;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#1a5f6b), to(#1f3d48));
	background: -webkit-linear-gradient(#1a5f6b, #1f3d48);
	background: -moz-linear-gradient(#1a5f6b, #1f3d48);
	background: -ms-linear-gradient(#1a5f6b, #1f3d48);
	background: -o-linear-gradient(#1a5f6b, #1f3d48);
	background: linear-gradient(#1a5f6b, #1f3d48);
	overflow:hidden;
	position:relative;
}

.btn-1:hover,
.btn-1:focus,
.btn-1:active {
	background: url('../img/btn-1-active.png') repeat-x top left #08212a;
	text-decoration: none;
}


.btn-2,
.btn-2:link,
.btn-2:visited {
	color: #5c5c5c;
	font-size: 0.917em;
	line-height: 1.3em;
	border: 1px solid #e1e1e1;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	padding: 5px 8px;
	display: block;
	text-align: left;
	background: url('../img/grad-grey-2.png') repeat-x bottom left #fff;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#ffffff), to(#f4f4f4));
	background: -webkit-linear-gradient(#ffffff, #f4f4f4);
	background: -moz-linear-gradient(#ffffff, #f4f4f4);
	background: -ms-linear-gradient(#ffffff, #f4f4f4);
	background: -o-linear-gradient(#ffffff, #f4f4f4);
	background: linear-gradient(#ffffff, #f4f4f4);
	overflow:hidden;
	position:relative;
}

.btn-2:hover,
.btn-2:focus,
.btn-2:active {
	background: url('../img/grad-grey-6.png') repeat-x bottom left #f0f0f0;
	text-decoration: none;
}

.btn-2 span {
	background: url('../img/sprite.png') no-repeat 270px -340px;
	display: block;
}


/* = Lien "En savoir plus" / Détails = */
.more-wrapper {
	text-align: right;
}

.more:visited,
.more:link {
	padding-right: 0;
	margin-right: 0;
	text-align: right;
	background: url('../img/sprite.png') no-repeat 0 5px;
	padding-left: 10px;
	color: #000;
}



/* = Sprites = */
span[class*=sp-],
a[class*=sp-]:link,
a[class*=sp-]:visited {
	background-image: url('../img/sprite.png');
	background-repeat: no-repeat;
}
.sp-bullet-green { background-position: 0 5px; }
.sp-bullet-blue {	background-position: 0 -216px; }
.sp-bullet-blue-2 { background-position: 0 -349px; }
.sp-info { display: block; float: left; background-position: 0 -282px; width: 19px; height: 20px; }




/* = Média = */

.mod-media {
	
	margin-bottom: 0.3em;
	padding: 0 9px 13px;
	width: 765px;
	position: relative;
	left: -120px;
	overflow: hidden;
}

.mod-media-body {
	border: 0px ;
	padding: 16px;
	overflow: hidden;
}

.image-media {
	float: left;
	margin-right: 8px;
}
.image-media img {
	display: block;
	border: 0;
}
.image-media-border img {
	border:#959696 solid 1px;
}
.image-media-legend {
	font-size: 1.083em;
}

.mod-media-text {
	overflow: hidden;
}

.media-title {
	margin: 0 0 0.5em;
	font-size: 1.42em;
	font-weight: bold;
}
.media-title a:link,
.media-title a:visited {
	color: #1A606C;
}

.media-dossier-title {
	margin: 0 0 0.5em;
	font-weight: bold;
	font-size: 1.083em;
}
.mod-media-text p {
	margin: 0.5em 0;
	font-size: 1.083em;
	color: #555555;
}
.mod-media-body p span {
	font-weight: bold;
}


.media {
	border-top: #dcdcdc solid 1px;
	padding: 16px 0;
	position:relative;
	overflow: hidden;
}
.media:first-child {
	border-top: 0;
	padding-top: 0;
}
.media-date {
	color: #555555;
}
.media-auteur {
	color: #555555;
}

.media p {
	color: #202020;
	font-size: 1.083em;
	margin: 0.5em 0 0.8em;
}
.media p a:link,
.media p a:visited {
	color: #1a606c;
}


/* = Mots clés = */

.media-keywords span {
	color: #202020;
}
.media-keywords ul {
	list-style: none;
	padding: 0;
	display: inline;
	margin: 0;
}
.media-keywords ul li{
	display: inline;
}
.media-keywords a {
	color: #1a606c;
}




/* = Outils = */
.tools .pdf {
	float: right;
	margin-right: 0.5em;
}
.tools .print {
	float: right;
	margin-right: 0.5em;
}
.tools img {
	border: 0;
	vertical-align: middle;
}


/* = Partager = */
.share-panel {
	float: right;
	margin-right: 0.8em;
}
.share-btn:link,
.share-btn:visited {
	border: 1px solid #c9c9c9;
	background: url('../img/grad-grey-4.png') repeat-x top left;
	font-weight: bold;
	color: #717171;
	overflow: visible;
	zoom: 1;
	width: auto;
	display: inline-block;
	padding-right: 0.5em;
}
.share-btn:hover,
.share-btn:focus,
.share-btn:active {
	background-image: url('../img/grad-grey-6.png');
	text-decoration: none;
}
.share-content {
	border: 1px solid #c9c9c9;
	top: 0;
	left: 0;
	background: #F4F4F4;
	padding: 0.5em;
}
.js .share-content {
	position: absolute;
}

.share-btn-text {
	border-right: 1px solid #c9c9c9;
	padding-right: 0.6em;
	padding-left: 0.5em;
	margin-right: 0.6em;
	line-height: 1.5em;
}
.share-btn-arrow {
	width: 10px;
	height: 7px;
	background: url('../img/sprite.png') no-repeat -67px -282px;
	display: inline-block;
	vertical-align: middle;
	zoom: 1;
}


/* = Sommaire = */

.summary {
	margin-top:20px;
	position:relative;
	float:none;
	overflow:hidden;
}
.summary-title {
	font-size: 1.42em;
	color: #555555;
	padding: 6px 0;
	border-top: #C5C5C5 solid 1px;
	border-bottom: #C5C5C5 solid 1px;
	font-weight: bold;
	margin: 0;
}
.summary-list {
	margin: 0;
	padding: 0;
	list-style:none;
}
.summary-list li {
	font-size: 1.083em;
	color: #555555;
	border-bottom: #C5C5C5 solid 1px;
	padding: 6px 0;
}
.summary-list a:link,
.summary-list a:visited {
	color: #555555;
}
.summary-list .active,
.summary-list a:hover,
.summary-list a:focus,
.summary-list a:active {
	color: #1a606c;
}
.summary-list .active {
	font-weight: bold;
}



/* = Article = */
.article-content {
	padding: 0.5em 0;
	clear: both;
}
.article-content-max {
	margin-right: 124px;
	width: 600px;
}

.article-chapeau {
	color: #555;
	padding: 0 0 0.5em 0;
	border-bottom: 1px solid #c5c5c5;
}


.article-content h2 {
	font-size: 1.083em;
	color: #202020;
	font-weight: bold;
	margin: 1em 0 0.5em;
}
.article-content h3 {
	font-size: 1.083em;
	color: #202020;
	font-weight: bold;
	margin: 1em 0 0.5em;
}
.article-content p {
	margin: 0.5em 0;
}

.image-border {
	border: 1px solid #959696;
}
.image-source {
	font-style: italic;
}
.image-video {
	position: relative;
}
.image-video-play {
	background: url('../img/play.png') no-repeat center top;
	width: 100%;
	height: 51px;
	margin-top: 40px;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}








/* = Pagination = */
.pagination {
  margin: 20px 0;
  clear: both;
}
.pagination-2 {
	background-color: #f5f5f5;
	padding: 0.5em 1em;
}


.pagination ul {
  display: inline-block;
  *display: inline;
  margin-bottom: 0;
  margin-left: 0;
  *zoom: 1;
}
.pagination-2 ul {
	margin-right: 0;
}

.pagination ul > li {
  display: inline;
}
.pagination ul > li > a,
.pagination ul > li > span {
  float: left;
  padding: 2px 4px;
  text-decoration: none;
}

.pagination ul > li > a:hover,
.pagination ul > li > a:focus,
.pagination ul > li > a:active {
	text-decoration: underline;
}

.pagination ul > .active > a,
.pagination ul > .active > span {
  color: #000;
  cursor: default;
  font-weight: bold;
  font-size: 1.2em;
}

.pagination-2 ul > .active > a,
.pagination-2 ul > .active > span {
	color: #555555;
}

.pagination ul > .disabled > span,
.pagination ul > .disabled > a,
.pagination ul > .disabled > a:hover {
  color: #999999;
  cursor: default;
  background-color: transparent;
}

.pagination-centered {
  text-align: center;
}

.pagination-right {
  text-align: right;
}

.pagination-prev,
.pagination-next {
	background: url('../img/sprite.png') no-repeat -67px -291px;
	width: 5px;
	height: 6px;
	display: inline-block;
	vertical-align: middle;
}
.pagination-next {
	background: url('../img/sprite.png') no-repeat -72px -291px;
	margin-left: 0.3em;
}
.pagination-prev {
	margin-right: 0.3em;
}
.ie7 .pagination-prev,
.ie7 .pagination-next {
	display: inline;
	zoom: 1;
}
.pagination-divider a {
	border-left: 1px solid #e6e5e5;
}
.pagination-2 .pagination-divider a {
	border-left-color: #c5c5c5
}

/* = Nombre de resultats = */
.results-count {
	color: #555555;
	float: left;
	padding-top: 0.2em;
	font-size: 1.083em;
}


/* = Tri = */
.result-sort {
	float: left;
	padding-top: 0.2em;
	font-size: 1.083em;
}
.result-sort a:link,
.result-sort a:visited {
	font-weight: bold;
}



/* = Bouton de retour = */
.btn-back:link,
.btn-back:visited {
	border: 1px solid #c9c9c9;
	background: url('../img/grad-grey-3.png') repeat-x top left;
	font-weight: bold;
	color: #717171;
	overflow: visible;
	zoom: 1;
	width: auto;
	display: block;
	padding-left: 0.5em;
	margin: 0 0 1em;
}
.btn-back:hover,
.btn-back:focus,
.btn-back:active {
	background-image: url('../img/grad-grey-6.png');
	text-decoration: none;
}
.btn-back-text {
	margin-left: 0.5em;
	padding-left: 0.5em;
	border-left: 1px solid #C9C9C9;
	line-height: 1.8em;
}
.btn-back-arrow {
	width: 6px;
	height: 9px;
	background: url('../img/sprite.png') no-repeat 0px -302px;
	display: inline-block;
	vertical-align: middle;
}
.ie7 .btn-back-arrow {
	display: inline;
	zoom: 1;
}



/* = Filtres = */

.block-filter .block-body {
	background: none;
}

.form-filter .form-option label span {
	font-weight: bold;
}
.js .form-more-options {
	display: none;
}

.form-btn-more-options-wrapper {
	display: none;
	margin: 1em 0 0.5em;
	padding: 0.3em 0;
	text-align: center;
	border-top: 1px solid #c5c5c5;
}
.js .form-btn-more-options-wrapper {
	display: block;
}
.form-btn-more-options {
	border: 0;
	background: none;
	color: #555555;
	overflow: visible;
	zoom: 1;
}
.form-btn-more-options:hover,
.form-btn-more-options:focus,
.form-btn-more-options:active {
	text-decoration: underline;
}
.form-btn-more-options-text { padding: 0 0.5em;}
.arrow-s {
	width: 10px;
	height: 7px;
	background: url('../img/sprite.png') no-repeat -67px -282px;
	display: inline-block;
	vertical-align: middle;
}

.filter-help {
	color: #1a606c;
	font-style: italic;
	text-align: center;
	margin: 1em 0 0;
}


/* = Glossaire = */
.glossaire-row {
	overflow: hidden;
}
.glossaire-summary {
	list-style: none;
	padding: 0;
	margin: 0;
	color: #555;
	font-size: 1.083em;
}
.glossaire-summary li {
	display: inline;
}
.glossaire-summary li a:link,
.glossaire-summary li a:visited {
	color: #555;
}
.glossaire-summary .active {
	font-weight: bold;
	color: #1a606c;
	font-size: 1.2em;
}

.glossaire-search label {
	display: block;
	width: auto;
	float: none;
	text-align: left;
	color: #555555;
	font-size: 1.083em;
	margin: 1em 0 0.5em;
}

.glossaire-search input[type="text"] {
	border-color: #cdcdcd;
	padding: 8px 5px;
	color: #555;
	line-height: 1.3em;
	font-size: 1.083em;
	  -webkit-border-radius: 2px 0 0 2px;
	     -moz-border-radius: 2px 0 0 2px;
	          border-radius: 2px 0 0 2px;
	  -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;
}
.glossaire-search input[type="submit"] {
	border: 1px solid #cbcbcb;
	border-left-width: 0;
	padding: 8px 5px;
	font-size: 1.083em;
	line-height: 1.3em;
	overflow: visible;
	zoom: 1;
	  -webkit-border-radius: 0 2px 2px 0;
	     -moz-border-radius: 0 2px 2px 0;
	          border-radius: 0 2px 2px 0;
	  -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;

	background: url('../img/grad-grey-2.png') repeat-x bottom left #fff;
	color: #555555;
	font-weight: bold;
}
.ie8 .glossaire-search input[type="submit"] {
	padding: 7px 5px;
}
.ie7 .glossaire-search input[type="submit"] {
	padding: 5px 5px 6px;
}


.glossaire-search input[type="submit"]:hover,
.glossaire-search input[type="submit"]:focus,
.glossaire-search input[type="submit"]:active {
	background-image: url('../img/grad-grey-3.png');
}



/* = Publication = */

.row-publication {
	margin: 1em 0;
	overflow: hidden;
}
.publication {
	float: left;
	width: 190px;
	margin-left: 80px;
	margin-bottom: 1em;
}
.publication:first-child {
	margin-left: 0;
}
.publication-image {
	padding: 0;
	margin: 0;
}

.publication-pane {
	border: 1px solid #d7d7d7;
	position: relative;
	padding: 5px;
	margin-bottom: 0.5em;
}
.publication-r .publication-pane {
	width: 238px;
	min-height:138px;
}

.publication-arrow {
	background: url('../img/sprite.png') no-repeat -20px -286px;
	width: 34px;
	height: 16px;
	display: block;
	position: absolute;
	top: -16px;
	left: 15px;
}
.publication-r .publication-arrow {
	background: url('../img/sprite.png') no-repeat -19px -303px;
	width: 16px;
	height: 33px;
	top: 6px;
	left: -15px;
}


.publication-title {
	padding: 0 0 4px 0;
	font-size: 1.083em;
	font-weight: bold;
	margin: 0;
	color: #1f3c47;
}
.publication-title a:link,
.publication-title a:visited {
	color: #1f3c47;
}
.publication-date {
	font-size: 0.917em;
}
.publication p {
	font-size: 0.917em;
	color: #555555;
	line-height: normal;
	margin: 0 0 2px 0 ;
}
.publication-price {
	display: block;
	margin: 0.7em 0;
	font-size: 0.917em;
	color: #555555;
}
.publication-btn:link,
.publication-btn:visited {
	display: block;
	padding: 0.5em 0;
	border: 1px solid #d4d4d4;

	color: #555;
	text-align: center;
	background: url('../img/grad-grey-2.png') repeat-x bottom left #fff;
}
.publication-btn:hover,
.publication-btn:focus,
.publication-btn:active {
	background-image: url('../img/grad-grey-3.png');
	text-decoration: none;
}

.publication-r {
	width: 358px;
	margin-left: 0px;
}
.publication-r .publication-image {
	float: left;
}
.publication-r .publication-pane {
	float: right;
}


/* = Collection header = */
.collections {
	clear: both;
}
.collection-header {
	margin-bottom: 0.5em;
}
.collection-title {
	margin: 0;
}
.collection-more:link,
.collection-more:visited {
	color: #555555;
	float: right;
	background: url('../img/sprite.png') no-repeat 0 -464px;
	padding-left: 7px;
}





/* = Thematiques = */

.thematiques-row {
	overflow: hidden;
	margin-bottom: 1em;
}
.thematique {
	font-size: 1.083em;
	float: left;
	width: 135px;
	margin-left: 63px;
}
.thematique:first-child {
	margin-left: 0;
}
.thematique-title {
	font-size: 1em;
}
.thematique-title a:link,
.thematique-title a:visited {
	color: #555555;
}
.thematique-image {
	display: block;
}
.thematique-image img {
	border: 1px solid #999a9a;
}
.thematique-more:link,
.thematique-more:visited {
	color: #1f3c47;
	background: url('../img/sprite.png') no-repeat 0px 5px;
	padding-left: 7px;
}

.btn-more-large {
	display: block;
	border: 1px solid #d4d4d4;
	padding: 0.5em 0;
	background: url('../img/grad-grey-2.png') repeat-x bottom left #fff;
	width: 100%;
	color: #555555;

	  -webkit-border-radius: 2px;
	     -moz-border-radius: 2px;
	          border-radius: 2px;
	  -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;
	
}

.js .more-them {
	display: none;
}



/* = Popin = */
.colorbox-wrapper { display: none; }

.popin-title {
	color: #c5d682;
	background: #1f3c47;
	margin: 0;
	padding: 0.5em;
	font-size: 1.416em;
}

#popin-diaporama { width: 726px; overflow: hidden; }
#popin-diaporama .mod-carousel-legend-wrapper { padding: 1em; }


