/*
Theme Name: Neoplanète
Theme URI: http://byzance.cc/
Author: Byzance
Author URI: http://byzance.cc/
Description: Thème pour le magazine Neo-Planète
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Neoplanete
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

 Neoplanete is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
	10.1 Posts and pages
	10.2 Asides
	10.3 Comments
11.0 Infinite scroll
12.0 Media
	12.1 Captions
	12.2 Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
	margin-top: 0 !important;
}

*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}

body {
	background-color: #fff; /* Fallback for when there is no custom background color defined. */
	max-width: 1000px;
	margin: 0 auto;
}

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

ol,
ul {
	list-style: none;
	margin-left: 2em;
}

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

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

a:focus {
	outline: thin dotted;
}

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

a img {
	border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/

body,
button,
input,
select,
textarea {
	color: #000000;
	font-family: "ff-tisa-sans-web-pro", "Helvetica", sans-serif;
	font-size: 14px;
	font-size: 1.3rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-weight: bold;
}

p {
	margin-bottom: 1.5em;
}

b,
strong {
	font-weight: bold;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

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

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
	border: 0;
	background: white;
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}

input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}

input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	text-decoration: none;
	color: #db0b32;
}

a:visited {
	color: #bf0a2c;
}

a:hover,
a:focus,
a:active {
	color: #bf0a2c;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {

	display: block;
	width: 100%;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
	width: 11.11%;
	padding: .8em 0;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .025em;
	font-size: .9em;
}

.main-navigation a {
	display: block;
	text-decoration: none;
	color: white;
	font-weight: bold;
}
.main-navigation a:hover {
	display: block;
	text-decoration: none;
	color: white;
	font-weight: normal;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 3em;
	left: -999em;
	right: 0;
	z-index: 99999;
	width: 300px;
}

.main-navigation ul li:last-child > ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 3em;
	right: -999em;
	z-index: 99999;
	width: 300px;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: auto;
	text-transform:none;
	font-weight: normal;
}

.main-navigation ul ul a:hover {
	width: auto;
	text-transform:none;
	font-weight: normal;
}

.main-navigation ul ul li {
	float: left;
	width: 100%;
	text-align: left;
	padding: 1em;
}
.main-navigation ul ul li a:before {
	display: inline-block;
	margin-right: .5em;
	font-weight: bold;
}

.main-navigation li:hover > a {
}

.main-navigation ul ul :hover > a {
}

.main-navigation ul ul a:hover {
}

.main-navigation ul li:hover > ul {
	left: auto;
}

.main-navigation ul li:last-child:hover > ul {
	right: 0;
}

.main-navigation ul li.menu-actu ul.sub-menu {
	background: rgb(219,11,50);
}

.main-navigation ul ul li:hover > ul {
	left: 100%;
}

.main-navigation ul li:last-child > ul li:hover > ul {
	right: 0;
	left: -100%;
	margin-top: -30px;
}

.main-navigation .current_page_item a,
.main-navigation .current-menu-item a {
}

/* Small menu */
.menu-toggle, .menu-radio {
	display: none;
	color: #fff;
	background: #bf0a2c;
	padding: 1em;
	background-image: url(http://www.neoplanete.fr/wp-content/themes/neoplanete/img/menu.png);
	background-repeat: no-repeat;
	background-position: 10% 50%;
	width: 50%;
	float: left;
	margin-bottom: 10px;
	border: 1px solid #fff;
}

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

.menu-actu {
	background: rgb(219,11,50)!important; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2RiMGIzMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2JmMGEyYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=)!important;
	background: -moz-linear-gradient(-45deg,  rgba(219,11,50,1) 50%, rgba(191,10,44,1) 50%)!important; /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(50%,rgba(219,11,50,1)), color-stop(50%,rgba(191,10,44,1)))!important; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(-45deg,  rgba(219,11,50,1) 50%,rgba(191,10,44,1) 50%)!important; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(-45deg,  rgba(219,11,50,1) 50%,rgba(191,10,44,1) 50%)!important; /* Opera 11.10+ */
	background: -ms-linear-gradient(-45deg,  rgba(219,11,50,1) 50%,rgba(191,10,44,1) 50%)!important; /* IE10+ */
	background: linear-gradient(135deg,  rgba(219,11,50,1) 50%,rgba(191,10,44,1) 50%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#db0b32', endColorstr='#bf0a2c',GradientType=1 )!important; /* IE6-8 fallback on horizontal gradient */
	height: 39px!important;
	padding-top: 8px!important;
}

.menu-cop21 {
	background: rgb(0,61,115); /* Old browsers */
	background: -moz-linear-gradient(-45deg,  rgba(0,61,115,1) 50%, rgba(0,98,170,1) 50%)!important; /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(50%,rgba(0,61,115,1)), color-stop(50%,rgba(0,98,170,1)))!important; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(-45deg,  rgba(0,61,115,1) 50%,rgba(0,98,170,1) 50%)!important; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(-45deg,  rgba(0,61,115,1) 50%,rgba(0,98,170,1) 50%)!important; /* Opera 11.10+ */
	background: -ms-linear-gradient(-45deg,  rgba(0,61,115,1) 50%,rgba(0,98,170,1) 50%)!important; /* IE10+ */
	background: linear-gradient(135deg,  rgba(0,61,115,1) 50%,rgba(0,98,170,1) 50%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003d73', endColorstr='#0061aa',GradientType=1 )!important; /* IE6-8 fallback on horizontal gradient */
	height: 39px!important;
	padding-top: 8px!important;
}

