/*
Theme Name: SaxOpen
Theme URI: http://underscores.me/
Author: L-ID
Author URI: http://www.thibautlion.fr
Description: SaxOpen Website
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: saxopen
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.

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

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
@import url("http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700");
@import url("http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300");
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# 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-appearance: textfield;
  box-sizing: content-box;
}

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: "Open Sans", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-size: 1rem;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
}

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: 11.25px;
  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: 11.25px;
  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, q {
  quotes: "" "";
}

blockquote:before,
blockquote:after, q:before,
q:after {
  content: "";
}

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

ul, ol {
  margin: 0 0 1.5em 3em;
}

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. */
}

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;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.8);
  font-size: 9px;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.6em 1em 0.4em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
  padding: 3px;
}

textarea {
  padding-left: 3px;
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: royalblue;
}

a:visited {
  color: purple;
}

a:hover,
a:focus,
a:active {
  color: midnightblue;
}

a:focus {
  outline: thin dotted;
}

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

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}

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

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

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

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

.main-navigation ul ul a {
  width: 200px;
}

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

.main-navigation li {
  float: left;
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

/* 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;
}

.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: 10.5px;
  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. */
}

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

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

.aligncenter {
  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;
}

.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%;
}

/* Search widget. */
.widget_search .search-submit {
  display: none;
}

/*--------------------------------------------------------------
# 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: 1.5em 0 0;
}

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

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

/*--------------------------------------------------------------
## 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, .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 {
  text-align: center;
}

/*--------------------------------------------------------------
## 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;
}

/*
  Simple Grid
  Learn More - http://dallasbass.com/simple-grid-a-lightweight-responsive-css-grid/
  Project Page - http://thisisdallas.github.com/Simple-Grid/
  Author - Dallas Bass
  Site - dallasbass.com
*/
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0px;
}

[class*='col-'] {
  float: left;
  padding-right: 20px;
  /* column-space */
}

.grid {
  width: 100%;
  max-width: 1140px;
  min-width: 755px;
  margin: 0 auto;
  overflow: hidden;
}

.grid:after {
  content: "";
  display: table;
  clear: both;
}

.grid-pad {
  padding-top: 20px;
  padding-left: 20px;
  /* grid-space to left */
  padding-right: 0px;
  /* grid-space to right: (grid-space-left - column-space) e.g. 20px-20px=0 */
}

.push-right {
  float: right;
}

/* Content Columns */
.col-1-1 {
  width: 100%;
}

.col-2-3, .col-8-12 {
  width: 66.66%;
}

.col-1-2, .col-6-12 {
  width: 50%;
}

.col-1-3, .col-4-12 {
  width: 33.33%;
}

.col-1-4, .col-3-12 {
  width: 25%;
}

.col-1-5 {
  width: 20%;
}

.col-1-6, .col-2-12 {
  width: 16.667%;
}

.col-1-7 {
  width: 14.28%;
}

.col-1-8 {
  width: 12.5%;
}

.col-1-9 {
  width: 11.1%;
}

.col-1-10 {
  width: 10%;
}

.col-1-11 {
  width: 9.09%;
}

.col-1-12 {
  width: 8.33%;
}

/* Layout Columns */
.col-11-12 {
  width: 91.66%;
}

.col-10-12 {
  width: 83.333%;
}

.col-9-12 {
  width: 75%;
}

.col-5-12 {
  width: 41.66%;
}

.col-7-12 {
  width: 58.33%;
}

/* Pushing blocks */
.push-2-3, .push-8-12 {
  margin-left: 66.66%;
}

.push-1-2, .push-6-12 {
  margin-left: 50%;
}

.push-1-3, .push-4-12 {
  margin-left: 33.33%;
}

.push-1-4, .push-3-12 {
  margin-left: 25%;
}

.push-1-5 {
  margin-left: 20%;
}

.push-1-6, .push-2-12 {
  margin-left: 16.667%;
}

.push-1-7 {
  margin-left: 14.28%;
}

.push-1-8 {
  margin-left: 12.5%;
}

.push-1-9 {
  margin-left: 11.1%;
}

.push-1-10 {
  margin-left: 10%;
}

.push-1-11 {
  margin-left: 9.09%;
}

.push-1-12 {
  margin-left: 8.33%;
}

@media handheld, only screen and (max-width: 767px) {
  .grid {
    width: 100%;
    min-width: 0;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 20px;
    /* grid-space to left */
    padding-right: 10px;
    /* grid-space to right: (grid-space-left - column-space) e.g. 20px-10px=10px */
  }
  [class*='col-'] {
    width: auto;
    float: none;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 0px;
    padding-right: 10px;
    /* column-space */
  }
  /* Mobile Layout */
  [class*='mobile-col-'] {
    float: left;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 0px;
    padding-right: 10px;
    /* column-space */
    padding-bottom: 0px;
  }
  .mobile-col-1-1 {
    width: 100%;
  }
  .mobile-col-2-3, .mobile-col-8-12 {
    width: 66.66%;
  }
  .mobile-col-1-2, .mobile-col-6-12 {
    width: 50%;
  }
  .mobile-col-1-3, .mobile-col-4-12 {
    width: 33.33%;
  }
  .mobile-col-1-4, .mobile-col-3-12 {
    width: 25%;
  }
  .mobile-col-1-5 {
    width: 20%;
  }
  .mobile-col-1-6, .mobile-col-2-12 {
    width: 16.667%;
  }
  .mobile-col-1-7 {
    width: 14.28%;
  }
  .mobile-col-1-8 {
    width: 12.5%;
  }
  .mobile-col-1-9 {
    width: 11.1%;
  }
  .mobile-col-1-10 {
    width: 10%;
  }
  .mobile-col-1-11 {
    width: 9.09%;
  }
  .mobile-col-1-12 {
    width: 8.33%;
  }
  /* Layout Columns */
  .mobile-col-11-12 {
    width: 91.66%;
  }
  .mobile-col-10-12 {
    width: 83.333%;
  }
  .mobile-col-9-12 {
    width: 75%;
  }
  .mobile-col-5-12 {
    width: 41.66%;
  }
  .mobile-col-7-12 {
    width: 58.33%;
  }
  .hide-on-mobile {
    display: none !important;
    width: 0;
    height: 0;
  }
}

