/* FONTS */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,800);
@import url(https://fonts.googleapis.com/css?family=Satisfy);
.size_08 { font-size:0.8em; }
.size_09 { font-size: 0.9em; }
.size_10 { font-size: 1.0em; }
.size_12 { font-size: 1.2em; }
.size_14 { font-size: 1.4em; }
.size_16 { font-size: 1.6em; }
.size_18 { font-size: 1.8em; }
.size_2 { font-size: 2em; }
.size_22 { font-size: 2.2em; }
.size_24 { font-size: 2.4em; }
.size_28 { font-size: 2.8em; }
.size_35 { font-size: 3.5em; }
.size_4 { font-size: 4em; }


* { outline:none; }
img { border:0; }
h1, h2, h3, h4, h5, h6, p { margin:0 0 10px; padding:0; }
h1 { font-size:20px; }
h2 { font-size:18px; }
h3 { font-size:16px; }
h4 { font-size:14px; }
h5 { font-size:13px; }
h6 { font-size:12px; }
a { color:#fff; -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
a:hover { color:#eee; }
body, html { width:100%; height:100%; }
#small, #medium { overflow-x:hidden; }
html { background:#000 no-repeat center center; height:100%; }
body { background:none;margin:0;font:12px verdana,arial,helvetica; color:#fff; text-align:center; min-height:100%; }
.clear { clear:both; }
.ui-loader { display:none; }
html.openMenu, .openMenu body { overflow-y:hidden; }
#body { position:relative; left:0; -webkit-transition: all 800ms ease-in-out 0s; -moz-transition: all 800ms ease-in-out 0s; -o-transition: all 800ms ease-in-out 0s; -ms-transition: all 800ms ease-in-out 0s; transition: all 800ms ease-in-out 0s; }
@media only screen and (max-device-width: 480px) {
   body { -webkit-text-size-adjust:100%; -webkit-overflow-scrolling: touch }
}



/*!
Video.js Default Styles (http://videojs.com)
Version 4.11.4
Create your own skin at http://designer.videojs.com
*/
/* SKIN
================================================================================
The main class name for all skin-specific styles. To make your own skin,
replace all occurrences of 'vjs-default-skin' with a new name. Then add your new
skin name to your video tag instead of the default skin.
e.g. <video class="video-js my-skin-name">
*/
.vjs-default-skin {
  color: #cccccc;
}
/* Custom Icon Font
--------------------------------------------------------------------------------
The control icons are from a custom font. Each icon corresponds to a character
(e.g. "\e001"). Font icons allow for easy scaling and coloring of icons.
*/
@font-face {
  font-family: 'VideoJS';
  src: url('font/vjs.eot');
  src: url('font/vjs.eot?#iefix') format('embedded-opentype'), url('font/vjs.woff') format('woff'), url('font/vjs.ttf') format('truetype'), url('font/vjs.svg#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Base UI Component Classes
--------------------------------------------------------------------------------
*/
/* Slider - used for Volume bar and Seek bar */
.vjs-default-skin .vjs-slider {
  /* Replace browser focus highlight with handle highlight */
  outline: 0;
  position: relative;
  cursor: pointer;
  padding: 0;
  /* background-color-with-alpha */
  background-color: #333333;
  background-color: rgba(51, 51, 51, 0.9);
}
.vjs-default-skin .vjs-slider:focus {
  /* box-shadow */
  -webkit-box-shadow: 0 0 2em #ffffff;
  -moz-box-shadow: 0 0 2em #ffffff;
  box-shadow: 0 0 2em #ffffff;
}
.vjs-default-skin .vjs-slider-handle {
  position: absolute;
  /* Needed for IE6 */
  left: 0;
  top: 0;
}
.vjs-default-skin .vjs-slider-handle:before {
  content: "\e009";
  font-family: VideoJS;
  font-size: 1em;
  line-height: 1;
  text-align: center;
  text-shadow: 0em 0em 1em #fff;
  position: absolute;
  top: 0;
  left: 0;
  /* Rotate the square icon to make a diamond */
  /* transform */
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* Control Bar
--------------------------------------------------------------------------------
The default control bar that is a container for most of the controls.
*/
.vjs-default-skin .vjs-control-bar {
  /* Start hidden */
  display: none;
  position: absolute;
  /* Place control bar at the bottom of the player box/video.
     If you want more margin below the control bar, add more height. */
  bottom: 0;
  /* Use left/right to stretch to 100% width of player div */
  left: 0;
  right: 0;
  /* Height includes any margin you want above or below control items */
  height: 3.0em;
  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7);
}
/* Show the control bar only once the video has started playing */
.vjs-default-skin.vjs-has-started .vjs-control-bar {
  display: block;
  /* Visibility needed to make sure things hide in older browsers too. */

  visibility: visible;
  opacity: 1;
  /* transition */
  -webkit-transition: visibility 0.1s, opacity 0.1s;
  -moz-transition: visibility 0.1s, opacity 0.1s;
  -o-transition: visibility 0.1s, opacity 0.1s;
  transition: visibility 0.1s, opacity 0.1s;
}
/* Hide the control bar when the video is playing and the user is inactive  */
.vjs-default-skin.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  display: block;
  visibility: hidden;
  opacity: 0;
  /* transition */
  -webkit-transition: visibility 1s, opacity 1s;
  -moz-transition: visibility 1s, opacity 1s;
  -o-transition: visibility 1s, opacity 1s;
  transition: visibility 1s, opacity 1s;
}
.vjs-default-skin.vjs-controls-disabled .vjs-control-bar {
  display: none;
}
.vjs-default-skin.vjs-using-native-controls .vjs-control-bar {
  display: none;
}
/* The control bar shouldn't show after an error */
.vjs-default-skin.vjs-error .vjs-control-bar {
  display: none;
}
/* Don't hide the control bar if it's audio */
.vjs-audio.vjs-default-skin.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
}
/* IE8 is flakey with fonts, and you have to change the actual content to force
fonts to show/hide properly.
  - "\9" IE8 hack didn't work for this
  - Found in XP IE8 from http://modern.ie. Does not show up in "IE8 mode" in IE9
*/
@media \0screen {
  .vjs-default-skin.vjs-user-inactive.vjs-playing .vjs-control-bar :before {
    content: "";
  }
}
/* General styles for individual controls. */
.vjs-default-skin .vjs-control {
  outline: none;
  position: relative;
  float: left;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 3.0em;
  width: 4em;
}
/* Font button icons */
.vjs-default-skin .vjs-control:before {
  font-family: VideoJS;
  font-size: 1.5em;
  line-height: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
/* Replacement for focus outline */
.vjs-default-skin .vjs-control:focus:before,
.vjs-default-skin .vjs-control:hover:before {
  text-shadow: 0em 0em 1em #ffffff;
}
.vjs-default-skin .vjs-control:focus {
  /*  outline: 0; */
  /* keyboard-only users cannot see the focus on several of the UI elements when
  this is set to 0 */

}
/* Hide control text visually, but have it available for screenreaders */
.vjs-default-skin .vjs-control-text {
  /* hide-visually */
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* Play/Pause
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-play-control {
  width: 5em;
  cursor: pointer;
}
.vjs-default-skin .vjs-play-control:before {
  content: "\e001";
}
.vjs-default-skin.vjs-playing .vjs-play-control:before {
  content: "\e002";
}
/* Playback toggle
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-playback-rate .vjs-playback-rate-value {
  font-size: 1.5em;
  line-height: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.vjs-default-skin .vjs-playback-rate.vjs-menu-button .vjs-menu .vjs-menu-content {
  width: 4em;
  left: -2em;
  list-style: none;
}
/* Volume/Mute
-------------------------------------------------------------------------------- */
.vjs-default-skin .vjs-mute-control,
.vjs-default-skin .vjs-volume-menu-button {
  cursor: pointer;
  float: right;
}
.vjs-default-skin .vjs-mute-control:before,
.vjs-default-skin .vjs-volume-menu-button:before {
  content: "\e006";
}
.vjs-default-skin .vjs-mute-control.vjs-vol-0:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-0:before {
  content: "\e003";
}
.vjs-default-skin .vjs-mute-control.vjs-vol-1:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-1:before {
  content: "\e004";
}
.vjs-default-skin .vjs-mute-control.vjs-vol-2:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-2:before {
  content: "\e005";
}
.vjs-default-skin .vjs-volume-control {
  width: 5em;
  float: right;
}
.vjs-default-skin .vjs-volume-bar {
  width: 5em;
  height: 0.6em;
  margin: 1.1em auto 0;
}
.vjs-default-skin .vjs-volume-level {
  position: absolute;
  top: 0;
  left: 0;
  height: 0.5em;
  /* assuming volume starts at 1.0 */

  width: 100%;
  background: #66a8cc url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAP0lEQVQIHWWMAQoAIAgDR/QJ/Ub//04+w7ZICBwcOg5FZi5iBB82AGzixEglJrd4TVK5XUJpskSTEvpdFzX9AB2pGziSQcvAAAAAAElFTkSuQmCC) -50% 0 repeat;
}
.vjs-default-skin .vjs-volume-bar .vjs-volume-handle {
  width: 0.5em;
  height: 0.5em;
  /* Assumes volume starts at 1.0. If you change the size of the
     handle relative to the volume bar, you'll need to update this value
     too. */

  left: 4.5em;
}
.vjs-default-skin .vjs-volume-handle:before {
  font-size: 0.9em;
  top: -0.2em;
  left: -0.2em;
  width: 1em;
  height: 1em;
}
/* The volume menu button is like menu buttons (captions/subtitles) but works
    a little differently. It needs to be possible to tab to the volume slider
    without hitting space bar on the menu button. To do this we're not using
    display:none to hide the slider menu by default, and instead setting the
    width and height to zero. */
.vjs-default-skin .vjs-volume-menu-button .vjs-menu {
  display: block;
  width: 0;
  height: 0;
  border-top-color: transparent;
}
.vjs-default-skin .vjs-volume-menu-button .vjs-menu .vjs-menu-content {
  height: 0;
  width: 0;
}
.vjs-default-skin .vjs-volume-menu-button:hover .vjs-menu,
.vjs-default-skin .vjs-volume-menu-button .vjs-menu.vjs-lock-showing {
  border-top-color: rgba(7, 40, 50, 0.5);
  /* Same as ul background */

}
.vjs-default-skin .vjs-volume-menu-button:hover .vjs-menu .vjs-menu-content,
.vjs-default-skin .vjs-volume-menu-button .vjs-menu.vjs-lock-showing .vjs-menu-content {
  height: 2.9em;
  width: 10em;
}
/* Progress
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-progress-control {
  position: absolute;
  left: 0;
  right: 0;
  width: auto;
  font-size: 0.3em;
  height: 1em;
  /* Set above the rest of the controls. */
  top: -1em;
  /* Shrink the bar slower than it grows. */
  /* transition */
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
/* On hover, make the progress bar grow to something that's more clickable.
    This simply changes the overall font for the progress bar, and this
    updates both the em-based widths and heights, as wells as the icon font */
.vjs-default-skin:hover .vjs-progress-control {
  font-size: .9em;
  /* Even though we're not changing the top/height, we need to include them in
      the transition so they're handled correctly. */

  /* transition */
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
/* Box containing play and load progresses. Also acts as seek scrubber. */
.vjs-default-skin .vjs-progress-holder {
  height: 100%;
}
/* Progress Bars */
.vjs-default-skin .vjs-progress-holder .vjs-play-progress,
.vjs-default-skin .vjs-progress-holder .vjs-load-progress,
.vjs-default-skin .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  /* updated by javascript during playback */

  width: 0;
  /* Needed for IE6 */
  left: 0;
  top: 0;
}
.vjs-default-skin .vjs-play-progress {
  /*
    Using a data URI to create the white diagonal lines with a transparent
      background. Surprisingly works in IE8.
      Created using http://www.patternify.com
    Changing the first color value will change the bar color.
    Also using a paralax effect to make the lines move backwards.
      The -50% left position makes that happen.
  */

  background: #66a8cc url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAP0lEQVQIHWWMAQoAIAgDR/QJ/Ub//04+w7ZICBwcOg5FZi5iBB82AGzixEglJrd4TVK5XUJpskSTEvpdFzX9AB2pGziSQcvAAAAAAElFTkSuQmCC) -50% 0 repeat;
}
.vjs-default-skin .vjs-load-progress {
  background: #646464 /* IE8- Fallback */;
  background: rgba(255, 255, 255, 0.2);
}
/* there are child elements of the load progress bar that represent the
   specific time ranges that have been buffered */
.vjs-default-skin .vjs-load-progress div {
  background: #787878 /* IE8- Fallback */;
  background: rgba(255, 255, 255, 0.1);
}
.vjs-default-skin .vjs-seek-handle {
  width: 1.5em;
  height: 100%;
}
.vjs-default-skin .vjs-seek-handle:before {
  padding-top: 0.1em /* Minor adjustment */;
}
/* Live Mode
--------------------------------------------------------------------------------
*/
.vjs-default-skin.vjs-live .vjs-time-controls,
.vjs-default-skin.vjs-live .vjs-time-divider,
.vjs-default-skin.vjs-live .vjs-progress-control {
  display: none;
}
.vjs-default-skin.vjs-live .vjs-live-display {
  display: block;
}
/* Live Display
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-live-display {
  display: none;
  font-size: 1em;
  line-height: 3em;
}
/* Time Display
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-time-controls {
  font-size: 1em;
  /* Align vertically by making the line height the same as the control bar */
  line-height: 3em;
}
.vjs-default-skin .vjs-current-time {
  float: left;
}
.vjs-default-skin .vjs-duration {
  float: left;
}
/* Remaining time is in the HTML, but not included in default design */
.vjs-default-skin .vjs-remaining-time {
  display: none;
  float: left;
}
.vjs-time-divider {
  float: left;
  line-height: 3em;
}
/* Fullscreen
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-fullscreen-control {
  width: 3.8em;
  cursor: pointer;
  float: right;
}
.vjs-default-skin .vjs-fullscreen-control:before {
  content: "\e000";
}
/* Switch to the exit icon when the player is in fullscreen */
.vjs-default-skin.vjs-fullscreen .vjs-fullscreen-control:before {
  content: "\e00b";
}
/* Big Play Button (play button at start)
--------------------------------------------------------------------------------
Positioning of the play button in the center or other corners can be done more
easily in the skin designer. http://designer.videojs.com/
*/
.vjs-default-skin .vjs-big-play-button {
  left: 0.5em;
  top: 0.5em;
  font-size: 3em;
  display: block;
  z-index: 2;
  position: absolute;
  width: 4em;
  height: 2.6em;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  opacity: 1;
  /* Need a slightly gray bg so it can be seen on black backgrounds */
  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7);
  border: 0.1em solid #3b4249;
  /* border-radius */
  -webkit-border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  border-radius: 0.8em;
  /* box-shadow */
  -webkit-box-shadow: 0px 0px 1em rgba(255, 255, 255, 0.25);
  -moz-box-shadow: 0px 0px 1em rgba(255, 255, 255, 0.25);
  box-shadow: 0px 0px 1em rgba(255, 255, 255, 0.25);
  /* transition */
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
/* Optionally center */
.vjs-default-skin.vjs-big-play-centered .vjs-big-play-button {
  /* Center it horizontally */
  left: 50%;
  margin-left: -2.1em;
  /* Center it vertically */
  top: 50%;
  margin-top: -1.4000000000000001em;
}
/* Hide if controls are disabled */
.vjs-default-skin.vjs-controls-disabled .vjs-big-play-button {
  display: none;
}
/* Hide when video starts playing */
.vjs-default-skin.vjs-has-started .vjs-big-play-button {
  display: none;
}
/* Hide on mobile devices. Remove when we stop using native controls
    by default on mobile  */
.vjs-default-skin.vjs-using-native-controls .vjs-big-play-button {
  display: none;
}
.vjs-default-skin:hover .vjs-big-play-button,
.vjs-default-skin .vjs-big-play-button:focus {
  outline: 0;
  border-color: #fff;
  /* IE8 needs a non-glow hover state */
  background-color: #505050;
  background-color: rgba(50, 50, 50, 0.75);
  /* box-shadow */
  -webkit-box-shadow: 0 0 3em #ffffff;
  -moz-box-shadow: 0 0 3em #ffffff;
  box-shadow: 0 0 3em #ffffff;
  /* transition */
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}
.vjs-default-skin .vjs-big-play-button:before {
  content: "\e001";
  font-family: VideoJS;
  /* In order to center the play icon vertically we need to set the line height
     to the same as the button height */

  line-height: 2.6em;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center /* Needed for IE8 */;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
.vjs-error .vjs-big-play-button {
  display: none;
}
/* Error Display
--------------------------------------------------------------------------------
*/
.vjs-error-display {
  display: none;
}
.vjs-error .vjs-error-display {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.vjs-error .vjs-error-display:before {
  content: 'X';
  font-family: Arial;
  font-size: 4em;
  color: #666666;
  /* In order to center the play icon vertically we need to set the line height
     to the same as the button height */

  line-height: 1;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center /* Needed for IE8 */;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.5em;
  width: 100%;
}
.vjs-error-display div {
  position: absolute;
  bottom: 1em;
  right: 0;
  left: 0;
  font-size: 1.4em;
  text-align: center;
  padding: 3px;
  background: #000000;
  background: rgba(0, 0, 0, 0.5);
}
.vjs-error-display a,
.vjs-error-display a:visited {
  color: #F4A460;
}
/* Loading Spinner
--------------------------------------------------------------------------------
*/
.vjs-loading-spinner {
  /* Should be hidden by default */
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 4em;
  line-height: 1;
  width: 1em;
  height: 1em;
  margin-left: -0.5em;
  margin-top: -0.5em;
  opacity: 0.75;
}
/* Show the spinner when waiting for data and seeking to a new time */
.vjs-waiting .vjs-loading-spinner,
.vjs-seeking .vjs-loading-spinner {
  display: block;
  /* only animate when showing because it can be processor heavy */
  /* animation */
  -webkit-animation: spin 1.5s infinite linear;
  -moz-animation: spin 1.5s infinite linear;
  -o-animation: spin 1.5s infinite linear;
  animation: spin 1.5s infinite linear;
}
/* Errors are unrecoverable without user interaction so hide the spinner */
.vjs-error .vjs-loading-spinner {
  display: none;
  /* ensure animation doesn't continue while hidden */
  /* animation */
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
  animation: none;
}
.vjs-default-skin .vjs-loading-spinner:before {
  content: "\e01e";
  font-family: VideoJS;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  text-align: center;
  text-shadow: 0em 0em 0.1em #000;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* Menu Buttons (Captions/Subtitles/etc.)
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-menu-button {
  float: right;
  cursor: pointer;
}
.vjs-default-skin .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0em;
  /* (Width of vjs-menu - width of button) / 2 */

  width: 0em;
  height: 0em;
  margin-bottom: 3em;
  border-left: 2em solid transparent;
  border-right: 2em solid transparent;
  border-top: 1.55em solid #000000;
  /* Same width top as ul bottom */

  border-top-color: rgba(7, 40, 50, 0.5);
  /* Same as ul background */

}
/* Button Pop-up Menu */
.vjs-default-skin .vjs-menu-button .vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 10em;
  bottom: 1.5em;
  /* Same bottom as vjs-menu border-top */

  max-height: 15em;
  overflow: auto;
  left: -5em;
  /* Width of menu - width of button / 2 */

  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7);
  /* box-shadow */
  -webkit-box-shadow: -0.2em -0.2em 0.3em rgba(255, 255, 255, 0.2);
  -moz-box-shadow: -0.2em -0.2em 0.3em rgba(255, 255, 255, 0.2);
  box-shadow: -0.2em -0.2em 0.3em rgba(255, 255, 255, 0.2);
}
.vjs-default-skin .vjs-menu-button:hover .vjs-control-content .vjs-menu,
.vjs-default-skin .vjs-control-content .vjs-menu.vjs-lock-showing {
  display: block;
}
.vjs-default-skin .vjs-menu-button ul li {
  list-style: none;
  margin: 0;
  padding: 0.3em 0 0.3em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}
.vjs-default-skin .vjs-menu-button ul li.vjs-selected {
  background-color: #000;
}
.vjs-default-skin .vjs-menu-button ul li:focus,
.vjs-default-skin .vjs-menu-button ul li:hover,
.vjs-default-skin .vjs-menu-button ul li.vjs-selected:focus,
.vjs-default-skin .vjs-menu-button ul li.vjs-selected:hover {
  outline: 0;
  color: #111;
  /* background-color-with-alpha */
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.75);
  /* box-shadow */
  -webkit-box-shadow: 0 0 1em #ffffff;
  -moz-box-shadow: 0 0 1em #ffffff;
  box-shadow: 0 0 1em #ffffff;
}
.vjs-default-skin .vjs-menu-button ul li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default;
}
/* Subtitles Button */
.vjs-default-skin .vjs-subtitles-button:before {
  content: "\e00c";
}
/* Captions Button */
.vjs-default-skin .vjs-captions-button:before {
  content: "\e008";
}
/* Chapters Button */
.vjs-default-skin .vjs-chapters-button:before {
  content: "\e00c";
}
.vjs-default-skin .vjs-chapters-button.vjs-menu-button .vjs-menu .vjs-menu-content {
  width: 24em;
  left: -12em;
}
/* Replacement for focus outline */
.vjs-default-skin .vjs-captions-button:focus .vjs-control-content:before,
.vjs-default-skin .vjs-captions-button:hover .vjs-control-content:before {
  /* box-shadow */
  -webkit-box-shadow: 0 0 1em #ffffff;
  -moz-box-shadow: 0 0 1em #ffffff;
  box-shadow: 0 0 1em #ffffff;
}
/*
REQUIRED STYLES (be careful overriding)
================================================================================
When loading the player, the video tag is replaced with a DIV,
that will hold the video tag or object tag for other playback methods.
The div contains the video playback element (Flash or HTML5) and controls,
and sets the width and height of the video.

** If you want to add some kind of border/padding (e.g. a frame), or special
positioning, use another containing element. Otherwise you risk messing up
control positioning and full window mode. **
*/
.video-js {
  background-color: #000;
  position: relative;
  padding: 0;
  /* Start with 10px for base font size so other dimensions can be em based and
     easily calculable. */

  font-size: 10px;
  /* Allow poster to be vertically aligned. */

  vertical-align: middle;
  /*  display: table-cell; */
  /*This works in Safari but not Firefox.*/

  /* Provide some basic defaults for fonts */

  font-weight: normal;
  font-style: normal;
  /* Avoiding helvetica: issue #376 */

  font-family: Arial, sans-serif;
  /* Turn off user selection (text highlighting) by default.
     The majority of player components will not be text blocks.
     Text areas will need to turn user selection back on. */

  /* user-select */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Playback technology elements expand to the width/height of the containing div
    <video> or <object> */
.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Fix for Firefox 9 fullscreen (only if it is enabled). Not needed when
   checking fullScreenEnabled. */
.video-js:-moz-full-screen {
  position: absolute;
}
/* Fullscreen Styles */
body.vjs-full-window {
  padding: 0;
  margin: 0;
  height: 100%;
  /* Fix for IE6 full-window. http://www.cssplay.co.uk/layouts/fixed.html */
  overflow-y: auto;
}
.video-js.vjs-fullscreen {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  /* IE6 full-window (underscore hack) */
  _position: absolute;
}
.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}
.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}
/* Poster Styles */
.vjs-poster {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.vjs-poster img {
  display: block;
  margin: 0 auto;
  max-height: 100%;
  padding: 0;
  width: 100%;
}
/* Hide the poster after the video has started playing */
.video-js.vjs-has-started .vjs-poster {
  display: none;
}
/* Don't hide the poster if we're playing audio */
.video-js.vjs-audio.vjs-has-started .vjs-poster {
  display: block;
}
/* Hide the poster when controls are disabled because it's clickable
    and the native poster can take over */
.video-js.vjs-controls-disabled .vjs-poster {
  display: none;
}
/* Hide the poster when native controls are used otherwise it covers them */
.video-js.vjs-using-native-controls .vjs-poster {
  display: none;
}
/* Text Track Styles */
/* Overall track holder for both captions and subtitles */
.video-js .vjs-text-track-display {
  text-align: center;
  position: absolute;
  bottom: 4em;
  /* Leave padding on left and right */
  left: 1em;
  right: 1em;
}
/* Move captions down when controls aren't being shown */
.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}
/* Individual tracks */
.video-js .vjs-text-track {
  display: none;
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em;
  /* Transparent black background, or fallback to all black (oldIE) */
  /* background-color-with-alpha */
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.5);
}
.video-js .vjs-subtitles {
  color: #ffffff /* Subtitles are white */;
}
.video-js .vjs-captions {
  color: #ffcc66 /* Captions are yellow */;
}
.vjs-tt-cue {
  display: block;
}
/* Increase font-size when fullscreen */
.video-js.vjs-fullscreen .vjs-text-track {
  font-size: 3em;
}
/* Hide disabled or unsupported controls */
.vjs-default-skin .vjs-hidden {
  display: none;
}
.vjs-lock-showing {
  display: block !important;
  opacity: 1;
  visibility: visible;
}
/*  In IE8 w/ no JavaScript (no HTML5 shim), the video tag doesn't register.
    The .video-js classname on the video tag also isn't considered.
    This optional paragraph inside the video tag can provide a message to users
    about what's required to play video. */
.vjs-no-js {
  padding: 20px;
  color: #ccc;
  background-color: #333;
  font-size: 18px;
  font-family: Arial, sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0px auto;
}
.vjs-no-js a,
.vjs-no-js a:visited {
  color: #F4A460;
}
/* -----------------------------------------------------------------------------
The original source of this file lives at
https://github.com/videojs/video.js/blob/master/src/css/video-js.less */




/* WIDGETS CSS */
p { padding:0; margin:0 0 1em; }

h3.widTitle { text-align:center; font-size:25px; padding:35px 0 25px; margin:0; text-transform:uppercase; font-family:Verdana,Helvetica,Arial; }
#small h3.widTitle { font-size:21px; }

h3.LinkTitle { text-align:center; font-family:Verdana,Helvetica,Arial; font-size:16px; margin-top:65px; text-transform:uppercase; font-weight:600; letter-spacing:4px; opacity:0.5;-moz-opacity:0.5;filter:Alpha(Opacity=50); -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
#small h3.LinkTitle { opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); }
.traitTitle { border-bottom:1px solid #fff; display:block; width:35px; margin:8px auto 12px; opacity:0.5;-moz-opacity:0.5;filter:Alpha(Opacity=50); -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
.links .texte { line-height:22px; opacity:0.5;-moz-opacity:0.5;filter:Alpha(Opacity=50); -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
#small .links .texte { opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); }
.links:hover h3.LinkTitle, .links:hover .traitTitle, .links:hover .texte { opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); }
.links:hover .traitTitle { width:200px; }
.links .texte a { -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
.links .texte a:hover { opacity:0.8;-moz-opacity:0.8;filter:Alpha(Opacity=80); }

.textegallery { position:relative; }
.gallery { position:relative; display:block; margin-bottom:30px; }
.gallery2 { position:relative; display:block; margin:0 0 0 318px; padding-top:41%; }
.gallery3 { width:100%; height:100%; background:black no-repeat center center; background-size:cover; position:absolute; top:0; left:0; }
.galleryNav {  display:none; visibility:hidden; height:72px; position:relative; text-align:left; }
.galleryNav2 {margin:5px 62px 0; overflow:hidden; }
.galleryNav3 { width:50000px; position:relative; top:0; left:0; }
.galleryNav3 a.photos { display:inline-block; width:115px; height:72px; margin-right:10px; background:no-repeat center center; background-size:cover; opacity:0.5;-moz-opacity:0.5;filter:Alpha(Opacity=50); -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
.galleryNav3 a.photoSelect, .galleryNav2 .photos:hover { opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); }
.gallery .next, .textegallery .next { position:absolute; bottom:74px; left:230px; }
.gallery .prev, .textegallery .prev { position:absolute; bottom:5px; left:230px; }
.gallery .next img, .gallery .prev img, .textegallery .next img, .textegallery .prev img { position:relative; left:0; height:36px; -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
.gallery .next:hover img, .textegallery .next:hover img { opacity:0.8;-moz-opacity:0.8;filter:Alpha(Opacity=80); left:5px; }
.gallery .prev:hover img, .textegallery .prev:hover img { opacity:0.8;-moz-opacity:0.8;filter:Alpha(Opacity=80); left:-5px; }
.gallery .separe, .textegallery .separe { position:absolute; bottom:60px; width:190px; left:212px; height:1px; background:#e52427; }
.reference { position:absolute; top:0; left:-10px; width:306px; color:#ccc; font-size:20px; line-height:23px; text-align:left; letter-spacing:-0.128em; }
.reference .title { font-family:'Satisfy', cursive  !important; font-size:50px; line-height:60px; font-weight:normal; display:block; margin-bottom:20px; color:#fff; letter-spacing:0; }
.reference .title span { display:block; text-transform:uppercase; font-family:'Open Sans', sans-serif  !important; line-height:43px; font-weight:bold; }


.texte, .textephoto, .phototexte { text-align:left; font-size:15px; font-family:'Open Sans', sans-serif  !important; margin-bottom:25px; }
#small .texte, #small .textephoto, #small .phototexte { font-size:13px; }

.phototexte .photoLeft { float:left;display:block;margin-right:15px;margin-bottom:10px;width:33%; }
.textephoto .photoRight { float:right;display:block;margin-left:15px;margin-bottom:10px;width:33%; }
.photoLeft2, .photoRight2 { display:inline-block; width:auto; margin:0 auto; border:3px solid #483f2e; max-width:100%; }
.photoLeft3, .photoRight3 { display:inline-block; width:auto; margin:3px; border:3px solid #282018; }
.photoLeft4, .photoRight4 { display:inline-block; width:auto; margin:3px 3px -3px; overflow:hidden; }
.photoLeft4 img, .photoRight4 img { display:block; width:100%; }
.photoLeft4 a, .photoRight4 a { display:block; }
#small .phototexte .photoLeft, #small .textephoto .photoRight { float:none; width:100%; max-width:100%; margin-left:0; margin-right:0; }

.video { margin-bottom:30px; position:relative; }
.video a { text-decoration:none; display:table; width:100%; }
#small.verti .video a { display:block; }
.video .video1 { position:relative; display:table-cell; width:250px; border:1px solid #fff; background:rgb(5,7,16); vertical-align:middle; }
#small.verti .video .video1 { display:block; width:80%; margin:0 auto; }
.video .img { position:relative; display:block; padding-top:66%; background:no-repeat center center; background-size:cover; opacity:0.7;-moz-opacity:0.7;filter:Alpha(Opacity=70); -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
#small.verti .video .img { top:0; left:0; right:0; bottom:0; }
.video a .img { opacity:0.7;-moz-opacity:0.7;filter:Alpha(Opacity=70); -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
.video .play, .video .plus { position:absolute; top:50%; left:50%; width:40px; height:60px; margin-left:-20px; margin-top:-30px; background:url(../images/play.png) no-repeat center center; background-size:contain; }
.video .plus { background-image:url(../images/plus.png); }
.video a:hover .img { opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); }
.video .video2 { display:table-cell; vertical-align:middle; padding-left:15px; }
#small.verti .video .video2 { display:block; margin:10px auto 35px; padding:0; }
.video .video3 { position:relative; margin:0 35px; text-align:center; display:block; }
.video .video3c { display:block; }
#large .video .video3c { opacity:0.7;-moz-opacity:0.7;filter:Alpha(Opacity=70); -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
#large .video a:hover .video3c { opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); }
.video .video3 img { height:25px; }
.video .video3a { position:absolute; top:0; left:-35px; opacity:0.7;-moz-opacity:0.7;filter:Alpha(Opacity=70); }
.video .video3b { position:absolute; top:0; right:-35px; opacity:0.7;-moz-opacity:0.7;filter:Alpha(Opacity=70); }
.video .videoLink { display:block; text-align:center; margin-top:12px; opacity:0.5;-moz-opacity:0.5;filter:Alpha(Opacity=50); }



.photo .label, .photo .photoLeft .label, .photo .photoRight .label, .photophoto .label, .photophoto2 .label, .photophoto3 .label {
  display:block; font-family:Verdana,Helvetica,Arial; font-size:14px; font-style:normal; font-weight:bold; text-align:left; margin-left:10px;
}
.photo, .photophoto, .photophoto2, .photophoto3 { position:relative; margin-bottom:30px; }
.photophoto .photo1, .photophoto .photo2 { position:relative; float:left; width:49%; }
.photophoto2 .photo1, .photophoto2 .photo2, .photophoto3 .photo1, .photophoto3 .photo2 { position:relative; float:left; width:33%; }
.photophoto2 .photo2, .photophoto3 .photo1 { width:65%; }
.photophoto .photo2, .photophoto2 .photo2, .photophoto3 .photo2 { left:2%; }
.photo .photo4, .photophoto .photo4, .photophoto2 .photo4, .photophoto3 .photo4 { position:relative; display:block; }
.photo a, .photophoto a, .photophoto2 a, .photophoto3 a { display:block; }
.photo img, .photophoto img, .photophoto2 img, .photophoto3 img { width:100%; }
.photophoto2 img, .photophoto3 img { height:270px; }
#small .photophoto2 img, #small .photophoto3 img { height:146px; }
.photo .img, .photophoto .img, .photophoto2 .img, .photophoto3 .img { position:absolute; top:9px; left:9px; right:9px; bottom:9px; background:no-repeat center center; background-size:cover; }
.photo .img { left:19px; top:19px; right:19px; bottom:19px; }
#medium.verti .photo .img { left:15px; top:14px; right:14px; bottom:17px; }
#small .photo .img { top:10px; left:10px; right:10px; bottom:13px; }
#small .photophoto .img { top:5px; left:5px; right:5px; bottom:8px; }
.photophoto2 .photo1 .img, .photophoto3 .photo2 .img { top:10px; left:11px; right:10px; bottom:13px; }
#small .photophoto2 .photo1 .img, #small .photophoto3 .photo2 .img { top:6px; left:6px; right:6px; bottom:9px; }
.photophoto2 .photo2 .img, .photophoto3 .photo1 .img { top:13px; bottom:16px; left:13px; right:13px; }
#small .photophoto2 .photo2 .img, #small .photophoto3 .photo1 .img { top:7px; bottom:11px; left:7px; right:7px; }
.photo a .img, .photophoto a .img, .photophoto2 a .img, .photophoto3 a .img { opacity:0.7;-moz-opacity:0.7;filter:Alpha(Opacity=70); -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
.photo a:hover .img, .photophoto a:hover .img, .photophoto2 a:hover .img, .photophoto3 a:hover .img { opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); }
#small .photo .img, #small .photophoto .img, #small .photophoto2 .img, #small .photophoto3 .img { opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); }


.textevideo { margin-bottom:30px; }
.textevideo .texte { width:33%; float:left; font-size:15px; font-family:'Open Sans', sans-serif  !important; line-height:1.2em; }
.textevideo .video { width:66%; float:left; position:relative; left:1%; overflow:hidden; height:0; padding-top:36%; }
.textevideo .video iframe { position:absolute; left:0; top:0; border:0; width:100%; height:100%; }
.textevideo h2 { margin:0 0 7px; line-height:32px; text-transform:uppercase; }





/* COMMUN */
#logoPL { margin-top:40px; width:200px; letter-spacing:1px; z-index:10; text-decoration:none; text-align:center; font-size:11px; font-family:'Open Sans', sans-serif  !important; text-transform:uppercase; line-height:11px;color:#fff; padding-bottom:50px; -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
.page_accueil #logoPL { position:fixed; bottom:18px; left:50%; margin-left:-100px; margin-top:0; padding-bottom:0; }
#logoPL:hover { letter-spacing:2px; }
#small #logoPL { display:none; }
#medium #logoPL { -webkit-transform: translateX(40px); -moz-transform: translateX(40px); -o-transform: translateX(40px); -ms-transform: translateX(40px); transform: translateX(40px); }

#degrade { position:fixed; top:0; left:0; width:100%; height:192px; background:url(../images/degrade2.png) repeat-x top left; }
#small #degrade { z-index:7; height:90px; background-size:auto 100%; }

#loading { position:fixed; top:0; left:0; width:100%; height:100%; background:#000 url(../images/loading.jpg) no-repeat center center; z-index:199; font-family:'Open Sans', sans-serif  !important; font-size:15px; text-transform:uppercase; color:#fff; opacity:0;-moz-opacity:0;filter:Alpha(Opacity=0); -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
#small #loading { font-size:13px; background-size:auto 140%; }
#loading.show { opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); }
#loading2 { position:fixed; top:50%; left:50%; line-height:20px; letter-spacing:4px; width:600px; margin-left:-300px; margin-top:-110px; text-align:center; color:#fff; font-weight:100; }

/*#content { position: relative; width: 100%; height: 100%; -webkit-perspective: 1200px; -moz-perspective: 1200px; -o-perspective: 1200px; -ms-perspective: 1200px; perspective: 1200px; }
#content .page { position:absolute; top:0; left:0; width:100%; height:100%; }*/
#back { position:fixed; top:0; left:0; width:100%; height:100%; z-index:-1; background:no-repeat center center; background-size:cover; }
#texture { position:fixed; top:0; left:0; width:100%; height:100%; z-index:-1; background:url(../images/texture.png) repeat 0 0; -webkit-animation: texture 400ms linear infinite; -moz-animation: texture 400ms linear infinite; -ms-animation: texture 400ms linear infinite; -o-animation: texture 400ms linear infinite; animation: texture 400ms linear infinite; }
@-webkit-keyframes texture { from  { url(../images/texture2.png); } to  { url(../images/texture3.png); }  } @-moz-keyframes texture { from  { url(../images/texture2.png); } to  { url(../images/texture3.png); }  } @-o-keyframes texture { from  { url(../images/texture2.png); } to  { url(../images/texture3.png); }  } @keyframes texture { from  { url(../images/texture2.png); } to  { url(../images/texture3.png); }  } 
#logo { position:fixed; top:-65px; left:50%; margin-left:-137px; z-index:8; opacity:0;-moz-opacity:0;filter:Alpha(Opacity=0); -webkit-transition: all 1000ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s; -moz-transition: all 1000ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s; -o-transition: all 1000ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s; -ms-transition: all 1000ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s; transition: all 1000ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s; }
#medium #logo { margin-left:-95px; }
#medium.verti #logo { -webkit-transform: translateX(40px); -moz-transform: translateX(40px); -o-transform: translateX(40px); -ms-transform: translateX(40px); transform: translateX(40px); }
.scroll000 #logo { top:65px; opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); }
#logo.hide { opacity:0;-moz-opacity:0;filter:Alpha(Opacity=0); top:-120px; }

#menuOverlay { position:fixed; top:0; left:0; width:100%; height:100%; z-index:-1; background:rgba(0,0,0,0.7); opacity:0;-moz-opacity:0;filter:Alpha(Opacity=0); -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
#small #menuOverlay { background:rgba(0,0,0,0.9); -webkit-transition: all 800ms ease-in-out 0s; -moz-transition: all 800ms ease-in-out 0s; -o-transition: all 800ms ease-in-out 0s; -ms-transition: all 800ms ease-in-out 0s; transition: all 800ms ease-in-out 0s; }
#large #menuOverlay { display:none; }
.open #menuOverlay { opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); z-index:7; }
#menu { position:fixed; left:-100%; top:50%; right:100%; height:220px; margin-top:-70px; z-index:9; background:#000; opacity:0;-moz-opacity:0;filter:Alpha(Opacity=0); -webkit-transition: all 800ms ease-in-out 0s; -moz-transition: all 800ms ease-in-out 0s; -o-transition: all 800ms ease-in-out 0s; -ms-transition: all 800ms ease-in-out 0s; transition: all 800ms ease-in-out 0s; }
.open #menu { left:138px; right:0; opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); }
#menuBtn { position:fixed; top:50%; left:0; width:139px; height:220px; margin-top:-70px; z-index:10; cursor:pointer; background:#e52427 url(../images/menu0.jpg) no-repeat center left; background-size:auto 100%; -webkit-transition: all 800ms ease-in-out 0s; -moz-transition: all 800ms ease-in-out 0s; -o-transition: all 800ms ease-in-out 0s; -ms-transition: all 800ms ease-in-out 0s; transition: all 800ms ease-in-out 0s; }
#medium #menuBtn { top:0; height:100%; margin-top:0; width:85px; }
#menuBtn > a { display:block; position:absolute; top:0; left:0; width:100%; height:100%; text-decoration:none; font-size:16px; color:#fff; text-transform:uppercase; font-family:'Open Sans', sans-serif  !important; }
#menuBtn span { position:absolute; top:130px; left:0; width:100%; text-align:center; letter-spacing:2px; -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
#menuBtn1 span { -webkit-transition-delay: 200ms; -o-transition-delay: 200ms; -moz-transition-delay: 200ms; transition-delay: 200ms; }
#menuBtn1 .b1, #menuBtn1 .b2, #menuBtn1 .b3 { position:absolute; left:50%; width:58px; margin-left:-29px; top:83px; height:4px; background:#fff; -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
#menuBtn1 .b2 { top:93px; -webkit-transition-delay: 200ms; -o-transition-delay: 200ms; -moz-transition-delay: 200ms; transition-delay: 200ms; }
#menuBtn1 .b3 { top:103px; -webkit-transition-delay: 400ms; -o-transition-delay: 400ms; -moz-transition-delay: 400ms; transition-delay: 400ms; }
#menuBtn2, #menuBtn3 { opacity:0;-moz-opacity:0;filter:Alpha(Opacity=0); -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; -webkit-transition-delay: 0; -o-transition-delay: 0; -moz-transition-delay: 0; transition-delay: 0; }
.browser_internet-explorer11 #menuBtn2 *, .browser_internet-explorer11 #menuBtn3 * { opacity:0;-moz-opacity:0;filter:Alpha(Opacity=0); -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; -webkit-transition-delay: 0; -o-transition-delay: 0; -moz-transition-delay: 0; transition-delay: 0; }
#menuBtn2 img, #menuBtn3 img { position:absolute; top:60px; left:50%; margin-left:-28px; }
#menuBtn3 img { margin-left:-48px; }
 
#medium.open #menuBtn3, #small.open #menuBtn3 { opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); -webkit-transition-delay: 600ms; -o-transition-delay: 600ms; -moz-transition-delay: 600ms; transition-delay: 600ms; }
#medium.open.browser_internet-explorer11 #menuBtn3 * { opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); -webkit-transition-delay: 600ms; -o-transition-delay: 600ms; -moz-transition-delay: 600ms; transition-delay: 600ms; }
#medium.open #menuBtn1 .b1, #medium.open #menuBtn1 .b2, #medium.open #menuBtn1 .b3,
#small.open #menuBtn1 .b1, #small.open #menuBtn1 .b2, #small.open #menuBtn1 .b3 { left:-150px; opacity:0;-moz-opacity:0;filter:Alpha(Opacity=0); }
#medium.open #menuBtn1 span, #small.open #menuBtn1 span { opacity:0;-moz-opacity:0;filter:Alpha(Opacity=0); -webkit-transition-delay: 400ms; -o-transition-delay: 400ms; -moz-transition-delay: 400ms; transition-delay: 400ms; }

#menu a { display:inline-block; width:33%; height:100%; position:relative; text-transform:uppercase; overflow:hidden; }
#menu a#mn1 { width:34%; }
#menu a .img { position:absolute; top:0; left:0; width:100%; height:100%; background:no-repeat center center; background-size:cover; opacity:0.4;-moz-opacity:0.4;filter:Alpha(Opacity=40); -webkit-transition: opacity 400ms ease-in-out 0s,transform 10000ms ease-in-out 0s; -moz-transition: opacity 400ms ease-in-out 0s,transform 10000ms ease-in-out 0s; -o-transition: opacity 400ms ease-in-out 0s,transform 10000ms ease-in-out 0s; -ms-transition: opacity 400ms ease-in-out 0s,transform 10000ms ease-in-out 0s; transition: opacity 400ms ease-in-out 0s,transform 10000ms ease-in-out 0s; }
.tablet #menu a .img, #menu a:hover .img, #menu a.select .img { opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); -webkit-transform: scale(1.2); -moz-transform: scale(1.2); -o-transform: scale(1.2); -ms-transform: scale(1.2); transform: scale(1.2); }
#menu a#mn1 .img { background-image:url(../images/mn01.jpg); }
#menu a#mn2 .img { background-image:url(../images/mn02.jpg); }
#menu a#mn3 .img { background-image:url(../images/mn03.jpg); }
#menu .txt { position:absolute; top:78px; left:38px; text-align:left; font-family:'Open Sans', sans-serif  !important; font-size:21px; letter-spacing:4px; color:#fff; line-height:16px; -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; -webkit-transition-delay: 350ms; -o-transition-delay: 350ms; -moz-transition-delay: 350ms; transition-delay: 350ms; }
.tablet #menu a .txt, #medium #menu a .txt, #menu a:hover .txt, #menu a.select .txt { top:49px; -webkit-transition-delay: 0; -o-transition-delay: 0; -moz-transition-delay: 0; transition-delay: 0; }
.tablet #menu a .txt, #medium #menu a .txt { top:50%; left:5%; margin-top:-33px; width:90%; }
#menu strong { font-size:37px; display:block; letter-spacing:0; font-weight:900; line-height:47px; }
#menu em { font-family:'Satisfy', cursive  !important; font-size:22px; letter-spacing:0; text-transform:none; line-height:22px; font-weight:400; font-style:normal; }
#menu .plus { display:block; width:42px; height:42px; background:url(../images/plus.png) no-repeat center center; background-size:contain; margin-top:10px; margin-left:12px; -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; -webkit-transition-delay: 0; -o-transition-delay: 0; -moz-transition-delay: 0; transition-delay: 0; opacity:0;-moz-opacity:0;filter:Alpha(Opacity=0); }
.talet #menu a .plus, #medium #menu a .plus, #menu a:hover .plus, #menu a.select .plus { opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); -webkit-transition-delay: 350ms; -o-transition-delay: 350ms; -moz-transition-delay: 350ms; transition-delay: 350ms; }
.tablet #menu a .plus, #medium #menu a .plus { position:absolute; margin-left:0; top:50%; right:0; margin-top:-22px; height:44px; width:44px; }
#menu a .texture { position:absolute; top:0; left:0; width:100%; height:100%; background:url(../images/texture.png) repeat 0 0; opacity:0.3;-moz-opacity:0.3;filter:Alpha(Opacity=30); -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
#menu a:hover .texture, #menu a.select .texture { opacity:0.5;-moz-opacity:0.5;filter:Alpha(Opacity=50);  -webkit-animation: texture 400ms linear infinite; -moz-animation: texture 400ms linear infinite; -ms-animation: texture 400ms linear infinite; -o-animation: texture 400ms linear infinite; animation: texture 400ms linear infinite; }
.tablet #menu a.select .texture { opacity:0.3;-moz-opacity:0.3;filter:Alpha(Opacity=30); -webkit-animation: none; -moz-animation: none; -ms-animation: none; -o-animation: none; animation: none; }
#menu a .degrade { position:absolute; top:0; left:0; width:100%; height:100%; background:url(../images/degrade.png) repeat-y 0 0; background-size:100%; -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; opacity:0.4;-moz-opacity:0.4;filter:Alpha(Opacity=40); }
.tablet a .degrade, #medium a .degrade, #menu a:hover .degrade, #menu a.select .degrade { opacity:0.4;-moz-opacity:0.4;filter:Alpha(Opacity=40); }
#menu .vjs-loading-spinner { display:none !important; }
#menu video { position:absolute; top:0; left:50%; margin-left:-305px; width:610px; height:226px; }

#menuTexture, #menuTexture2 { display:none; }
#medium #menuTexture, #medium #menuTexture2 { display:block; }


#medium #logo, #medium #backMap, #medium #back, #medium #contact, #medium #accueil, #medium #services, #medium #servicesFiche, #medium #logoPL { -webkit-transition: all 800ms ease-in-out 0s; -moz-transition: all 800ms ease-in-out 0s; -o-transition: all 800ms ease-in-out 0s; -ms-transition: all 800ms ease-in-out 0s; transition: all 800ms ease-in-out 0s; }
#medium.open #logo, #medium.open #backMap, #medium.open #back, #medium.open #contact, #medium.open #accueil, #medium.open #services, #medium.open #servicesFiche, #medium.open #menuBtn, #medium.open #logoPL { -webkit-transform: translateX(85vw); -moz-transform: translateX(85vw); -o-transform: translateX(85vw); -ms-transform: translateX(85vw); transform: translateX(85vw); }
#medium.open #logo { z-index:5; }
#medium.open #menu, #medium.open #menuTexture, #medium.open #menuTexture2, #medium.open #fbLink { -webkit-transform: translateX(85vw); -moz-transform: translateX(85vw); -o-transform: translateX(85vw); -ms-transform: translateX(85vw); transform: translateX(85vw); }


#medium #menuBtn1, #medium #menuBtn2, #medium #menuBtn3 { position:absolute; top:50%; height:236px; margin-top:-117px; left:0; width:100%; }
#medium #menuBtn2, #medium #menuBtn3, #small #menuBtn2, #small #menuBtn3 { opacity:0;-moz-opacity:0;filter:Alpha(Opacity=0); }
#medium.open #menuBtn1 .b1, #medium.open #menuBtn1 .b2, #medium.open #menuBtn1 .b3 { left:-150px; }
#medium #menu { width:85%; height:100%; background:#333; left:-85%; top:135px; height:auto; }
#medium #menu a { display:block; width:100%; height:24vh; background:#000; }
#medium #menu a div, #medium #menu a video { display:none; }
#medium #fbLink { bottom:0; top:auto; left:-85%; width:85%; bottom:4%; -webkit-transition: all 800ms ease-in-out 0s; -moz-transition: all 800ms ease-in-out 0s; -o-transition: all 800ms ease-in-out 0s; -ms-transition: all 800ms ease-in-out 0s; transition: all 800ms ease-in-out 0s; }
#medium #menuTexture { position:fixed; bottom:0; left:-85%; height:50%; width:85%; background:url(../images/fond_contact.jpg) repeat; z-index:9; -webkit-transition: all 800ms ease-in-out 0s; -moz-transition: all 800ms ease-in-out 0s; -o-transition: all 800ms ease-in-out 0s; -ms-transition: all 800ms ease-in-out 0s; transition: all 800ms ease-in-out 0s; }
#medium #menuTexture2 { position:fixed; top:0; left:-85%; height:25%; width:85%; background:url(../images/menu_fond.jpg) no-repeat center center; z-index:9; background-size:cover; text-align:center; -webkit-transition: all 800ms ease-in-out 0s; -moz-transition: all 800ms ease-in-out 0s; -o-transition: all 800ms ease-in-out 0s; -ms-transition: all 800ms ease-in-out 0s; transition: all 800ms ease-in-out 0s; }
#medium #menuTexture2 img { position:relative; top:12%; height:56px; left:0; }

@media screen and (min-width: 1920px){ #menu video { width:700px; height:264px; margin-left:-350px; } }
@media screen and (min-width: 2200px){ #menu video { width:800px; height:294px; margin-left:-400px; } }
@media screen and (min-width: 2500px){ #menu video { width:900px; height:314px; margin-left:-450px; } }
@media screen and (min-width: 2700px){ #menu video { opacity:0;-moz-opacity:0;filter:Alpha(Opacity=0); } }

@media screen and (max-width: 1540px) {
	.open #menu { left:125px; }
	#menu, #menuBtn { height:200px; margin-top:-60px; }
	#menuBtn { width:126px; }
	#menu .txt { font-size:19px }
	#menu strong { font-size:32px; line-height:38px; }
	#menu em { font-size:18px; }
}
@media screen and (max-width: 815px) {
	#fbLink { display:none; }
}
@media screen and (max-height: 885px) {
	#menu, #menuBtn { margin-top:-55px; }
}
@media screen and (max-height: 800px) {
	#menu, #menuBtn { margin-top:-40px; }
}
@media screen and (max-height: 660px) {
	#logo { top:40px; }
}
@media screen and (max-height: 580px), (max-width: 1240px) {
	#logo { top:20px; }
	#menu, #menuBtn { height:180px; margin-top:-40px; }
	#menuBtn span, #menuBtn2 img, #menuBtn3 img, #menuBtn1 .b1, #menuBtn1 .b2, #menuBtn1 .b3 { margin-top:-22px; }
	.open #menu { left:113px }
	#menu .txt { font-size:18px; }
	#menu strong { font-size:30px; }
	#menu em { font-size:16px; }
}
@media screen and (max-height: 580px), (max-width: 1160px){
	#logo { margin-left:-96px; }
	#logo img { height:60px; }
}
@media screen and (max-height: 475px), (max-width: 1160px) {
	#menu, #menuBtn { height:160px; margin-top:-40px; }
	.open #menu { left:100px }
	#menuBtn span, #menuBtn2 img, #menuBtn3 img, #menuBtn1 .b1, #menuBtn1 .b2, #menuBtn1 .b3 { margin-top:-35px; }
	#menu .txt { font-size:18px; }
	#menu strong { font-size:30px; }
	#menu em { font-size:16px; }
}
@media screen and (max-width: 1120px) {
	#menu .txt { font-size:16px }
	#menu strong { font-size:28px; line-height:28px; }
	#menu em { font-size:13px; }
	#menu .plus { height:30px; width:30px; }
	#menu a:hover .txt, #menu a.select .txt { top:40px; }
}

#small #logo { top:20px; margin-left:-64px; z-index:10; opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); }
#small.open #logo { top:-50px; }
#small #logo img { height:40px; }
#small #menuOverlay2 { position:fixed; top:0; left:0; height:50px; background:#000; width:100%; z-index:9; opacity:0;-moz-opacity:0;filter:Alpha(Opacity=0); -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
#small.open #menuOverlay2 { opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); }
#small #menuBtn { top:auto; bottom:0; margin-top:-52px; left:0; width:100%; height:52px; background-position:center; background-size:auto 160px; z-index:10; }
#small #menuBtn span, #small #menuBtn2 img, #small #menuBtn3 img, #small #menuBtn1 .b1, #small #menuBtn1 .b2, #small #menuBtn1 .b3 { margin-top:-75px; }
#small #menuBtn1 .b1, #small #menuBtn1 .b2, #small #menuBtn1 .b3 { height:2px; width:44px; margin-left:-22px; }
#small #menuBtn span { margin-top:-98px; font-size:11px; }
#small #menuBtn1 .b2 { top:89px; }
#small #menuBtn1 .b3 { top:95px; }
#small #menuBtn img { height:22px; margin-top:-55px; margin-left:-12px; }
#small #menuBtn3 img { height:60px; margin-top:-70px; margin-left:-32px; }
#small.open #menuBtn { top:auto; bottom:100%; margin-top:0; margin-bottom:-52px; }
 
#small #menu { position:relative; top:100vh; display:block; left:0; margin-top:0; width:100vw; height:0; overflow:hidden; z-index:7; -webkit-transition: all 800ms ease-in-out 0s; -moz-transition: all 800ms ease-in-out 0s; -o-transition: all 800ms ease-in-out 0s; -ms-transition: all 800ms ease-in-out 0s; transition: all 800ms ease-in-out 0s; }
#small.open #menu { top:0; height:380px; margin-top:52px; }
#small #menu a { width:100%; height:120px; display:block; }
#small #menu a .txt { top:50%; left:5%; width:90%; margin-top:-33px; }
#small #menu a .plus { position:absolute; right:0; top:50%; height:35px; width:35px; margin-top:-17px; opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); }
#small #content { padding-top:60px; -webkit-transition: all 800ms ease-in-out 0s; -moz-transition: all 800ms ease-in-out 0s; -o-transition: all 800ms ease-in-out 0s; -ms-transition: all 800ms ease-in-out 0s; transition: all 800ms ease-in-out 0s; }
#small #body2 { padding:1px 0 0; }
#small.open #content { margin-top:-500px; height:0px; overflow:hidden; }
#small.open #footer { display:none; }
#medium #logo img { height:90px; }
#medium #logo { margin-left:-144px; }
#medium #logo, #medium #accueil { -webkit-transform: translateX(40px); -moz-transform: translateX(40px); -o-transform: translateX(40px); -ms-transform: translateX(40px); transform: translateX(40px); }
#medium #accueil { margin-top:0; }
#medium #vertiBarre { margin-top:-120px; }


#fbLink { position:fixed; top:22px; right:32px; z-index:9; }

#navServices { position:fixed; top:50%; right:35px; width:188px; height:665px; margin-top:-332px; }
.tablet #navServices { position:relative; top:0; right:auto; margin:50px auto 0; height:auto; }
#closeServices { text-decoration:none; color:#fff; width:92px; display:block; }
.tablet #closeServices { height:140px; }
#closeServices img { position:absolute; top:0; left:0; -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
#closeServices span { position:relative; top:0; display:block; text-align:center; margin-top:110px; font-size:16px; font-family:'Open Sans', sans-serif  !important; text-transform:uppercase; -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
.tablet #closeServices span { padding-top:110px; margin-top:0; }
#closeServices:hover .circle { -webkit-transform: scale(0.9); -moz-transform: scale(0.9); -o-transform: scale(0.9); -ms-transform: scale(0.9); transform: scale(0.9); }
#closeServices:hover .cross { -webkit-transform: scale(1.3); -moz-transform: scale(1.3); -o-transform: scale(1.3); -ms-transform: scale(1.3); transform: scale(1.3); }
#closeServices:hover span {  top:-10px; }
#navServices2 { position:fixed; width:92px; height:500px; margin-top:20px; padding:0 0 5px; }
.tablet #navServices2, .mobile #navServices2 { display:none; }
#timeLineServ { position:absolute; top:0; left:50%; margin-left:-1px; height:100%; background:rgba(255,255,255,0.3); width:2px; }
#navServices2 a { display:block; position:relative; width:26px; margin:0 auto 68px; top:40px; }
#navServices2 a span { position:absolute; top:0; left:40px; line-height:28px; font-size:12px; font-family:'Open Sans', sans-serif  !important; text-transform:uppercase; opacity:0;-moz-opacity:0;filter:Alpha(Opacity=0); -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
#navServices2 a.select span, #navServices2 a:hover span { letter-spacing:2px; opacity:1;-moz-opacity:1;filter:Alpha(Opacity=100); }
#navServices2 a em { display:block; border:3px solid #fff; border-radius:20px; width:20px; height:20px; background:#090909; -webkit-transition: all 350ms ease-in-out 0s; -moz-transition: all 350ms ease-in-out 0s; -o-transition: all 350ms ease-in-out 0s; -ms-transition: all 350ms ease-in-out 0s; transition: all 350ms ease-in-out 0s; }
#navServices2 a.select em, #navServices2 a:hover em { background:#e52427; }
@media screen and (max-width: 1500px){
	#navServices { right:15px; }
}
@media screen and (max-width: 1330px){
	#navServices { right:14px; width:92px; }
	#navServices2 a span { display:none; }
}
@media screen and (max-width: 900px){
	#footer { display:none; }
}
@media screen and (max-height: 412px){
	#small.open #menu { height:300px; }
	#small #menu a { height:100px; }
}







/* IPHONE 5 */
@media screen and (device-aspect-ratio: 40/71) {}

/* IPHONE 6 */
@media screen and (device-aspect-ratio: 667/375) {}

/* IPHONE 6 PLUS */
@media screen and (device-aspect-ratio: 16/9) {}










/* PAGE */

.pageaccueil #back { background-image:url(../images/fond_accueil.jpg); }
#accueil { position:absolute; top:50%; margin-top:-240px; left:50%; margin-left:-290px; width:580px; height:155px; font-size:16px; font-family:'Open Sans', sans-serif  !important; color:#fff; text-transform:uppercase; z-index:5; letter-spacing:4px; }
#vertiBarre { display:block; width:2px; height:88px; margin:28px auto 0; background:#e52427; }
@media screen and (max-height: 910px) {
	#accueil { height:135px; margin-top:-220px; } 
	#vertiBarre { height:65px; margin-top:25px; } 
}
@media screen and (max-height: 800px) {
	#accueil { height:135px; margin-top:-180px; } 
	#vertiBarre { height:60px; margin-top:15px; } 
}
@media screen and (max-height: 740px) {
	#accueil { height:135px; margin-top:-150px; } 
	#vertiBarre { height:50px; margin-top:7px; } 
}
@media screen and (max-height: 600px) {
	#accueil { height:135px; margin-top:-130px; } 
	#vertiBarre { height:30px; margin-top:7px; } 
}



#allianceDesign { position:fixed; top:18px; left:30px; }
@media screen and (max-width: 1024px), (max-height: 605px){
	#allianceDesign { top:10px; left:95px; }
	#allianceDesign img { height:40px; }
}
@media screen and (max-width: 800px), (max-height: 460px){
	#allianceDesign { top:10px; left:10px; }
	#allianceDesign img { height:32px; }
}


#small #accueil { margin-top:-55px; font-size:13px; letter-spacing:2px; }
#small #logo img { height:50px; }
#small #logo { margin-left:-80px }
#medium.verti #accueil span, #small #accueil span { display:block; }
#medium.verti #vertiBarre { margin-top:-250px; }








/* ZOOMBOX */
/*[fmt]0A90-0A0A-2*/
#zoombox iframe,#zoombox img{
	border:none;
}
#zoombox .zoombox_mask{
	background-color:#000;
	position:fixed;
	width:100%;
	z-index:999996;
	height:100%;
	top:0;
	left:0;
}
#zoombox .zoombox_container{
	position:fixed;
	z-index:999997;
}
.mobile #zoombox .zoombox_container { position:absolute; }
#zoombox .relative{
	position:relative;
}
#zoombox .zoombox_prev{
	position:absolute;
	top:0;
	left:0;
	width:50%;
	height:100%;
	cursor:pointer;
	/*+opacity:0;*/
	filter:alpha(opacity=0);
	-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	-moz-opacity:0;
	opacity:0;
}
#zoombox .zoombox_prev:hover{
	/*+opacity:100%;*/
	filter:alpha(opacity=100);
	-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	-moz-opacity:1;
	opacity:1;
}
#zoombox .zoombox_next{
	position:absolute;
	top:0;
	right:0;
	width:50%;
	height:100%;
	/*+opacity:0;*/
	filter:alpha(opacity=0);
	-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	-moz-opacity:0;
	opacity:0;
}
#zoombox .zoombox_close,#zoombox .zoombox_next,#zoombox .zoombox_prev{
	cursor:pointer;
}
#zoombox .multimedia .zoombox_next,#zoombox .multimedia .zoombox_prev{
	display:none;
}
#zoombox .zoombox_next:hover{
	/*+opacity:100%;*/
	filter:alpha(opacity=100);
	-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	-moz-opacity:1;
	opacity:1;
}
#zoombox .zoombox_gallery{
	position:fixed;
	z-index:999998;
	bottom:-60px;
	left:0;
	right:0;
	text-align:center;
	/*+opacity:85%;*/
	filter:alpha(opacity=85);
	-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
	-moz-opacity:0.85;
	opacity:0.85;
	cursor:pointer;
	width:auto;
	background-color:#050505;
	height:60px;
	overflow: hidden;
	display:none;
}
#zoombox .zoombox_gallery img{
	height:50px;
	padding:5px;
	/*+opacity:50%;*/
	filter:alpha(opacity=30);
	-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
	-moz-opacity:0.3;
	opacity:0.3;
}
#zoombox .zoombox_gallery img:hover,#zoombox .zoombox_gallery img.current{
	/*+opacity:100%;*/
	filter:alpha(opacity=100);
	-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	-moz-opacity:1;
	opacity:1;
}
#zoombox_loader{
	background:url(img/loader.png) no-repeat left top;
	position:absolute;
	height:40px;
	width:40px;
	cursor:pointer;
	top:50%;
	left:50%;
	margin:-20px 0 0 -20px;
	z-index:999999;
}
/** Zoombox Theme **/
.zoombox .zoombox_container{
	background:#000;
	color:#666;
	/*+box-shadow:0px 0px 10px #000000;*/
	-moz-box-shadow:0px 0px 10px #000000;
	-webkit-box-shadow:0px 0px 10px #000000;
	-o-box-shadow:0px 0px 10px #000000;
	box-shadow:0px 0px 10px #000000;
	-moz-box-shadow:0 0 10px #000;
	-webkit-box-shadow:0 0 10px #000;
	-o-box-shadow:0 0 10px #000;
	box-shadow:0 0 10px #000;
}
.zoombox .content{
	background:#000;
}
.zoombox .zoombox_title{
	color:#FFF;
	/*+placement:anchor-top-left -1px -22px;*/
	position:absolute;
	left:-1px;
	top:-22px;
	/*+text-shadow:1px 1px #000000;*/
	-moz-text-shadow:1px 1px #000000;
	-webkit-text-shadow:1px 1px #000000;
	-o-text-shadow:1px 1px #000000;
	text-shadow:1px 1px #000000;
	-moz-text-shadow:1px 1px #000;
	-webkit-text-shadow:1px 1px #000;
	-o-text-shadow:1px 1px #000;
	text-shadow:1px 1px #000;
}
.zoombox .zoombox_close{
	background:url(img/close.png) no-repeat;
	width:30px;
	height:30px;
	/*+placement:anchor-top-right -15px -15px;*/
	position:absolute;
	right:-15px;
	top:-15px;
}
#zoombox.zoombox .zoombox_next{
	background:url(img/next.png) no-repeat right center;
}
#zoombox.zoombox .zoombox_prev{
	background:url(img/prev.png) no-repeat left center;
}
/** Lightbox Theme **/
.lightbox .zoombox_container{
	background:#FFF;
	margin-left:-30px;
	padding:10px 10px 37px;
	color:#666;
}
.lightbox .zoombox_close{
	background:url(img/lightclose.gif) no-repeat left top;
	width:66px;
	height:22px;
	top:auto;
	/*+placement:anchor-bottom-right 12px 6px;*/
	position:absolute;
	right:12px;
	bottom:6px;
}
.lightbox .zoombox_title{
	text-align:left;
}
.lightbox .zoombox_next{
	background:url(img/lightnext.gif) no-repeat right 50px;
}
.lightbox .zoombox_prev{
	background:url(img/lightprev.gif) no-repeat left 50px;
}
#zoombox.lightbox .zoombox_gallery{
	left:10px !important;
	right:10px;
	bottom:36px;
}
/** Pretty Photo Theme **/
.prettyphoto .zoombox_container{
	border:10px solid #0B0A0A;
	/*+border-radius:10px;*/
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	-khtml-border-radius:10px;
	border-radius:10px 10px 10px 10px;
	background:#FFF;
	padding:10px 10px 37px;
	margin-left:-20px;
	color:#797979;
}
.prettyphoto .zoombox_title{
	text-align:left;
}
.prettyphoto .zoombox_close{
	background:url(img/ppsprite.png);
	width:27px;
	height:24px;
	top:auto;
	/*+placement:anchor-bottom-right 6px 8px;*/
	position:absolute;
	right:6px;
	bottom:8px;
}
.prettyphoto .zoombox_next{
	background:url(img/ppnext.png) no-repeat right center;
}
.prettyphoto .zoombox_prev{
	background:url(img/ppprev.png) no-repeat left center;
}
.prettyphoto .multimedia .zoombox_next,.prettyphoto .multimedia .zoombox_prev{
	display:none;
}
#zoombox.prettyphoto .zoombox_gallery{
	left:10px !important;
	right:10px;
	bottom:36px;
}