.menu-actu .sub-menu li:hover {
	background: rgb(191,10,44)!important;
	height: 39px;
	padding-top: 8px!important;
}
.menu-conso {
	background: rgb(24,49,82)!important; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzE4MzE1MiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUxJSIgc3RvcC1jb2xvcj0iIzE1MmI0NyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=)!important;
	background: -moz-linear-gradient(-45deg,  rgba(24,49,82,1) 50%, rgba(21,43,71,1) 51%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(50%,rgba(24,49,82,1)), color-stop(51%,rgba(21,43,71,1)))!important; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(-45deg,  rgba(24,49,82,1) 50%,rgba(21,43,71,1) 51%)!important; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(-45deg,  rgba(24,49,82,1) 50%,rgba(21,43,71,1) 51%)!important; /* Opera 11.10+ */
	background: -ms-linear-gradient(-45deg,  rgba(24,49,82,1) 50%,rgba(21,43,71,1) 51%)!important; /* IE10+ */
	background: linear-gradient(135deg,  rgba(24,49,82,1) 50%,rgba(21,43,71,1) 51%)!important; /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#183152', endColorstr='#152b47',GradientType=1 )!important; /* IE6-8 fallback on horizontal gradient */
	height: 39px!important;
	padding-top: 8px!important;
}
.menu-vip {
	background: rgb(255,91,43)!important; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2ZmNWIyYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUxJSIgc3RvcC1jb2xvcj0iI2RlNGYyNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=)!important;
	background: -moz-linear-gradient(-45deg,  rgba(255,91,43,1) 50%, rgba(222,79,37,1) 51%)!important; /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(50%,rgba(255,91,43,1)), color-stop(51%,rgba(222,79,37,1)))!important; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(-45deg,  rgba(255,91,43,1) 50%,rgba(222,79,37,1) 51%)!important; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(-45deg,  rgba(255,91,43,1) 50%,rgba(222,79,37,1) 51%)!important; /* Opera 11.10+ */
	background: -ms-linear-gradient(-45deg,  rgba(255,91,43,1) 50%,rgba(222,79,37,1) 51%)!important; /* IE10+ */
	background: linear-gradient(135deg,  rgba(255,91,43,1) 50%,rgba(222,79,37,1) 51%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5b2b', endColorstr='#de4f25',GradientType=1 )!important; /* IE6-8 fallback on horizontal gradient */
	height: 39px!important;
	padding-top: 8px!important;
}
.menu-bien {
	background: rgb(137,89,89)!important; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzg5NTk1OSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUxJSIgc3RvcC1jb2xvcj0iIzc3NGQ0ZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=)!important;
	background: -moz-linear-gradient(-45deg,  rgba(137,89,89,1) 50%, rgba(119,77,77,1) 51%)!important; /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(50%,rgba(137,89,89,1)), color-stop(51%,rgba(119,77,77,1)))!important; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(-45deg,  rgba(137,89,89,1) 50%,rgba(119,77,77,1) 51%)!important; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(-45deg,  rgba(137,89,89,1) 50%,rgba(119,77,77,1) 51%)!important; /* Opera 11.10+ */
	background: -ms-linear-gradient(-45deg,  rgba(137,89,89,1) 50%,rgba(119,77,77,1) 51%)!important; /* IE10+ */
	background: linear-gradient(135deg,  rgba(137,89,89,1) 50%,rgba(119,77,77,1) 51%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#895959', endColorstr='#774d4d',GradientType=1 )!important; /* IE6-8 fallback on horizontal gradient */
	height: 39px!important;
	padding-top: 8px!important;
}
.menu-eco {
	background: rgb(120,164,25)!important; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzc4YTQxOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUxJSIgc3RvcC1jb2xvcj0iIzY4OGYxNiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=)!important;
	background: -moz-linear-gradient(-45deg,  rgba(120,164,25,1) 50%, rgba(104,143,22,1) 51%)!important; /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(50%,rgba(120,164,25,1)), color-stop(51%,rgba(104,143,22,1)))!important; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(-45deg,  rgba(120,164,25,1) 50%,rgba(104,143,22,1) 51%)!important; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(-45deg,  rgba(120,164,25,1) 50%,rgba(104,143,22,1) 51%)!important; /* Opera 11.10+ */
	background: -ms-linear-gradient(-45deg,  rgba(120,164,25,1) 50%,rgba(104,143,22,1) 51%)!important; /* IE10+ */
	background: linear-gradient(135deg,  rgba(120,164,25,1) 50%,rgba(104,143,22,1) 51%)!important; /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#78a419', endColorstr='#688f16',GradientType=1 !important); /* IE6-8 fallback on horizontal gradient */
	height: 39px!important;
	padding-top: 8px!important;
}
.menu-animaux {
	background: rgb(59,4,5)!important; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzNiMDQwNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUxJSIgc3RvcC1jb2xvcj0iIzMzMDMwNCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
	background: -moz-linear-gradient(-45deg,  rgba(59,4,5,1) 50%, rgba(51,3,4,1) 51%)!important; /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(50%,rgba(59,4,5,1)), color-stop(51%,rgba(51,3,4,1)))!important; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(-45deg,  rgba(59,4,5,1) 50%,rgba(51,3,4,1) 51%)!important; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(-45deg,  rgba(59,4,5,1) 50%,rgba(51,3,4,1) 51%)!important; /* Opera 11.10+ */
	background: -ms-linear-gradient(-45deg,  rgba(59,4,5,1) 50%,rgba(51,3,4,1) 51%)!important; /* IE10+ */
	background: linear-gradient(135deg,  rgba(59,4,5,1) 50%,rgba(51,3,4,1) 51%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b0405', endColorstr='#330304',GradientType=1 )!important; /* IE6-8 fallback on horizontal gradient */
	height: 39px!important;
	padding-top: 8px!important;
}