/* v1.0.5 */
/* Core RS CSS file. 95% of time you shouldn't change anything here. */
.royalSlider {
  width: 600px;
  height: 400px;
  position: relative;
  direction: ltr;
}

.royalSlider > * {
  float: left;
}

.rsWebkit3d .rsSlide {
  -webkit-transform: translateZ(0);
}

.rsFade.rsWebkit3d .rsSlide,
.rsFade.rsWebkit3d img,
.rsFade.rsWebkit3d .rsContainer {
  -webkit-transform: none;
}

.rsOverflow {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  float: left;
  -webkit-tap-highlight-color: transparent;
}

.rsVisibleNearbyWrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  left: 0;
  top: 0;
  -webkit-tap-highlight-color: transparent;
}

.rsVisibleNearbyWrap .rsOverflow {
  position: absolute;
  left: 0;
  top: 0;
}

.rsContainer {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
}

.rsArrow,
.rsThumbsArrow {
  cursor: pointer;
}

.rsThumb {
  float: left;
  position: relative;
}

.rsArrow,
.rsNav,
.rsThumbsArrow {
  opacity: 1;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.rsHidden {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.3s, opacity 0.3s linear;
  -moz-transition: visibility 0s linear 0.3s, opacity 0.3s linear;
  -o-transition: visibility 0s linear 0.3s, opacity 0.3s linear;
  transition: visibility 0s linear 0.3s, opacity 0.3s linear;
}

.rsGCaption {
  width: 100%;
  float: left;
  text-align: center;
}

/* Fullscreen options, very important ^^ */
.royalSlider.rsFullscreen {
  position: fixed !important;
  height: auto !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 2147483647 !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
}

.royalSlider .rsSlide.rsFakePreloader {
  opacity: 1 !important;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  display: none;
}

.rsSlide {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.royalSlider.rsAutoHeight,
.rsAutoHeight .rsSlide {
  height: auto;
}

.rsContent {
  width: 100%;
  height: 100%;
  position: relative;
}

.rsPreloader {
  position: absolute;
  z-index: 0;
}

.rsNav {
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  user-select: none;
}

.rsNavItem {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
}

.rsThumbs {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  float: left;
  z-index: 22;
}

.rsTabs {
  float: left;
  background: none !important;
}

.rsTabs,
.rsThumbs {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

.rsVideoContainer {
  /*left: 0;
	top: 0;
	position: absolute;*/
  /*width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	float: left;*/
  width: auto;
  height: auto;
  line-height: 0;
  position: relative;
}

.rsVideoFrameHolder {
  position: absolute;
  left: 0;
  top: 0;
  background: #141414;
  opacity: 0;
  -webkit-transition: .3s;
}

.rsVideoFrameHolder.rsVideoActive {
  opacity: 1;
}

.rsVideoContainer iframe,
.rsVideoContainer video,
.rsVideoContainer embed,
.rsVideoContainer .rsVideoObj {
  position: absolute;
  z-index: 50;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* ios controls over video bug, shifting video */
.rsVideoContainer.rsIOSVideo iframe,
.rsVideoContainer.rsIOSVideo video,
.rsVideoContainer.rsIOSVideo embed {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 44px;
}

.rsABlock {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 15;
}

img.rsImg {
  max-width: none;
}

.grab-cursor {
  cursor: url(grab.png) 8 8, move;
}

.grabbing-cursor {
  cursor: url(grabbing.png) 8 8, move;
}

.rsNoDrag {
  cursor: auto;
}

.rsLink {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 20;
  background: url(blank.gif);
}

/******************************
*
*  RoyalSlider White Controls Skin
*
*    1. Arrows
*    2. Bullets
*    3. Thumbnails
*    4. Tabs
*    5. Fullscreen button
*    6. Play/close video button
*    7. Preloader
*    8. Caption
*
*  Sprite: 'rs-minimal-white.png'
*  Feel free to edit anything
*  If you don't some part - just delete it
*
******************************/
/* Background */
/***************
*
*  1. Arrows
*
****************/
.rsMinW .rsArrow {
  height: 32px;
  width: 32px;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 21;
}

.rsMinW .rsArrowLeft {
  right: 37px;
  bottom: 7px;
}

.rsMinW .rsArrowRight {
  right: 7px;
  bottom: 7px;
}

.rsMinW .rsArrowIcn {
  width: 24px;
  height: 24px;
  margin-top: 3px;
  margin-left: 3px;
  position: absolute;
  cursor: pointer;
  background: url("rs-minimal-white.png") transparent;
  border-radius: 2px;
}

.rsMinW.rsHor .rsArrowLeft .rsArrowIcn {
  background-position: -68px -36px;
}

.rsMinW.rsHor .rsArrowRight .rsArrowIcn {
  background-position: -68px -68px;
}

.rsMinW.rsVer .rsArrowLeft .rsArrowIcn {
  background-position: -100px -36px;
}

.rsMinW.rsVer .rsArrowRight .rsArrowIcn {
  background-position: -100px -68px;
}

.rsMinW .rsArrowDisabled .rsArrowIcn {
  opacity: .3 !important;
  filter: alpha(opacity=30);
  *display: none;
}

/***************
*
*  2. Bullets
*
****************/
.rsMinW .rsBullets {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 35;
  padding-top: 4px;
  height: auto;
  text-align: center;
  line-height: 6px;
  overflow: hidden;
}

.rsMinW .rsBullet {
  width: 9px;
  height: 9px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin: 0 5px 0 0;
  cursor: pointer;
}

.rsMinW .rsBullet span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #eee;
}

.rsMinW .rsBullet.rsNavSelected span {
  background: #CCC;
}

/***************
*
*  3. Thumbnails
*
****************/
.rsMinW .rsThumbsHor {
  width: 100%;
  height: auto;
}

.rsMinW .rsThumbsVer {
  width: 96px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.rsMinW.rsWithThumbsHor .rsThumbsContainer {
  position: relative;
  height: 100%;
}

.rsMinW.rsWithThumbsVer .rsThumbsContainer {
  position: relative;
  width: 100%;
}

.rsMinW .rsThumb {
  float: left;
  overflow: hidden;
  width: 96px;
  height: 72px;
}

.rsMinW .rsThumb img {
  width: 100%;
  height: 100%;
}

.rsMinW .rsThumb.rsNavSelected {
  background: #333;
}

.rsMinW .rsThumb.rsNavSelected img {
  filter: alpha(opacity=40);
  opacity: 0.7;
}

.rsMinW .rsThumb.rsNavSelected span.thumbIco {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 2px solid #FFF;
  border: 2px solid rgba(255, 255, 255, 0.9);
  -webkit-backface-visibility: hidden;
}

.rsMinW .rsTmb {
  display: block;
}

/* Thumbnails arrow icons */
.rsMinW .rsThumbsArrow {
  height: 100%;
  width: 20px;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 21;
}

.rsMinW.rsWithThumbsVer .rsThumbsArrow {
  width: 100%;
  height: 20px;
}

.rsMinW.rsWithThumbsVer .rsThumbsArrowLeft {
  top: 0;
  left: 0;
}

.rsMinW.rsWithThumbsVer .rsThumbsArrowRight {
  bottom: 0;
  left: 0;
}

.rsMinW.rsWithThumbsHor .rsThumbsArrowLeft {
  left: 0;
  top: 0;
}

.rsMinW.rsWithThumbsHor .rsThumbsArrowRight {
  right: 0;
  top: 0;
}

.rsMinW .rsThumbsArrowIcn {
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
  position: absolute;
  cursor: pointer;
  background: url("rs-minimal-white.png");
}

.rsMinW.rsWithThumbsHor .rsThumbsArrowLeft .rsThumbsArrowIcn {
  background-position: -128px -32px;
}

.rsMinW.rsWithThumbsHor .rsThumbsArrowRight .rsThumbsArrowIcn {
  background-position: -128px -48px;
}

.rsMinW.rsWithThumbsVer .rsThumbsArrowLeft .rsThumbsArrowIcn {
  background-position: -144px -32px;
}

.rsMinW.rsWithThumbsVer .rsThumbsArrowRight .rsThumbsArrowIcn {
  background-position: -144px -48px;
}

.rsMinW .rsThumbsArrowDisabled {
  display: none !important;
}

/* Thumbnails resizing on smaller screens */
@media screen and (min-width: 0px) and (max-width: 800px) {
  .rsMinW .rsThumb {
    width: 59px;
    height: 44px;
  }
  .rsMinW .rsThumbsHor {
    height: 44px;
  }
  .rsMinW .rsThumbsVer {
    width: 59px;
  }
}

/***************
*
*  4. Tabs
*
****************/
.rsMinW .rsTabs {
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  padding-top: 12px;
  position: relative;
}

.rsMinW .rsTab {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  height: auto;
  width: auto;
  color: #333;
  padding: 5px 13px 6px;
  min-width: 72px;
  border: 1px solid #D9D9DD;
  border-right: 1px solid #f5f5f5;
  text-decoration: none;
  background-color: #000;
  background-image: -webkit-linear-gradient(top, #fefefe, #f4f4f4);
  background-image: -moz-linear-gradient(top, #fefefe, #f4f4f4);
  background-image: linear-gradient(to bottom, #fefefe, #f4f4f4);
  *display: inline;
  *zoom: 1;
}

.rsMinW .rsTab:first-child {
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.rsMinW .rsTab:last-child {
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-right: 1px solid #cfcfcf;
}

.rsMinW .rsTab:active {
  border: 1px solid #D9D9DD;
  background-color: #f4f4f4;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset;
}

.rsMinW .rsTab.rsNavSelected {
  color: #000;
  border: 1px solid #999;
  text-shadow: 1px 1px #838383;
  box-shadow: 0 1px 9px rgba(102, 102, 102, 0.65) inset;
  background: #ACACAC;
  background-image: -webkit-linear-gradient(top, #ACACAC, #BBB);
  background-image: -moz-llinear-gradient(top, #ACACAC, #BBB);
  background-image: linear-gradient(to bottom, #ACACAC, #BBB);
}

/***************
*
*  5. Fullscreen button
*
****************/
.rsMinW .rsFullscreenBtn {
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  z-index: 22;
  display: block;
  position: absolute;
  cursor: pointer;
}

.rsMinW .rsFullscreenIcn {
  display: block;
  margin: 6px;
  width: 32px;
  height: 32px;
  background: url("rs-minimal-white.png") 0 0 transparent;
}

.rsMinW .rsFullscreenIcn:hover {
  opacity: 0.8;
}

.rsMinW.rsFullscreen .rsFullscreenIcn {
  background-position: -32px 0;
}

/***************
*
*  6. Play/close video button
*
****************/
.rsDefault .rsPlayBtn {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  width: 64px;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  cursor: pointer;
}

.rsDefault .rsPlayBtnIcon {
  width: 64px;
  display: block;
  height: 64px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  background: url("img/rs-default.png") no-repeat 0 -32px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  *background-color: #000;
}

.rsDefault .rsPlayBtn:hover .rsPlayBtnIcon {
  background-color: rgba(0, 0, 0, 0.9);
}

.rsDefault .rsBtnCenterer {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
}

.rsDefault .rsCloseVideoBtn {
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  z-index: 500;
  position: absolute;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}

.rsDefault .rsCloseVideoBtn.rsiOSBtn {
  top: -38px;
  right: -6px;
}

.rsDefault .rsCloseVideoIcn {
  margin: 6px;
  width: 32px;
  height: 32px;
  background: url("rs-minimal-white.png") -64px 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  *background-color: #000;
}

.rsDefault .rsCloseVideoIcn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

/***************
*
*  7. Preloader
*
****************/
.rsMinW .rsPreloader {
  width: 20px;
  height: 20px;
  background-image: url(../preloaders/preloader-white.gif);
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
}

/***************
*
*  8. Global caption
*
****************/
.rsMinW .rsGCaption {
  position: absolute;
  float: none;
  bottom: 6px;
  left: 6px;
  text-align: left;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  color: #FFF;
  padding: 2px 8px;
  width: auto;
  font-size: 12px;
  border-radius: 2px;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  position: relative;
}

body.single-event .site-branding {
  background-color: transparent;
}

body.home {
  background-image: none;
  background-color: #FFF;
}

body.home #content {
  padding-top: 0;
}

body.page-template-page-program #content {
  padding-top: 80px;
}

body.page-template-page-webtv #content, body.single-event #content {
  padding-top: 0;
}

body #mobile-menu-opener {
  display: none;
}

pre {
  font-size: 18px;
  font-size: 1.5rem;
}

/** TYPO **/
h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", Verdana, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.2;
}

/** STRUCTURE **/
#content {
  min-height: 300px;
  padding-top: 40px;
}

/** CLASSES **/
.txt-right {
  text-align: right;
}

/** HEADER **/
#lang_sel_list {
  text-align: right;
  width: 150px;
  float: right;
}

#lang_sel_list ul {
  border-top: 0 !important;
  margin-top: 10px !important;
}

#lang_sel_list ul li {
  float: none;
  display: inline-block;
  padding: 0 8px 0 0 !important;
}

#lang_sel_list ul li a:link, #lang_sel_list ul li a:visited, #lang_sel_list ul li a.lang_sel_sel:link, #lang_sel_list ul li a.lang_sel_sel:visited {
  display: inline-block;
  color: #000cb2;
}

#lang_sel_list ul li a.lang_sel_other:link, #lang_sel_list ul li a.lang_sel_other:visited {
  color: #ccc;
}

