@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700|Overpass:100,400,700|Overpass+Mono:600,700');



/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: merriweather, times, serif;
	font-size: 13px;
	/* font-size: 1rem; */
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: overpass, sans-serif;
}

p {
	margin-bottom: 1.5em;
}

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: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0;
}

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: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #19837b;
}

a:visited {
	color: #19837b;
}

a:hover,
a:focus,
a:active {
	color: #19837b;
}

a:focus {
	outline: none;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# 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;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.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-size: 0.875rem;
	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. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 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-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# 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;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-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;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .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%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	
}

/*--------------------------------------------------------------
## 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;
}

*/












/* CUSTOM */
body {background: #f2f4f6}
#page {max-width: 1170px; margin: 0 auto}
* {box-sizing: border-box;}
#show_menu_mobile {display: none}
#primary {margin-bottom: 15px}
#masthead {background: #fff; box-shadow: 1px 1px 2px rgba(0,0,0,0.2); margin-top: 5px; font-family: overpass, sans-serif; position: relative; height: 75px}
.site-branding {max-width: 250px; float: left; padding: 10px}
.site-title {font-size: 14px; color: #000; margin: 0;}
.site-title a {color: #000; text-decoration: none; display: block; padding:11px 0 0 50px; background: url(images/logo.png) left center no-repeat; background-size: 42px}
.share_top {text-align: right; margin: 10px 0 5px}
.share_top a {display: inline-block; width: 18px; height: 18px; background: #a7a7a7; text-indent: -9999em;     text-align: left; border-radius: 2px; transition: all ease .2s}
.share_top a.facebook {background: #a7a7a7 url(images/facebook.svg) bottom center no-repeat; background-size: 8px 15px;}
.share_top a.twitter {background: #a7a7a7 url(images/logo_x.svg) bottom center no-repeat; background-size: 13px 18px;}
.share_top a.linkedin {background: #a7a7a7 url(images/in.svg) bottom center no-repeat; background-size: 12px 18px;}
.share_top a.instagram {background: #a7a7a7 url(images/instagram.svg) bottom center no-repeat; background-size: 12px 18px;}
.share_top a.rss {background: #a7a7a7 url(images/rss.svg) bottom center no-repeat; background-size: 13px 18px;}
.share_top a:hover {background-color: #444}
#primary-menu li{background:transparent; text-align: center;margin-top: 15px;}
#primary-menu li {margin-top: 0}
#primary-menu li .overline {position: relative; margin-top: -15px; height: 17px; margin-bottom: 15px;}
#primary-menu li a .overline span {display: inline-block; height: 15px; width: 75px; border-top: 5px solid #e4254a; background: url(images/trait_menu.svg) bottom center no-repeat; background-size: 75px 4px; opacity: 0; transition: all .3s ease}
#primary-menu li:hover .overline span,
#primary-menu li.current-menu-parent .overline span,
#primary-menu li.current_page_parent .overline span {opacity: 1}
#primary-menu li li{background:transparent; border-left: 1px solid #fff; margin-top: 0}
#primary-menu li li .overline {display: none}
#primary-menu li li li{background:#f2f4f6;float:none !important}
#primary-menu li li ul{overflow:visible !important}
#primary-menu li.active,#primary-menu li:hover{background-color:#fff;}
#primary-menu li a{color:#000;font-size:16px;text-transform:uppercase;cursor:pointer;padding:10px 20px;display:block;height:75px; text-align: center}
#primary-menu li a span {font-size:13px; line-height: 22px}
#primary-menu li ul{background:#f2f4f6;padding:0;margin:0;box-shadow:1px 1px 2px rgba(0,0,0,0.2)}
#primary-menu li li a,#primary-menu li li span{padding:20px;display:block;height:60px;font-size:.9em;background:transparent}
#primary-menu li li li a{padding:10px;height:33px;background:#f2f4f6;color:#000;font-size:.8em}
.sf-menu{line-height:1.0;z-index:497}
.sf-menu ul{left:0;position:absolute;top:-99999em;width:100%}
.sf-menu ul li{width:auto}
.sf-menu li{float:left;z-index:498}
.sf-menu a,.sf-menu span{display:block;position:relative}
.sf-menu li:hover,.sf-menu li.sfHover,.sf-menu li:hover ul,.sf-menu li.sfHover ul{z-index:499}
.sf-menu li:hover>ul,.sf-menu li.sfHover>ul{left:0;top:75px}
.sf-menu li li:hover>ul,.sf-menu li li.sfHover>ul{left:0;top:60px}
.sf-hidden{left:0 !important;top:-99999em !important}
.sf-menu a.sf-with-ul{min-width:1px}
.sf-navbar {background: #fff; margin-bottom:0; position: inherit;}
.search-form {width: 157px; float: right; border: 1px solid #000; height: 39px; font-family: overpass, sans-serif; margin: 22px 15px 0 0}
.search-form input {display: block; float: left; border: none; }
.search-form input.search-field {width: 115px; height: 37px;     padding: 3px 5px; font-family: overpass, sans-serif; -webkit-appearance: none; }
.search-form input.search-submit {width: 40px; font-family: overpass, sans-serif; height: 37px; background-color: #fff; background-image: -webkit-repeating-radial-gradient(center center, rgba(0,0,0,.3), rgba(0,0,0,.3) 1px, transparent 1px, transparent 100%);
  background-image: -moz-repeating-radial-gradient(center center, rgba(0,0,0,.3), rgba(0,0,0,.3) 1px, transparent 1px, transparent 100%);
  background-image: -ms-repeating-radial-gradient(center center, rgba(0,0,0,.3), rgba(0,0,0,.3) 1px, transparent 1px, transparent 100%);
  background-image: repeating-radial-gradient(center center, rgba(0,0,0,.3), rgba(0,0,0,.3) 1px, transparent 1px, transparent 100%);
  -webkit-background-size: 3px 3px;
  -moz-background-size: 3px 3px;
  background-size: 3px 3px;}
.owl-carousel .animated {-webkit-animation-duration: 1000ms;animation-duration: 1000ms; -webkit-animation-fill-mode: both; animation-fill-mode: both;}
.owl-carousel .owl-animated-in { z-index: 0;}
.owl-carousel .owl-animated-out { z-index: 1;}
.owl-carousel .fadeOut { -webkit-animation-name: fadeOut; animation-name: fadeOut;}
@-webkit-keyframes fadeOut { 0% {   opacity: 1; } 100% {   opacity: 0; }}
@keyframes fadeOut { 0% {   opacity: 1; } 100% {   opacity: 0; }}
.owl-height { -webkit-transition: height 500ms ease-in-out; -moz-transition: height 500ms ease-in-out; -ms-transition: height 500ms ease-in-out; -o-transition: height 500ms ease-in-out; transition: height 500ms ease-in-out;}
.owl-carousel { display: none; width: 100%; -webkit-tap-highlight-color: transparent; /* position relative and z-index fix webkit rendering fonts issue */ position: relative; z-index: 1;}
.owl-carousel .owl-stage { position: relative; -ms-touch-action: pan-Y;}
.owl-carousel .owl-stage:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
.owl-carousel .owl-stage-outer { position: relative; overflow: hidden; /* fix for flashing background */ -webkit-transform: translate3d(0px, 0px, 0px);}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot { cursor: pointer; cursor: hand; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;}
.owl-carousel.owl-loaded { display: block;}
.owl-carousel.owl-loading { opacity: 0; display: block;}
.owl-carousel.owl-hidden { opacity: 0;}
.owl-carousel .owl-refresh .owl-item { display: none;}
.owl-carousel .owl-item { position: relative; min-height: 1px; float: left; -webkit-backface-visibility: hidden; -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;}
.owl-carousel .owl-item img { display: block; width: 100%; -webkit-transform-style: preserve-3d;}
.owl-carousel.owl-text-select-on .owl-item { -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; user-select: auto;}
.owl-carousel .owl-grab { cursor: move; cursor: -webkit-grab;cursor: -o-grab; cursor: -ms-grab; cursor: grab;}
.owl-carousel.owl-rtl { direction: rtl;}
.owl-carousel.owl-rtl .owl-item { float: right;}
.no-js .owl-carousel {display: block;}
.owl-dots {text-align: center}
.owl-dot {width : 10px; height: 10px; background: #fff; display: inline-block; border-radius: 50%; border: 1px solid #eeeeee; margin: 5px 10px;}
.owl-dot.active {background: #092B63; border-color: #144ab4;}
.content-wrapper {max-width: 895px; margin: 0 auto;}
.entry-content {padding: 40px 20px; box-shadow: 1px 1px 2px rgba(0,0,0,0.2); background: #fff; position: relative; z-index: 2;}
.entry-content .inner {max-width: 580px; margin: 0 auto;}
.breadcrumb {font-size: 11px; font-family: overpass, sans-serif; padding: 10px 0;}
.breadcrumb a {color: #000; text-decoration: none}
.breadcrumb a:hover {text-decoration:  underline}

/* page edito */
header.entry-header {height: 460px; position: relative; margin-bottom: 55px; box-shadow: 1px 1px 2px rgba(0,0,0,0.2); display: block!important; width: 100%!important;}
header.entry-header.with_links {margin-bottom: 0px;}
header.entry-header .titre {width: 100%; position: absolute; bottom: -55px; text-align: center; margin-bottom: 0}
header.entry-header.with_links .titre {bottom: 0; margin-bottom: 0}
header.entry-header .titre h1 {max-width: 895px; margin: 0 auto; display: inline-block; padding: 70px 50px 0; min-height: 185px; background: #fff; width: 100%; font-weight: 100; box-shadow: 1px 1px 2px rgba(0,0,0,0.2);}
header.entry-header.with_links .titre h1 {margin-bottom: 0}
header.entry-header .titre h1:after {content: ""; width: 137px; height: 7px; background: #fff url(images/trait_h2.svg) center no-repeat; background-size: 137px 7px; display: block; margin: 6px auto 0;}
.share {position: absolute; margin-top: -55px;font-size: 0;}
.share.with_links {margin-top: 0;}
a.a2a_dd {display: inline-block; background: #e4254a url(images/share.svg) bottom center no-repeat; background-size: 38px; height: 53px; width: 53px; color: #fff; font-size: 10px; margin-right: 1px; text-indent: -9999em}
a.print {display: inline-block; background: #e4254a url(images/print.svg) bottom center no-repeat; background-size: 38px; height: 53px; width: 53px; color: #fff; font-size: 10px; text-indent: -9999em}
.intro {text-align: center;max-width: 580px; margin: 0 auto; padding: 40px 20px 30px; font-size: 16px}
.fichiers {padding: 10px; background: #6ed3cf url(images/pdf.svg) 55px 30px no-repeat; background-size: 80px 73px; color: #fff; font-family: overpass, sans-serif;}
.fichiers_inner {max-width: 580px; margin: 0 auto; padding: 40px 20px 0;}
.fichiers h2 {font-size: 20px; max-width: 150px; margin: 0; width: 100%; line-height: 24px; float: left; padding-bottom: 10px; background: url(images/souligne_doc_telecharger.svg) bottom left no-repeat; background-size: 115px 3px;}
.fichiers .description {text-transform: uppercase; width: 100%; max-width: 350px; float: right}
.fichiers ul {margin: 20px 0 30px 0; list-style: none; padding: 0 40px 0 0;}
.fichiers ul li {color: #000; margin: 0}
.fichiers ul li a {color: #000; padding: 5px 0 5px 30px; font-size: 14px; font-weight: 700; text-decoration: none; display: inline-block}
.fichiers ul li a .dl-extension {font-size: 10px; text-transform: uppercase; font-weight: 400}
.fichiers .download_icon {display: inline-block; height: 20px; width: 22px; background: url(images/telecharger.svg) top center no-repeat; background-size: 16px 18px; vertical-align: middle; margin-right: 5px}
.fichiers .tilde {display: inline-block; height: 6px; width: 22px; background: url(images/tilde.svg) center no-repeat; background-size: 20px 4px; vertical-align: middle;  margin: 0 4px;}
#fichiers_slide .owl-dots {text-align: center; width: 20px; position: absolute; right: 0; top: 30px;}
#fichiers_slide .owl-dot {width: 13px; height: 13px; border: none; margin: 2px 0;}
#fichiers_slide .owl-dot.active {background: url(images/owl-dot-active-vert.svg) center no-repeat; background-size: 13px; border: none}
#fichiers_slide .owl-nav {display: none!important}
.entry-content table th, 
.entry-content table td {padding: 10px; text-align: center; background: #e3e6e8; font-family: overpass, sans-serif; border: 1px solid #fff}
.entry-content table thead td,
.entry-content table th {background: #79c7c8; text-transform: uppercase; font-weight: normal}
.entry-content table thead td[colspan="2"],
.entry-content table thead td[colspan="3"],
.entry-content table thead td[colspan="4"],
.entry-content table th[colspan="2"],
.entry-content table th[colspan="3"],
.entry-content table th[colspan="4"] {background: #19837b; text-transform: uppercase; color: #fff}
.entry-content table tbody tr:nth-child(even) td {background: #d6d9dc}
.entry-content .gallery  {position: relative}
.entry-content .gallery figure.gallery-item {margin: 0}
.entry-content .gallery .owl-dots {display: none!important}
.entry-content .gallery .owl-prev {width: 50%; float: left; height: 55px; background: url(images/owl-prev.svg) right center no-repeat; background-size: 22px 20px; text-indent: -9999em}
.entry-content .gallery .owl-next {width: 50%; float: left; height: 55px; background: url(images/owl-next.svg) left center no-repeat;  background-size: 22px 20px; text-indent: -9999em}

.entry-content .wp-caption-text {text-transform: uppercase; color: #6ed3cf; height: 50px; font-family: overpass, sans-serif; text-align: left; padding: 10px 0}
.entry-content .gallery .owl-controls {position: absolute; top: 0; left: 0; width: 54px; height: 54px; background: #0f837c}
.entry-content h2 {text-align: center; margin: 0 0 40px; font-size: 30px; padding: 0 0 6px; background: url(images/trait_h2.svg) bottom center no-repeat; background-size: 77px 4px;}
.entry-content h2 a {text-decoration: none; color: #222}
.entry-content h3 {font-size: 20px; margin: 40px 0 20px;}
.entry-content h4 {color: #6ed3cf; font-weight: 400; text-transform: uppercase; font-size: 13px; margin: 20px 0 10px;}
.single-post .meta {background: #e4e6e8; color: #626262; font-family: overpass, sans-serif; text-transform: uppercase}
.single-post .meta a {background: #466ddb; color: #fff; padding: 10px 40px; display: inline-block; text-decoration: none; }
.single-post .meta span.posted-on {padding: 10px 40px; display: inline-block}
.single-post .meta.ordre a {background: #f86759;}
.single-post .meta.etudiants a {background: #466ddb;}
.single-post .meta.kines a {background: #e4254a;}
.single-post .meta.patients a {background: #0f837c;}
header.entry-header.bandeau.ordre .titre h1 {border-bottom: 5px solid #f86759}
header.entry-header.bandeau.etudiants .titre h1 {border-bottom: 5px solid #466ddb}
header.entry-header.bandeau.kines .titre h1 {border-bottom: 5px solid #e4254a}
header.entry-header.bandeau.patients .titre h1 {border-bottom: 5px solid #0f837c}
#acces_rapides {max-width: 895px; margin: 0 auto; position: relative; background: #e2f6f5; box-shadow: 1px 1px 2px rgba(0,0,0,0.2); text-align: center; vertical-align: middle; height: 75px;}
#acces_rapides div {display: inline-block; padding: 10px 20px 0 0; border-right: 1px solid #cbefed}
#acces_rapides div:last-child {border-right: none}
#acces_rapides a {display: table; vertical-align: middle; padding: 0 30px 0 20px; color: #0f837c; text-align: center; text-decoration: none; height: 55px; text-transform: uppercase; font-family: overpass, sans-serif; font-weight: 700}
#acces_rapides a {display: table-cell; vertical-align: middle; background: url(images/sous_nav_edito.svg) right center no-repeat; background-size: 7px 13px;}
#acces_rapides a:hover {color: #000}
#acces_rapides.liens_1 div {max-width: 98%}
#acces_rapides.liens_2 div {max-width: 49%}
#acces_rapides.liens_3 div {max-width: 33%}
#acces_rapides.liens_4 div {max-width: 24%}
#acces_rapides.liens_5 div {max-width: 19%}
#acces_rapides.liens_6 div {max-width: 16%; padding: 10px 15px 0 0;}
#acces_rapides.liens_6 a {padding: 0 20px 0 10px;}

/* home */
#trombi h2,
h2.home_title {text-align: center; margin: 60px 0 40px; font-size: 30px; padding: 0 0 6px; background: url(images/trait_h2.svg) bottom center no-repeat; background-size: 77px 4px;}

/* slider */
#slider {position: relative; height: 405px; overflow: hidden; box-shadow: 1px 1px 2px rgba(0,0,0,0.2);}
#slider .bandeau_titre {width: 30%; height: 405px; background: #f86759; float: left; padding: 30px; position: relative}
#slider .bandeau_titre h1 {margin: 0; font-size: 30px; line-height: 38px; padding: 15px 0; font-weight: 100; color: #fff; text-transform: uppercase; letter-spacing: 1px}
#slider .bandeau_titre h1:before {content: ""; display: block; width: 100px; height: 6px; margin: 0 0 15px 0; font-weight: 100; background: #fff;}
#slider .bandeau_dep  {margin: 0; font-size: 75px; line-height: 60px; padding: 15px 0; font-weight: 700; color: #fff; position: absolute; bottom: 30px; left: 30px; font-family: overpass, sans-serif;}
#slider .bandeau_image {width: 70%; height: 405px; background-position: center; background-size: cover; float: right;}

/* à la une */
#une {padding-top: 15px}
#une .actu {position: relative; height: 415px; padding: 0 13px}
#une .actu h3 {margin: 0; font-size: 20px; line-height: 24px; padding: 15px 0 10px; font-weight: 400}
#une .actu h3 a {color: #000; text-decoration: none}
#une .actu p {margin: 0;  padding: 0 0 15px; color: #626262}
#une .actu a.read-more {display: inline-block; padding: 7px 15px; text-transform: uppercase; text-decoration: none; font-family: overpass, sans-serif; position: absolute; bottom: 0; left: 0; border-radius: 2px}
#une .actu .visuel {width: 100%; height: 150px; background-size: cover; display: block; background-position: center;}
#une .actu .contenu {height: 225px; padding: 0px; position: relative}
#une .actu .meta {font-family: overpass, sans-serif; font-size: 12px; background: #e4e6e8}
#une .actu .meta a {text-decoration: none; text-transform: uppercase; color: #fff; display: inline-block; padding: 5px}
#une .actu .posted-on {float: right; font-weight: 700; padding: 5px; color: #626262; font-family: "overpass mono"; font-weight: 700}
#une .actu .contenu a.read-more {border: 1px solid #f86759; color: #f86759}
#une .actu .contenu a.read-more:hover {color: #fff; background: #f86759}
#une .actu .contenu a.all-actus {background-color: #f86759}
#une .actu .meta.ordre a {background: #f86759; }
#une .actu .meta.kines a {background: #e4254a; }
#une .actu .meta.patients a {background: #0f837c; }
#une .actu .meta.etudiants a {background: #466ddb;  }
#une .owl-nav {display: none}
#une .owl-dots {display: none!important}

/* acces */
#ordre {margin-bottom: 75px}
#ordre .col_first {width: 37%; float: left;}
#ordre .col_second {width: 37%; float: left; padding: 0 10px}
#ordre .col_last {width: 26%; float: right;}
#ordre .col_first .acces_rapides {box-shadow: 1px 1px 2px rgba(0,0,0,0.2);}
#ordre .col_first .acces_rapides .top {height: auto; background: #fff; padding: 30px 40px 40px; border-bottom: 2px solid #ccc; color: #666; line-height: 1.666}
#ordre .col_first .acces_rapides .top p {margin-bottom: 0}
#ordre .col_first .acces_rapides .top strong {color: #666; line-height: 1.666; font-family: overpass, sans-serif; font-size: 16px; font-weight: 700; line-height: 1.5}

#ordre .col_first .acces_rapides .bottom {background: #fff; border-bottom: 5px solid #6ed3cf; padding: 25px}
.col_picto {width: 33%; padding: 0 20px; float: left; height: 100px}
a.lien_picto {padding-top: 62px; position: relative; display: block; font-size: 10px; text-transform: uppercase; color: #626262; text-decoration: none; text-align: center; font-family: overpass, sans-serif; font-weight: 700}
a.lien_picto:hover {color: #0f837c}
a.lien_picto .picto_rollover {display: block; height: 57px; position: absolute; top: 0; left: 0; width: 100%; background-size: 57px 57px; background-position: center; background-repeat: no-repeat;}
a.lien_picto .picto {display: block; height: 57px; position: absolute; top: 0; left: 0; width: 100%; background-size: 57px 57px; background-position: center; background-repeat: no-repeat; transition: opacity .3s ease}
a.lien_picto:hover .picto {opacity: 0}

#ordre .col_last .agenda_home {box-shadow: 1px 1px 2px rgba(0,0,0,0.2);}
#ordre .col_last .agenda_home h3 {background: #e4e6e8; color: #fff; text-transform: uppercase; font-size: 18px; margin: 0}
#ordre .col_last .agenda_home h3 span {padding: 6px 20px; background: #0f837c; display: inline-block}
#ordre .col_last .agenda_home img {display: block; width: 100%; height: auto; max-width: 100%}
#ordre .col_second .publications {margin-bottom: 10px; box-shadow: 1px 1px 2px rgba(0,0,0,0.2);}
#ordre .col_second .publications h3 {background: #e4e6e8; color: #fff; text-transform: uppercase; font-size: 18px; margin: 0}
#ordre .col_second .publications h3 span {padding: 6px 20px; background: #f86759; display: inline-block}

#pub_home {position: relative;}
.pub_home {background: #fff; padding: 20px; padding-bottom: 50px;}
.pub_home .texte {text-align: center; padding: 0 30px;}
.pub_home .texte strong {text-transform: uppercase; color: #f86759; font-family: overpass, sans-serif; font-weight: 400; display: block; padding-top: 10px}
.pub_home .texte p {padding: 0; margin: 0 0 10px;}
.pub_home .texte a {display: inline-block; padding: 7px 15px; text-transform: uppercase; text-decoration: none; font-family: overpass, sans-serif; border-radius: 2px; border: 1px solid #f86759; color: #f86759;}
.pub_home .texte a:hover {color: #fff; background: #f86759;}

#pub_home .owl-dots {position: absolute; bottom: 10px; width: 100%;}
#pub_home .owl-prev {position: absolute; top: 47%; left: 20px; background: url(images/owl-next-orange.svg) left center no-repeat; width: 7px; height: 12px; background-size: 7px 12px; text-indent: 9999em; transform: rotate(180deg); margin-top: 1px;}
#pub_home .owl-next {position: absolute; top: 47%; right: 20px; background: url(images/owl-next-orange.svg) left center no-repeat; width: 7px; height: 12px; background-size: 7px 12px; text-indent: -9999em;}
#pub_home .owl-dot {background: #626262; border: none; margin: 5px;}
#pub_home .owl-dot.active {background: url(images/owl-dot-active.svg) center no-repeat; background-size: 10px;}

#ordre .col_second .publications a.all-actus { display: block; padding: 15px 30px; width: 100%; text-transform: uppercase; text-decoration: none; font-family: overpass, sans-serif; color: #fff; background: #f86759 url(images/grande-fleche-bouton.svg) center right no-repeat; background-size: 95px 11px; transition: all .5s ease;}
#ordre .col_second .publications a.all-actus:hover { padding-left: 40px;}
#ordre .col_second .tv {box-shadow: 1px 1px 2px rgba(0,0,0,0.2); margin-bottom: 15px}
#ordre .col_second .tv h3 {background: #e4e6e8; color: #fff; text-transform: uppercase; font-size: 18px; margin: 0}
#ordre .col_second .tv h3 span {padding: 6px 20px; background: #0f837c; display: inline-block}
#ordre .col_second .tv img {display: block; width: 100%; height: auto; max-width: 100%}
#ordre .col_second .tv a.all-actus { display: block; padding: 15px 30px; width: 100%; text-transform: uppercase; text-decoration: none; font-family: overpass, sans-serif; color: #fff; background: #6ed3cf url(images/grande-fleche-bouton.svg) center right no-repeat; background-size: 95px 11px; transition: all .5s ease;}
#ordre .col_second .tv a.all-actus:hover { padding-left: 40px;}
#ordre .col_second .tv .videoWrapper {position: relative; padding-bottom: 56.5%;}


#ordre .col_last .actus_home {box-shadow: 1px 1px 2px rgba(0,0,0,0.2); margin-bottom: 15px}
#ordre .col_last .actus_home h3 {background: #e4e6e8; color: #fff; text-transform: uppercase; font-size: 18px; margin: 0}
#ordre .col_last .actus_home h3 span {padding: 6px 20px; background: #e4254a; display: inline-block}
.actus_home {background: #fff; padding-bottom: 45px; position: relative}
.actus_home_inner {background: #fff; padding: 10px 20px}
.actu_home_inner {border-bottom: 1px solid #000; padding: 10px 0}
.actu_home_inner:last-child {border-bottom: none; padding: 10px 0 5px}

.actus_home .actu-date {font-size: 12px; font-weight: 700; font-family: 'overpass mono', sans-serif; color: #626262;}
.actus_home .actu-date .tilde {display: inline-block; height: 6px; width: 18px; background: url(images/tilde.svg) center no-repeat; background-size: 16px 4px; vertical-align: middle;  margin: 0;}
.actus_home h4 {margin: 0; padding: 3px 0}
.actus_home a.bouton_actus_home {color: #fff; text-decoration: none; display: block; padding: 15px 30px; width: 100%; text-transform: uppercase; text-decoration: none; font-family: overpass, sans-serif; background: #e4254a url(images/grande-fleche-bouton.svg) center right no-repeat; background-size: 95px 11px; transition: all .5s ease; position: absolute; bottom: 0; left: 0}
.actus_home a.bouton_actus_home:hover { padding-left: 40px;}
.actus_home a.read-more { text-transform: uppercase; text-decoration: none; font-family: overpass, sans-serif; color: #e4254a; }
.report_violence {}
.button_report_violence {}
.button_report_violence {color: #fff; text-decoration: none; display: block; padding: 15px 30px; width: 100%; text-transform: uppercase; font-family: overpass, sans-serif; background: #f86759 url(images/grande-fleche-bouton.svg) center right no-repeat; background-size: 95px 11px; transition: all .5s ease;}
.button_report_violence:visited,
.button_report_violence:hover,
.button_report_violence:active {color: #fff !important;}
/*.button_report_violence:hover { color: #fff;padding-left: 40px;}*/

.agenda_home {background: #fff; padding-bottom: 45px; position: relative}
.agenda_home_inner {background: #fff; padding: 10px 20px 0}
.agenda_home a.bouton_agenda {color: #fff; text-decoration: none; display: block; padding: 15px 30px; width: 100%; text-transform: uppercase; text-decoration: none; font-family: overpass, sans-serif; color: #fff; background: #6ed3cf url(images/grande-fleche-bouton.svg) center right no-repeat; background-size: 95px 11px; transition: all .5s ease; position: absolute; bottom: 0; left: 0}
.agenda_home a.bouton_agenda:hover { padding-left: 40px;}
.agenda_home .event-date {font-size: 12px; font-weight: 700; font-family: 'overpass mono', sans-serif; color: #626262;}
.agenda_home .event-date .tilde {display: inline-block; height: 6px; width: 18px; background: url(images/tilde.svg) center no-repeat; background-size: 16px 4px; vertical-align: middle;  margin: 0;}
.agenda_home h4 {margin: 0; padding: 3px 0}
.agenda_home .agenda-event {padding: 10px 0 15px;}



/* territoire */
#territoire .col_first {width: 37%; float: left;}
#territoire .col_second {width: 37%; float: left; padding: 0 10px}
#territoire .col_last {width: 26%; float: right;}

#territoire .informations_pratiques {height: auto; min-height: 350px; background: #e5e5e5; padding: 0; border-bottom: 2px solid #ccc; color: #222; font-family: overpass, sans-serif; line-height: 1.5}
#territoire .informations_pratiques .inner {padding: 20px 20px; color: #222; font-family: overpass, sans-serif; line-height: 1.333}
#territoire .informations_pratiques h3 {background: #0f837c; color: #fff; text-transform: uppercase; font-size: 18px; margin: 0; padding: 6px 20px;}
#territoire .informations_pratiques p {font-size: 14px; margin: 0 0 10px; font-weight: 700;}
#territoire .informations_pratiques strong {color: #666; line-height: 1.666; font-size: 14px; font-weight: 400; line-height: 1.5; text-transform: uppercase}


#territoire .conseils {height: auto; min-height: 350px; background: #fff; padding: 30px 40px 40px; color: #222; line-height: 1.333; border-bottom: 5px solid #6ed3cf;}
#territoire .conseils h3 {color: #222; text-transform: uppercase; font-size: 18px; margin: 0 0 20px; padding: 6px 0 8px; font-family: overpass, sans-serif; background: url(images/trait_h2.svg) bottom left no-repeat;     background-size: 50px 3px;}
#territoire .conseils .conseil_lien {padding: 4px 0}
#territoire .conseils a {color: #555; text-decoration: none;}
#territoire .conseils a:hover {color: #0f837c; text-decoration: underline;}
#territoire .conseils a .tilde {display: inline-block; height: 6px; width: 18px; background: url(images/tilde.svg) center no-repeat; background-size: 16px 4px; vertical-align: middle;  margin: 0 4px 0 0;}
#territoire .conseils strong {color: #222; line-height: 1.666; font-size: 16px; font-weight: 400; line-height: 1.5; text-transform: uppercase}



#territoire .left {width: 75%; float: left; position: relative; height: 350px; box-shadow: 1px 1px 2px rgba(0,0,0,0.2); z-index: 2; color: #fff}
#territoire .left .a_image {background: #0f837c url(images/carte_france.svg) right center no-repeat; background-size: 380px 270px; height: 300px; padding: 20px 320px 20px 30px}
#territoire .left h3 {color: #fff; font-size: 20px; padding: 0 0 10px; margin: 0; background: url(images/souligne_blanc.svg) bottom left no-repeat; background-size: 60px 4px; font-weight: 400; line-height: 24px}
#territoire .left a.a_carte {display: block; padding: 16px 30px; width: 100%; text-transform: uppercase; text-decoration: none; font-family: overpass, sans-serif; color: #fff; background: #6ed3cf url(images/grande-fleche-bouton.svg) center right no-repeat; background-size: 95px 11px; position: absolute; bottom: 0; left: 0; transition: all ease .5s}
#territoire .left a.a_carte:hover {padding-left: 50px}
#territoire .left p {text-align: center; font-size: 28px; margin: 0 0 10px 0; line-height: 30px;}
#territoire .left p strong {font-size: 34px; display: block; text-align: center; font-family: overpass, sans-serif;}
.t_chiffres {text-align: center; margin: 20px 0px;}
.terr_chiffre {display: inline-block; width: 110px; height: 110px; background: url(images/contour_terr.svg) center no-repeat; background-size: 105px; padding: 30px 15px 0; border-radius: 50%; text-align: center}
.terr_chiffre .chiffre {font-size: 36px; font-weight: 700; color: #6ed3cf; font-family: overpass, sans-serif; line-height: 34px;}

#territoire .col_last {position: relative; height: 350px; box-shadow: 1px 1px 2px rgba(0,0,0,0.2);}
#territoire .col_last .a_form {background: #6ed3cf; height: 300px; padding: 25px;}
#territoire .col_last a.a_search {display: block; padding: 16px 30px; width: 100%; text-transform: uppercase; text-decoration: none; font-family: overpass, sans-serif; color: #fff; background: #0f837c; position: absolute; bottom: 0; left: 0}
#territoire .col_last .a_form h3 {font-size: 20px; background: url(images/trait_h2.svg) bottom left no-repeat; line-height: 24px; background-size: 50px 3px; margin: 0 0 45px; padding-bottom: 8px; color: #000}
#territoire .col_last .a_form input.text {background: #fff; padding: 10px; display: block; width: 100%; border: 1px solid #6ed3cf; outline: none; margin: 4px 0 0px; border-radius: 0}
#territoire .col_last .a_form input.a_search {height: 50px; border: none; border-radius: 0; text-align: left; display: block; padding: 16px 30px; width: 100%; text-transform: uppercase; text-decoration: none; font-family: overpass, sans-serif; color: #fff; background: #0f837c  url(images/grande-fleche-bouton.svg) center right no-repeat; font-size: 13px; background-size: 95px 11px; position: absolute; bottom: 0; left: 0}

#territoire .a_form_specif {
	height: auto;
	width: 37%;
	background: #6ed3cf;
	/* height: 300px; */
	padding: 25px 25px 70px 25px;
	position: relative;
	margin-top: 50px;
	float: right;
}

#territoire .a_form_specif h3 {
	font-size: 20px;
	background: url(images/trait_h2.svg) bottom left no-repeat;
	line-height: 24px;
	background-size: 50px 3px;
	margin: 0 0 45px;
	padding-bottom: 8px;
	color: #000;
}

#territoire .a_form_specif .btn-submit {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

#territoire .a_form_specif input.text {
	background: #fff;
	padding: 10px;
	display: block;
	width: 100%;
	border: 1px solid #6ed3cf;
	outline: none;
	margin: 4px 0 0px;
	border-radius: 0;
}

#territoire .form-find-kine-specificites .select2-container {
	font-size: 13px;
}

#territoire .form-find-kine-specificites .select2-container--default .select2-search--inline .select2-search__field {
	height: 20px;
}

/* reseaux sociaux home */
#reseaux {margin-bottom: 40px}
#reseaux .col_1 {width: 13%; float: left; padding-right: 15px}
#reseaux .col_1 a {display: block; padding-bottom: 35px; padding-top: 40px; position: relative; text-decoration: none; font-family: overpass, sans-serif; font-size: 17px; font-weight: 700; line-height: 17px; margin-bottom: 2px}
#reseaux .col_1 a span.dot {
    width: 100%; display: block; position: absolute; bottom: 0; left: 0; height: 10px;
    background-image: -webkit-repeating-radial-gradient(center center, rgba(255,255,255,1), rgba(255,255,255,.3) 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(255,255,255,1), rgba(255,255,255,1) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(255,255,255,1), rgba(255,255,255,1) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(255,255,255,1), rgba(255,255,255,1) 1px, transparent 1px, transparent 100%);
    -webkit-background-size: 3px 3px;
    -moz-background-size: 3px 3px;
    background-size: 3px 3px;
    }
#reseaux .col_1 a span.lien {display: block; height: 62px; padding-top: 40px; color: #fff; text-align: center}
#reseaux .col_1 a.partenaires span.lien {}
#reseaux .col_1 a.facebook {background: #e4254a}
#reseaux .col_1 a.twitter {background: #f86759; }
#reseaux .col_1 a.partenaires {padding-top: 15px; background: #6ed3cf; }
#reseaux .col_1 a.presse {background: #0f837c;}
#reseaux .col_1 a.facebook span.lien {background: #e4254a url(images/facebook3.svg) top center no-repeat; background-size: 33px 33px}
#reseaux .col_1 a.twitter span.lien {background: #f86759 url(images/logo_x_white.svg) top center no-repeat; background-size: 33px 33px }
#reseaux .col_1 a.partenaires span.lien {padding-top: 30px; height: 68px; background: #6ed3cf url(images/partenaires.svg) top center no-repeat; background-size: 65px 26px; }
#reseaux .col_1 a.presse span.lien {background: #0f837c url(images/espace_presse.svg) top center no-repeat; background-size: 33px 33px ; }
#reseaux .col_2 {background: #fff url(images/bg_twitter_2.svg) center 30px no-repeat; background-size: 50px 50px; box-shadow: 1px 1px 2px rgba(0,0,0,0.2); padding: 120px 40px 20px; position: relative; width: 87%; float: left; min-height: 277px; text-align: center}
#twitter .owl-nav {display: none!important}
#twitter .owl-dot {width: 13px; height: 13px; background: #626262; display: inline-block; border-radius: 50%; margin: 5px 5px;}
#twitter .owl-dot.active { background: url(images/owl-dot-active.svg) center no-repeat; background-size: 13px; border: none;}
#twitter .tweet {color: #626262; font-size: 16px; min-height: 99px;}
#twitter .tweet a {color: #f86759; text-decoration: none}
#twitter .tweet p {margin: 5px 0 }
#reseaux .col_3 {padding: 25px; background: #e4e6e8; box-shadow: 1px 1px 2px rgba(0,0,0,0.2); width: 435px; float: right; position: relative; min-height: 360px;}
#reseaux .col_3 h3 {font-size: 30px; line-height: 34px; margin: 0 0 15px; padding-bottom: 8px; color: #000}
#reseaux .col_3 p {color: #626262}
#reseaux .col_3 .frm_form_field input {background: #fff; padding: 10px; display: block; width: 100%; border: none; outline: none; margin: 4px 0 0px; border-radius: 0}
#reseaux .col_3 #frm_field_8_container {width: 33%; float: left}
#reseaux .col_3 #frm_field_10_container {width: 65%; float: right}
#reseaux .col_3 button.frm_button_submit {height: 50px; border: none; border-radius: 0; text-align: left; display: block; padding: 16px 30px; width: 100%; text-transform: uppercase; text-decoration: none; font-family: overpass, sans-serif; color: #fff; background: #f86759  url(images/grande-fleche-bouton.svg) center right no-repeat; font-size: 13px; background-size: 95px 11px; position: absolute; bottom: 0; left: 0}
fieldset {padding: 0; margin: 0; border: none}
.frm_error,
.frm_error_style {font-size: 11px; color: #f86759;}

/* page rubrique */
.lien_rubrique_wrapper {width: 50%; float: left; padding: 10px}
.lien_rubrique {width: 100%; min-height: 500px; box-shadow: 1px 1px 2px rgba(0,0,0,0.2); background: #fff }
.lien_rubrique .visuel {width: 100%; height: 250px; background-size: cover; display: block; background-position: center;}
.lien_rubrique a.read-more {display: inline-block; padding: 7px 15px; text-transform: uppercase; text-decoration: none; font-family: overpass, sans-serif; border: 1px solid #f86759; color: #f86759; position: absolute; bottom: 35px; left: 40px; border-radius: 2px}
.lien_rubrique a.read-more:hover {color: #fff; background: #f86759}
.lien_rubrique .contenu {height: 250px; padding: 25px 40px 35px; position: relative}
.lien_rubrique h3 {margin: 0; font-size: 20px; line-height: 24px; padding: 15px 0 10px; font-weight: 400}
.lien_rubrique h3 a {color: #000; text-decoration: none}
.lien_rubrique p {margin: 0;  padding: 0 0 15px; color: #626262}

/* footer */
#bottom {padding: 0; font-family: overpass, sans-serif; border-bottom: 1px solid #cccecd}
#bottom .inner {padding: 30px 20px}
.dotted {
  padding: 6px;
  background-image: -webkit-repeating-radial-gradient(center center, rgba(0,0,0,.3), rgba(0,0,0,.3) 1px, transparent 1px, transparent 100%);
  background-image: -moz-repeating-radial-gradient(center center, rgba(0,0,0,.3), rgba(0,0,0,.3) 1px, transparent 1px, transparent 100%);
  background-image: -ms-repeating-radial-gradient(center center, rgba(0,0,0,.3), rgba(0,0,0,.3) 1px, transparent 1px, transparent 100%);
  background-image: repeating-radial-gradient(center center, rgba(0,0,0,.3), rgba(0,0,0,.3) 1px, transparent 1px, transparent 100%);
  -webkit-background-size: 3px 3px;
  -moz-background-size: 3px 3px;
  background-size: 3px 3px;}
.footer_col {width: 250px; float: left; padding-right: 20px}
.footer_col h2.footer {margin: 0 0 5px; padding-bottom: 5px}
.footer_col h2.footer a {text-decoration: none; color: #000}
.footer_col ul {margin: 0; padding: 0;}
.footer_col ul li {list-style: none; padding-bottom: 5px}
.footer_col ul li a {text-decoration: none; color: #000}
.footer_col ul li a:hover {text-decoration: underline}
.logo_footer {width: 300px; height: 150px; float: left; background: url(images/logo_footer.png) center no-repeat;}
#footer {margin-bottom: 30px}
#footer .mentions {font-family: overpass, sans-serif; color: #626262; font-size: 12px; padding: 15px 0}
#footer .mentions a {color: #626262; text-decoration: none}
#footer .mentions a:hover {color: #000; text-decoration: underline}
a#top {display: block; width: 53px; height: 53px; float: right; text-indent: -9999em; background: #e4254a url(images/owl-next.svg) center no-repeat;  background-size: 14px 24px; text-indent: -9999em; transform: rotate(-90deg);}
#footer .share_bottom {float: right; border-bottom: 1px solid #dadada; border-left: 1px solid #dadada}
#footer .share_bottom a {display: block; width: 54px; height: 54px; border-right: 1px solid #dadada; text-indent: -9999em; float: left; transition: all ease .3s}
#footer a.facebook {background: url(images/facebook_bottom.svg) center no-repeat; background-size: 22px 22px;}
#footer a.twitter {background: url(images/logo_x_bottom.svg) center no-repeat; background-size: 22px 22px;}
#footer a.linkedin {background: url(images/in_bottom.svg) center no-repeat; background-size: 20px 20px;}
#footer a.instagram {background: url(images/instagram_bottom.svg) center no-repeat; background-size: 20px 20px;}
#footer a.rss {background: url(images/rss_bottom.svg) center no-repeat; background-size: 22px 22px;}
#footer .share_bottom a:hover {background-color: #dadada}

/* search-results  */
.search-results .entry-content {margin-top: 40px; max-width: 895px; margin: 40px auto 0; padding: 30px 40px;}
.search-results .entry-content h1 {text-align: center; font-weight: 100; margin-bottom: 60px}

/* blog */
.blog .content-area {}
.blog .blog_inner {max-width: 913px; margin: 0 auto; padding: 40px 0 0;}
.blog .actu {position: relative; height: 555px; float: left; width: 33.333%; padding: 0 9px}
.blog .actu .actu_inner {height: 518px; background: #fff; box-shadow: 1px 1px 2px rgba(0,0,0,0.2);}
.blog .actu h3 {margin: 0; font-size: 20px; line-height: 24px; padding: 15px 0 10px; font-weight: 400}
.blog .actu h3 a {color: #000; text-decoration: none}
.blog .actu p {margin: 0;  padding: 0 0 15px; color: #626262}
.blog .actu a.read-more {display: inline-block; padding: 7px 15px; text-transform: uppercase; text-decoration: none; font-family: overpass, sans-serif; position: absolute; bottom: 30px; left: 30px; border-radius: 2px}
.blog .actu .visuel {width: 100%; height: 190px; background-size: cover; display: block; background-position: center;}
.blog .actu .contenu {height: 300px; padding: 20px 30px; position: relative; background: #fff}
.blog .actu .meta {font-family: overpass, sans-serif; font-size: 12px; background: #e4e6e8}
.blog .actu .meta span.cat {background: #f86759; text-decoration: none; text-transform: uppercase; color: #fff; display: inline-block; padding: 5px; overflow: hidden; max-width: 200px; white-space: nowrap;
  overflow: hidden; float: left; text-overflow: ellipsis}
.blog .actu .posted-on {float: right; font-weight: 700; padding: 5px; color: 626262}
.blog .actu .contenu a.read-more {border: 1px solid #f86759; color: #f86759; background: #fff;}
.blog .actu .contenu a.read-more:hover {color: #fff; background: #f86759}

.blog .actu .meta span.cat {background: #f86759; }

.blog .actu .meta.ordre a {background: #f86759; }
.blog .actu .meta.kines a {background: #e4254a; }
.blog .actu .meta.patients a {background: #0f837c; }
.blog .actu .meta.etudiants a {background: #466ddb;  }

/* agenda */
.type-tribe_events,
.agenda_inner {max-width: 913px; margin: 0 auto; padding: 0;}
.event {width: 50%; height: 205px; float: left; padding: 0 5px 20px 10px}
.event_inner {height: 195px; box-shadow: 1px 1px 2px rgba(0,0,0,0.2);}
.event_inner .left {width: 168px; height: 195px; float: left; padding: 25px 10px 0; background: #f9675a; color: #fff; text-align: center; font-size: 27px}
.event_inner .left .jour {font-family: "overpass mono", sans-serif; font-size: 65px; font-weight: 600; line-height: 65px;}
.event_inner .left .mois, 
.event_inner .left .annee {font-family: overpass, sans-serif; text-transform: uppercase}
.event_inner .right {width: 264px; height: 195px; float: left; padding: 20px 30px; background: #fff; font-family: overpass, sans-serif; position: relative; border-bottom: 5px solid #e4e6e8}
.event_inner .right h2 {font-size: 16px; padding: 0; margin-top: 0; line-height: 20px}
.event.a_venir .right:after {content: "À venir"; text-transform: uppercase; color: #fff; padding: 5px 15px; background: #e4254a; position: absolute; bottom: 0; right: 0; font-size: 12px; font-family: "overpass mono", sans-serif; font-weight: 600;}
.event_location {font-size: 13px;  line-height: 14px; margin-bottom: 10px; min-height: 18px;}
.event_inner .tilde {display: inline-block; height: 6px; width: 18px; background: url(images/tilde.svg) center no-repeat; background-size: 16px 4px; vertical-align: middle;  margin: 0 4px 0 0;}
.event_inner .heure {font-size: 12px; font-weight: 700; font-family: 'overpass mono', sans-serif; color: #626262}

/* video_inner */
#video_inner {max-width: 895px; margin: 0 auto}
.video_inner {width: 50%; padding: 10px 5px; float: left}
.videoWrapper {position: relative; padding-bottom: 51.5%; /* 16:9 */ padding-top: 25px; height: 0; background: #000;}
.videoWrapper object,
.videoWrapper iframe,
.videoWrapper embed {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}
.video_inner .meta {background: #e5e6e8; padding: 3px 10px; color: #666; text-transform: uppercase; font-family: overpass, sans-serif; font-size: 13px}
.video_inner .posted-on {float: right; font-family: "overpass mono"; font-weight: 700; font-size: 12px}
.video_inner .titre {width: 100%; background: #6ed3cf;}
.video_inner h3 {margin: 0; padding: 0 10px; color: #fff; background: #6ed3cf; vertical-align: middle; height: 50px; display: table-cell; font-size: 13px; text-transform: uppercase}
.video_une {max-width: 895px; background: #6ed3cf; margin: 0 auto}
.video_une .meta {background: #e5e6e8; padding: 0; color: #666; text-transform: uppercase; font-family: overpass, sans-serif; font-size: 13px; vertical-align: middle}
.video_une .meta .alaune {background: #0f837c; padding: 5px 15px; color: #fff; text-transform: uppercase; font-size: 18px; display: inline-block; margin-right: 10px}
.video_une .posted-on {float: right; font-family: "overpass mono"; font-weight: 700; font-size: 12px; display: inline-block; padding: 10px;}
.video_une .titre {width: 100%; background: #6ed3cf; max-width: 580px; margin: 0 auto;}
.video_une h3 {margin: 0;  padding: 0 10px; color: #fff; background: #6ed3cf; vertical-align: middle; height: 50px; display: table-cell; font-size: 13px; text-transform: uppercase}
.video_une .videoWrap {max-width: 580px; margin: 30px auto 0}

#video_inner .owl-dots {
    counter-reset: dots;
}
#video_inner .owl-dot.active {background: transparent; border:none;}
#video_inner .owl-dot:before {
    counter-increment:dots;
    content: counter(dots);
    background-color: #fff;
    cursor: pointer;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 17px;
    font-family: "overpass mono", sans-serif;
    color: #666;
}
#video_inner .owl-dot.active:before {color: #000}
#video_inner .owl-nav {display: none;}

.pub {background: #fff; max-width: 895px; margin: 0 auto; border-bottom: 1px solid #e4e6e8; min-height: 185px}
.pub_inner {background: #fff; padding: 20px 30px; position: relative}
.pub_inner .titre {width: 33%; float: left; padding-right: 10px;}
.pub_inner .titre h3 {margin: 0;}
.pub_inner .description {width: 33%; float: left}
.pub_inner .description p {margin: 0}
.pub_inner .pub_file {width: 33%; float: left; text-align: center; display: table-cell; vertical-align: middle; position: absolute; right: 0; margin-top: -20px; top: 50%;}
.pub_inner .pub_file a {display: inline-block; padding: 7px 15px; text-transform: uppercase; text-decoration: none; font-family: overpass, sans-serif; border-radius: 2px; border: 1px solid #f86759; color: #f86759;}
.pub_inner .pub_file a:hover {color: #fff; background: #f86759}
.pub .meta {background: #e4e6e8; color: #666; font-family: "overpass mono"; font-weight: 700; font-size: 12px; display: inline-block; width: 100%; max-width: 33%; text-align: right}
.pub .meta .cat {display: inline-block; float: left; background: #e4254a; color: #fff; text-transform: uppercase; font-family: overpass, sans-serif; font-size: 12px; padding: 3px 10px}
.pub .meta .posted-on {padding: 3px 10px; float: right;}

/* filters */
.filters {max-width: 895px; margin: 30px auto; padding: 15px}
.filters h4 {font-size: 13px; text-transform: uppercase; color: #64c0bd}
.filters ul {padding: 0;}
.filters li.sf-level-0 {display: inline-block; padding: 5px 15px; border: 1px solid #626262; border-radius: 2px; margin: 0 10px 15px 0; cursor: pointer}
.filters li.sf-level-0 input {display: none}
.filters li.sf-level-0 label {text-transform: uppercase; font-family: overpass, sans-serif; font-size: 13px; color: #626262; padding-left: 0; cursor: pointer}
.filters li.sf-level-0 label:before {content:" "; display: inline-block; width: 12px; height: 12px; background: #fff; border: 1px solid #64c0bd; margin-right: 10px}
.filters li.sf-level-0.sf-option-active {background: #0f837c; }
.filters li.sf-level-0.sf-option-active label {color: #fff;}
.filters li.sf-level-0.sf-option-active label:before {content:" "; display: inline-block; width: 12px; height: 12px; background: #64c0bd url(images/coche.svg) center no-repeat; background-size: 12px 12px; border: 1px solid #64c0bd; margin-right: 10px}
.tribe-bar-form label {text-transform: uppercase; font-family: overpass, sans-serif; font-size: 13px; color: #626262; padding-left: 0; cursor: pointer}

.filters .sf_date_field li {display: inline}

/* pagination */
.navigation {text-align: center; margin: 40px 0 10px}
.navigation ul {font-size: 0}
.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {color: #666; text-decoration:none;}
.navigation li {display: inline-block; margin-right: 1px;}
.navigation li a {font-size: 17px; font-family: "overpass mono", sans-serif}
.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {background-color: #fff; cursor: pointer; display: block; width: 40px; height: 40px; line-height: 40px; text-align: center}
.navigation li a:hover,
.navigation li.active a {color: #000;}
.navigation li.next a {text-indent: -999em; background: #0f837c url(images/owl-next.svg) center no-repeat;  background-size: 10px 18px; transition: all ease .3s}
.navigation li.previous a {text-indent: -999em; background: #0f837c url(images/owl-prev.svg) center no-repeat;  background-size: 10px 18px; transition: all ease .3s}
.navigation li.next a:hover,
.navigation li.previous a:hover {background-color: #64c0bd}

/* trombi */
.page-template-page-trombinoscope .intro {padding-bottom: 0}
.bloc_elu {margin-bottom: 30px}
.bloc_elu .image {width: 200px; height: 200px; float: left; position: relative}
.bloc_elu .image:after {content: ""; display: block; width: 0; height: 0; border: 14px solid transparent; border-right: 14px solid #fff; position: absolute; top: 50%; right: 0; margin-top: -14px}
.bloc_elu .titre {height: 25px; padding-left: 200px}
.bloc_elu .titre span {display: inline-block; padding: 0 10px; background: #f86759; color: #fff; text-transform: uppercase; line-height: 25px; font-size: 12px; font-family: "overpass mono", sans-serif}
.bloc_elu .content {background: #fff; height: 200px; float: left; border-bottom: 5px solid #e4254a; box-shadow: 1px 1px 2px rgba(0,0,0,0.2); padding: 25px; max-width: 695px;}
.bloc_elu h3 {font-size: 16px; margin: 0; padding: 0}
.bloc_elu h4 {font-size: 12px; font-weight: 400; text-transform: uppercase; color: #f86759; margin: 0; padding: 0}
.bloc_elu p {color: #626262}
.titre_bureau {height: 200px; width: 95px; float: left; background: #64c0bd; color: #fff; text-transform: uppercase; font-size: 12px; font-family: "overpass mono", sans-serif; padding: 30px}
.titre_bureau.vert {background: #0f837c;}
.titre_bureau span {transform: rotate(-90deg); transform-origin: bottom 0; display: block; width: 130px; height: 65px;}
.bloc_bureau {width: 400px; float: left; box-shadow: 1px 1px 2px rgba(0,0,0,0.2);}
.bloc_bureau .image {width: 200px; height: 200px; float: left; position: relative}
.bloc_bureau .image:after {content: ""; display: block; width: 0; height: 0; border: 14px solid transparent; border-right: 14px solid #fff; position: absolute; top: 50%; right: 0; margin-top: -14px}
.bloc_bureau .image.right:after {border: 14px solid transparent; border-left: 14px solid #fff; left: 0; }
.bloc_bureau .content {background: #fff; height: 200px; width: 200px; float: left; padding: 20px; max-width: 200px; display: table;}
.bloc_bureau .content span {display: table-cell; vertical-align: middle}
.bloc_bureau h3 {font-size: 16px; margin: 0; padding: 0; text-align: center}
.bloc_bureau h4 {font-size: 12px; font-weight: 400; text-transform: uppercase; color: #f86759; margin: 0; padding: 0; text-align: center}
.groupe_membres {box-shadow: 1px 1px 2px rgba(0,0,0,0.2); width: 290px; float: left; margin: 0 4px 8px}
.bloc_membres {width: 290px; float: left; }
.bloc_membres .image {width: 145px; height: 145px; float: left; position: relative}
.bloc_membres.even .image {float: right}
.bloc_membres .image:after {content: ""; display: block; width: 0; height: 0; border: 14px solid transparent; border-right: 14px solid #fff; position: absolute; top: 50%; right: 0; margin-top: -14px}
.bloc_membres .image.right:after {border: 14px solid transparent; border-left: 14px solid #fff; left: 0; }
.bloc_membres .content {background: #fff; height: 145px; width: 145px; float: left; padding: 20px 8px; max-width: 200px; display: table;}
.groupe_membres:nth-child(even) .bloc_membres .content {background: #64c0bd}
.groupe_membres:nth-child(even) .bloc_membres .image:after {border: 14px solid transparent; border-right: 14px solid #64c0bd; right: 0; }
.groupe_membres:nth-child(even) .bloc_membres .image.right:after {border: 14px solid transparent; border-left: 14px solid #64c0bd; left: 0; }
.bloc_membres .content span {display: table-cell; vertical-align: middle}
.bloc_membres h3 {font-size: 16px; margin: 0; padding: 0; text-align: center; line-height: 16px;}
.bloc_membres h4 {font-size: 12px; font-weight: 400; text-transform: uppercase; color: #0f837c; margin: 0; padding: 0; text-align: center}
.groupe_membres:nth-child(even) .bloc_membres h3 {}
.groupe_membres:nth-child(even) .bloc_membres h4 {color: #fff}
.presentation {margin: 40px 0}
#tooltip{z-index: 1000;position: fixed;}
#tooltip-container{background-color: #fff; border: 1px solid #6c9b43; padding: 10px 15px; color: #000; font-size: 12px; line-height: 16px; margin-top: 10px;}
#tooltip .name{font-weight: bold; }
#tooltip .repname{display: block; padding-bottom: 10px}
#map {margin: 0 auto; display: block;}
#maps{width: 468px; height: 450px; overflow: hidden;}
#iles{width: 48px; height: 240px; position: absolute; margin-top: -250px;}
#iles a{width: 48px; height: 53px; display: block; overflow: hidden; margin-top: 15px; color: transparent; background: transparent url(images/carte-martinique.png) no-repeat left top;}
#iles #martinique:hover{background-position: left -53px;}
#iles #guadeloupe{height: 44px; margin-top: 0; background-image: url(images/carte-guadeloupe.png);}
#iles #guadeloupe:hover{background-position: left -44px;}
#iles #guyane{height: 55px; background-image: url(images/carte-guyane.png);}
#iles #guyane:hover{background-position: left -55px;}
#iles #reunion{height: 42px;background-image: url(images/carte-reunion.png);}
#iles #reunion:hover{background-position: left -42px;}

/* boutons side */
#acces_right {position: fixed; top: 50%; right: 0; width: 75px; margin-top: -150px; z-index: 999}
#acces_right a {display: block; width: 75px; height: 75px; background-color: #6ed3cf; color: #fff; font-size: 9px; text-transform: uppercase; font-family: overpass, sans-serif; text-align: center; position: relative; margin-bottom: 1px; transition: all ease .2s}
/*
#acces_right a span {opacity: 0; position: absolute; bottom: 0; left: 0; width: 100%; padding: 3px; transition: all ease .2s}
#acces_right a:hover span {opacity: 1;}
#acces_right a.inscrire {background: #6ed3cf url(images/inscrire.svg)  center no-repeat;  background-size: 42px 42px;}
#acces_right a.inscrire:hover {background: #0f837c url(images/inscrire.svg) center 20% no-repeat;  background-size: 30px 30px;}
#acces_right a.deontologie {background: #6ed3cf url(images/deontologie.svg)  center no-repeat;  background-size: 42px 42px;}
#acces_right a.deontologie:hover {background: #0f837c url(images/deontologie.svg) center 20% no-repeat;  background-size: 30px 30px;}
#acces_right a.payer {background: #6ed3cf url(images/payer.svg)  center no-repeat;  background-size: 42px 42px;}
#acces_right a.payer:hover {background: #0f837c url(images/payer.svg) center 20% no-repeat;  background-size: 30px 30px;}
#acces_right a.cdo {background: #6ed3cf url(images/cdo.svg)  center no-repeat;  background-size: 42px 42px;}
#acces_right a.cdo:hover {background: #0f837c url(images/cdo.svg) center 20% no-repeat;  background-size: 30px 30px;}
*/

#acces_right a span {position: absolute; bottom: 0; left: 0; width: 100%; padding: 3px; transition: all ease .2s}


#acces_right a.conseil {background: #6ed3cf url(images/conseil.svg)  center 20%  no-repeat; background-size: 30px 30px;}
#acces_right a.conseil:hover {background-color: #0f837c;}
#acces_right a.cdo {background: #6ed3cf url(images/cdo-cro.svg)  center 20% no-repeat; background-size: 30px 30px;}
#acces_right a.cdo:hover {background-color: #0f837c;}
#acces_right a.juridique {background: #6ed3cf url(images/juridique.svg)  center 20% no-repeat; background-size: 30px 30px;}
#acces_right a.juridique:hover {background-color: #0f837c;}
#acces_right a.publications {background: #6ed3cf url(images/publications.svg) center 20% no-repeat; background-size: 30px 30px;}
#acces_right a.publications:hover {background-color: #0f837c;}

#acces_right .hover {display: none}

/* lire aussi */
#aussi {padding-top: 15px}
#aussi .actu {position: relative; margin: 0; width: 33.333%; float: left; padding: 0 8px}
#aussi .actu h3 {margin: 0; font-size: 20px; line-height: 24px; padding: 15px 0 10px; font-weight: 400}
#aussi .actu h3 a {color: #000; text-decoration: none}
#aussi .actu p {margin: 0;  padding: 0 0 15px; color: #626262}
#aussi .actu a.read-more {display: inline-block; padding: 7px 15px; text-transform: uppercase; text-decoration: none; font-family: overpass, sans-serif; position: absolute; bottom: 20px; left: 20px; border-radius: 2px}
#aussi .actu .visuel {width: 100%; height: 150px; background-size: cover; display: block; background-color: #fff;}
#aussi .actu .contenu {min-height: 225px; padding: 0px; position: relative; padding: 10px 20px 50px; background: #fff}
#aussi .actu .meta {font-family: overpass, sans-serif; font-size: 12px; background: #e4e6e8}
#aussi .actu .meta a {text-decoration: none; text-transform: uppercase; color: #fff; display: inline-block; padding: 5px}
#aussi .actu .posted-on {float: right; font-weight: 700; padding: 5px; color: #626262; font-family: "overpass mono"; font-weight: 700}
#aussi .actu .meta.ordre a {background: #f86759; }
#aussi .actu .contenu a.read-more {border: 1px solid #f86759; color: #f86759}
#aussi .actu .contenu a.read-more:hover {color: #fff; background: #f86759}
#aussi .actu .contenu a.all-actus {background-color: #f86759}
#aussi .actu .meta.kines a {background: #e4254a; }
#aussi .actu .meta.patients a {background: #0f837c; }
#aussi .actu .meta.etudiants a {background: #466ddb;  }
.type-page #aussi {padding-top: 0}
#aussi .page_liee {position: relative; height: 285px; width: 33.333%; float: left; padding: 0 5px}
#aussi .page_liee h3 {margin: 0; font-size: 20px; line-height: 24px; padding: 15px 0 10px; font-weight: 400}
#aussi .page_liee h3 a {color: #000; text-decoration: none}
#aussi .page_liee p {margin: 0;  padding: 0 0 15px; color: #626262}
#aussi .page_liee a.read-more {display: inline-block; padding: 7px 15px; text-transform: uppercase; text-decoration: none; font-family: overpass, sans-serif; border-radius: 2px}
#aussi .page_liee .contenu {height: 280px; padding: 0px; position: relative; padding: 10px 20px; background: #fff; border-top: 5px solid #e42449}
#aussi .page_liee .contenu .read-more-wrapper {text-align: center; position: absolute; bottom: 20px; left: 0; width: 100%;}
#aussi .page_liee .contenu a.read-more {border: 1px solid #f86759; color: #f86759}
#aussi .page_liee .contenu a.read-more:hover {color: #fff; background: #f86759}

/* trouver  mon kiné */
.content.trouver {background: #fff; box-shadow: 1px 1px 2px rgba(0,0,0,0.2); }
.content.trouver .fichiers {margin-top: 40px}
#trouver_form {background: #6ed3cf; padding: 30px}
#trouver_form .inner {max-width: 580px; margin: 0 auto}
#trouver_form input {padding: 8px; background: #fff; border: 5px solid #6ed3cf; font-size: 16px; display: inline-block; outline: none}
#trouver_form input.name {width: 100%;  border-right: none;  border-left: none}
#trouver_form input.cp {width: 30%;  border-left: none}
#trouver_form input.ville {width: 69%; border-right: none; float: right}
.trouver_search {padding: 15px 30px; clear: both; margin: 5px 0 0; width: 100%; text-transform: uppercase; text-decoration: none; font-family: overpass, sans-serif; color: #fff; background: #0f837c url(images/grande-fleche-bouton.svg) center right no-repeat; background-size: 95px 11px; transition: all .5s ease}
.trouver_search:hover {padding-left: 40px;}
.inner_trouver {max-width: 580px; margin: 0 auto; padding: 30px 0}
.trouver_result {padding: 15px 0}
.inner_result {max-width: 580px; margin: 0 auto; padding: 0 20px; border-left: 1px solid #e6e6e6}
.inner_result {color: #626262; position: relative}
.inner_result strong {color: #000; font-size: 16px; display: block; padding-bottom: 10px; font-family: overpass, sans-serif;}
.inner_result .nrpps {color: #f86759; font-size: 12px; display: block; padding-top: 10px; font-family: overpass, sans-serif;}
.inner_result .tilde {display: inline-block; height: 6px; width: 22px; background: url(images/tilde-orange.svg) center no-repeat; background-size: 20px 4px; vertical-align: middle;  margin: 0 4px;}
#result_title span {font-size: 13px; color: #626262; display: inline-block; padding-left: 15px; font-family: 'overpass mono', sans-serif; font-weight: 400}
.inner_result .hide_map,
.inner_result .show_map {display: inline-block; padding: 7px 15px; text-transform: uppercase; text-decoration: none; font-family: overpass, sans-serif; border: 1px solid #f86759; color: #f86759; position: absolute; top: 5px; right: 0; border-radius: 2px;}
.inner_result .show_map:hover {color: #fff; background: #f86759;}
.inner_result .hide_map {display: none}
.result_map {height: 300px; width: 100%; background: #e4e6e8 url(images/ajax-loader.gif) center no-repeat; margin-top: 20px; border-top: 1px solid #a8a8a4}
#show_search_mobile {display: none;}


/* faq */
h2.home_title.question {padding-top: 40px}
.question_content {background: #fff; box-shadow: 1px 1px 2px rgba(0,0,0,0.2); max-width: 895px; margin: 20px auto}
.question_group h3 {margin: 0 0 10px}
.question_group h3 span {display: inline-block; background: #e42449; color: #fff; text-transform: uppercase; font-size: 13px; font-weight: 700; padding: 2px 20px; min-width: 150px;}
.question_group .question {padding: 25px 300px 25px 30px; border-bottom: 1px solid #e6e6e6; position: relative}
.question_group .question h4 {margin: 0; font-size: 16px}
.question_group .question .reponse {color: #626262;}
.show_reponse,
.hide_reponse {position: absolute; right: 60px; display: inline-block; padding: 7px 15px; text-transform: uppercase; text-decoration: none; font-family: overpass, sans-serif; border: 1px solid #f86759; color: #f86759; top: 18px; border-radius: 2px; cursor: pointer;}
.show_reponse:hover,
.hide_reponse:hover {background: #f86759; color: #fff;}

.banner-top {
	/*height: 44px;*/
	background-color: #E4254A;
	/*padding: 12px 0;*/
}

.banner-top .inner {
	max-width: 1170px;
	margin: 0 auto;
	padding: 7px 0;
	overflow: hidden;
}

.banner-top .banner-text {
	padding: 6px 0;
}

.banner-top .has-url .banner-text {
	float: left;
	padding: 5px 0;
	width: 86%;
}

.banner-top .banner-url {
	float: right;
	width: 14%;
}

.banner-top .inner a.button {
	display: inline-block;
	color: #FFFFFF;
	font-family: overpass, sans-serif;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0;
	line-height: 30px;
	box-sizing: border-box;
	height: 30px;
	width: 120px;
	border: 1px solid #FFFFFF;
	text-align: left;
	text-decoration: none;
	float: right;
	padding-left: 15px;
}

.banner-top .inner a.button span {
	display: inline-block;
	width: 28px;
	/*width: 18px;*/
	height: 11px;
	margin-left: 2px;
	background: #e4254a url(images/grande-fleche-bouton-v4.svg) -55px center no-repeat;
	background-size: 95px 11px;
}

.banner-top .banner-text > span {
	color: #FFFFFF;
	font-family: overpass, sans-serif;
	font-size: 18px;
	letter-spacing: 0;
	line-height: 18px;
}

.spu-bg {z-index: 100010;}

.publications-pagination {
	font-size: 0;
	font-family: "overpass mono", sans-serif;
	margin: 40px 0 10px 0;
	text-align: center;
}

.publications-pagination .page-numbers {
	background: #FFF;
	color: #666;
	font-size: 17px;
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin-right: 1px;
	text-align: center;
	text-decoration: none;
}

.publications-pagination .current {
	color: #000;
}

.publications-pagination .prev,
.publications-pagination .next {
	text-indent: -999em;
	background: #0f837c url(images/owl-prev.svg) center no-repeat;
	background-size: 10px 18px;
	transition: all ease .3s;
}

.publications-pagination .next {
	background-image: url(images/owl-next.svg);
}

.publications-pagination .prev:hover,
.publications-pagination .next:hover {
	background-color: #64c0bd;
}

@media print {
  #menu, #footer, aside,
  #bottom{
    display:none;
  }
  body {
    font-size:120%;
    color:black;
  }
}

@media screen and (max-width: 1200px) {
	#page {padding: 0 20px}
	.banner-top .inner {
		padding: 7px 20px;
	}
}

@media screen and (max-width: 1100px) {
    #slider .bandeau_titre {width: 50%;}
    #slider .bandeau_image {width: 50%;}
}
@media screen and (max-width: 980px) {
    #page {padding: 0 20px}
    #show_search_mobile {display: block; float: right; width: 40px; height: 36px; margin: 25px 20px 0 0; border: 1px solid #626262; background: url(images/recherche.svg) center no-repeat; background-size: 40px 36px;}
    .site-header .search-form {display: none}
    #show_menu_mobile {display: block; float: right; width: 40px; height: 28px; text-align: right; margin: 25px 20px 0;}
    #show_menu_mobile span {display: block; height: 6px; width: 28px; background: #626262; border-radius: 3px; margin: 3px 0 2px; float: right}
    #show_menu_mobile span.middle {width: 40px;}
    #show_menu_mobile.open span {display: none}
    #show_menu_mobile.open {background: url(images/close.svg) center no-repeat; background-size: 28px 28px; margin-top: 27px;}
    #site-navigation {display: none}
    #menu_mobile {position: absolute; top: 70px; left: 0; background: #f2f4f6; border: 1px solid #fff; padding: 10px 30px 50px; width: 100%; z-index: 1000}
    #menu_mobile ul, #menu_mobile li {margin: 0; list-style: none; padding: 0}
    #menu_mobile li ul {display: none}
    #menu_mobile li {border-bottom: 1px solid #f86759;}
    #menu_mobile li a {display: block; padding: 15px 0; font-size: 15px; text-transform: uppercase; color: #000; text-decoration: none; transition: all ease .3s}
    #menu_mobile li.menu-item-has-children a {background: url(images/down-orange.svg) right center no-repeat; background-size: 16px 12px;}
    #menu_mobile li.menu-item-has-children li a {background: none;}
    #menu_mobile li a.active {background: url(images/up-orange.svg) right center no-repeat; background-size: 16px 12px;}
    #menu_mobile li a span {display: block; font-size: 13px; }
    #menu_mobile li a br {display: none }
    #menu_mobile li li {border: none}
    #menu_mobile li li a {padding: 15px 0 15px 30px; border-top: 1px solid #ccc; background: none}
    #menu_mobile li li a.active {background: none}
    header.entry-header .titre h1 {max-width: 70%;}
    #acces_rapides {max-width: 70%;}
    .blog .actu {width: 50%;}
    .event {width: 100%}
    .event_inner .left {width: 30%;}
    .event_inner .right {width: 70%;}

}

@media screen and (max-width: 768px) {
    #slider .slide .visuel {width: 55%;}
    #slider .slide .contenu {width: 45%;}
    #slider .slide h3 {font-size: 20px; line-height: 24px; padding: 25px 0;}
    #ordre .col_first {width: 55%;}
    #ordre .col_first .acces_rapides .bottom {height: auto;}
    #ordre .col_second {width: 45%; margin-top: 46px;}
    #ordre .col_second .encart {padding: 15px 20px;}
    #ordre .col_last {width: 100%; margin-top: 0}
    #ordre .col_last .publications {width: 55%; float: left}
    #ordre .col_last .tv {width: 43%; float: right}
    .col_picto {width: 50%;}
    #home_acces #ancres {width: 25%;}
    #home_acces #ancres .ancre {font-size: 15px;}
    .home_acces {width: 75%;}
    .home_acces .presentation {width: 42%; padding: 0 30px 0 0;}
    .home_acces .liens {width: 28%;}
    .home_acces .liens_picto {width: 30%; padding: 0 0 0 30px;}
    .home_acces .liens_picto .col_picto {width: 100%; height: 95px;}
    .home_acces .liens_picto a.lien_picto {padding-top: 52px; line-height: 12px;}
    .home_acces .liens_picto a.lien_picto .picto_rollover, .home_acces .liens_picto a.lien_picto .picto {height: 50px; background-size: 50px 50px;}
    #territoire .left {width: 100%; float: none; margin-bottom: 15px; height: auto;}
    #territoire .left .a_image {background-size: 290px 240px; padding: 20px 240px 20px 30px; height: 340px}
    #territoire .right {width: 100%; float: none; height: auto; padding-bottom: 50px}
    #territoire .right .a_form {height: auto;}
    #territoire .right .a_form input.text {width: 39%; display: inline-block;}
    #territoire .right .a_form input#cp.text {width: 20%; display: inline-block;}
    #territoire .right .a_form h3 {margin: 0 0 5px;}
    .terr_chiffre {width: 80px; height: 80px; background-size: 80px; padding: 15px 10px 0;}
    .terr_chiffre .chiffre {font-size: 26px;}
    #reseaux .col_1 {width: 25%;}
    #reseaux .col_2 {width: 75%; margin-bottom: 15px;}
    #reseaux .col_3 {width: 100%; float: none; clear: both; min-height: 230px; padding-bottom: 70px; margin-top: 15px}
    #reseaux .col_3 h3 {margin: 0 0 15px; font-size: 22px; line-height: 27px; margin: 0 0 5px; padding-bottom: 0px;}
    #reseaux .col_3 h3 br {display: none}
    #reseaux .col_3 #frm_field_9_container {width: 45%; float: left; padding: 0 3px}
    #reseaux .col_3 #frm_field_8_container {width: 16%; float: left; padding: 0 3px}
    #reseaux .col_3 #frm_field_10_container {width: 38%; float: left; padding: 0 3px}
    .logo_footer {width: 180px;}
    #acces_right {height: 75px; overflow: hidden; transition: all ease .3s; margin-top: 0}
    #acces_right.open {height: auto; margin-top: -150px}
    #acces_right .hover {height: 75px; width: 75px; content:'...'; text-align: center; line-height: 60px; color: #fff; font-size: 40px; display: block; background: #6ed3cf}
    #acces_rapides {max-width: 100%; margin-bottom: 60px;}
    #acces_rapides.liens_3 div {max-width: 30%;}
    .share.with_links {margin-top: 75px;}
    #aussi .actu,
    #aussi .page_liee {position: relative; height:auto; width: 100%; float: none; padding: 0; margin-bottom: 15px}

	#territoire .col_first {width: 100%; float: none;}
	#territoire .col_second {width: 100%; float: none; padding: 0}
	#territoire .col_last {width: 100%; float: none;}

    #slider .bandeau_titre {width: 100%; height: auto}
    #slider .bandeau_image {width: 100%; height: 200px}
    #slider .bandeau_dep {position: relative; left: 0; bottom: 0}

	#territoire .a_form_specif {width: 100%;}
}

@media screen and (max-width: 640px) {
    #slider {height: auto;}
    #slider .slide {height: auto;}
    #slider .slide .visuel {width: 100%; float: none; height: 200px}
    #slider .slide .contenu {width: 100%; height: auto; padding-bottom: 90px}
    #slider .owl-controls {bottom: auto; top: 145px;}
    #home_acces #ancres {width: 100%;}
    .home_acces {width: 100%;}
    #home_acces #ancres .ancre,
    #home_acces #ancres .ancre.kine,
    #home_acces #ancres .ancre.kine.active,
    #home_acces #ancres .ancre.patient,
    #home_acces #ancres .ancre.patient.active,
    #home_acces #ancres .ancre.etudiant,
    #home_acces #ancres .ancre.etudiant.active {width: 33%; margin-bottom: 0; float: left}
    #ordre .col_first {width: 100%;}
    .col_picto {width: 33%;}
    #ordre .col_second {width: 100%; margin-top: 0;}
    #ordre .col_second .encart {margin-right: 0; border-top: none; height: auto;}
    #ordre .col_second .agenda {margin: 15px 0;}
    #ordre .col_last .publications,
    #ordre .col_last .tv {width: 100%;}
    .pub_home .visuel img {max-width: 100px;}
    .home_acces .presentation {width: 100%;}
    .home_acces .liens {width: 100%;}
    .home_acces .liens a {width: 25%; float: left}
    .home_acces .liens_picto {width: 100%; padding-top: 30px}
    .home_acces .liens_picto .col_picto {width: 25%;}
    #reseaux .col_1,
    #reseaux .col_2 {width: 100%; padding-right: 0;}
    #reseaux .col_1 a {width: 100%; float: none}
    #reseaux .col_1 a span.lien {height: auto; padding: 20px 0 20px 45px;}
    #reseaux .col_1 a.partenaires span.lien {height: auto; padding: 20px 0 20px 45px; background-position: 20px center}
    #reseaux .col_1 a.partenaires {padding-top: 17px;}
    #reseaux .col_1 a.twitter span.lien,
    #reseaux .col_1 a.presse span.lien,
    #reseaux .col_1 a.facebook span.lien {background-position: 20px center}
    #territoire .left .a_image {background: #0f837c url(images/carte_france.svg) bottom center no-repeat; background-size: 230px 360px; padding: 20px 20px 300px 30px; height: auto;}
    #territoire .left h3 {margin: 0 0 20px;}
    .logo_footer {width: 100%; border-bottom: 1px solid #ddd; padding-bottom: 20px; margin-bottom: 30px; background: url(images/logo_footer.png) top center no-repeat;}
    .footer_col {width: 33%;}
    #footer {text-align: center;}
    #footer .share_bottom {float: none; display: inline-block;}
    .lien_rubrique_wrapper {width: 100%;}
    header.entry-header {height: 350px; background-position: top center!important; background-size: 140%!important;}
    header.entry-header .titre {bottom: auto; bottom: 0;}
    header.entry-header .titre h1 {max-width: 100%; padding: 30px 20px 30px; min-height: 145px;}
    .fichiers h2 {margin-left: 70px;}
    .fichiers {background: #6ed3cf url(images/pdf.svg) 25px 30px no-repeat; background-size: 60px 60px;}
    .fichiers_inner {padding: 25px 20px 0;}
    .breadcrumb {display: none}
    .bloc_elu .titre {padding-left:0;}
    .bloc_elu .image, .bloc_elu .image img {width: 100%;height: auto;     display: block;}
    .bloc_bureau .image, .bloc_bureau .image img {width: 100%;height: auto;     display: block;}
    .bloc_membres .image, .bloc_membres .image img {width: 100%;height: auto;     display: block;}
    .bloc_bureau,
    .groupe_membres, .bloc_membres {width: 100%}
    .bloc_elu .content,
    .bloc_bureau .content,
    .bloc_membres .content {height: auto; width: 100%; max-width: 100%;}
    .bloc_membres .image:after,
    .bloc_membres .image.right:after,
    .bloc_bureau .image:after,
    .bloc_elu .image:after {display: none}
    .titre_bureau {height: auto; width: 100%; float: none; padding: 20px;}
    .titre_bureau span {transform: none; transform-origin: none; width: 100%; height: auto}
    .footer_col {width: 100%; text-align: center; margin-bottom: 20px}
    .event {height: auto;}
    .event_inner .left,
    .event_inner .right {width: 100%; height: auto}

	#ordre .col_second {padding: 0;}



    .question_group {margin-bottom: 15px}
    .question_group .question {padding: 25px 25px 40px 25px;}
	.question_group .question h4 {margin: 0; font-size: 16px}
	.question_group .question .reponse {color: #626262; padding-top: 30px}
	.show_reponse,
	.hide_reponse {position: relative; right: 0px;}

	.banner-top .has-url .banner-text {
		width: 70%;
	}

	.banner-top .banner-url {
		width: 30%;
	}

}

@media screen and (max-width: 420px) {
    .site-branding {max-width: 190px;}
    .site-title a {padding: 5px 0 0 45px; line-height: 16px;}
    #show_menu_mobile {display: block; float: right; width: 40px; height: 28px; text-align: right; margin: 27px 10px 0 0;}
    .col_picto {width: 50%;}
    .home_acces .liens_picto {padding: 0;}
    .home_acces .liens_picto .col_picto {width: 50%;}
    .home_acces .liens a {width: 50%;}
    .home_acces .liens {margin-bottom: 20px;}
    #ordre .col_first .acces_rapides .top a {width: 50%;}
    #home_acces #ancres .ancre,
    #home_acces #ancres .ancre.kine,
    #home_acces #ancres .ancre.kine.active,
    #home_acces #ancres .ancre.patient,
    #home_acces #ancres .ancre.patient.active,
    #home_acces #ancres .ancre.etudiant,
    #home_acces #ancres .ancre.etudiant.active {width: 100%;}
    #territoire .left p {font-size: 24px;}
    .terr_chiffre {margin: 10px;}
    #territoire .right .a_form input.text {width: 100%; display: block;}
    #territoire .right .a_form input#cp.text {width: 100%;}
    #reseaux .col_3 #frm_field_9_container,
    #reseaux .col_3 #frm_field_8_container,
    #reseaux .col_3 #frm_field_10_container {width: 100%; float: none; padding: 0 3px}
    header.entry-header {background-size: 160%!important;}
    .blog .actu {width: 100%;}
}

@media screen and (max-width: 340px) {
    #show_search_mobile {display: none;}
}

@media screen and (max-width: 320px) {
    body {min-width: 320px}
}