.menu-podcast {
	background: rgb(76,47,98)!important; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: -moz-linear-gradient(-45deg,  rgba(76,47,98,1) 50%, rgba(59,33,79,1) 51%)!important; /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(50%,rgba(76,47,98,1)), color-stop(51%,rgba(59,33,79,1)))!important; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(-45deg,  rgba(76,47,98,1) 50%,rgba(59,33,79,1) 51%)!important; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(-45deg,  rgba(76,47,98,1) 50%,rgba(59,33,79,1) 51%)!important; /* Opera 11.10+ */
	background: -ms-linear-gradient(-45deg,  rgba(76,47,98,1) 50%,rgba(59,33,79,1) 51%)!important; /* IE10+ */
	background: linear-gradient(135deg,  rgba(76,47,98,1) 50%,rgba(59,33,79,1) 51%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c2f62', endColorstr='#3b214f',GradientType=1 )!important; /* IE6-8 fallback on horizontal gradient */
	height: 39px!important;
	padding-top: 8px!important;
}

.menu-videos {
	background: rgb(176,23,23)!important; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: -moz-linear-gradient(-45deg,  rgba(176,23,23,1) 50%, rgba(147,15,15,1) 51%)!important; /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(50%,rgba(176,23,23,1)), color-stop(51%,rgba(147,15,15,1)))!important; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(-45deg,  rgba(176,23,23,1) 50%,rgba(147,15,15,1) 51%)!important; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(-45deg,  rgba(176,23,23,1) 50%,rgba(147,15,15,1) 51%)!important; /* Opera 11.10+ */
	background: -ms-linear-gradient(-45deg,  rgba(176,23,23,1) 50%,rgba(147,15,15,1) 51%)!important; /* IE10+ */
	background: linear-gradient(135deg,  rgba(176,23,23,1) 50%,rgba(147,15,15,1) 51%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b01717', endColorstr='#930f0f',GradientType=1 )!important; /* IE6-8 fallback on horizontal gradient */
	height: 39px!important;
	padding-top: 11px!important;
}

#menu-item-120998 {

	background: rgb(176,23,23)!important; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: -moz-linear-gradient(-45deg,  rgba(176,23,23,1) 50%, rgba(147,15,15,1) 51%)!important; /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(50%,rgba(176,23,23,1)), color-stop(51%,rgba(147,15,15,1)))!important; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(-45deg,  rgba(176,23,23,1) 50%,rgba(147,15,15,1) 51%)!important; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(-45deg,  rgba(176,23,23,1) 50%,rgba(147,15,15,1) 51%)!important; /* Opera 11.10+ */
	background: -ms-linear-gradient(-45deg,  rgba(176,23,23,1) 50%,rgba(147,15,15,1) 51%)!important; /* IE10+ */
	background: linear-gradient(135deg,  rgba(176,23,23,1) 50%,rgba(147,15,15,1) 51%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b01717', endColorstr='#930f0f',GradientType=1 )!important; /* IE6-8 fallback on horizontal gradient */
	width: 11.11%;
	height: 39px!important;
	
	
}


.menu-top-menu-container {float: left!important;}
#menu-top-menu {margin: 0; padding: 0; float: left!important;}
#menu-top-menu li {float: left; list-style: none; margin: 0 1em 0 0!important;}
#menu-top-menu li a {color: white; font-weight: bold!important;}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: '';
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}


/*--------------------------------------------------------------
Ads
--------------------------------------------------------------*/
.header_banner {width: 100%; height: 30px;}


/*--------------------------------------------------------------
13 Neo
--------------------------------------------------------------*/
input[type="submit"], input[type="text"] {
    line-height:normal !important;
}

#masthead {margin-bottom: .5em;}
.site-branding{ position: relative;}
#listen {position:absolute; left: 102px; bottom: -10px;}
.site-branding #socials {position: absolute; right: 0; width: 330px; top: 50%; margin-top: -25px;}
.site-branding .social a {display:block; height: 50px; width: 50px; float: left; margin: 5px;}
.site-branding .podcasts_icon a{display:block; height: 77px;  float: left; margin: 5px; margin-top: -22px;margin-left: -72px;}