#lang_sel_list ul li a:hover, #lang_sel_list ul li a:active, #lang_sel_list ul li a.lang_sel_other:hover, #lang_sel_list ul li a.lang_sel_other:active, #lang_sel_list ul li a.lang_sel_sel:hover, #lang_sel_list ul li a.lang_sel_sel:active {
  background: transparent;
}

#lang_sel {
  float: right;
  margin: 10px 0 0 0;
}

#lang_sel ul {
  border: 0;
}

#lang_sel ul ul {
  width: 90px;
}

#lang_sel ul ul a, #lang_sel ul ul a:visited {
  background-color: #000cb2;
  border: 0;
  color: #FFF;
}

#lang_sel ul ul a:hover, #lang_sel ul ul a:active {
  color: #FFF;
  background-color: #000cb2;
}

#lang_sel a:hover {
  background-color: #000cb2;
}

#lang_sel a {
  border: none;
  color: #FFF;
}

#lang_sel li {
  text-align: left;
  width: 90px;
}

#lang_sel li a.lang_sel_sel {
  background-color: #000cb2;
  color: #FFF;
}

#lang_sel li a.lang_sel_sel:hover {
  color: #FFF;
}

.site-branding {
  background: #FFF;
  padding: 20px 0;
  height: 80px;
}