/** FORT Theme **/
#zoombox.fort .zoombox_mask { background:#0d0d09; }
#zoombox.fort2 .zoombox_mask { background:#000; }
.fort .zoombox_container, .fort2 .zoombox_container{
	background:none;
	padding:0;
	color:#777;
	margin-top:22px !important;
}
.fort2 .zoombox_container { margin-top:-10px !important; }

.fort .zoombox_title, .fort2 .zoombox_title{
	display:none;
}
.fort .zoombox_close, .fort2 .zoombox_close{
	background:url(img/close.png);
	width:70px;
	height:70px;
	top:-100px;
	position:absolute;
	left:50%;
	margin-left:-35px;
}
.fort2 .zoombox_close { top:-63px }
.fort .zoombox_separe, .fort .zoombox_separe2, .fort2 .zoombox_separe, .fort2 .zoombox_separe2 { position:absolute;left:0;width:100%;height:6px;background:url(img/separe.png) no-repeat center center; }
.fort .zoombox_separe { top:-69px; }
.fort2 .zoombox_separe { top:-31px; }
.fort .zoombox_separe2 { bottom:-45px; background-image:url(img/separe2.png); }
.fort2 .zoombox_separe2 { bottom:-96px; background-image:url(../images/separe3.png); height:104px; }
.fort2 .zoombox_separe2 span { position:absolute; top:10px; left:50%; margin-left:-30px; width:60px; height:90px; background:url(../images/scroll.png); }
.fort .zoombox_next, .fort2 .zoombox_next{
	background:url(img/ppnext.png) no-repeat right center;
}
.fort .zoombox_prev, .fort2 .zoombox_prev{
	background:url(img/ppprev.png) no-repeat left center;
}
.fort .multimedia .zoombox_next,.fort .multimedia .zoombox_prev,.fort2 .multimedia .zoombox_next,.fort2 .multimedia .zoombox_prev{
	display:none;
}
#zoombox.fort .zoombox_gallery, #zoombox.fort2 .zoombox_gallery{
	left:10px !important;
	right:10px;
	bottom:36px;
}
.fort .zoombox_container, .fort2 .zoombox_container { overflow:visible !important; }