.widget_search {padding: 0em 0 2em; }
.search-form {width: 100%; position: relative; }
.search-form label{display:block; position: absolute; top: 0; left: 0; right: 100px;}
input[type="search"].search-field {
	border: 1px solid #ccc;
	padding: .5em;
	-moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
	width: 60%;
	position: absolute;
}
.search-submit {
	background: #bf0a2c;
	color: #fff;
	padding: .5em;
	border: 1px solid #bf0a2c;
	-moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
	width: 90px;
	position: absolute; top: 0; right: 90px;
	}
.site-title {padding-top: 2em;}
.site-title a{display:block; margin-bottom: .25em;}
.site-title a img {margin: 0 auto; width:30%; display: block;}
.tagline {
	margin: 0 auto;
	width:30%; display: block;
	color: #bf0a2c;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	font-size: .8em;
	margin-bottom: 1.5em;
}
#radio {position: absolute; left: 0; top: 10px; width: 20%; height: 90px;}
#radio-cache{display:block; width: 250px; height: 90px; position: absolute; top: 0; left: 0; }
/*#radio-cache:hover{background: rgba(0,0,0,.3);}*/

#page {
	background-color: #fff;
}
#masthead, #content {
	padding: 0em 1em;
}

#info_feed {
	width: 100%;
	padding: .8em 0;
	color: black;
	overflow: hidden;
	border-bottom: 2px solid #bf0a2c;
}

#ticker {
    height: 22px;
    overflow: hidden;
		margin: 0 0 0 .5em;
		float: left;
		font-size: 120%;
}
.tickercontainer { /* the outer div with the black border */
width: 100%;
height: 22px;
margin: 0;
padding: 0;
overflow: hidden;
float: left;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 10px;
top: 0px;
width: 100%;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
left: 550px;
list-style-type: none;
margin: 0;
padding: 0;

}
ul.newsticker li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0;
padding: 0;
margin: 0 25px 0 25px;
font-weight: bold;
}
ul.newsticker li.dot {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0;
padding: 0;
color: #bf0a2c;
font-weight: bold;
}
ul.newsticker a {
white-space: nowrap;
padding: 0;
}
ul.newsticker span {
margin: 0 10px 0 0;
}