.site-branding h1 {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

.site-branding h2 {
  display: inline-block;
  color: #000cb2;
  line-height: 0.8;
  font-weight: 300;
  vertical-align: middle;
  margin: 15px 20px 0 0;
  font-size: 16.8px;
  font-size: 1.4rem;
}

.site-branding h2 span {
  color: #FFF;
  font-weight: 300;
  font-size: 14.4px;
  font-size: 1.2rem;
}

#home-visuel {
  clear: both;
  padding-top: 10px;
}

#home-visuel img {
  display: block;
}

/* SLIDER */
body.home .royalSlider.mainSlider {
  width: 100%;
  height: 489px;
  margin-bottom: 10px;
}

body.home .royalSlider.mainSlider .rsImg {
  margin: 0 !important;
}

body.home .royalSlider.mainSlider .admin-edit {
  background-color: #FFF;
  padding: 5px;
}

body.home .royalSlider.mainSlider .rsLink {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 20;
  background: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
  -webkit-backface-visibility: hidden;
}

body.home .royalSlider.mainSlider .rsThumbsContainer {
  width: 100% !important;
}

body.home .royalSlider.mainSlider .rsNav {
  position: absolute;
  bottom: 20px;
}

body.home .royalSlider.mainSlider .rsContent {
  position: absolute;
  top: 150px;
  left: 50%;
  right: 20px;
  width: auto;
  padding: 0;
  bottom: 100px;
  color: #FFF;
  font-family: "Open Sans", Verdana, Arial, sans-serif;
}

body.home .royalSlider.mainSlider .rsContent h3 {
  display: inline-block;
  margin: 0;
  padding: 0 !important;
  line-height: 1.3;
  font-size: 48px;
  font-size: 4rem;
  font-weight: 300;
}

body.home .royalSlider.mainSlider .rsContent h3 span {
  background: #000cb2;
  padding: 3px 10px;
  display: inline-block;
  color: #FFF;
}

body.home .royalSlider.mainSlider .rsContent p {
  margin: 0;
  padding: 0;
  line-height: 1.3;
}

body.home .royalSlider.mainSlider .rsContent p span {
  background: #000cb2;
  padding: 3px 10px;
  display: inline-block;
  color: #FFF;
}

/* WEBTV */
body.page-template-page-webtv #main h1 {
  margin: 1.5em 0 auto 0;
}

.videoPlayer, #videoPlayer_wrapper {
  max-width: 1024px;
  margin: auto;
}

.videoContainer {
  background-color: #0f0050;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}

.videoContainer h2 {
  color: #FFF;
}

.videoContainer ul {
  margin: 0;
  color: #FFF;
}

.videoContainer ul li a:link, .videoContainer ul li a:visited {
  color: #FFF;
}

.link_program a:link, .link_program a:visited {
  display: block;
  width: 100%;
  color: #FFF;
  padding: 10px 20px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1em;
  background: url("img/arrow-right.png") no-repeat right center #dab300;
  font-size: 30px;
  font-size: 2.5rem;
}

.link_program a:link strong, .link_program a:visited strong {
  display: block;
  font-weight: 600;
}

.link_program a:hover, .link_program a:active {
  text-decoration: none;
}

/* NAV */
nav#site-navigation {
  background: #000cb2;
}

nav#site-navigation ul#tools-menu {
  width: 80px;
  max-width: 80px;
  float: left;
}

nav#site-navigation ul#tools-menu li {
  padding: 6px 0 0;
  display: inline-block;
  width: 30px;
}

nav#site-navigation ul#tools-menu li:first-child {
  margin-left: 20px;
}

nav#site-navigation ul#tools-menu li.home-btn {
  margin-left: 20px;
}