/** Dark Pretty Photo Theme **/
.darkprettyphoto .zoombox_container{
	/*+border-radius:10px;*/
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	-khtml-border-radius:10px;
	border-radius:10px 10px 10px 10px;
	background:#0C0C0C;
	padding:10px 10px 37px;
	margin-left:-30px;
	color:#828282;
}
.darkprettyphoto .zoombox_title{
	/*[empty]position:;*/
	text-align:left;
}
.darkprettyphoto .zoombox_close{
	background:url(img/ppsprite.png);
	width:27px;
	height:24px;
	top:auto;
	/*+placement:anchor-bottom-right 2px 6px;*/
	position:absolute;
	right:2px;
	bottom:6px;
}
.darkprettyphoto .zoombox_next{
	background:url(img/ppnext.png) no-repeat right center;
}
.darkprettyphoto .zoombox_prev{
	background:url(img/ppprev.png) no-repeat left center;
}
.darkprettyphoto .multimedia .zoombox_next,.darkprettyphoto .multimedia .zoombox_prev{
	display:none;
}
#zoombox.darkprettyphoto .zoombox_gallery{
	left:10px !important;
	right:10px;
	bottom:36px;
}
/** Simple Theme **/
.simple .zoombox_container{
	background:#000;
}
.simple .zoombox_title{
	color:#FFF;
	/*+placement:anchor-top-left -1px -22px;*/
	position:absolute;
	left:-1px;
	top:-22px;
	/*+text-shadow:1px 1px #000000;*/
	-moz-text-shadow:1px 1px #000000;
	-webkit-text-shadow:1px 1px #000000;
	-o-text-shadow:1px 1px #000000;
	text-shadow:1px 1px #000000;
	-moz-text-shadow:1px 1px #000;
	-webkit-text-shadow:1px 1px #000;
	-o-text-shadow:1px 1px #000;
	text-shadow:1px 1px #000;
}
#zoombox.simple .zoombox_next{
	background:url(img/simplenav.png) no-repeat -20px center;
	/*+opacity:100%;*/
	filter:alpha(opacity=100);
	-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	-moz-opacity:1;
	opacity:1;
	right:-20px;
	width:20px;
}
#zoombox.simple .zoombox_next:hover{
	background-position-x:left;
}
#zoombox.simple .zoombox_prev{
	background:url(img/simplenav.png) no-repeat -40px center;
	/*+opacity:100%;*/
	filter:alpha(opacity=100);
	-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	-moz-opacity:1;
	opacity:1;
	left:-20px;
	width:20px;
}
#zoombox.simple .zoombox_prev:hover{
	background-position-x:-60px;
}
.simple .zoombox_prev{
	background:url(img/ppprev.png) no-repeat left center;
}
.simple .zoombox_close{
	background:url(img/simpleclose.png) no-repeat;
	width:30px;
	height:30px;
	position:absolute;
	top:0;
	right:-10px;
}

#zoombox.simple .multimedia .zoombox_next,#zoombox.simple .multimedia .zoombox_prev{
	display:block;
}