#menu_haut {
	width: 100%;
	padding: .8em;
	color: white;
	overflow: hidden;
	background: rgb(120,164,25); /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjNzhhNDE5IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNDklIiBzdG9wLWNvbG9yPSIjNzhhNDE5IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNDklIiBzdG9wLWNvbG9yPSIjNzhhNDE5IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNDklIiBzdG9wLWNvbG9yPSIjNzhhNDE5IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNDklIiBzdG9wLWNvbG9yPSIjNjg4ZjE2IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjNjg4ZjE2IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjNjg4ZjE2IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzY4OGYxNiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
	background: -moz-linear-gradient(-45deg,  rgba(120,164,25,1) 0%, rgba(120,164,25,1) 49%, rgba(120,164,25,1) 49%, rgba(120,164,25,1) 49%, rgba(104,143,22,1) 49%, rgba(104,143,22,1) 50%, rgba(104,143,22,1) 50%, rgba(104,143,22,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(120,164,25,1)), color-stop(49%,rgba(120,164,25,1)), color-stop(49%,rgba(120,164,25,1)), color-stop(49%,rgba(120,164,25,1)), color-stop(49%,rgba(104,143,22,1)), color-stop(50%,rgba(104,143,22,1)), color-stop(50%,rgba(104,143,22,1)), color-stop(100%,rgba(104,143,22,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(-45deg,  rgba(120,164,25,1) 0%,rgba(120,164,25,1) 49%,rgba(120,164,25,1) 49%,rgba(120,164,25,1) 49%,rgba(104,143,22,1) 49%,rgba(104,143,22,1) 50%,rgba(104,143,22,1) 50%,rgba(104,143,22,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(-45deg,  rgba(120,164,25,1) 0%,rgba(120,164,25,1) 49%,rgba(120,164,25,1) 49%,rgba(120,164,25,1) 49%,rgba(104,143,22,1) 49%,rgba(104,143,22,1) 50%,rgba(104,143,22,1) 50%,rgba(104,143,22,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(-45deg,  rgba(120,164,25,1) 0%,rgba(120,164,25,1) 49%,rgba(120,164,25,1) 49%,rgba(120,164,25,1) 49%,rgba(104,143,22,1) 49%,rgba(104,143,22,1) 50%,rgba(104,143,22,1) 50%,rgba(104,143,22,1) 100%); /* IE10+ */
	background: linear-gradient(135deg,  rgba(120,164,25,1) 0%,rgba(120,164,25,1) 49%,rgba(120,164,25,1) 49%,rgba(120,164,25,1) 49%,rgba(104,143,22,1) 49%,rgba(104,143,22,1) 50%,rgba(104,143,22,1) 50%,rgba(104,143,22,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#78a419', endColorstr='#688f16',GradientType=1 ); /* IE6-8 fallback on horizontal gradient */
}
.newsletter-header {display: inline-block; float: right; margin-right: 1em;}
.newsletter_form {width: 300px; float: left; margin-top: -.4em;}
.newsletter_form input, .newsletter_form input[type="search"].search-field {padding: .3em;}
.news_submit_button {float: right; background: #bf0a2c; font-weight: bold; color: #fff;}

.widget {margin: 1em 0;}
#secondary h2, .widget-title {text-transform: uppercase; margin: 1.5em 0 .25em 0;}

#main {
	clear: both; margin-top: 1em;
}
.single-diaporama .entry-content {position: relative;}
.controls {margin-bottom: 2em; font-weight: bold; font-size: 2.7em; margin-top: -50px; position: absolute; width: 100%;}
.controls a {display:block; float: left; overflow: hidden;}
.controls a span {display:block; float: left; height:32px; width:32px; background: url(img/next.png) center center no-repeat;}
#next {float: right; margin-right: 20px;}
#prev span{
	ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
    transform: rotate(180deg);
		margin-left: 20px;
}
#diaporama {width: 100%; overflow: hidden; height: 500px; margin-bottom: 1em;}
#diaporama .diapo {height: 500px; position: relative; float: left; overflow: hidden; cursor: pointer;}
#diaporama .diapo .diapo-bloc {
	position: absolute;
	bottom: 0;
	display: none;
	right: 0;
	left: 0;
	width: 100%;
	padding: .5em 1em;
	background: rgba(0,0,0,.7);
	color: #fff;
	font-size: .9em;

}
#diaporama .diapo .diapo-bloc a{
	color: #fff;
	text-decoration: underline;
}
#diaporama .diapo h3 {
	color: #fff;
}
#carousel .slide h3 a {color: black;}
#carousel {width: 100%; padding-right: 1px; overflow: hidden; margin-bottom: 2em;}
#carousel .slide {height: 300px; position: relative; float: left; overflow: hidden; cursor: pointer;}
#carousel .slide h3 {
	display: block;
	background: #fff;
	padding: .5em 1em;
	position: absolute;
	top: 30%;
	font-size: 1.2em;
}
#carousel .slide h3 a {color: black;}

#pager {display: none;}
#pager a {
	color: #fff;
	font-weight: bold;
	display: none;
	width: 33.33%;
	float:left;
	height: 70px;
	padding: 1em
}

h1.page-title {
	text-transform: uppercase;
	font-size: 2em;
	margin: 1em 0;
}

.category-actu h1.page-title:after {
	display:block;
	content:'';
	height: 5px;
	background: #bf0a2c;
	width: 8%;
}

.articles, .page #main {font-size: 1.2em;}
.articles article img{border: none;}
.single article {font-size: 1.2em; }
.single .ssba {margin: 0 0 1em;}
.single .ssba img {height: 50px !important; width: 50px !important;}
article .content-container { margin-bottom: 1.5em;}

article h1.entry-title {
	font-size:1.5em;
	line-height: 1.2em;
	font-style: italic;

}

span.sous-titre {
	font-size: 1.2em;
	text-transform:uppercase;
	line-height: 1.2em;
	margin: .5em 0 0;
	
}

span.sous-titre-single {
	font-size: 1.2em;
	text-transform:uppercase;
	line-height: 1.2em;
	margin: .5em 0 0;
	
}

article header.entry-header .post-cats {
	text-transform:uppercase;
	font-size: .8em;
	margin-top: .5em;
}
article .entry-date {
	padding: 0 .8em;
	color: white;
	margin: 1em 0 1em -1.6em;
	display:inline-block;
	position: relative;
}
article .entry-date:before {
	content: '';
	position: absolute;
	height: 0;
	width: 0;
	top: 100%;
	left: 0px;
	border-left: 10px solid transparent;
}

.more-link {margin-left: .5em; font-weight: bold; text-align:right;}
article .entry-meta {margin-top: .5em;}
article {line-height: 1.8em; }
article img {
	padding: 0px;
	border: solid 1px #cfcfcf;
	margin-top: .5em;
}

article a.thumbnail-wrapper img {width: 100%;}

.tags-links {display:block; margin-left: -3px}
.tags-links h2 {margin-left: 3px; margin-bottom: 1em;}
a[rel="tag"]{
	display: inline-block;
	padding: .1em 1em;
	background: #bf0a2c;
	font-size: .8em;
	color: white !important;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin: 3px;

}

.post-navigation {padding: 1.5em 0;}

.nav-links a {font-weight: bold; }

.load-more-manual #page-nav {
	display:block !important;
}
#page-nav {
	display:none;
	text-align:center;
}
.load-more-manual #page-nav a {
	margin:20px auto 10px auto;
	display:inline-block;
	width:auto;
}
.load-more-manual #page-nav a {
    font-weight: bold;
    display: inline-block;
    font-size: 15px;
    position: relative;
    transition-duration: 150ms;
    text-decoration: none;
}
#infscr-loading {
	text-align: center;
	z-index: 100;
	position: fixed;
	left: 50%;
	bottom: 45%;
	width: 200px;
	margin-left:-100px;
	padding: 10px;
	background: #000;
	opacity: 0.8;
	color: #FFF;
	-webkit-border-radius: 10px;
	 -moz-border-radius: 10px;
	      border-radius: 10px;
}
.more {
	width: 300px;
	display:block;
	color: #fff;
	background: #bf0a2c;
	padding: 1em;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin: 3px;
	background-image: url(img/sync.png);
	background-repeat: no-repeat;
	background-position: 10% 50%;
}