nav#site-navigation ul#tools-menu li.home-btn a:link, nav#site-navigation ul#tools-menu li.home-btn a:visited {
  background: url("img/pic-home.png") no-repeat center center;
}

nav#site-navigation ul#tools-menu li.home-btn:hover a:link, nav#site-navigation ul#tools-menu li.home-btn:hover a:visited, nav#site-navigation ul#tools-menu li.home-btn:active a:link, nav#site-navigation ul#tools-menu li.home-btn:active a:visited {
  background: url("img/pic-home-hover.png") no-repeat center center;
}

nav#site-navigation ul#tools-menu li a:link, nav#site-navigation ul#tools-menu li a:visited {
  display: inline-block;
  width: 30px;
  height: 31px;
}

nav#site-navigation ul#tools-menu li a:link span, nav#site-navigation ul#tools-menu li a:visited span {
  display: none;
}

nav#site-navigation ul#tools-menu li a:link.search-btn, nav#site-navigation ul#tools-menu li a:visited.search-btn {
  background: url("img/pic-search.png") no-repeat center 8px;
}

nav#site-navigation ul#tools-menu li a:link.search-btn.selected, nav#site-navigation ul#tools-menu li a:visited.search-btn.selected {
  background: url("img/pic-search-hover.png") no-repeat center 8px #dab300;
}

nav#site-navigation ul#tools-menu li#mobile-menu-closer {
  display: none;
}

nav#site-navigation ul#primary-menu {
  width: 75%;
  float: right;
  text-align: right;
  margin-right: 1%;
  font-size: 0;
}

nav#site-navigation ul#primary-menu li {
  margin: 0;
  font-weight: 300;
  display: inline-block;
  float: none;
  font-size: 18px;
  font-size: 1.5rem;
}

nav#site-navigation ul#primary-menu li a:link, nav#site-navigation ul#primary-menu li a:visited {
  color: #FFF;
  display: inline-block;
  padding: 10px 11px;
}

nav#site-navigation ul#primary-menu li a:hover, nav#site-navigation ul#primary-menu li a:active {
  color: #000cb2;
  background: #FFF;
  text-decoration: none;
}

nav#site-navigation ul#primary-menu li.current_page_item a:link, nav#site-navigation ul#primary-menu li.current_page_item a:visited, nav#site-navigation ul#primary-menu li.current-menu-item a:link, nav#site-navigation ul#primary-menu li.current-menu-item a:visited, nav#site-navigation ul#primary-menu li.current-menu-parent a:link, nav#site-navigation ul#primary-menu li.current-menu-parent a:visited {
  color: #000cb2;
  background: #FFF;
  text-decoration: none;
}

nav#site-navigation ul#primary-menu li:last-child:after {
  display: none;
}

nav#site-navigation ul#primary-menu li ul.sub-menu {
  top: 42px;
}

nav#site-navigation ul#primary-menu li ul.sub-menu li {
  text-align: left;
}

nav#site-navigation ul#primary-menu li ul.sub-menu li a:link, nav#site-navigation ul#primary-menu li ul.sub-menu li a:visited {
  background-color: #FFF;
  color: #000cb2;
  font-size: 0.9em;
}

nav#site-navigation .search-form {
  display: none;
  float: left;
  margin: 6px 0 0 0;
}

nav#site-navigation .search-form input#search {
  width: 150px;
  background-color: #dab300;
  color: #000cb2;
  border: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  height: 34px;
  padding: 0 0 0 5px;
  font-size: 16.8px;
  font-size: 1.4rem;
}

nav#site-navigation .search-form .search-submit {
  display: none;
}

.entry-content .wp-post-image {
  float: left;
  margin: 0 20px 20px 0;
}

.entry-content .partenaire {
  text-align: center;
  border: 2px solid #dab300;
  font-size: 11px;
  padding: 10px 0;
  position: relative;
  margin-bottom: 20px;
  height: 220px;
}

.entry-content .partenaire h3 {
  font-size: 12px;
  font-weight: bold;
  height: 2em;
}

.entry-content .partenaire .par_img {
  min-height: 104px;
}

.entry-content .partenaire.medium {
  text-align: left;
  padding: 10px;
  height: 390px;
}

.entry-content .partenaire.medium .par_img {
  float: left;
  width: 40%;
}

.entry-content .partenaire.medium .par_txt {
  float: left;
  overflow: hidden;
  width: 60%;
}

#main p {
  margin-top: 0;
  line-height: 1.6;
}

/* SEARCH RESULTS */
.search-result {
  margin-bottom: 2em;
}

.search-result h2 {
  margin: 0;
}

.search-result p.post-type {
  margin: 0;
  color: #000cb2;
}

.search-result p {
  margin: 0;
}

/** FOOTER **/
#colophon .logos {
  margin: 0 auto 20px 0;
}

#colophon .logos a {
  padding: 10px;
}

footer.site-footer {
  background-color: #000cb2;
  padding-top: 3em;
}

footer.site-footer .widget {
  width: 20%;
  float: left;
}

footer.site-footer .widget .widget-title {
  color: #DADADA;
  font-size: 19.2px;
  font-size: 1.6rem;
  margin: 0 0 1em 0;
}

footer.site-footer .widget ul {
  margin: 0;
  color: #828CA4;
  padding: 0 0 0 1em;
}

footer.site-footer .widget ul li {
  font-size: 14.4px;
  font-size: 1.2rem;
}

footer.site-footer .widget ul li a:link, footer.site-footer .widget ul li a:visited {
  color: inherit;
  text-decoration: none;
}

footer.site-footer .widget ul li a:hover, footer.site-footer .widget ul li a:active {
  text-decoration: underline;
}

/* UTILITIES */
.loader {
  background: url("img/ajax-loader.gif") no-repeat center 50px transparent;
}

/** EVENTS **/
.videoPlayer {
  padding-bottom: 50px;
}

#eventList {
  min-height: 300px;
  margin-top: 50px;
}

img.singlePhoto {
  float: left;
  margin: 0 20px 20px 0;
}

.content-event {
  margin-top: 1em;
}

ul#eventOrder {
  border: 1px solid #000cb2;
  border-right: 0;
  background: #FFF;
  position: fixed;
  padding: 25px;
  right: 0;
  top: 450px;
  z-index: 10;
}