.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#disqus_thread {
	margin-top: 5em;
}

.rp4wp-related-posts {
	margin: 2em 0;
}

.archive.category article h1.entry-title, .home article h1.entry-title {
	margin-top: 0;
}
.archive article h1.entry-title a, .home article h1.entry-title a{
	text-transform: none;
}

#tweets ul {list-style: none; margin: 0; padding: 0;}
#tweets ul li {
	margin: 1em 0;
	padding-bottom: 1em;
	border-bottom: 1px dotted #ccc;
}

#contact_form {font-size: 1.2em;}
#contact_form input[type=text], #contact_form input[type=email], #contact_form textarea {
	width: 100%;
	border-bottom: 1px solid black;
	padding: .5em;
	margin-bottom: 1em;

}

#submit_btn {
	background: #bf0a2c;
	padding: .5em 1em;
	color: #fff;
}

.author_bio {display:block; clear: both; width: 100%; float: left;margin-bottom: 1em;}

.author_bio h2 {
	border-bottom: 1px solid #bf0a2c;
	padding-bottom: .5em;
	font-size: 1.2em;
	margin-bottom: .5em;
}

.author_bio .avatar {
	float: left;
	margin: .5em 1em 0em 0;
}

/*--------------------------------------------------------------
14 Mobile
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu, .menu-radio {
		display: block;
	}

	.main-navigation ul {
		display: none;
	}

	.tags-links {display: none;}
	
		li.ubermenu-item {
		width: 100%!important;
	}
}



/*--------------------------------------------------------------
14 Categories
--------------------------------------------------------------*/

/*Actu*/
#carousel .slide h3.actu {border-left: 10px solid #bf0a2c;}
#pager a.actu {background: #bf0a2c;}
article.category-actu h1.entry-title a {color: #bf0a2c;}
article.category-actu a[rel="tag"]{background: #bf0a2c;}
article.category-actu a{color: #bf0a2c;}
article.category-actu .sous-titre{color: #bf0a2c;}
article.category-actu .content-container{background: rgba(191,10,44,.1);padding: 1em;}
article.category-actu .entry-date { background: #bf0a2c;}
article.category-actu .entry-date:before {border-top: 10px solid #7f0000;}

/*Animaux*/
#carousel .slide h3.animaux {border-left: 10px solid #3b0405;}
#pager a.animaux {background: #3b0405;}
article.category-animaux h1.entry-title a {color: #3b0405;}
article.category-animaux a[rel="tag"]{background: #3b0405;}
article.category-animaux a{color: #9f3e04;}
article.category-animaux .sous-titre{color: #9f3e04;}
article.category-animaux .content-container{background: rgba(59,4,5,.1);padding: 1em;}
article.category-animaux .entry-date { background: #3b0405;}
article.category-animaux .entry-date:before {border-top: 10px solid #280102;}

/*Conso*/
#carousel .slide h3.conso {border-left: 10px solid #183152;}
#pager a.conso {background: #183152;}
article.category-conso h1.entry-title a {color: #183152;}
article.category-conso a[rel="tag"]{background: #183152;}
article.category-conso a{color: #183152;}
article.category-conso .sous-titre{color: #183152;}
article.category-conso .content-container{background: rgba(24,49,82,.1);padding: 1em;}
article.category-conso .entry-date { background: #183152;}
article.category-conso .entry-date:before {border-top: 10px solid #081a32;}

/*People*/
#carousel .slide h3.vip {border-left: 10px solid #ff5b2b;}
#pager a.vip {background: #ff5b2b;}
article.category-vip h1.entry-title a {color: #ff5b2b;}
article.category-vip a[rel="tag"]{background: #ff5b2b;}
article.category-vip a{color: #ff5b2b;}
article.category-vip .sous-titre{color: #ff5b2b;}
article.category-vip .content-container{background: rgba(255,91,43,.1);padding: 1em;}
article.category-vip .entry-date { background: #ff5b2b;}
article.category-vip .entry-date:before {border-top: 10px solid #c02b00;}

/*Bien-être*/
#carousel .slide h3.bien-etre {border-left: 10px solid #895959;}
#pager a.bien-etre {background: #895959;}
article.category-bien-etre h1.entry-title a {color: #895959;}
article.category-bien-etre a[rel="tag"]{background: #895959;}
article.category-bien-etre a{color: #895959;}
article.category-bien-etre .sous-titre{color: #895959;}
article.category-bien-etre .content-container{background: rgba(137,89,89,.1);padding: 1em;}
article.category-bien-etre .entry-date { background: #895959;}
article.category-bien-etre .entry-date:before {border-top: 10px solid #492a2a;}

/*Eco-geste*/
#carousel .slide h3.eco-attitude {border-left: 10px solid #78a419;}
#pager a.eco-attitude {background: #78a419;}
article.category-eco-attitude h1.entry-title a {color: #78a419;}
article.category-eco-attitude a[rel="tag"]{background: #78a419;}
article.category-eco-attitude a{color: #78a419;}
article.category-eco-attitude .sous-titre{color: #78a419;}
article.category-eco-attitude .content-container{background: rgba(120,164,25,.1);padding: 1em;}
article.category-eco-attitude .entry-date { background: #78a419;}
article.category-eco-attitude .entry-date:before {border-top: 10px solid #263603;}


/* Cop 21 */

#carousel .slide h3.cop21 {border-left: 10px solid #0062aa;}
#pager a.cop21 {background: #0062aa;}
article.category-cop21 h1.entry-title a {color: #0062aa;}
article.category-cop21 a[rel="tag"]{background: #0062aa;}
article.category-cop21 a{color: #0062aa;}
article.category-cop21 .sous-titre{color: #0062aa;}
article.category-cop21 .content-container{background: rgba(0,98,170,.1);padding: 1em;}
article.category-cop21 .entry-date { background: #0062aa;}
article.category-cop21 .entry-date:before {border-top: 10px solid #003d73;}


/*PODCASTS*/
#carousel .slide h3.podcast {border-left: 10px solid #4c2f62;}
article.type-podcast h1.entry-title a {color: #4c2f62;}
article.type-podcast a[rel="tag"]{background: #4c2f62;}
article.type-podcast a{color: #4c2f62;}
article.type-podcast .sous-titre{color: #4c2f62;}
article.type-podcast .content-container {background: url(img/podcast.png) no-repeat bottom left rgba(76,47,98,.3);padding: 1em;}
article.type-podcast .entry-date { background: #4c2f62; font-size: .8em; margin-left: -2em;}
article.type-podcast .entry-date:before {border-top: 10px solid #1d0e29;}

.podcast_widget { background: url(img/podcast_small.png) no-repeat top right rgba(76,47,98,.3);padding: 1em 1em 1em 1em; }
.podcast_widget h1{ text-transform: uppercase; margin-bottom: 1em; padding-right: 50px;}
.podcast_widget a {color: #4c2f62; font-weight: bold;}
.podcast_widget p {margin-bottom: 0;}
.podcast_widget iframe {margin-bottom: .5em;}
.podcast_widget .player {position: relative;}
.podcast_widget .player .mask a{position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; display:block;}
.podcast_widget .widget-title a {color: black;}

.emissions-list {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
	list-style: none;
	margin: 0 0 2em;
	padding: 0;
	font-weight: bold;
	font-size: 1.1em;
}
.emissions-list li a:hover{text-decoration: underline;}
.title-emissions {font-size: 1.2em; margin: .5em 0;}



/*VIDEOS*/

article.type-video h1.entry-title a {color: #b01717;}
article.type-video a[rel="tag"]{background: #b01717;}
article.type-video a{color: #b01717;}
article.type-video .content-container {background: url(img/video.png) no-repeat bottom left rgba(176,23,23,.3);padding: 1em;}
article.type-video .entry-date { background: #b01717;}
article.type-video .entry-date:before {border-top: 10px solid #450202;}

.video_widget { background: url(http://www.neoplanete.fr/wp-content/themes/neoplanete/img/video_small.png) no-repeat top right rgba(176,23,23,.3);padding: 1em 1em 1em 1em; }
.video_widget h1{ text-transform: uppercase; margin-bottom: 1em; padding-right: 50px;}
.video_widget a {color: #b01717; font-weight: bold;}
.video_widget p {margin-bottom: 0;}
.video_widget .videoplayer {display:block; position: relative;}
.video_widget .videoplayer .videomask {
	width: 60px;
	height: 60px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -30px;
	margin-top: -30px;
	background: url(img/videomask.png) center center no-repeat;
}
.video_widget .widget-title a {color: black;}

/*Magazines*/
.magazine_widget { }
.magazine_widget h1{ text-transform: uppercase; margin-bottom: 1em; }
.magazine_widget a { font-weight: bold; color: black;}
.magazine_widget p {margin-bottom: 0;}

/* Formations */
article.type-formation .content-container {background: rgba(13,61,97,.3);padding: 1em;}
article.type-formation h1.entry-title a {color: #0d3d61;}

/*Widgets*/

/*.textwidget a img {width: 100%;}*/


/*FOOTER*/
#menu-bas {
	display: block;
	overflow: hidden;
	position: relative;
	font-size:14px;
	font-weight:bold;
	line-height:18px;
	background: rgb(120,164,25); /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjNzhhNDE5IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNDklIiBzdG9wLWNvbG9yPSIjNzhhNDE5IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNDklIiBzdG9wLWNvbG9yPSIjNzhhNDE5IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNDklIiBzdG9wLWNvbG9yPSIjNzhhNDE5IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNDklIiBzdG9wLWNvbG9yPSIjNjg4ZjE2IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjNjg4ZjE2IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjNjg4ZjE2IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzY4OGYxNiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
	background: -moz-linear-gradient(-45deg,  rgba(120,164,25,1) 0%, rgba(120,164,25,1) 49%, rgba(120,164,25,1) 49%, rgba(120,164,25,1) 49%, rgba(104,143,22,1) 49%, rgba(104,143,22,1) 50%, rgba(104,143,22,1) 50%, rgba(104,143,22,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(120,164,25,1)), color-stop(49%,rgba(120,164,25,1)), color-stop(49%,rgba(120,164,25,1)), color-stop(49%,rgba(120,164,25,1)), color-stop(49%,rgba(104,143,22,1)), color-stop(50%,rgba(104,143,22,1)), color-stop(50%,rgba(104,143,22,1)), color-stop(100%,rgba(104,143,22,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(-45deg,  rgba(120,164,25,1) 0%,rgba(120,164,25,1) 49%,rgba(120,164,25,1) 49%,rgba(120,164,25,1) 49%,rgba(104,143,22,1) 49%,rgba(104,143,22,1) 50%,rgba(104,143,22,1) 50%,rgba(104,143,22,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(-45deg,  rgba(120,164,25,1) 0%,rgba(120,164,25,1) 49%,rgba(120,164,25,1) 49%,rgba(120,164,25,1) 49%,rgba(104,143,22,1) 49%,rgba(104,143,22,1) 50%,rgba(104,143,22,1) 50%,rgba(104,143,22,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(-45deg,  rgba(120,164,25,1) 0%,rgba(120,164,25,1) 49%,rgba(120,164,25,1) 49%,rgba(120,164,25,1) 49%,rgba(104,143,22,1) 49%,rgba(104,143,22,1) 50%,rgba(104,143,22,1) 50%,rgba(104,143,22,1) 100%); /* IE10+ */
	background: linear-gradient(135deg,  rgba(120,164,25,1) 0%,rgba(120,164,25,1) 49%,rgba(120,164,25,1) 49%,rgba(120,164,25,1) 49%,rgba(104,143,22,1) 49%,rgba(104,143,22,1) 50%,rgba(104,143,22,1) 50%,rgba(104,143,22,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#78a419', endColorstr='#688f16',GradientType=1 ); /* IE6-8 fallback on horizontal gradient */

	padding: 2em;
	margin-top: 3em;
	width: 100%;
}

#menu-bas ul {
	margin: 0;
	padding: 0 1em 0 0;
}

#menu-bas ul li {
	list-style:none;
}

#menu-bas ul li a{
	color: white;
}

#menu-bas .colonne {
	color:#fff;
	float:left;
	position: relative;
	width:16.66%;
	display: block;
	overflow: hidden;
}

#menu-bas .colonne {
	/*border-right: 1px dashed #fff;*/
	min-height: 120px;
}

#menu-bas .colonne .premiere {
	clear:both;
	display:inline;
}

#menu-bas .derniere {
	border-right: medium none;
}

.site-info {clear: both; width: 100%; text-align: center;margin: 3em 0 0;float: left;}
.site-info a {color: black;}

#menu-item-118901 {display: none;}

/*MOBILE*/
@media screen and (max-width: 768px) {
	.f-nav {
		position: fixed;
		top: 0;
		z-index: 9999;
		padding: 0 1em;
		background: #bf0a2c;
		margin: 0 -1em !important;
	}
	body {width: 100%;}
	.site-title {margin-top: 0;}
	.site-branding {overflow: hidden;}
	.site-branding #socials, #listen {
		display: none;
		position:relative;
		margin: 50px auto;
		width: 250px;
	}
	.site-branding .social a {height: 30px; width: 30px;}
	.site-branding .podcasts_icon a{
		display: block;
		height: 50px;
		width: 76px;
		float: left;
		margin: 5px;
		margin-top: -11px;
	}

	.main-navigation {margin: 1em 0;}
	.main-navigation li {
		width: 50%;
		text-transform: none;
		padding: 2em 0;
		font-size: 1.1em;
	}
	#carousel {display: none;}
	#chimpy_popup_1, #sky-form-modal-overlay {display: none !important;}
	#menu-item-115909 {display: none;}
	#menu-item-118901 {
		display: block;
		margin: 1em 0;
		border: 1px solid #ff5a5a;
		width: 100%;
		background: rgb(219,11,50); /* Old browsers */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2RiMGIzMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2JmMGEyYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
		background: -moz-linear-gradient(-45deg,  rgba(219,11,50,1) 50%, rgba(191,10,44,1) 50%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, right bottom, color-stop(50%,rgba(219,11,50,1)), color-stop(50%,rgba(191,10,44,1))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(-45deg,  rgba(219,11,50,1) 50%,rgba(191,10,44,1) 50%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(-45deg,  rgba(219,11,50,1) 50%,rgba(191,10,44,1) 50%); /* Opera 11.10+ */
		background: -ms-linear-gradient(-45deg,  rgba(219,11,50,1) 50%,rgba(191,10,44,1) 50%); /* IE10+ */
		background: linear-gradient(135deg,  rgba(219,11,50,1) 50%,rgba(191,10,44,1) 50%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#db0b32', endColorstr='#bf0a2c',GradientType=1 ); /* IE6-8 fallback on horizontal gradient */
	}
	.site-title a img, .tagline{width: 100%;}
	#radio, #menu_haut, .widget_text, .widget_search, #menu-bas .colonne, #menu-bas h2, #info_feed, .pub-top {display: none;}
	.archive #page-nav a, .home #page-nav a, .archive #page-nav a .more, .home #page-nav a .more {width: 100%;}
	.site-info {margin: 0;}
}

/*MAILCHIMP*/
.mc-modal {}
#chimpy_popup_open {cursor: pointer;}

.table-responsive  {font-size: 12px!important;line-height: 18px!important;}
.table-responsive .su-button span {padding: 0px 3px!important;font-size: 10px!important;}