ul#eventOrder li {
  list-style-type: none;
  color: #000cb2;
  padding: 0;
}

ul#eventOrder li a {
  display: inline-block;
  width: 9px;
  padding-left: 15px;
  height: 8px;
}

ul#eventOrder li a[data-order="ASC"] {
  background: url("img/sort-up-off.png") no-repeat top right;
}

ul#eventOrder li a[data-order="ASC"]:hover, ul#eventOrder li a[data-order="ASC"].selected {
  background: url("img/sort-up-on.png") no-repeat top right;
}

ul#eventOrder li a[data-order="DESC"] {
  background: url("img/sort-down-off.png") no-repeat right 1px;
}

ul#eventOrder li a[data-order="DESC"]:hover, ul#eventOrder li a[data-order="DESC"].selected {
  background: url("img/sort-down-on.png") no-repeat right 1px;
}

.eventbox {
  color: #000cb2;
  height: 300px;
  position: relative;
}

.eventbox .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000cb2;
  opacity: 0.2;
  filter: alpha(opacity=20);
  z-index: 2;
}

.eventbox .eventhead {
  color: #FFF;
  background-repeat: no-repeat;
  position: relative;
  height: 178px;
  margin-bottom: 0.5em;
  background-position: center;
}

.eventbox .eventhead .eventmeta {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
}

.eventbox .eventhead .eventmeta:hover {
  background: #000cb2;
  cursor: pointer;
}

.eventbox .eventhead .eventmeta:hover .eventdesc {
  display: block;
}

.eventbox .eventhead .eventmeta .eventdates {
  position: absolute;
  bottom: 2px;
  left: 10px;
  font-size: 14.4px;
  font-size: 1.2rem;
}

.eventbox .eventhead .eventmeta .ticketurl {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #dab300;
  color: #FFF;
  padding: 2px 15px;
}

.eventbox .eventhead .eventdesc {
  font-size: 14.4px;
  font-size: 1.2rem;
  display: none;
  padding: 15px;
}

.eventbox .eventhead .places {
  padding: 10px 15px 0 15px;
}

.eventbox .eventhead .places p {
  font-size: 14.4px;
  font-size: 1.2rem;
}

.eventbox.withVideo .eventhead:before {
  display: block;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: " ";
  background: url("img/play-btn.png") no-repeat center 50%;
}

.eventbox p, .eventbox h3 {
  margin: 0;
  font-size: 16.8px;
  font-size: 1.4rem;
}

.eventbox h3 {
  line-height: 1.4;
  margin-top: 10px;
  font-weight: bold;
}

.eventbox h3 a {
  color: inherit;
  text-decoration: none;
}

.eventbox .eventinfo {
  margin-bottom: 1em;
}

.eventbox .eventinfo p {
  font-size: 14.4px;
  font-size: 1.2rem;
}

nav.eventFilters {
  width: 100%;
  position: relative;
}

nav.eventFilters > ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}

nav.eventFilters > ul > li {
  display: inline-block;
  text-align: center;
  background: url("img/puce-filter.png") no-repeat right 25px;
  height: 103px;
  padding: 0 50px 0 30px;
  float: left;
}

nav.eventFilters > ul > li span {
  display: block;
  text-align: center;
  color: #c6a035;
  padding-top: 10px;
  cursor: pointer;
  background: url("img/remove-filter.png") no-repeat top center;
  margin-top: 10px;
}

nav.eventFilters > ul > li a:link, nav.eventFilters > ul > li a:visited {
  color: #000cb2;
  text-decoration: none;
  font-size: 36px;
  font-size: 3rem;
  font-weight: 300;
}

nav.eventFilters > ul > li a:hover, nav.eventFilters > ul > li a:active {
  color: #000cb2;
}

nav.eventFilters > ul > li:last-child {
  background: none;
}

nav.eventFilters .search-form {
  display: inline-block;
  float: right;
  margin-top: 5px;
}

nav.eventFilters .search-form #search {
  width: 200px;
  height: 35px;
  font-size: 12px;
}

nav.eventFilters .search-form .search-submit {
  height: 35px;
  font-size: 12px;
}

div.filters-children {
  display: none;
  width: 100%;
  min-width: 100%;
}

div.filters-children ul {
  margin: 0;
  width: 100%;
  padding: 0;
  display: block;
  text-align: left;
}

div.filters-children ul li {
  text-align: center;
  display: inline-block;
  padding: 1px 4px;
  border: 2px solid #fff;
}

div.filters-children ul li i {
  display: none;
}

div.filters-children ul li em {
  font-style: normal;
}

div.filters-children ul li.selected a:link, div.filters-children ul li.selected a:visited {
  color: #000cb2;
}

div.filters-children ul li a:link, div.filters-children ul li a:visited {
  font-size: 14.4px;
  font-size: 1.2rem;
}

div.filters-children ul li a:hover, div.filters-children ul li a:active {
  text-decoration: none;
}

div.filters-children ul li.selected {
  border: 2px solid #c6a035;
}

div.filters-children ul li.selected a:link, div.filters-children ul li.selected a:visited {
  color: #c6a035;
}

ul.pagination {
  clear: both;
  text-align: center;
  margin: 10px 0 30px;
  padding: 0;
}

ul.pagination li {
  display: inline-block;
  padding: 0 5px;
}

ul.pagination li a:link, ul.pagination li a:visited {
  text-decoration: none;
  border-bottom: 2px solid #000cb2;
  color: #000cb2;
  padding: 0 5px;
}

ul.pagination li a:hover, ul.pagination li a:active {
  border-bottom: 2px solid #dab300;
}

ul.pagination li a.active {
  border-bottom: 2px solid #dab300;
  color: #000cb2;
}

.single-event .royalSlider {
  width: 100%;
  height: auto;
}

.single-event .sidebar h3 {
  margin: 1em 0 0.5em 0;
  padding: 0;
  font-size: 24px;
  font-size: 2rem;
}

.single-event .sidebar ul {
  margin-left: 2em;
  padding: 0;
}

.single-event .sidebar ul li {
  padding: 0;
  margin: 0;
}

.single-event #main {
  color: #000cb2;
  background-color: #FFF;
  line-height: 1.6;
}

.single-event #main h1 {
  margin: 0 0 0 0;
}

.single-event #main .event_infos {
  margin: 0;
}

.single-event #main .programing span.place {
  color: #000cb2;
  font-size: 16.8px;
  font-size: 1.4rem;
  font-weight: bold;
}

.single-event #main .programing dl {
  border-top: 1px solid #e4e5e2;
  padding: 0.6em 0 0 0;
  margin: 0;
}

.single-event #main .programing dl dt {
  color: #fcc920;
  font-size: 19.2px;
  font-size: 1.6rem;
  font-weight: 600;
  padding-top: 0.3em;
}

.single-event #main .programing dl dt span {
  vertical-align: text-top;
  margin-right: 4px;
}

.single-event #main .programing dl dd {
  border-bottom: 1px solid #e4e5e2;
  padding: 0 0 1em 0;
  font-weight: 600;
  margin: 0;
}

.single-event #main .programing dl dd a:link, .single-event #main .programing dl dd a:visited {
  color: #8a877f;
  font-weight: normal;
}

.single-event #main .programing .add-to-google, .single-event #main .programing .add-to-ical {
  padding: 1px 0 1px 25px;
  display: inline-block;
}

.single-event #main .programing .add-to-google {
  background: url("img/ico-calendar.png") no-repeat center left;
}

.single-event #main .programing .add-to-ical {
  background: url("img/ico-ical.png") no-repeat center left;
}

/** HOME **/
.home-teaser {
  margin: 10px 0;
  height: 204px;
  max-height: 204px;
  overflow: hidden;
  position: relative;
}

.home-teaser .teaser-container {
  height: 100%;
  background-repeat: no-repeat;
  background-position: left;
}

.home-teaser .teaser-container > a:link, .home-teaser .teaser-container > a:active, .home-teaser .teaser-container > a:visited, .home-teaser .teaser-container > a:hover {
  color: inherit;
  text-decoration: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.home-teaser .teaser-content {
  text-align: center;
  padding: 50px 20px 0 20px;
}

.home-teaser .teaser-content img {
  vertical-align: middle;
  display: inline-block;
  margin-right: 10px;
}

.home-teaser .teaser-content p {
  font-size: 36px;
  font-size: 3rem;
  vertical-align: middle;
  display: inline-block;
  font-weight: 300;
  margin: 0;
  text-align: left;
  line-height: 1.1 !important;
}

.home-teaser .teaser-content p strong {
  font-size: 48px;
  font-size: 4rem;
  font-weight: 700;
  display: block;
}

.home-teaser#teaser-twitter .teaser-head {
  float: left;
  width: 49%;
  margin-left: 1%;
  padding-top: 24px;
  height: 94px;
  position: relative;
}

.home-teaser#teaser-twitter .teaser-head img {
  margin: 0;
}

.home-teaser#teaser-twitter .teaser-head a:link, .home-teaser#teaser-twitter .teaser-head a:visited {
  display: block;
  text-align: right;
  font-size: 14.4px;
  font-size: 1.2rem;
  position: absolute;
  bottom: 5px;
  right: 10px;
}

.home-teaser#teaser-twitter .teaser-content {
  text-align: left;
  padding: 0 0 20px 0;
}

.home-teaser#teaser-twitter p {
  font-size: 16.8px;
  font-size: 1.4rem;
}

.home-teaser#teaser-twitter ul {
  margin: 0;
  padding: 0;
}

.home-teaser#teaser-twitter ul li {
  font-size: 13.2px;
  font-size: 1.1rem;
  padding: 10px;
  height: 94px;
  margin-left: 2%;
  list-style-type: none;
  background-color: #f7f7f7;
  width: 48%;
  float: left;
  margin-top: 16px;
}

.home-teaser#teaser-twitter ul li:first-child {
  margin-top: 0;
}

.home-teaser#teaser-news .teaser-content {
  padding: 10px 20px 0 20px;
  text-align: left;
}

.home-teaser#teaser-news .royalSlider {
  width: 100%;
  height: 110px;
}

.home-teaser#teaser-news .royalSlider h3 {
  margin: 0.5em 0 0.2em 0;
}

.home-teaser#teaser-news .royalSlider p {
  font-size: 14.4px;
  font-size: 1.2rem;
}

.home-teaser#teaser-news .royalSlider.rsMinW .rsBullets {
  bottom: -5px;
}

/** CATEGORIES **/
.archive .wp-post-image {
  float: left;
  margin: 0 20px 20px 0;
}

.archive .post {
  clear: both;
  border-bottom: 1px solid #dab300;
  margin: 0 auto 2em auto;
}

.archive h2 {
  margin-top: 0;
}

.archive p.read_more {
  text-align: right;
}

.archive p.post_date {
  margin: 0;
  padding: 0;
  font-size: 0.9em;
}

#secondary {
  padding-left: 20px;
}

#secondary .widget-title {
  margin: 0 0 0.6em 0;
}

#secondary ul {
  margin: 0 0 0 0;
  padding: 0;
}

#secondary ul li {
  list-style-type: none;
  padding: 0.2em;
  border-bottom: 1px solid #dab300;
}

#secondary ul li span.post-date {
  display: block;
  font-size: 14.4px;
  font-size: 1.2rem;
}

/** SINGLE **/
.single .entry-header h1 {
  margin: auto 0 0 0;
}

p.admin-edit {
  position: absolute;
  right: 10px;
  bottom: 10px;
  margin: 0;
  z-index: 100;
}

p.admin-edit a:link, p.admin-edit a:visited {
  color: inherit;
}

div.admin-edit-container {
  position: relative;
}

div.admin-edit-container p.admin-edit {
  position: static;
  text-align: right;
  padding: 10px;
}

a:link, a:visited {
  color: #8a877f;
  text-decoration: none;
}

a:active, a:hover {
  text-decoration: underline;
}

.mobile-only {
  display: none;
}

.mobile {
  margin-top: 0 !important;
}

.mobile .site-description {
  display: none;
}

.mobile .site-branding {
  padding: 0;
  height: auto;
  margin-top: 50px;
}

.mobile #lang_sel_list {
  position: absolute;
  right: 10px;
  top: 0;
  float: none;
}

.mobile .site-title {
  text-align: right;
  width: 250px;
  float: right;
}

.mobile .site-title img {
  width: 70%;
}

.mobile .mobile-only {
  display: block;
}

.mobile #wpadminbar {
  display: none;
}

.mobile #mobile-menu-opener {
  display: inline;
  margin-left: 10px;
}

.mobile nav#site-navigation ul#tools-menu {
  max-width: 100%;
  width: 100%;
}

.mobile nav#site-navigation ul#tools-menu li {
  float: right;
  margin-right: 10px;
}

.mobile nav#site-navigation ul#tools-menu li#mobile-menu-closer {
  display: inline-block;
}

.mobile nav#site-navigation ul#tools-menu li#mobile-menu-closer a:link, .mobile nav#site-navigation ul#tools-menu li#mobile-menu-closer a:visited {
  background: url("img/close-menu.png") no-repeat center center;
  background-size: 24px;
}

.mobile nav#site-navigation ul#tools-menu li:first-child, .mobile nav#site-navigation ul#tools-menu li.home-btn {
  margin-left: 0;
}

.mobile nav#site-navigation {
  display: none;
  position: absolute;
  width: 100%;
  background-color: #000cb2;
  z-index: 100;
  top: 0;
  left: 0;
  bottom: 0;
}

.mobile nav#site-navigation ul {
  display: block;
}

.mobile nav#site-navigation ul#tools-menu,
.mobile nav#site-navigation ul#primary-menu {
  width: 100%;
}

.mobile nav#site-navigation ul#primary-menu {
  margin-top: 100px;
}

.mobile nav#site-navigation ul#primary-menu li {
  display: block;
}

.mobile nav#site-navigation ul#primary-menu li a:link, .mobile nav#site-navigation ul#primary-menu li a:visited {
  padding: 10px;
}

.mobile .search-form {
  position: absolute;
  right: 120px;
}

.mobile #masthead .grid, .mobile body.home .grid {
  padding: 0 !important;
}

.mobile #home-visuel {
  margin-top: 20px;
}

.mobile body.home .royalSlider {
  height: 300px;
}

.mobile body.home .royalSlider .rsContent {
  left: 0;
  height: auto;
  top: auto;
  width: 100%;
  bottom: 0px;
}

.mobile body.home .royalSlider .rsContent h3 {
  font-size: 24px;
  font-size: 2rem;
  display: block;
}

.mobile body.home .royalSlider .rsContent h3 span {
  display: block;
  padding: 0.5em 10px 0;
}

.mobile body.home .royalSlider .rsContent p span {
  display: block;
  padding: 0.5em 10px 1em;
}

.mobile body.home .royalSlider .rsNav {
  display: none;
}

.mobile body.home .home-teaser {
  padding: 0;
  height: auto;
  max-height: none;
  margin: 20px 20px 0 20px;
}

.mobile body.home .home-teaser#teaser-twitter .teaser-head {
  float: none;
  width: 100%;
  height: auto;
  padding: 10px 10px 20px 10px;
}

.mobile body.home .home-teaser#teaser-twitter ul li {
  float: none;
  width: 100%;
  margin-left: 0;
}

.mobile body.home .home-teaser#teaser-twitter ul li:nth-child(3) {
  display: none;
}

.mobile body.home .home-teaser#teaser-twitter .teaser-content {
  padding: 0;
}

.mobile body.home .home-teaser#teaser-twitter .teaser-content img {
  width: auto;
}

.mobile body.home .home-teaser .teaser-container {
  background-size: auto 100%;
}

.mobile body.home .home-teaser .teaser-content {
  padding: 20px;
}

.mobile body.home .home-teaser .teaser-content img {
  max-width: 50%;
  width: 35px;
}

.mobile body.home .home-teaser .teaser-content p {
  font-size: 19.2px;
  font-size: 1.6rem;
}

.mobile body.home .home-teaser .teaser-content p strong {
  font-size: 30px;
  font-size: 2.5rem;
}

.mobile body.page-template-page-program #content {
  padding-top: 0;
}

.mobile nav.eventFilters {
  display: block;
}

.mobile nav.eventFilters ul {
  display: block;
}

.mobile nav.eventFilters ul li {
  display: block;
  width: 100%;
  height: auto;
  background: none;
  padding: 0;
  float: none;
}

.mobile nav.eventFilters ul li a:link, .mobile nav.eventFilters ul li a:visited {
  font-size: 19.2px;
  font-size: 1.6rem;
  padding: 3px 0;
  display: block;
}

.mobile nav.eventFilters ul li span {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mobile nav.eventFilters .search-form {
  position: relative;
  right: auto;
  float: none;
  left: 0;
}

.mobile #eventOrder {
  display: none;
}

.mobile div.filters-children {
  margin-top: 10px;
}

.mobile div.filters-children ul li i {
  display: inline;
  font-style: normal;
}

.mobile div.filters-children ul li em {
  display: none;
}

.mobile #eventList {
  margin-top: 20px;
}

.mobile img.singlePhoto {
  float: none;
  width: 100%;
}

.mobile .eventbox {
  height: auto;
}

.mobile footer.site-footer .widget {
  width: 100%;
  float: none;
  padding: 0 20px;
}

.tablet body.single-event .main-col {
  padding-left: 20px;
}

.tablet.portrait .site-description {
  display: none;
}

.tablet.portrait .home-teaser {
  height: 160px;
  padding: 0;
  max-height: none;
}

.tablet.portrait .home-teaser#teaser-twitter .teaser-head {
  padding: 10px 10px 20px 10px;
  width: 100%;
  height: auto;
}

.tablet.portrait .home-teaser#teaser-twitter .teaser-container {
  padding-top: 0;
}

.tablet.portrait .home-teaser#teaser-twitter .teaser-content {
  padding: 0;
}

.tablet.portrait .home-teaser#teaser-twitter ul li {
  overflow: hidden;
  display: none;
}

.tablet.portrait .home-teaser#teaser-twitter ul li:first-child {
  display: block;
  float: none;
  width: 100%;
}

.tablet.portrait .home-teaser .teaser-container {
  background-size: auto 100%;
  padding-top: 20px;
}

.tablet.portrait .home-teaser .teaser-content {
  padding: 20px;
}

.tablet.portrait .home-teaser .teaser-content img {
  max-width: 20%;
}
