/*!
Video.js Default Styles (http://videojs.com)
Version 4.12.5
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('/bundles/giedisplay/css/fonts/vjs.eot');
  src: url('/bundles/giedisplay/css/fonts/vjs.eot?#iefix') format('embedded-opentype'),
    url('/bundles/giedisplay/css/fonts/vjs.woff') format('woff'),
    url('/bundles/giedisplay/css/fonts/vjs.ttf') format('truetype'),
    url('/bundles/giedisplay/css/fonts/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: 3em;
  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;
}
/* prevent menus from opening while scrubbing (FF, IE) */
.vjs-default-skin.vjs-scrubbing .vjs-menu-button:hover .vjs-control-content .vjs-menu {
  display: none;
}
.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 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 3em;
  right: 0;
  pointer-events: none;
}
/* Captions Settings Dialog */
.vjs-caption-settings {
  position: relative;
  top: 1em;
  background-color: #000;
  opacity: 0.75;
  color: #FFF;
  margin: 0 auto;
  padding: 0.5em;
  height: 15em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  width: 40em;
}
.vjs-caption-settings .vjs-tracksettings {
  top: 0;
  bottom: 2em;
  left: 0;
  right: 0;
  position: absolute;
  overflow: auto;
}
.vjs-caption-settings .vjs-tracksettings-colors,
.vjs-caption-settings .vjs-tracksettings-font {
  float: left;
}
.vjs-caption-settings .vjs-tracksettings-colors:after,
.vjs-caption-settings .vjs-tracksettings-font:after,
.vjs-caption-settings .vjs-tracksettings-controls:after {
  clear: both;
}
.vjs-caption-settings .vjs-tracksettings-controls {
  position: absolute;
  bottom: 1em;
  right: 1em;
}
.vjs-caption-settings .vjs-tracksetting {
  margin: 5px;
  padding: 3px;
  min-height: 40px;
}
.vjs-caption-settings .vjs-tracksetting label {
  display: block;
  width: 100px;
  margin-bottom: 5px;
}
.vjs-caption-settings .vjs-tracksetting span {
  display: inline;
  margin-left: 5px;
}
.vjs-caption-settings .vjs-tracksetting > div {
  margin-bottom: 5px;
  min-height: 20px;
}
.vjs-caption-settings .vjs-tracksetting > div:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  min-height: 0;
}
.vjs-caption-settings label > input {
  margin-right: 10px;
}
.vjs-caption-settings input[type="button"] {
  width: 40px;
  height: 40px;
}
/* Hide disabled or unsupported controls */
.vjs-hidden {
  display: none !important;
}
.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: 2em;
  color: #ccc;
  background-color: #333;
  font-size: 1.8em;
  font-family: Arial, sans-serif;
  text-align: center;
  width: 30em;
  height: 15em;
  margin: 0 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 */

body{
  font-family: "Arial",Helvetica, Verdana,sans-serif;
  font-size: 13px;
}

@font-face {
    font-family:'Glyphicons Halflings';
    src:url(/bundles/giedisplay/css/fonts/glyphicons-halflings-regular.eot);
    src:url(/bundles/giedisplay/css/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),
        url(/bundles/giedisplay/css/fonts/glyphicons-halflings-regular.woff2) format('woff2'),
        url(/bundles/giedisplay/css/fonts/glyphicons-halflings-regular.woff) format('woff'),
        url(/bundles/giedisplay/css/fonts/glyphicons-halflings-regular.ttf) format('truetype'),
        url(/bundles/giedisplay/css/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.clear:before,
.clear:after {
    content:"";
    display:table;
}
.clear:after {
    clear:both;
}
.clear {
    zoom:1; /* For IE 6/7 (trigger hasLayout) */
}

.container{background-color: white}

.navbar{margin-bottom:0}
.nopadding{padding:0;}

.align-left {
  float: left;
  margin: 5px 5px 5px 0;
}

.align-right{
  float: right;
  margin: 5px 0 5px 5px;
}

.landing-page__zone {
  padding: 20px 0;
}

.warning_112 {
  background-color: #830f57;
  color: white;
  font-size: 1.2em;
  margin: 0 0 20px;
  padding: 20px;
  text-align: center;
}
.warning_112 p {margin: 0;}

.description{padding-left:10px}

.col-xs-1, .col-sm-1, .col-xs-2, .col-sm-2, .col-xs-3, .col-sm-3, .col-xs-4, .col-sm-4, .col-xs-5, .col-sm-5, .col-xs-6, .col-sm-6, .col-xs-7, .col-sm-7, .col-xs-8, .col-sm-8, .col-xs-9, .col-sm-9, .col-xs-10, .col-sm-10, .col-xs-11, .col-sm-11, .col-xs-12, .col-sm-12 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}



ul, ul ul, ol ul, #col_principale li > a, #plan_site li > a, #col_contextuelle li > a {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    margin: 0;
    padding: 0;
}

a, a:focus,a:visited{text-decoration: underline;color:#424242}
a:hover{text-decoration: underline;color:#355689}

/* functions */
table {
  font-size: 1em;
  margin: 0;
  padding: 0;
  width: 100%;
}
th,
td {
  padding: 0;
}
table.list {
  width: 100%;
  margin: 1em 0 1em 0;
  border: none;
}
table.list th {
  font-weight: bold;
  color: #525345;
  background-color: #DFDFDF;
  white-space: nowrap;
  text-align: left;

}
table.list td {
  border-top: 1px solid #f8f8f8;
  font-weight: normal;
}
table.list tr.bglight {
  background-color: #F1F1ED;
}
table.list tr.bgdark {
  background-color: #EAE9E1;
}
table.list a {
  border-bottom-color: #EAE9E1;
}
table.list img {
  vertical-align: middle;
}
table.list th,
table.list td {
  padding: 0.5em;
  border-right: 1px solid #fff;
  border-bottom: none;
  vertical-align: top;
}
table.list th:first-child,
table.list td:first-child {
  border-left: 1px solid #fff;
}
table.list tr.bglight:hover,
table.list tr.bgdark:hover {
  background-color: #fff;
}
table.list tr.bglight:hover td,
table.list tr.bgdark:hover td {
  border-color: #fff;
}
th.tight,
td.tight {
  width: 1%;
}
td.nowrap {
  white-space: nowrap;
}
td.number {
  text-align: right;
}
td.debugheader {
  background-color: #eee;
  border-top: 1px solid #448;
  border-bottom: 1px solid #448;
  font-size: 0.9em;
  font-family: Arial, Helvetica, sans-serif;
}
td.ezsetup_header {
  background-color: #eee;
  border-top: 1px solid #448;
  border-bottom: 1px solid #448;
  font-size: 120%;
  font-family: Arial, Helvetica, sans-serif;
}
td.ezsetup_req {
  font-size: 80%;
  font-family: Arial, Helvetica, sans-serif;
}
div.full-head {
    margin-bottom: 15px;
}
div.block {
  margin: 20px 0 10px 0;
  padding: 0;
  clear: both;
}
div.block div.left {
  width: 48%;
  float: left;
  clear: left;
}
div.block div.right {
  width: 48%;
  float: right;
  clear: right;
  text-align: right;
}
div.block div.original {
  background-color: #ecece4;
  margin: 0.5em 0 0.5em 0;
  padding: 0.2em;
  border: 1px dashed #bfbeb6;
}
div.block table.special {
  border-bottom: 1px solid #EAE8E1;
  margin-bottom: 0.5em;
}
div.block table.special th.tight {
  width: 3%;
  text-align: left;
}
div.block table.special th {
  width: 94%;
  text-align: left;
}
div#fancydisplay {
    margin: -10px 0 20px 0;
}
p.text-left,
td.text-left,
th.text-left,
*.text-left {
  text-align: left;
}
p.text-right,
td.text-right,
th.text-right,
*.text-right {
  text-align: right;
}
p.text-center,
td.text-center,
th.text-center,
*.text-center {
  text-align: center;
}
p.text-justify,
td.text-justify,
th.text-justify,
*.text-justify {
  text-align: justify;
}
div.object-left,
table.object-left {
  float: left;
  clear: left;
  margin: 9px 11px 9px 0;
}
div.object-right,
table.object-right {
  float: right;
  clear: right;
  margin: 4px 0 7px 7px;
}
div.object-center,
table.object-center {
  margin: 0.25em auto 0.25em auto;
}
#debug {
  text-align: left;
  border-top: 1px dashed black;
  padding: 0.3em;
  background-color: #fff;
}
#debug table {
  border-collapse: collapse;
}
#debug table tr.group td {
  padding-top: 0.7em;
  font-size: 0.95em;
}
#debug table tr.group td:first-child {
  padding-left: 0.2em;
  font-size: 1em;
}
#debug table tr.data td {
  background-color: #fff;
  border-top: 1px solid #448;
  border-bottom: 1px solid #448;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95em;
}
#debug table tr.data:nth-child(odd) td {
  background-color: #eee;
}
#debug th {
  text-align: left;
}
#debug span.debuginfo:after {
  border: 2px solid #23a4f5;
  border-radius: 10px;
  color: #23a4f5;
  height: 10px;
  width: 10px;
  line-height: 10px;
  font-size: 10px;
  content: "i";
  margin-left: 5px;
  padding: 0 5px 0 5px;
  opacity: 0.6;
}
#debug span.debuginfo:hover:after {
  opacity: 1;
}
#debug tr.notice td.debugheader span {
  color: green;
}
#debug tr.warning td.debugheader span {
  color: orange;
}
#debug tr.error td.debugheader span {
  color: red;
}
#debug tr.debug td.debugheader span {
  color: brown;
}
#debug tr.timing td.debugheader span {
  color: blue;
}
#debug tr.strict td.debugheader span {
  color: purple;
}
table.cols {
  width: 100%;
  margin: 1em 0 1em 0;
  border: none;
}
table.cols th {
  font-weight: bold;
  color: #FFF;
  background-color: #355689;
  text-align: left;

}
table.cols td {
  font-weight: normal;
}
table.cols a {
  border-bottom-color: #EAE9E1;
}
table.cols th,
table.cols td {
  padding: 0.5em;
  border-right: 1px solid #686868;
  border-bottom: 1px solid #686868;
  vertical-align: top;
}
table.cols th:first-child,
table.cols td:first-child {
  border-left: 1px solid #686868;
}
table.cols col.bglight,table.cols tr.bglight,
div.bglight {
  background-color: #ffffff;
}
table.cols col.bgdark,table.cols tr.bgdark,
div.bgdark {
  background-color: rgb(244,245,246);
}
table.cols tr.bglight:hover,
table.cols tr.bgdark:hover {
  background-color: #EAE9E1;
}
table.cols tr.bglight:hover td,
table.cols tr.bgdark:hover td {
  background-color: #F1F1ED;
}
table.renderedtable {
  width: 100%;
  margin: 1em 0 1em 0;
  border: none;
}
table.renderedtable th {
  font-weight: bold;
  color: #525345;
  background-color: #DFDFDF;
  white-space: nowrap;
  text-align: left;

}
table.renderedtable td {
  font-weight: normal;
}
table.renderedtable a {
  border-bottom-color: #EAE9E1;
}
table.renderedtable th,
table.renderedtable td {
  padding: 0.5em;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  vertical-align: top;
}
table.renderedtable th:first-child,
table.renderedtable td:first-child {
  border-left: 1px solid #fff;
}
table.renderedtable tr.bglight,
div.bglight {
  background-color: #F1F1ED;
}
table.renderedtable tr.bgdark,
div.bgdark {
  background-color: #EAE9E1;
}
table.renderedtable tr.bglight:hover,
table.renderedtable tr.bgdark:hover {
  background-color: #EAE9E1;
}
table.renderedtable tr.bglight:hover td,
table.renderedtable tr.bgdark:hover td {
  background-color: #F1F1ED;
}
table.comparison {
  width: 100%;
  margin: 1em 0 1em 0;
  border: none;
}
table.comparison th {
  font-weight: bold;
  color: #525345;
  background-color: #DFDFDF;
  white-space: nowrap;
  text-align: left;
}
table.comparison td {
  font-weight: normal;
}
table.comparison a {
  border-bottom-color: #EAE9E1;
}
table.comparison th,
table.comparison td {
  padding: 0.5em;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  vertical-align: top;
}
table.comparison th:first-child,
table.comparison td:first-child {
  border-left: 1px solid #fff;
}
table.comparison col.bglight,
div.bglight {
  background-color: #F1F1ED;
}
table.comparison col.bgdark,
div.bgdark {
  font-weight: bold;
  color: #525345;
  background-color: #DFDFDF;
  white-space: nowrap;
  text-align: left;
}
table.comparison tr.bglight:hover,
table.comparison tr.bgdark:hover {
  background-color: #F1F1ED;
}
table.comparison tr.bglight:hover td,
table.comparison tr.bgdark:hover td {
  background-color: #EAE9E1;
}
div.content-view-sitemap table td {
  vertical-align: top;
}
div.content-view-sitemap ul {
  padding: 0;
  margin: 0.75em 0 1em 0;
  list-style-type: none;
}
div.content-view-sitemap ul ul {
  margin: 0.3em 0 0.5em 12px;
}
/* URL de l'image: /extension/ezwebin/design/ezwebin/images/sidemenu_bullet.png */
div.content-view-sitemap ul li {
  margin: 0 0 0.5em 2em;
  padding: 0 0 0 14px;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAGCAAAAAAjjnvQAAAAHUlEQVR4AWOY9f8/0/85/xn+z5zNCKJnzfoPEgMAspUOzm8cMLcAAAAASUVORK5CYII=');
  background-repeat: no-repeat;
  background-position: 0 0.3em;
  line-height: 1.25em;
}
table {
  width: 100%;
}
th {

  font-weight: normal;
}
td {

  font-weight: normal;
}
td a {
  text-decoration: none;
}
td em {
  font-style: normal;
}
tr.top th {
  border-top: none;
}
tr.bottom td {
  border-bottom: none;
}
td.today {
  font-weight: bold;
  color: #d02020;
}
td.currentselected {
  background-color: #e0e0e0;
}
div.table {
  padding: 4px;
}
div.poll-result td.poll-resultbar {
  padding-left: 5px;
}
div.poll-result td.poll-resultbar td.poll-percentage {
  text-align: left;
}
div.poll-result td.poll-resultbar td.poll-votecount {
  text-align: right;
}
div.poll-result td.poll-resultbar table {
  width: 300px;
}
div.poll-result p {
  font-weight: bold;
}
div.poll-result div.chart-bar-resultbox {
  margin: 0.5em 0 0.5em 0;
  width: 100%;
  background-color: #eee;
}
div.poll-result div.chart-bar-resultbar {
  height: 14px;
  background-color: #444;
}
div.poll-result td.poll-resultname {
  padding-right: 5px;
}
table {

  background-color: #F0F0F0;
  margin: auto;
  text-align: left;
}
table th {
  font-weight: bold;
  text-align: center;
  height: 20px;
  border: 1px solid;
  border-color: #fefffc #dee0dd #dee0dd #fefffc;
  border-top: 0;
}
table td {
  padding: 8px;
  border: 1px solid;
  border-color: #fefffc #dee0dd #dee0dd #fefffc;
  text-align: center;
}
table .first_col {
  border-left: 0;
}
table .last_col {
  border-right: 0;
}
table tr.calendar_heading th {
  border: 0;
  padding-bottom: 12px;
}
table tr.calendar_heading th a {
  text-decoration: none;
}
table td.ezagenda_selected {
  background-color: #e4e5e4;
}
div#ezagenda_calendar_container table td.ezagenda_current,
div#ezagenda_calendar_container table td.ezagenda_current a {
  color: #df1d42;
  font-weight: bold;
}
div#ezagenda_calendar_right {
  vertical-align: top;
  padding-left: 12px;
  margin-left: 225px;
}
div#ezagenda_calendar_right table.ezagenda_month_event {
  border: 1px solid #f1f1ed;
  margin-bottom: 5px;
  width: 99%;
  table-layout: fixed;
  border-collapse: collapse;
  vertical-align: top;
}
.event-calendar-programview div#ezagenda_calendar_right {
  margin-left: auto;
  padding: 0;
}
.event-calendar-programview .block .right {
  text-align: right;
}
table.ezagenda_month_event td.ezagenda_month_label {
  vertical-align: top;
  padding: 0;
  width: 70px;
}
table.ezagenda_month_event td.ezagenda_month_label h2 {
  border: 1px solid #d2d2c5;
  padding: 4px;
  color: #979797;
  font-size: 1.8em;
  font-weight: normal;
  width: 40px;
  margin: 9px 10px;
  text-align: center;
}
table.ezagenda_month_event td.ezagenda_month_label h2 span.ezagenda_month_label_date {
  display: block;
}
table.ezagenda_month_event td.ezagenda_month_info {
  vertical-align: top;
  padding-top: 8px;
}
table.ezagenda_month_event td.ezagenda_month_info p {
  margin-top: 0;
  margin-bottom: 5px;
  clear: both;
}
table.ezagenda_month_event span.ezagenda_date {
  float: left;
  margin-right: 6px;
}
table#ezwt-sort-list tr.ezwt-sort-drag-handler {
  cursor: move;
}
.newsletter table.list td {
  padding: 0.5em;
}
.titre_bloc,
.titre_bloc a,
table caption {
  font-size: 1.2em;
  font-weight: bold;
  text-align: left;
  color: #355689;
  margin: 0 0 10px 0;
}
.content-view-full td,
.content-view-full th,
.content-view-full .miomcti_comparison td,
.content-view-full .miomcti_list td {
  border-right: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
  padding: 5px 10px;
}
.content-view-full tr,
.content-view-full .bgdark,
.content-view-full .miomcti_comparison .bglight,
.content-view-full .miomcti_cols .colbglight {
  background-color: #fff;
}
.content-view-full .bglight,
.miomcti_comparison .bgdark,
.content-view-full .miomcti_cols .colbgdark {
  background-color: rgb(244,245,246);
}
.miomcti_comparison tr:first-child td,
.miomcti_list td:first-child,
.miomcti_cols tr:first-child td,
.miomcti_forum tr:first-child th,
.forum_thread th {
  background: #355689;
  color: #fff;
  font-weight: bold;
}
.tab:hover,
.slideshow_tabs .actu_tabs_tabs_hover,
.presse_slideshow_tabs .tab.activeSlide {
  height: 55px;
  border: none;

}
/* URL de l'image: /bundles/giedisplay/images/common/bg_focus_tab.png */
.tab {
  width: 145px;
  background: #ffffff url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABACAIAAABUc4oXAAAASElEQVR4AYVNgwHAQBC75Nv9Z61tvo0Q67pSRLht27nPt/5P4hofxM8OHdP/dr7+PjeA79bfOmb/bVygSGzMQc6yUTJ1cV1Z7QvKWjaoD2a0AAAAAElFTkSuQmCC') 0 1px;
  line-height: 55px;
  padding: 5px 10px;
  cursor: pointer;
}
.presse_slideshow .tab {
  width: 128px;
}
.presse_slideshow .presse_slideshow_tabs {
  width: 148px;
}
.tab_text {
  line-height: 1.2;
  vertical-align: middle;
  display: inline-block;
  text-align: left;
}
.tab:hover span,
.tab_text_hover,
.actu_tabs_tabs_hover .tab_text {
  color: #fff;
}
#actu_tabs {
  float: left;
  width: 165px;
}
/* URL de l'image: /bundles/giedisplay/images/common/fleche_focus.png */
#actu_tabs .tab:hover,
#actu_tabs .actu_tabs_tabs_hover {
  background: url('data:image/png;base64,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') no-repeat left center;
}

.caption_media_tabs {
  background: #000;
  color: #FFF;
  opacity: 0.7;
  padding: 5px 0;
  text-indent: 5px;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  vertical-align: middle;
  display: block;
}
form {
  margin: 0;
  padding: 0;
}
label {
  font-weight: normal;
    line-height: 1em;
padding:5px;
  display: block;
  white-space: nowrap;
  float: left;

}
input,
select {
  font-family: Arial, Helvetica, sans-serif;
}
input,
textarea,
.uneditable-input {
  width: auto;
}
input.box,
input.halfbox {
  font-size: 1em;
}
textarea {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}
optgroup {
  font-weight: bold;
  font-style: normal;
}
input.button,
button,
input.defaultbutton,
input.button-disabled {
  border: 1px solid #b9b7b7;
  cursor: pointer;
  font-size: 0.8em;
  color: #282929;
  vertical-align: middle;
  margin: 0.25em 0 0.25em 0;
}
input.defaultbutton {
  font-weight: bold;
}
input.button-disabled {
  cursor: default;
  color: #999;
}
input.box,
textarea.box {
 /* width: 100%;*/
  border: 1px solid #A5ACB2;
  font-size: 1em;
}

#autocomp{position:absolute;
  font-family: "Arial", Verdana, Arial, sans-serif;
  border-left:1px solid #A5ACB2;
  padding:2px;margin: 0;
  z-index:1000;
  width: auto;
  background-color: white;
  -moz-box-shadow: 2px 2px 5px 0px #A5ACB2;
  -webkit-box-shadow: 2px 2px 5px 0px #A5ACB2;
  -o-box-shadow: 2px 2px 5px 0px #A5ACB2;
  box-shadow: 2px 2px 5px 0px #A5ACB2;
  filter:progid:DXImageTransform.Microsoft.Shadow(color=#A5ACB2, Direction=134, Strength=5)}
#autocomp li{list-style: none;padding: 5px  !important;margin: 0; background: none; cursor:pointer}
#autocomp li:hover{background-color: #EBEBEB}



div.control-group {
    clear: both;
    line-height: 1.25em;
    margin: 0.5em 0;
}
div.control-group label{text-align: right;}
input.halfbox,
textarea.halfbox {
  width: 48%;
}
div.input,
div.textarea {
  margin: 0.5em 0 0.5em 0;
  padding: 0 0.25em 0 0.25em;
  border: 1px solid;
  border-color: #808080 #e0e0e0 #e0e0e0 #808080;
}
div.textarea {
  padding-right: 0;
}
div.input input,
div.textarea textarea {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
}
fieldset {
  border: 1px solid #cecece;
  padding: 20px;
  margin-left: 0;
  margin-right: 0;
}
fieldset label {
  color: #000;
}

fieldset.col-md-12 > label {
    background-color: white;
    position: relative;
    top: -33px;
}

legend {
  font-weight: bold;
  padding: 0 0.25em 0 0.25em;
  font-size: 1.2em;
  color: #355689;
  border:none;
  margin:0;
  width: auto;

}
fieldset input.button,
fieldset input.defaultbutton,
fieldset input.button-disabled {
  margin-top: 0.5em;
}
div.debug-toolbar label {
  font-weight: normal;
}
/* URL de l'image: /extension/ezflow/design/ezflow/images/search-input-bg.png*/
input#searchtext {
  border: 1px solid #c3c7c5;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAARCAAAAAA5qJnOAAAAFElEQVQI12P4z8SABP+D4T8kkgEAhaoKFZKe1iIAAAAASUVORK5CYII=');
  background-position: left bottom;
  background-repeat: repeat-x;
  font-size: 0.85em;
  height: 15px;
  padding: 0;
  width: 222px;
  float: left;
  margin-right: 5px;
}
input#searchbutton {
  margin-top: 0;
  margin-bottom: -0.5em;
  display: block;
  float: left;
}
input.forum-new-reply {
  margin: 0.75em 0.25em 0.25em 0;
}
input.forum-new-topic {
  margin: 0.75em 0.25em 0.25em 0;
}
input.forum-keep-me-updated {
  margin: 0.75em 0.25em 0.25em 0;
}
div.controlbar label {
  display: inline;
  padding: 0;
  vertical-align: bottom;
}
div.controlbar div.right {
  text-align: right;
}
/* URL de l'image: /extension/ezwebin/design/ezwebin/images/minus.png */
fieldset.ezcca-collapsible legend a {
  text-decoration: none;
  padding-left: 15px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAAAAACMxyj6AAAAHklEQVQIW2NIS4eBNIb0/zCQTiQ7DQIwxAmzkewFAOAFXJWWWtxQAAAAAElFTkSuQmCC') no-repeat left center;
}
fieldset.ezcca-collapsible.ezcca-collapsed {
  border-width: 1px 0 0 0;
  height: 1em;
}
fieldset.ezcca-collapsible.ezcca-collapsed legend {
  margin-left: 1px;
}
/* URL de l'image: /extension/ezwebin/design/ezwebin/images/plus.png */
fieldset.ezcca-collapsible.ezcca-collapsed legend a {
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAAAAACMxyj6AAAAIUlEQVQI12NIS4eBNIb0/zCQDmGnEWKnQQDR6hHmI9kLAPNKWP9z0cp/AAAAAElFTkSuQmCC') no-repeat left center;
}
div#ezwt {
  margin: 0;
  width: 100%;
  position: relative;
}
div#ezwt div.ezwt-actiongroup {
  display: inline-block;
  vertical-align: top;
  padding: 2px 3px 2px 3px;
  border: none;
  border-radius: 2px;
  height: 24px;
}
div#ezwt form {
  margin: 0 auto 0 auto;
  padding: 0;
  display: inline;
}
div#ezwt select {
  color: #4a5054;
  border: 1px solid;
  border-color: #abb1b5 #dbe1e5 #dbe1e5 #abb1b5;
  margin: 2px 0 0 0;
  padding: 0;
  height: 19px;
  vertical-align: top;
}
div#ezwt input {
  margin: 1px 0 0 0;
}
body.floating-wt div#ezwt {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  opacity: 0.85;
  -webkit-transition-duration: 250ms;
  -moz-transition-duration: 250ms;
  -ms-transition-duration: 250ms;
  -o-transition-duration: 250ms;
  transition-duration: 250ms;
}
body.floating-wt div#ezwt:hover {
  opacity: 1.0;
}
body.floating-wt div#ezwt-content {
  border-bottom: 1px solid #999;
}
div#ezwt-content {
  padding: 2px 70px;
  text-align: center;
  background-color: white;
}
body.ie6 div#ezwt div.ezwt-actiongroup,
body.ie7 div#ezwt div.ezwt-actiongroup {
  display: inline;
  clear: none;
}
/* URL de l'image: /extension/ezwt/design/standard/images/websitetoolbar/ezwt-oo-logo.gif */
div#ezwt-ooaction {
  background-image: url('data:image/gif;base64,R0lGODlhOgASAPf/ANXb5Nna3NXW2Hp5e8/Q01Z1rsLM3KenqsjJy26IuC0qLmdmaOTn6i5UnEhGSpaWmTk2OhoXG2qEtmWAtBwZHWF9sjw6PTo4PCAdIXp5fXR0d0JARA46jo2Mj1tZXUpISzUyNhA7jxlDkyglKVRzrU9NUD48QCFJlkpJTDc1OSYjJ9fc5TteoV1cX0NlpQQyitPU19/h43iQvFNxrMzU4M/W4YWaweHj5Qs4jaq40Qk2jCJLl5iYm8jKzMnLzdvd3115sNfZ28DK2wg1jObo6pKRlJ+vzM3P0bu8vpaoyUxKTlJxqyxSmwc0i56foV57sUE/QuXo60BipI+ixmaBtOLl6dDX4ubp67KztV98scXO3cbP3W5tcKqqrUhpp5mZnNHT1Vt4rzIwNOPl58HK201tqi9VnLbC1lFwq42gxd3h52iDtY6hxYecwlp3r8TFx15dYLjD12eCteTm6HCJuSckKNHS1CMgJD1go4mew3aOu4qexEJkpbzH2QYzi5eoyYB/gt3e4Tw4OKm30SdOmcLL2zxfopyty8rR39DR03h3eqOjpr7I2jpdobe4ui1TnZusy52doBRCl4WFiDFWnZOlx9zh59ze4H6UvldWWVhXWkRmpnV1eHOLutPZ42ZlZ0dopxQ/kz5ho39+gUdloIODhs7V4aKyzmuEs4GXwG6Ht4KYwJWnyJ+gollYW6ytrx8cINLW3WppbLnE2JmboXBvck5MT318f09vqo6NkICTtYCWv0VDRomIi2N+s3uSvaSzzy8tMMLDxcPExmBfYkdFScTN3UJAQ7/Awn2TvkZER5OTlgo3jThcoLO/1TAtMTtfokpoocvMzgQ0juLj5ZqbnXmRvHGKuWFgYx5Hldne5eDi5NbY2lBOUqq409LU1sTGyMbHyqGhpOLk5ri5vLq7vZeXmqCwzcjQ3t7i6EtMUiooK5ubnmhmaj9io4eHihVAkXePvDJXnpipyc3O0L3H2rXB1j8/RmxrboygxCZNmba3uSdPm6i20Nvf5ujq7CH5BAEAAP8ALAAAAAA6ABIAAAj/AP8JHEiw4L8jgFoo2aCJR6kWCzogo2awosWLGAvGuPGPSCJ2vCY5eYUkSMaTKE/eGCNwDpGUMFHOkUYOi6MeRHwoMqEimKtIP2IKtTiuGgoQIOpEiGBhXYR1tbogABNjqFWCPbqACxDjh49cdVQ82Ha1LEp6w8yaFXbgiFVG52gIFAKtmZo0JzDtiVd2FAUFd8QJVaVDBA5I/4CEGLQCnhcaM1xcPRBh0b8MFHpwu/Hmm8AY5UwKCAQDwT9vL5L8o4Jjixcmlvr4kfHPU41/DMiQicIgjpWTLRSwfBPhHYRuKUaUVGYBxL5MUC5EoIUqVLp/WnTsCDFEHqUXzE6R/wCljQWHHcA2EcpmZOCVihtMCIQRQYMKOP8+eODi4F+7DyWIYQcK6pDyiEDa4EBHAUxUgUgTv/zDhwtrhGBAFHKc8E8nO/xjBRVZnJFGBW3IcU0bH1wgEAERDHAHD/9wIkYxChCTwgUm4LfAPdHwIxAAfqzyhBn/rDCEDf+4wIIZZQiESwhoNBBCFTKwoYUbJFSyRg5GLDEALCZhEQEPGHTwDz4XfKCEDwjAcEwL/3yygS7TyJXDC86EQaSRSPIhCguNCISGPoUYgM5qcVwRxgxCTFDDFk/YocAHRTxjCwEYQLDMHbc8gMEDXzihX5yCxCIJC3mIIMU/S+zZBJJSuHvAygtA5COBDqkkwUY/ZeQxixtZGEOHEX/M8E842EChwSUCUMCFB7IEVQQK3RzQSxH/mDPAP0KQYIYEAPyzhx7/qAFEDv/sksw/UxiCRz2HuIPHH3RMYQ0VfcxTgyl0yOCLQWBE8IVaZhlwhgwJGASDCq0QXJY9WejhT0AAOw==');
  background-position: 2px 5px;
  background-repeat: no-repeat;
  padding-left: 67px !important;
}
div#ezwt-ezlogo {
  position: absolute;
  top: 5px;
  left: 6px;
}
div#ezwt-help {
  position: absolute;
  top: 8px;
  right: 6px;
}
div#ezwt-help a {
  font-weight: bold;
  color: #999;
  padding: 0 2px 0 2px;
  text-decoration: none;
  display: block;
}
div#ezwt select,
div#ezwt input {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85em;
}
/* URL de l'image: /extension/ezwt/design/standard/images/websitetoolbar/ezwt-button-bg.gif */
div#ezwt input.button,
div#ezwt input.defaultbutton,
div#ezwt input.button-disabled {
  color: #4a5054;
  background: #f2f4f6 url('data:image/gif;base64,R0lGODlhFAAWAPMPAO7x8+bq7efr7unt7+js7+Xp7OPo6+vv8eLn6vP19+zw8u/y9PDz9fH09vL09uru8CwAAAAAFAAWAAAEmjAlN6W9uFJHJdfbxDUjyZ1o6jRmS7LsCTNwbTcMnev87uuNRU4oHDKKxwVRyWw6nwuAdEqtUhUKaRaQ3Xq1XKxYcRiLy2KEes1utw3weLwgp9cDhXwevy/w9QUCAgGCAYSHg4eEggQEAo2QjpCPkQQDl5cPD5icA5uYB2WhoWSjpqQHVVtgVlJERkVNR0lCLEAzODcmKrwoCREAOw==') repeat-x center left;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#dbe1e5));
  background: -moz-linear-gradient(top, #ffffff, #dbe1e5);
  background: -ms-linear-gradient(top, #ffffff, #dbe1e5);
  background: -o-linear-gradient(top, #ffffff, #dbe1e5);
  background: linear-gradient(top, #ffffff, #dbe1e5);
  border: 1px solid;
  border-color: #dbe1e5 #abb1b5 #abb1b5 #dbe1e5;
  border-radius: 2px;
  padding: 0 0.5em 0 0.5em;
  vertical-align: top;
  height: 19px;
  margin-top: 2px;
}
div#ezwt input.button:hover,
div#ezwt input.defaultbutton:hover,
div#ezwt select:hover {
  border-color: #abb1b5;
}
div#ezwt input.ezwt-input-image,
div#ezwt div.ezwt-actiongroup a img {
  margin: 1px 0 0 0;
  border: none;
  padding: 2px;
}
div#ezwt div#ezwt-currentpageaction a {
    position: relative;
    top: -7px;
    padding: 2px;
    border: none;
}
div#ezwt div.float-break {
    background-color: #355689;
}
div#ezwt input.ezwt-input-image:hover,
div#ezwt div.ezwt-actiongroup a:hover img {
  border-color: #dbe1e5;
}
div#ezwt .disabled,
div#ezwt input.button-disabled {
  opacity: 0.5;
  cursor: default;
}
/* URL de l'image: /extension/ezflow/design/ezflow/images/tab_container_bg.png */
.tab-container {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPAAAAEsBAMAAAAP8CNBAAAAMFBMVEXw8PDx8fHy8vLz8/P09PT19fX29vb39/f4+Pj5+fn6+vr7+/v8/Pz9/f3+/v7///9pUqNZAAAAq0lEQVR42u3XsREAAAQEQcE3oP9mFSEQWA3sjMRJHU3AYDAYDAY/htuqwWAwGAwGg8FgsE8CDAaDwWAwGKwywWAwGAwGg6UPGAwGg8FgIQAGg8FgMFgIgMFgMBgMFgJgMBgMBrvHVg0Gg8FgsHsMBoPBYDBYCIDBYDAYDBYCYDAYDAaDhQAYDAaDwWCw9AGDwWAwGAwGq0wwGAwGg8FgMBjsk7BqMBgMBm9nAMQuBbDxjdWxAAAAAElFTkSuQmCC');
  background-repeat: repeat-x;
  background-position: left top;
  border: 1px solid #D8D8D8;
  padding-left: 10px;
  padding-top: 10px;
  font-size: 11px;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  color: #373737;
}
.tab-container label {
  display: block;
  margin-bottom: 5px;
  font-weight: normal;
}
.tab-container .textfield {
  width: 80%;
  border: 1px solid #777;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  font-size: 13px;
}
.tab-container select {
  font-size: 13px;
}
.tab-container .button {
  font-size: 11px;
}
.tab-container .block {
  margin-bottom: 1.5em;
}
.serach-button {
  vertical-align: top;
}
.date-range {
  color: #AFAFAF;
}
.date-range label {
  color: #373737;
}
.date-range input {
  vertical-align: middle;
  margin-bottom: 0.25em;
}
.date-range-selection {
  visibility: visible;
  display: none;
}
.date-range-selection label {
  color: #AFAFAF;
}
.date-range-selection select {
  margin-bottom: 0.5em;
  font-size: 11px;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
}


input, select, textarea, button {
    background: none repeat scroll 0 0 #fff;
    border: 1px solid #cecece;
    color: #686868;
    padding: 5px;
}
button {
  font-family: Arial, Helvetica, Verdana, sans-serif;
  vertical-align: baseline;
  font-size: 1.2em;
}
.warning legend {
  color: #9A0C58;
}
label:hover {
  cursor: pointer;
}
.buttonblock {
  margin-top: 15px;
}
*:focus {
  outline: none;
}
td.label {
  text-align: right;
  vertical-align: top;
}
td.label label {
  float: none;
}
.class-formulaire .selectBox {
  width: 220px;
}
.class-formulaire .selectBox-dropdown {
  line-height: 1.1em;
  border: 1px solid #d4d4d4;
}
.class-formulaire .selectBox-label {
  padding: 4px 5px 2px;
}
.class-formulaire .attribute-short {
  margin: 20px 0;
}
.class-formulaire fieldset {
  padding: 20px;
}
.class-formulaire form div {
  overflow: hidden;
}
.class-formulaire .content-action {
  text-align: center;
}
div.message-confirmation,
div.message-feedback,
div.message-warning,
div.message-error,
div.warning {
  margin: 0.5em 0 1em 0;
  padding: 0.5em 1em 0.5em 1em;
  border: 6px solid #808080;
  background-color: #f8f8f8;
}
div.message-feedback {
  border-color: #40b040;
}
div.message-warning,
div.warning {
  border-color: #c0c040;
}
div.message-error {
  border-color: #c70000;
}
div.message-confirmation,
div.message-feedback,
div.message-warning,
div.warning,
div.message-error {
  color: #5b5b5b;
  background-color: #fff;
  border: 1px solid #cecece;
  margin: 0.5em 0 1em;
  padding: 0.5em 1em;
}
div.message-warning,
div.warning,
.warning {
  border-color: #9A0C58;
}
.selectBox-dropdown {
  padding: 0 23px 0 0;
  background: rgb(244,245,246);
  border: 0;
  border-radius: 0;
  box-shadow: 0;
  height: 100%;
  /*   min-width: 130px;*/
  filter: none;
}
.selectBox-label {
  color: #686868;
  width: auto;
}
/* URL de l'image: /bundles/giedisplay/images/common/fleche_grise_menu.png */
.selectBox-dropdown .selectBox-arrow {
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAFCAQAAAAwRH6nAAAAK0lEQVQI12NY9mfZf1TIgApQJP8xoIO/jDh1QsAfVjySIPCFf9n/x0yY4gAcRS0BPsCidgAAAABJRU5ErkJggg==') no-repeat scroll 7px 9px transparent;
}
a.selectBox:hover {
  text-decoration: none;
}
.selectBox-options,
.selectBox-options li,
.selectBox-options li a {
  background-image: none;
  text-decoration: none;
}
.selectBox-options li a {
  padding: 3px 0.5em;
  color: #424242;
  font-size: 0.9em;
}
.selectBox-options li.selectBox-hover a {
  background-color: #424242;
  color: #ffffff;
}
.selectBox-options li.selectBox-disabled a {
  color: #888;
  background-color: transparent;
}
.selectBox-options li.selectBox-selected a {
  background-color: #355689;
  color: #ffffff;
}

#plan_site .selectBox {
  width: 100%;
}
#plan_site .selectBox,
#plan_site .dark_bullet li .selectBox {

  padding: 0 25px 0 0;
  margin: 3px 0 20px 0;
}
#plan_site .selectBox,
#plan_site .dark_bullet li:hover .selectBox {
  border: 1px solid #d4d4d4;
  padding: 0 10px 0 0;
  background: none;
}
#plan_site .site_map_selectbox_title h2,
.site_map_selectbox_title a {
  border: none;
  margin: 0;
  padding: 0;
  float: left;
}
#plan_site .site_map_selectbox_title h2 {
  margin-top: 20px;
}
.choix_siteministere-selectBox-dropdown-menu {
  width: 300px !important;
}
a.choix_siteministere {
  line-height: 1.1em;
}
.content-view-embed .class-filter_bloc .selectBox-dropdown {
  background: #fff;
  border: 1px solid #d4d4d4;
  line-height: 1.2em;
  min-width: 95px;
  width: 95px !important;
}
.topic-selectBox-dropdown-menu,
.profile-selectBox-dropdown-menu {
  width: 160px !important;
}
.topic.selectBox-dropdown .selectBox-label,
.profile.selectBox-dropdown .selectBox-label {
  width: 85px !important;
  padding: 4px 5px 2px;
}
.class-formulaire .selectBox {
  /*  width: 220px*/
}
.class-formulaire .selectBox-dropdown {
  line-height: 1.1em;
  border: 1px solid #d4d4d4;
}
.class-formulaire .selectBox-label {
  padding: 4px 5px 2px;
}
.selectBox-dropdown {
  /*  min-width: 150px;*/
  position: relative;
  line-height: 1em;
  text-decoration: none;
  text-align: left;
  color: #000;
  outline: none;
  vertical-align: middle;
  background: #F2F2F2;
  display: inline-block;
  cursor: default;
}
.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
  border-color: #666666;
}
.selectBox-dropdown .selectBox-label {
  padding: 2px 8px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
}
.selectBox-dropdown .selectBox-arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 23px;
  height: 100%;
  border-left: solid 1px #bbbbbb;
}
.selectBox-dropdown-menu {
  position: absolute;
  z-index: 99999;
  max-height: 200px;
  min-height: 1em;
  border: solid 1px #BBB;
  background: #FFF;
  overflow: auto;
}
.selectBox-inline {
  min-width: 150px;
  outline: none;
  background: #FFF;
  display: inline-block;
  overflow: auto;
}
.selectBox-inline:focus {
  border-color: #666666;
}
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
  list-style: none;
  display: block;
  cursor: default;
  padding: 0;
  margin: 0;
}
.selectBox-options LI A {
  line-height: 1.5;
  padding: 0 .5em;
  white-space: nowrap;
  overflow: hidden;
  background: 6px center no-repeat;
}
.selectBox-options LI.selectBox-hover A {
  background-color: #eeeeee;
}
.selectBox-options LI.selectBox-disabled A {
  color: #888;
  background-color: transparent;
}
.selectBox-options LI.selectBox-selected A {
  background-color: #c8def4;
}
.selectBox-options .selectBox-optgroup {
  color: #666;
  background: #EEE;
  font-weight: bold;
  line-height: 1.5;
  padding: 0 .3em;
  white-space: nowrap;
}
.selectBox.selectBox-disabled {
  color: #888888 !important;
}
.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
  zoom: 1;
  opacity: 0.5;
  -moz-opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity= 50);
  filter: alpha(opacity= 50);
  border-color: #666666;
}
.selectBox-inline.selectBox-disabled {
  color: #888888 !important;
}
.selectBox-inline.selectBox-disabled .selectBox-options A {
  background-color: transparent !important;
}

#utils_menu {
  float: right;
  color: #686868;
}
#utils_menu li {
  float: left;
  padding: 0 6px;
  border-left: 1px solid #d4d4d4;
  background-image: none;
}
#utils_menu li.first {
  border-left: 0;
}
#utils_menu a {
  color: #686868;
  text-decoration: none;
}
#accessibility_menu {
  position: relative;
  z-index: 10;
  top: 2px;
  left: -52px;
}
#accessibility_menu li#accessibility_menu_first,
#related_menu .firstli {
  border: none;
}
#accessibility_menu a {
  color: #686868;
  text-decoration: none;
}
#accessibility_menu li,
#related_menu li {
  float: left;
  border-right: solid 1px #d4d4d4;
  padding: 0 6px;
  margin: 0;
  color: #686868;
  background: none;
  line-height: 6px;
}
#related_menu li:last-child {
    border: none;
    padding-right: 0;
}
#related_menu a {
  color: #686868;
  text-decoration: none;
}
#services_menu {
  clear: both;
  float: right;
}
#services_menu a {
  text-decoration: none;
  color: #686868;
}
#services_menu ul {
  padding: 0;
}
#services_menu > ul > li {
  background-color: rgb(244,245,246);
  margin: 0 2px 0 0;
  padding: 3px 21px 3px 10px;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  border: #5C5C5C 1px solid;
  border-bottom: none;
  float: left;
}
#services_menu ul li ul li {
  padding: 0;
  margin: 0;
  background-image: none;
}
#services_menu .service_lvl1 > li:hover .lvl2_menu {
  left: 0;
  width: 200px;
}
#services_menu .service_lvl1 > li + li + li:hover .lvl2_menu {
  right: 0;
  left: -100px;
}
header #mainheader{
  padding:30px 0;
}
header #headersearch {
  margin-top: 15px;
  margin-bottom: 10px;
}
header #mainheader.row {
  margin-left: 0;
  margin-right: 0;
}
header .logoimg {
  padding-right: 0;
  padding-left: 0;
    text-align: center;
  height: 95px;
  width: 95px;

}

header .logoimg img{
  width: 100%;
  height: 100%;
  max-height: 95px;
  max-width: 95px;
}
header .logo_minit{
  padding: 0 40px 0 0;
}

header .logoGie {
    padding-right: 0;
    padding-left: 0;
    text-align: center;
}
header .logogn {
    padding: 0;
}
header .title.col-md-6 {
  padding-right: 0;
  width: 43%;
  padding-left: 2px;
}
header #logo_title {
  padding-top: 25px;
}

header .row-fluid div.title {
  margin-left: 20px;
}
header .search {
  padding: 0 0 0 15px;
}

header #logo_title a {
  text-decoration: none;
}
header #logo_title #site_url {
  color: black;
  font-size: 25px;
  font-family: marianne, Arial, Helvetica, sans-serif;
  font-weight: bold;
  line-height: 1em;

}

header #logo_title .subtitle {
  color: black;
  font-size: 15px;
  font-family: marianne-light, Arial, Helvetica, sans-serif;
  opacity: 0.5;
  text-transform: uppercase;
  line-height: 1em;
  margin-top: 10px;
}
header #accessibility_menu ul {
  margin: 0 0 0 60px;
}
header #accessibility_menu ul li {
    background: none repeat scroll 0 0 transparent;
    border-left: 1px solid #D4D4D4;
    border-right: 0;
    color: #686868;
    float: left;
    line-height: 6px;
    margin: 0;
    padding: 0 6px;
    display: inline;
}
header #accessibility_menu ul li a {
  color: #686868;
  font-size: 0.8em;
}
header #accessibility_menu ul li.accessibility_menu_first {
  border: medium none;
}

#related_menu li {
  background: none repeat scroll 0 0 transparent;
  border-left: 1px solid #D4D4D4;
  color: #686868;
  float: left;
  line-height: 6px;
  margin: 0;
  padding: 0 6px;
  display: inline;
}
#related_menu .firstli {
  border: medium none;
}
#related_menu li a {
  color: #686868;
  font-size: 0.8em;
}
#related_menu {
    margin-bottom: 5px;
    float: right;
}
div#searchbox {
  width: 40em;
  margin-top: 0.5em;
  margin-right: 1em;
  padding-left: 5em;
  text-align: right;
  float: right;
}
div#searchbox img {
  display: block;
  float: left;
  margin-top: 6px;
  margin-right: 6px;
}
/* URL de l'image: /extension/ezflow/design/ezflow/images/search-input-bg.png */
input#searchtext {
  border: 1px solid #c3c7c5;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAARCAAAAAA5qJnOAAAAFElEQVQI12P4z8SABP+D4T8kkgEAhaoKFZKe1iIAAAAASUVORK5CYII=');
  background-position: left bottom;
  background-repeat: repeat-x;
  font-size: 0.85em;
  height: 15px;
  padding: 0;
  width: 222px;
  float: left;
  margin-right: 5px;
}
input#searchbutton {
  margin-top: 0;
  margin-bottom: -0.5em;
  display: block;
  float: left;
}
#header_searchbox .searchbox-filter {
  width: 130px;
}
.selectBox-dropdown-menu {
  position: absolute;
  z-index: 99999;
  max-height: 200px;
  min-height: 1em;
  border: solid 1px #BBB;
  background: #FFF;
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  overflow: auto;
  width:auto !important;
}
.selectBox-inline {
  min-width: 150px;
  outline: none;
  border: solid 1px #BBB;
  background: #FFF;
  display: inline-block;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow: auto;
}
.selectBox-inline:focus {
  border-color: #666;
}
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
  list-style: none;
  display: block;
  cursor: default;
  padding: 0;
  margin: 0;
}
.selectBox-options LI A {
  line-height: 1.5;
  padding: 0 .5em;
  white-space: nowrap;
  overflow: hidden;
  background: 6px center no-repeat;
}
.selectBox-options LI.selectBox-hover A {
  background-color: #EEE;
}
.selectBox-options LI.selectBox-disabled A {
  color: #888;
  background-color: transparent;
}
.selectBox-options LI.selectBox-selected A {
  background-color: #C8DEF4;
}
.selectBox-options .selectBox-optgroup {
  color: #666;
  background: #EEE;
  font-weight: bold;
  line-height: 1.5;
  padding: 0 .3em;
  white-space: nowrap;
}
.selectBox-options li a {
  color: #424242;
  font-size: 0.9em;
  padding: 3px 0.5em;
}
.selectBox-options li.selectBox-hover a {
  background-color: #424242;
  color: #fff;
}
.selectBox-options li.selectBox-disabled a {
  color: #888;
  background-color: transparent;
}
.selectBox-options li.selectBox-selected a {
  background-color: #355689;
  color: #fff;
}
.selectBox.selectBox-disabled {
  color: #888 !important;
}
.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
  zoom: 1;
  opacity: 0.5;
  -moz-opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  filter: alpha(opacity= 50);
  border-color: #666;
}
.selectBox-inline.selectBox-disabled {
  color: #888 !important;
}
.selectBox-inline.selectBox-disabled .selectBox-options A {
  background-color: transparent !important;
}
div#topmenu {
  color: #333;
  font-weight: lighter;
  margin-top: 3px;
  width: 100%;
  background: rgba(244,245,246,1);
  border-top: 1px solid #EBEBEB;
  padding: 10px 0 0 10px;
}

div.navbar-header{padding-right: 10px}

div#topmenu .navbar-brand {
  float: left;
  font-size: 1em;
  height: 34px;
  line-height: 25px;
  padding: 5px 10px;
  -webkit-border-radius: 5px 5px;
  -moz-border-radius: 5px 5px;
  border-radius: 5px 5px;
}

 div#topmenu  a.navbar-brand.selected {
     color: #fff;
     background-color: #424242;
     -moz-border-radius: 5px;
     -webkit-border-radius: 5px;
     border-radius: 5px;
  }
div#topmenu .navbar-toggle {
  margin-top: 0;
  margin-right: 0;

}
div#topmenu .navbar-toggle .icon-bar {
  background-color: #424242;
}
div#topmenu .navbar-collapse {
  padding: 0;
}
div#topmenu .navbar-collapse.collapsing,
div#topmenu .navbar-collapse.in {
  padding-bottom: 10px;
  padding-right: 10px;
}
div#topmenu .navbar-collapse.collapsing ul#miomcti_topmenu-firstlevel li.menu_with_children.selected .menu_lvl1_div a,
div#topmenu .navbar-collapse.in ul#miomcti_topmenu-firstlevel li.menu_with_children.selected .menu_lvl1_div a,
div#topmenu .navbar-collapse.collapsing ul#miomcti_topmenu-firstlevel li.menu_with_children:hover .menu_lvl1_div a,
div#topmenu .navbar-collapse.in ul#miomcti_topmenu-firstlevel li.menu_with_children:hover .menu_lvl1_div a {
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
div#topmenu .navbar-collapse.collapsing ul#miomcti_topmenu-firstlevel .menu_with_children:hover .menu_lvl1_div > a,
div#topmenu .navbar-collapse.in ul#miomcti_topmenu-firstlevel .menu_with_children:hover .menu_lvl1_div > a,
div#topmenu .navbar-collapse.collapsing #miomcti_topmenu-firstlevel .menu_with_children:hover .menu_lvl1_div > a,
div#topmenu .navbar-collapse.in #miomcti_topmenu-firstlevel .menu_with_children:hover .menu_lvl1_div > a {
  border-bottom: 0 solid #355689;
}
div#topmenu .navbar-collapse.collapsing li.menu_with_children:hover .lvl2_menu,
div#topmenu .navbar-collapse.in li.menu_with_children:hover .lvl2_menu {
  border: 0;
  position: relative;
  left: 0;
  top: 0;
  background: none;
  float: left;
  width: 100%;
  margin: 0;
  border-bottom: 2px solid #355689;
  border-left: 2px solid #355689;
  border-right: 2px solid #355689;
}
div#topmenu .navbar-collapse.collapsing ul#miomcti_topmenu-firstlevel li .menu_lvl1_div,
div#topmenu .navbar-collapse.in ul#miomcti_topmenu-firstlevel li .menu_lvl1_div {
  height: auto;
  top: 0;
}
div#topmenu .navbar-collapse.collapsing ul ul,
div#topmenu .navbar-collapse.in ul ul {
  width: 100%;
}
div#topmenu .navbar-collapse.collapsing ul li,
div#topmenu .navbar-collapse.in ul li,
div#topmenu .navbar-collapse.collapsing ul li a,
div#topmenu .navbar-collapse.in ul li a {
  float: left;
  width: 100%;
}
div#topmenu .navbar-collapse.collapsing ul#miomcti_topmenu-firstlevel li .menu_lvl1_div > a,
div#topmenu .navbar-collapse.in ul#miomcti_topmenu-firstlevel li .menu_lvl1_div > a {
  top: 0;
}
div#topmenu .navbar-brand:hover {
  background-color: #355689;
  color: #ffffff;
}
div#topmenu ul {
  margin: 0 auto 0 auto;
  width: 770px;
  padding: 0;
}
/* URL de l'image: /extension/ezflow/design/ezflow/images/topmenu-bg.png */
div#topmenu div#topmenu-firstlevel-position {
  font-size: 0.8em;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  height: 31px;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAgCAIAAABch4VNAAAAVUlEQVQIWz2IXQqAIBCExxE8Qh3UMxcdQKQlZ7cS6un7Qa2VANha474dzDnTJV5jUC5CToWolxoMj/ndnRFBM8ulFCak2YEgJjH785/PX5eFvXeeZjcWF0DeIZTnvwAAAABJRU5ErkJggg==');
  background-repeat: repeat-x;
}
div#topmenu ul li {
  background-image: none;
  float: left;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
#miomcti_topmenu-firstlevel .menu_with_children li:hover a,
#miomcti_topmenu-firstlevel .menu_with_children li.selected a,
#services_menu .lvl2_menu a:hover {
  background-color: #355689;
  color: #fff;
  background-position: 15px;
}
/* URL de l'image: /bundles/giedisplay/images/common/fleche_grise_menu.png */
ul#miomcti_topmenu-firstlevel .menu_with_children .menu_lvl1_div > a,
#services_menu > ul > li {
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAFCAQAAAAwRH6nAAAAK0lEQVQI12NY9mfZf1TIgApQJP8xoIO/jDh1QsAfVjySIPCFf9n/x0yY4gAcRS0BPsCidgAAAABJRU5ErkJggg==') right center no-repeat;
}
/* URL de l'image: /bundles/giedisplay/images/common/fleche_bleue_menu.png */
ul#miomcti_topmenu-firstlevel .menu_with_children:hover .menu_lvl1_div > a,
ul#miomcti_topmenu-firstlevel .menu_with_children:hover .menu_lvl1_div > a,
#services_menu li:hover {
  color: #fff;
  background: #355689 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAFCAYAAACaTbYsAAAAM0lEQVQY02NYsP/tf0KYAR8gWyMI/P37l4ksjTDw588fLrI0wsCXL19kQRofP37MQox6AN4CXfHZuPiJAAAAAElFTkSuQmCC') right center no-repeat;
}
ul#miomcti_topmenu-firstlevel li.selected > a:link,
ul#miomcti_topmenu-firstlevel li.selected > a:visited,
#services_menu > ul > li:hover > a,
.attribute-image span {
  color: #ffffff;
}
.miomcti_topmenu-design a {
  text-decoration: none;
  color: #686868;
}
div#topmenu ul,
.service_lvl1 > li {
  position: relative;
  width: 100%;
}
div#topmenu ul ul {
  float: left;
}
.selected .lvl2_menu > a,
.menu_lvl1_div .selected > a:link,
.selected .menu_lvl1_div > a:visited {
  color: #ffffff;
}
ul#miomcti_topmenu-firstlevel li .menu_lvl1_div > a {
  position: relative;
  top: -10px;
  display: block;
  line-height: 25px;
  padding: 5px 10px;
}
ul#miomcti_topmenu-firstlevel .menu_with_children .menu_lvl1_div > a {
  padding: 5px 20px 5px 10px;
}
ul#miomcti_topmenu-firstlevel .menu_with_children:hover .menu_lvl1_div > a,
#miomcti_topmenu-firstlevel .menu_with_children:hover .menu_lvl1_div > a {
  border-bottom: 10px solid #355689;
}
ul#miomcti_topmenu-firstlevel li .menu_lvl1_div {
  position: relative;
  top: 10px;
  border-left: 1px solid #333;
  height: 15px;
  padding: 0 10px;
}

ul#miomcti_topmenu-firstlevel li.selected .menu_lvl1_div a,
ul#miomcti_topmenu-firstlevel li:hover .menu_lvl1_div a {
  color: #fff;
  background-color: #424242;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
ul#miomcti_topmenu-firstlevel li:hover .menu_lvl1_div a {
  background: #355689;
}
.menu_with_children:hover .lvl2_menu,
.service_lvl1 > li:hover .lvl2_menu {
  left: auto;
  z-index: 4000;
}
#miomcti_topmenu-firstlevel .menu_with_children:hover .lvl2_menu {
  margin-left: 11px;
}
.menu_with_children:hover .lvl2_menu {
  top: 41px;
  margin-left: 4px;
}
.lvl2_menu {
  left: -9999px;
  position: absolute;
  width: auto;
  background: #fff;
  border: solid 4px #355689;
  z-index: 15000;
}
.lvl2_menu > div {
  zoom: 1;
}
.lvl2_menu li > a,
.lvl2_menu li > a:hover,
.lvl2_menu .dark_bullet_hover .selected a {
  display: block;
  background-position: 15px center;
  padding: 5px 10px 5px 20px;
  top: 0;
}
#miomcti_topmenu-firstlevel .lvl2_menu li {
  float: none;
}




div.lvl3{display:none;}
.menu_type_2 .lvl2_menu, div.lvl3 {width:258px}
.lvl2_menu ul li.withsub:hover div.lvl3{
  display:block;
  position:absolute;
  left:250px;
  top:-4px;
  padding:10px 10px 10px 0;
  background-color:white;
  border-top:4px solid #355689;
  border-right:4px solid #355689;
  border-bottom:4px solid #355689;


}

.lvl2_menu ul li.withsub:hover div.lvl3.right{
  display:block;
  position:absolute;
  left:-250px;
  top:-4px;
  padding:10px 0 10px 10px;
  background-color:white;
  border-top:4px solid #355689;
  border-left:4px solid #355689;
  border-bottom:4px solid #355689;
  border-right:0;


}

div.lvl3 .image{width:100%}
div.lvl3 .image img{width:100%}
.lvl2_menu li a{background-position:10px !important;}
div.lvl3 div.mnu{border-left:1px solid black;padding: 0 15px 0 25px;height:100%}
div.lvl3.right div.mnu{border-right:1px solid black;border-left:0;padding: 0 25px 0 15px;height:100%}
div.lvl3 div.mnu ul{float:none;background:white;padding:0}
.lvl2_menu ul li.withsub:hover div.lvl3 div.mnu ul{float:none;background:white}
.lvl2_meun ul.dark_bullet_hover li:hover{background-position:15px;}

/* URL de l'image: /bundles/giedisplay/images/common/puce_sous_menu_grise.png */
.dark_bullet_hover div.lvl3 div.mnu ul li, div.lvl3 ul li:hover{ background-color:white }
.dark_bullet_hover  li ul.lvl3_bullet_hover li a {color:#a41c66 !important;
  background-color:white !important;
  background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAICAQAAAB0OpaOAAAAKUlEQVR4AWOI+T9RlAEIgIyY/x1SYAYIghkQiMHgBTNWc4LVLOIG6QYAS7oeL5zO5iQAAAAASUVORK5CYII=') !important;
  background-repeat: no-repeat;
  background-position: left 10px !important;
  padding:5px 0 5px 10px;}
div#topmenu div.mnu ul.lvl3_bullet_hover{float:none !important;}
.dark_bullet_hover  li ul.lvl3_bullet_hover li a:hover{text-decoration:underline}

div.lvl3 div.mnu ul{float:none !important}
/*
.lvl2_menu ul li.withsub:hover ul.lvl3_bullet_hover li a{color:#a41c66 !important;
background-color:white !important;
background-image: url("/bundles/giedisplay/images/common/puce_sous_menu_grise.png") no-repeat scroll left 4px rgba(0, 0, 0, 0) !important }
*/
div.mnutitle{font-size:14px;font-weight:bold}

.mise_en_avant_menu {
  float: left;
  padding-left: 10px;
  margin: 10px;
  border-left: solid 1px #5c5c5c;
}
#top_sub_menu {
  margin: 10px 0 10px 0;
  overflow: auto;
  width: 100%;
}
.smaller_text {
  font-size: 0.9em;
}
#top_sub_menu #breadcrumb {
    float: left;
    width: 75%;
    padding-left: 0;
    margin: 0;
}
#top_sub_menu .current_page {
  color: #355689;
}
/* puces  */
.clearfloat {
  border: 0;
  clear: both;
  float: none;
  font-size: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
.smaller_text {
  font-size: 0.8em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
  padding: 0;
  margin: 20px 0 0.5em;
  font-weight: normal;
}
h1 {
  font-size: 2.5em;
  font-family: Calibri, Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
  color: #424242;
}
h2 {
  font-family: Calibri, Arial, Helvetica, Verdana, sans-serif;
  font-size: 1.77em;
  font-weight: bold;
}
h3 {
  font-family: Calibri, Arial, Helvetica, Verdana, sans-serif;
  font-size: 1.62em;
  font-weight: bold;
}
h4 {
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-size: 1.2em;
  font-weight: bold;
  color: #355689;
}
.titre_bleu {

  color: #355689;
}
h5 {
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-size: 1.2em;
  font-weight: normal;
  color: #355689;
}
h6 {
  font-weight: normal;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  color: #355689;
  font-size: 1.08em;
}

/* .content-view-full .dark_bullet>li {
    background: none;
    list-style:
        url("/bundles/giedisplay/images/common/puce_sous_menu_grise.png")
        outside;
    margin: 0 0 5px 30px;
    padding-left: 0
}*/
#page-content {

  margin-left: auto;
  margin-right: auto;
  background-color: white;
  padding-bottom: 100px;
  max-width: 1170px;
  width: 100%;
}
div#topmenu.affix {
  top: 0;
  left: 0;
  z-index: 1000;
  margin-top: 0;
}
.attribute-image img {
    width: 100%
}
.ezxmltext-field .attribute-image img,
.attribute-image.thematique img {
    width: inherit;
}
.ezxmltext-field .attribute-image.embed.pull-center {
    text-align: center;
}

.attribute-name {
  text-align: left;
  font-weight: bold;
}
.toprow .focusslideshow .attribute-image {
  float: right;
}
.toprow .focusslideshow .attribute-image img {
  width: 100%;
  height: auto;
}
ul#actu_tabs {
  margin: 0 !important;
}
ul.slideshow_content {
  margin: 0;
}
.actu_focus_main_text p {
  overflow: hidden;
}
#carte-position {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.breadcrumb {
  background-color: transparent;
  font-size: 0.8em;
}
.miomcti_pagenavigator {
    margin: 20px 0;
    font-size: medium;
}
.miomcti_pagenavigator nav {
  line-height: 1.25em;
}
.miomcti_pagenavigator .current {
  color: #355689;
  font-weight: bold;
}
.miomcti_pagenavigator img,
.miomcti_pagenavigator span {
  padding: 0 3px;
}
.miomcti_pagenavigator a {
  color: #686868;
  text-decoration: none;
}
.miomcti_pagenavigator a:hover {
  color: #355689;
  text-decoration: underline;
}
.lighter {
    opacity: 0.3;
}
.searchbox-field,
.searchbox-filter,
.searchbox-confirm {
  float: left;
}

.searchbox-filter {
    border-right: 0 solid;
    padding: 1px 0;
    width: 33.333%;
    background: rgba(244,245,246,1);
}

div.searchbox-inner {
  border: 1px #5C5C5C solid;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  height: 22px;
  overflow: hidden;
  top: 0;
  padding-left: 2px;
}
div.searchbox-field {
  width: 66.66666%;
  float: left;
}
/* URL de l'image: /bundles/giedisplay/images/miomcti/loupe_recherche.png */
.miomcti_searchtext {
  background: transparent url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAACK0lEQVR4AU1SxYLcMBSLncRJlpmZtwyn0nG/uHwrc3taZpjFYXaM1UDhDWUeSE+yibVWGR3H8frm5traWqXCPc/r6eyam5tbWlwMAkaIY4wh+KkHwZ9MLvv2/ft0NjM6Oh4EAaW0Wq2WssWhoaH79+60tkbOf0G4iF+/fp0vFheWli0lCBGrGp7S6atkR0fbk8ePPY/+HaB7e3uFSnV2+YamntJaC0lMbUvqkZ7B7sv0+XHiyFr9b+D09HRyctL3fRFzIQQkua7rGEssZV7Q1dkDRBD+G2AMfMSj1EVQqpSSQoAJSoRQvh+USiWtrTGqMeBFQRi0tgjBiXUQsKv+QAl3jFSCcy0FjKHUwWKEuLSrq6ujrW18dIw6BgKM0i7CsUaKMGS8WvaZC6ORQ3cNaWJ8vFIq+r4bhiEKEAPR2IcFHq8W05nLpaV59EFbcyWMdnZ27u9uG4f6wIp8FXOjpRRxKn0lRXlsbKAu2m2KBuTo6GgURefn5+VyWUoJsHw+v7u7k0ydu56TSBxDQ6MbJdLggi2p1BWuRjaXRpkxNjMzPTs7d3h4+OvXr4cPH05PzaLH81htAE9YDMZhdTDgXrS2RTVUS/ENlG/fvq2srMzOziJHGhcLfalUqlgsYh7OIokDAQqo4PjJycn+/j5mrl+/7jVOEdsnEgk04S/sAkkQRDjMi4srreXCwgK2ePbsWa2hgYQZzjmwYTapB0iQR7VcLmIGiJ8/f0b+NykibIBkX8OpAAAAAElFTkSuQmCC') no-repeat center left;
  -moz-border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
  vertical-align: top;
  font-size: 12px;
  line-height: 20px;
  height: 20px;
  border: none;
  padding: 3px ;
  padding-left: 20px;
  width: 100%;
}
input.searchbox-confirm.button_clean, button.searchbox-confirm.button_clean {
  cursor: pointer;
  color: #fff;
  background: #355689;
  height: 100%;
}
.selectBox-dropdown {
  /*  min-width:20%;*/
  /* width:114px;*/
  width: 33.3333%;
}
input.searchbox-confirm.button_clean, button.searchbox-confirm.button_clean {
  /*   width:auto;padding:  5px 17px;*/
  line-height: 1em;
  background: none repeat scroll 0 0 #355689;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 83%;
  height: 100%;
  width: 33.33333%;
  padding: 5px 0 6px;
  float: right;
  border: 0;
}

button.searchbox-confirm.button_clean
{
    margin:0;
}


.bloc_background {
    background: none repeat scroll 0 0 rgb(244,245,246);
    border: 1px solid #d4d4d4;
    padding: 9px;
}

button.submit_button, input.submit_button, input.button, input.defaultbutton, input.button-disabled,#page-content .content-edit .button {
  background: none repeat scroll 0 0 #355689;
  border: medium none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  padding: 10px 30px;
  font-size: 1em;
}


#headersearch input.searchbox-confirm.button_clean {
  width: 33.34444%;
}
/* URL de l'image: /bundles/giedisplay/images/common/puce_sous_menu_blanche.png */
.dark_bullet_hover li:hover a,
.dark_bullet_hover a:hover,
.dark_bullet_hover li.selected a {
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAICAQAAAB0OpaOAAAAKUlEQVR4AWP4/3+iKAMI/AeCDikQAwxADChAZ/yVBDNWc4LVLOIG6QYANtormFiswmYAAAAASUVORK5CYII=') no-repeat scroll left center #424242;
  color: #FFFFFF;
}
/* URL de l'image: /bundles/giedisplay/images/common/puce_sous_menu_grise.png */
.dark_bullet a,
.dark_bullet li,
.dark_bullet_hover a,
ul:not(.pagination) li {
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAICAQAAAB0OpaOAAAAKUlEQVR4AWOI+T9RlAEIgIyY/x1SYAYIghkQiMHgBTNWc4LVLOIG6QYAS7oeL5zO5iQAAAAASUVORK5CYII=') no-repeat scroll left top 4px rgba(0, 0, 0, 0);
    padding-left: 10px;
}

form .error ul li{background:none}

.dark_bullet li ul {
  margin: 0;
}
.dark_bullet li li {
  list-style: none;
  font-size: 0.9em;
  margin: 5px 0;
}
.dark_bullet li li:before {
  content: "- ";
  padding: 0 0 0 10px;
}
/* URL de l'image: /bundles/giedisplay/images/common/puce_sous_menu_grise.png */
p.dark_bullet:before {
  display: inline;
  content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAICAQAAAB0OpaOAAAAKUlEQVR4AWOI+T9RlAEIgIyY/x1SYAYIghkQiMHgBTNWc4LVLOIG6QYAS7oeL5zO5iQAAAAASUVORK5CYII=');
}
a.button{color:white}
.button {
  background: none repeat scroll 0 0 #355689;
  border: medium none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  padding: 10px 30px;
}
.button:hover {
  color: #ffffff;
}
.image.pull-left img {
  width: 100%;
}
#page-content {
  /*  padding:0 20px;*/
}
#page-content #carte a {
  text-decoration: none;
}
#page-content .title_band,
#page-content .title_band a,
#page-content .title_band span,
#page-content .onglet,
#page-content .onglet.type1 h2,
#page-content .type1 h2 .onglet.selected,
#page-content h2.onglet {
  background: #375589;
  color: #fff;
  padding: 3px;
  margin: 0 2px 0 0;
  font-size: 0.8em !important;
  font-weight: normal;
}
#page-content .onglet.type2,
#page-content .type2 .onglet.selected {
  background-color: #9a0c58;
}
#page-content .onglet {
  float: left;
  font-size: 0.8em ;
  font-weight: normal;
  border-radius: 5px 5px 0 0;
  margin: 0 2px 0 0;
  background: #355689;
}
#page-content .onglet a {
  text-decoration: none;
  color: #686868;
}

#page-content #col_secondaire .description{padding:0}
#page-content #col_secondaire p{padding:0}

#page-content #col_secondaire {
    padding: 0;
}
#page-content #col_principale.no-sec {
    padding: 0 0 0 15px;
}
#page-content .twocols #col_secondaire {
    padding: 0 15px 0 0;
}
#page-content #col_contextuelle,
#page-content .class-landing-page #col_secondaire {
    padding: 0 15px 0 15px
}

#page-content .attribute-page #col_secondaire{
  border-left: 1px solid #d4d4d4;
  border-right: 1px solid #d4d4d4;
}
#page-content #col_secondaire.searchresult {
  border: 0;
}
#page-content #col_secondaire.searchresult .bloc_background {
  border: 1px solid #D4D4D4;
}

#page-content #menu_secondaire h2 a,
#page-content .menu_secondaire li ul li.selected a,
#page-content .menu_secondaire li ul li a:hover {
  color: #355689;
  text-decoration: none;
}
#page-content #menu_secondaire .liste_type2 li a,
#page-content .menu_secondaire .liste_type2 li a {
  font-weight: bold;
  margin: 0 10px;
  padding: 2px 5px 2px 20px;
}
#page-content #menu_secondaire .liste_type2 {
  padding: 5px 0;
  background: #fff;
  border-bottom: 1px solid #cacaca;
  width: 100%;
}
/* URL de l'image: /bundles/giedisplay/images/common/fleche_secondaire_grise_menu.png */
#page-content #menu_secondaire .titre_secondaire{text-transform: uppercase;font-weight:  normal;line-height: normal}
#page-content #menu_secondaire .liste_type2 li a,
#page-content .menu_secondaire .liste_type2 li a {
  background: #ffffff url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAJCAYAAADkZNYtAAAAf0lEQVR4AY2QswIDMBBAL79R/v9Y23bHzJ1qW682X3y+yDONTl9Vq1Xi8TjyL7lcjlKp9J9DbTxXiUSCSqXyf4ZsNsthyQGtNYFAAI/HQzgcxm63EwwGr8vlchEKhTiU9VfkQ7OsF0b5RiqVOjY5WGD6GfGQejDD8te3AdZ7+Q7C/GrTudceHgAAAABJRU5ErkJggg==') 5px 5px no-repeat;
  padding: 2px 5px 2px 20px;
  color: #355689;
  margin: 0 10px;
  display: block;
  font-weight: bold;
}
/* URL de l'image: /bundles/giedisplay/images/common/fleche_secondaire_bleue_menu.png */
#page-content #menu_secondaire .liste_type2 li a:hover,
#page-content #menu_secondaire .liste_type2 li.selected a,
#page-content .liste_type2 li a:hover {
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAJCAYAAADkZNYtAAAApklEQVR4AWNABy/ffmAsquz+X1Y76z8DsSCjpOdbUln/K6IUP/rygzG5bu3P5IqpxNsQVzL3f2L1vPtgzpzlR/+7BNf9tw9p/m8V0PjfOrDhv31g83/n4PZHhomd5x1D6v9YR3X+j2nfQtiGhOplr5LyZvz//+enNF6F4SVz/kcUTPv/8ed/GbwKwyqa/gdXzvv/8ft/ObwKk8p7/pf1rv0PBPLI4gBs/lCcCjqQTgAAAABJRU5ErkJggg==') no-repeat scroll 5px 5px rgb(244,245,246);
  display: block;
}
/* URL de l'image: /bundles/giedisplay/images/common/filtre_selection.png */
#page-content .filter_selected {
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAMCAQAAAAXSy9vAAAAlUlEQVQYGQXBMVLDMBAAwD3pbCANBS9m+FUqWh5EcGxJx24AX8Vld+nKpXlx2CUwfGoW2C3hwl0DJqalTE+HP6W8acCrRBPC0KXN0CXwa4DQLR1TOjTgHUsJpVtY2DXgITWngUSZGBJoBnYbToTC1IAOwsBECoUETjeX0AylBEJKoDw0yzDRFZZLAjc/vg0fnjikEjb/7PBBTQ3Qh8IAAAAASUVORK5CYII=') no-repeat scroll left center #ffffff;
  display: block;
  padding: 3px 0 3px 20px;
  text-decoration: none;
}
#page-content .content-view-line {
  border-bottom: 1px solid #ebebeb;
}

#page-content #col_secondaire .content-view-line {
    border-bottom: none;
}
#page-content .content-view-line .image.pull-left {
  padding: 0 10px 1px 0;

}
#page-content .content-view-line h2,
#page-content .content-view-line h3 {
  margin: 0;
  color: #355689;
  font-size: 1.3em;
  line-height: 1.3em;
}
#page-content .content-view-line h2 a,
#page-content .content-view-line h3 a {
  color: #355689;
  text-decoration: none;
}

.linelink {
    float: left;
    padding-right: 5px;
}

#page-content .photo_planche {

  font-size: 0.75em;
  text-align: center;
}
#page-content .photo_planche .image {
  width: 20%;
}
#page-content .photo_planche .image img {
  width: 100%;
}
#page-content .planche .image {
  width: 60%;
  margin: 0 auto;
}
#page-content .planche .image img {
  width: 100%;
}
#page-content #tagcloud a {
  text-decoration: none;
}
#page-content .breadcrumb a {
  text-decoration: none;
  color: #686868;
}
#page-content .breadcrumb .path_text {
  color: #355689;
}
#page-content #menu_sommaire {
  border: 1px solid #C8C8C8;
  margin: 0 0 20px;
  overflow: hidden;
  padding: 10px;
  text-decoration: none;
}
#page-content #menu_sommaire ul.dark_bullet li {

  float: left;
  margin: 5px 10px;
  width: auto;
}
#page-content #menu_sommaire ul.dark_bullet li a {
  text-decoration: none;
}

#page-content #menu_sommaire li:hover a,#page-content-content #menu_sommaire li.selected a {
    color: #355689;
}

#menu_sommaire li:hover, #menu_sommaire li.selected {
    background-color: rgb(244,245,246);
}
#page-content #col_principale .line-content {
  padding: 10px;
}
#page-content #col_principale .line-content h2 {
  margin: 0;
  font-size: 1.3em;
  color: #355689;
}
#page-content #col_principale .image img {
 /* width: 100%;*/
}
#page-content #col_principale .content-view-line.linkBlock {
  cursor: pointer;
}
#page-content #col_principale .content-view-line:hover {
  background-color: #355689;
  color: white;
}
#page-content #col_principale .content-view-line:hover .line-content h2,
#page-content #col_principale .content-view-line:hover h2,
#page-content #col_principale .content-view-line:hover h3 {
  color: white;
}
#page-content #col_principale .content-view-line:hover .line-content h2 a,
#page-content #col_principale .content-view-line:hover h2 a,
#page-content #col_principale .content-view-line:hover h3 a,
#page-content #col_principale .content-view-line:hover a{
  color: white;
}
#page-content #col_principale .line-content h2 a {
  color: #355689;
}
#page-content #col_principale .content-view-line {
  border-bottom: 1px solid #ebebeb;
  padding: 5px 5px 15px 5px;
  margin-bottom: 15px;
}
#page-content #col_principale .content-view-line .info {
    padding-top: 5px;
}

#page-content #col_principale .content-view-line .attribute-display_date {
    color: #355689;
}
#page-content #col_principale .content-view-line:hover .attribute-display_date {
    color: white;
}

#page-content #col_principale .content-view-line.first {
  padding-top: 0;
}
#page-content #col_principale .content-view-embed.first {
  border-top: 1px solid #dfdfdf;
}
#page-content #col_principale .content-view-line.no-hover:hover {
  background: inherit;
}
#page-content #col_principale .content-view-line.no-hover:hover,
#page-content #col_principale .content-view-line.no-hover:hover div,
#page-content #col_principale .content-view-line.no-hover:hover a,
#page-content #col_principale .content-view-line.no-hover:hover p {
  color: inherit;
}
#page-content #col_principale .content-view-line.line2 h2 {
  background: #355689;
  padding: 2px;
  font-size: 1em;
}
#page-content #col_principale .content-view-line.line2 h2 a {
  color: #fff;
  font-weight: bold;
}
#page-content #col_principale .content-view-line.line2 .readmore a {
  color: #355689;
  text-decoration: none;
}
#page-content #col_principale .content-view-line.line2:hover .readmore a {
  color: #ffffff;
}
#page-content #col_principale .content-view-line.line2 .readmore a:after {
  content: ' \00BB';
}
#page-content #col_principale .content-view-embed .attribute-image img {
  float: left;
}
#page-content #col_principale .content-view-embed .attribute-image img.image_class_full_colonne {
  float: none;
}
#page-content #col_principale li .content-view-embed .attribute-image img {
  float: none;
}
#page-content #col_principale .content-view-embed .attribute-display_date {
  color: #777777;
}


#page-content #col_principale .attribute-short {
    font-weight: bold;
}

#page-content #col_principale .content-view-embed:hover .attribute-display_date,
#page-content #col_principale .content-view-embed:hover .readmore a {
  color: #cccccc;
}
#page-content #col_principale #search_results .class-name {
  background: none repeat scroll 0 0 #355689;
  float: left;
}
#page-content #col_principale #search_results .class-name,
#page-content #col_principale #search_results .pertinence {
  border-radius: 2px;
  color: #fff;
  font-weight: bold;
  padding: 3px 5px;
  font-size: 0.7em;
}
#page-content #col_principale #search_results .pertinence {
  float: right;
}
#page-content #nav_thematique div.tag_level1 {
  float: left;
}
#page-content #col_principale ul,
#page-content #col_secondaire ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#page-content #col_secondaire ul.dark_bullet_hover.menu_secondaire {
margin-top: 10px;
}
#page-content #col_principale ul li,
#page-content #col_secondaire ul li {
  padding: 0 0 0 10px;
}
#page-content #col_secondaire .content-view-line .image.pull-left {
  padding: 0;
  margin-bottom: 5px;
  width: 100%;
}
#page-content #col_secondaire .description {
    color: #424242;
    float: left;
    margin-bottom: 10px;
}
#page-content #col_secondaire .bloc_background {
  background: none repeat scroll 0 0 rgb(244,245,246);
  overflow: hidden;
  padding: 9px;
}
#page-content #col_secondaire #menu_secondaire.no_background
{
    border-left: 1px solid #d4d4d4;
    border-right: 1px solid #d4d4d4;
    border-top:none;
    border-bottom: none;
    padding:0 15px;
}

#page-content #col_secondaire h2,
#page-content #col_secondaire h3,
#page-content #col_secondaire h4 {
  font-size: 1em;
  margin: 0;
}
#page-content #col_secondaire a h3 {
  color: #355689;
  font-weight: normal;
}
/* URL de l'image: /bundles/giedisplay/images/common/puce_sous_menu_grise.png */
#page-content #col_secondaire a .info h3 {
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAICAQAAAB0OpaOAAAAKUlEQVR4AWOI+T9RlAEIgIyY/x1SYAYIghkQiMHgBTNWc4LVLOIG6QYAS7oeL5zO5iQAAAAASUVORK5CYII=') no-repeat left 4px;
  padding-left: 10px;
  float: left;
}
#page-content #col_secondaire .content-view-line {
  margin: 0;
}
#page-content #col_secondaire .content-view-line .image {
  float: left;
  padding: 0;
}
#page-content #col_secondaire a,
#page-content #col_secondaire .menu_secondaire li ul li.selected a,
#page-content #col_secondaire .menu_secondaire li ul li a:hover {
  color: #355689;
  text-decoration: none;
}
#page-content #col_secondaire h3 {
    font-family: "Arial", Helvetica, Verdana, sans-serif;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase
}

#page-content #col_secondaire h2 a {
  border-bottom: 1px solid #CACACA;
  display: block;
  font-weight: normal;
}
#page-content #col_secondaire #menu_secondaire{
    border: 1px solid #D4D4D4;
    margin-top: 37px;
}
#page-content #col_secondaire #menu_secondaire li {
  padding-left: 0;
  margin: 0;
  background: none;
}
#page-content #col_secondaire #menu_secondaire h2 a {
  font-weight: normal;
  border-bottom: 1px solid #cacaca;
  display: block;
}
#page-content #col_secondaire #menu_secondaire h2 a,
#page-content #col_secondaire #menu_secondaire .menu_secondaire li ul li.selected a,
#page-content #col_secondaire #menu_secondaire .menu_secondaire li ul li a:hover {
  color: #355689;
  text-decoration: none;
}
#page-content #col_secondaire #menu_secondaire .menu_secondaire li a {
  display: block;
  text-decoration: none;
  color: #5B5B5B;
  font-size: 0.92em;
}
#page-content #col_secondaire #menu_secondaire .menu_secondaire li.selected a,
#page-content #col_secondaire #menu_secondaire .menu_secondaire li a:hover {
  color: white;
}
#page-content #col_secondaire #menu_secondaire .menu_secondaire li {
  padding: 0;
}
#page-content #col_secondaire #menu_secondaire .menu_secondaire .liste_type2 li a {
  color: #355689;
}
#page-content #col_secondaire a.title_link {
  text-decoration: none;
}
#page-content #col_secondaire ul#active-facets-list li {
  background-image: none;
  padding: 0;
}
#page-content #col_secondaire #facets-bloc {
    margin-top: 20px;
}
/* URL de l'image: /bundles/giedisplay/images/common/filtre_selection.png */
#page-content #col_secondaire ul#active-facets-list li a.filter_selected {
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAMCAQAAAAXSy9vAAAAlUlEQVQYGQXBMVLDMBAAwD3pbCANBS9m+FUqWh5EcGxJx24AX8Vld+nKpXlx2CUwfGoW2C3hwl0DJqalTE+HP6W8acCrRBPC0KXN0CXwa4DQLR1TOjTgHUsJpVtY2DXgITWngUSZGBJoBnYbToTC1IAOwsBECoUETjeX0AylBEJKoDw0yzDRFZZLAjc/vg0fnjikEjb/7PBBTQ3Qh8IAAAAASUVORK5CYII=') no-repeat scroll left center #ffffff;
  display: block;
  padding: 3px 0 3px 20px;
  text-decoration: none;
}
#page-content #col_secondaire ul#facet-list {
  margin-left: 0;
}
#page-content #col_secondaire ul#facet-list li {
  background-image: none;
  padding: 0;
}
#page-content #col_secondaire ul#facet-list li.facet_name {
  border-top: 1px solid #d4d4d4;
  margin: 5px 0;
  padding: 5px 0 0;
}
#page-content #col_secondaire ul#facet-list a:hover {
  text-decoration: none;
}
#page-content #col_secondaire #search_controls a {
  color: #424242;
}
#page-content #col_secondaire #search_controls a:hover {
  text-decoration: underline;
}
#page-content #col_secondaire #search_controls a:hover,
#page-content #col_secondaire #search_controls a:active {
  color: #355689;
}
#page-content #col_contextuelle h2.onglet {
  background-color: #9A0C58;
}
#page-content #col_contextuelle .contentlist {
  background: none repeat scroll 0 0 rgb(244,245,246);
  border: 1px solid #D4D4D4;
  overflow: hidden;
  padding: 5px 10px 5px 10px;
}
#page-content #col_contextuelle div.image {
  float: left;
}
#page-content #col_contextuelle div.bannerlinks {
    margin-right: 3px;
}
#page-content #col_contextuelle div.bannerlinks div.image {
  float: left;
  margin: 0;
}
#page-content #col_contextuelle .banner {
    margin: 0 0 20px 0;
    position: relative;
    width: 100%;
}

/*#page-content #col_contextuelle .banner:hover {
    opacity: 1;
}*/
#page-content #col_contextuelle .banner span {
    position: absolute;
    bottom: 0;
    z-index: 999;
    width: 100%;
    padding: 2px 5px;
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-size: small;
    font-weight: bold;
    background: rgba(66,66,66,0.6);
}

#page-content #col_contextuelle .banner.last {
    margin-bottom: 0;
}
#page-content #col_contextuelle h3 {
  font-size: 1.1em;
}
#page-content #col_contextuelle a h3 {
  color: #424242;
}
#page-content #col_contextuelle .content-view-line .image.pull-left {
  width: 30%;
}
#col_contextuelle .content-view-line {
    border-bottom: 1px solid #D4D4D4;
    margin-bottom: 5px;
}
#col_contextuelle .content-view-line .attribute-display_date {
    color: #355689;
}
#col_contextuelle .content-view-line h3 a {
    color: #424242;
}
#col_contextuelle .content-view-line h3 > a:hover {
    color: #355689;
}
div#col_contextuelle .class-formulaire fieldset {
    background-color: white;
}

.class-formulaire fieldset {
    padding: 20px;
}

#page-content .onglet.type2,
#page-content .type2 .onglet.selected {
  background-color: #9a0c58;
}
.type2 .onglet.selected a,
.type1 .onglet.selected a,
.type2 .onglet.selected a {
  color: #ffffff;
}
#col_principale .class-phototheque .clearfloat {
  margin: 0;
  visibility: visible;
}
/* URL de l'image: /bundles/giedisplay/images/common/plus.jpg */
.embed_display_all {
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAAAAACMxyj6AAAAIUlEQVQI12NIS4eBNIb0/zCQDmGnEWKnQQDR6hHmI9kLAPNKWP9z0cp/AAAAAElFTkSuQmCC') no-repeat left center;
  padding: 0 0 0 18px;
  font-size: 0.9em;
}
.embed_display_all a:hover {
  color: #2a6496;
  text-decoration: underline;
}
.embed_display_all.stand_alone:first-child {
    border-top: 1px solid #D4D4D4;
}
.embed_display_all.stand_alone {
    background-position: left 12px;
    border-bottom: 1px solid #D4D4D4;
    margin: 0;
    padding: 5px 0 12px 18px;
}
#breadcrumb a,
#sub355689_breadcrumb a {
  text-decoration: none;
  color: #686868;
}
#sub_breadcrumbs {
  color: #355689;
  font-size: 1.2em;
  margin: 20px 0 5px 0;
  text-decoration: underline;
}
#sub_breadcrumbs a {
  color: #355689;
}

div#fancy .tab:hover,
div#fancy .slideshow_tabs .actu_tabs_tabs_hover,
div#fancy .presse_slideshow_tabs .tab.activeSlide {
  height: 65px;
  border: none;
  padding-right: 19px;
}
div#fancy .tab {
  width: 145px;
  /* background: #ffffff url("/bundles/giedisplay/images/common/bg_focus_tab.png") 0 1px; */
  line-height: 50px;
  padding: 5px 10px;
  cursor: pointer;
}
div#fancy .presse_slideshow .tab {
  width: 128px;
}
div#fancy .tab_text {
  line-height: 1.2;
  vertical-align: middle;
  display: inline-block;
  text-align: left;
}
div#fancy .tab_text .type {
  font-size: 0.85em;
}
div#fancy .tab:hover span,
div#fancy .tab_text_hover,
div#fancy .actu_tabs_tabs_hover .tab_text {
  color: #ffffff;
}
div#fancy .focusslideshow dd,
div#fancy .focusslideshow dl,
div#fancy .focusslideshow dt,
div#fancy .focusslideshow p {
  margin: 0;
}
div#fancy .focusslideshow dt,
div#fancy .focusslideshow p,
div#fancy .focusslideshow .attribute-display_date,
div#fancy .focusslideshow .slideshow_content .readmore a,
div#fancy .focusslideshow .attribute-image_caption,
div#fancy .focusslideshow .attribute-image_credits {
  color: #ffffff;
}
div#fancy #actu_tabs {
  float: left;
  width: 260px;
}
div#fancy .focusslideshow {
  background: #424242;
  overflow: hidden;
  height: 260px;
}
div#fancy .focusslideshow div.attribute-image {
  margin: 0;
}
/* URL de l'image: /bundles/giedisplay/images/common/fleche_focus.png */
div#fancy #actu_tabs .tab:hover,
div#fancy #actu_tabs .actu_tabs_tabs_hover {
    background: url('/bundles/giedisplay/images/common/fond-violet.png') center right;
    width: 269px;
}
div#fancy .focusslideshow .slideshow_content_text {
  float: left;
  width: 475px;
}
div#fancy .focusslideshow .actu_focus_main_text {
  height: 260px;
  padding: 20px;
  position: relative;
    color:white;
}
div#fancy .focusslideshow dt {
  color: #fff;
  font-size: 1.8em;
  line-height: 1.1em;
  margin-bottom: 5px;
}
div#fancy .focusslideshow .attribute-display_date {
  margin-bottom: 15px;
}
div#fancy .focusslideshow .attribute-catcher p {
  font-size: 1em;
}
div#fancy .focusslideshow h2 {
  color: #df1c8b;
  line-height: 1em;
  margin: 2px 0;
  font-size: 1.6em;
  font-weight: normal;
}
div#fancy .focusslideshow .attribute-image_caption {
  position: absolute;
  bottom: 0;
  background: #9A0C58;
  padding: 5px;
  opacity: 0.9;
  width: 310px;
}
div#fancy .focusslideshow .fleche_focus_image {
  left: 39px;
  position: absolute;
  top: -8px;
}
div#fancy .focusslideshow .attribute-image_credits {
  margin: 5px 0;
  font-size: 0.8em;
}
div#fancy ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
div#fancy div.focusslideshow h2 {
  color: #FFFFFF;
  font-size: 1.8em;
  line-height: 1.1em;
  margin-bottom: 5px;
  font-weight: bold;
}
div#fancy .focusslideshow .actu_focus_main_text {
  width: 450px;
}
div#fancy div.focusslideshow li {
  margin: 0;
  background: none;
  width: 100%;
  padding: 0;
}
div#fancy .actu_focus_main_text .readmore a,
div#fancy #zone_alert .readmore {
  bottom: 10px;
  position: absolute;
  width: 100%;
}
ul#actu_tabs li.tab {
  margin: 0;
  width: 100%;
  height: 65px;
  background: rgba(244,245,246,1);
  border-bottom: 1px solid #ebebeb;
}

div#sommaire ul {
  font-size:16px;
}

div#sommaire ul li {
  list-style:none;
  width:85%;
}

div#sommaire ul li .texte{width:85%;float:left}
div#sommaire ul li .page{
  width:15%;
  float:right;
  position:relative;
  right:-70px;
}
#footer {
    padding-top: 20px;
    background-color: white;
}
#footer a {
    text-decoration: none;
}
#footer-site {
    position: relative;
    background: rgb(244,245,246);
    padding: 20px 40px 30px 40px;
}
#footer-site ul li, #autre-site ul li {
    background: none;
    padding: 0;
    margin: 0;
    list-style: none;
}
#autre-site {
    background: #d4d4d4;
    padding: 20px 40px 30px 40px;
}
#footer-site h2, #autre-site h2 {
    text-transform: uppercase;
    border-bottom: 1px solid #999;
    font-size: 1.2em;
    font-weight: bold;
    padding-bottom: 8px;
    margin-top: 0;
    margin-bottom: 10px;
}

#autre-site h2 {
    margin-bottom: 3px;
}

#plan-site {
    display: table;
    table-layout: fixed;
    width: 100%;
}

#plan-site h3 {
    margin: 8px 0;
    padding: 0;
    font-size: 1.3em;
}

#plan-site .bloc-menu {
    display: table-cell;
    padding: 0 3px 0 3px;
}


#autre-site ul li {
    display: inline-block;
    vertical-align: top;
    text-transform: uppercase;
    border-left: 1px solid #999;
    font-weight: bold;
    padding: 0 6px 0 6px;
}

#autre-site ul li.firstli {
    border: none;
    padding: 0 6px 0 0;
}
#footer_menu address {
  float: right;
  font-size: 0.8em;
  margin: 8px 5px;
  color: #686868;
}
#footer_menu {
  color: #686868;
  font-size: 0.8em;
  background-color: white;
  overflow: hidden;
  margin-bottom: 100px;
}

#footer_menu ul {
  list-style: none;
  padding:0;margin:0;
}
#footer_menu ul li {
  border-left: 1px solid #D4D4D4;
  float: left;
  line-height: 8px;
  margin: 10px 0;
  padding: 0 5px;
  background: none;
}
#footer_menu ul a {
  color: #686868;
  text-decoration: none;
}
#footer_menu .firstli {
  border-left: none;
}

#debug {
  text-align: left;
  border-top: 1px dashed black;
  padding: 0.3em;
  background-color: #fff;
}
#debug table {
  border-collapse: collapse;
}
#debug #timingpoints,
#debug #timeaccumulators,
#debug table.debug_resource_usage {
  border: 1px dashed #000000;
}
#debug table tr.group td {
  padding-top: 0.7em;
  font-size: 0.95em;
}
#debug table tr.group td:first-child {
  padding-left: 0.2em;
  font-size: 1em;
}
#debug table tr.data td {
  background-color: #fff;
  border-top: 1px solid #448;
  border-bottom: 1px solid #448;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95em;
}
#debug table tr.data:nth-child(odd) td {
  background-color: #eeeeee;
}
#debug table + h2,
#debug table + h3 {
  margin-top: 1em;
}
#debug table.debug_resource_usage th + th,
#debug table.debug_resource_usage td + td,
#debug table#timeaccumulators th + th,
#debug table#timeaccumulators td + td,
#debug table#timingpoints th + th,
#debug table#timingpoints td + td {
  padding: 0.25em 0.5em 0.25em 0.5em;
}
#debug th,
#debug td {
  text-align: left;
}
#debug span.debuginfo:after {
  border: 2px solid #23a4f5;
  border-radius: 10px;
  color: #23a4f5;
  height: 10px;
  width: 10px;
  line-height: 10px;
  font-size: 10px;
  content: "i";
  margin-left: 5px;
  padding: 0 5px 0 5px;
  opacity: 0.6;
}
#debug span.debuginfo:hover:after {
  opacity: 1;
}
#debug #templateusage tr.data td:first-child,
#debug #templateusage tr.data td:nth-child(n+5) {
  text-align: center;
}
#debug tr.notice td.debugheader span {
  color: #008000;
}
#debug tr.warning td.debugheader span {
  color: #ffa500;
}
#debug tr.error td.debugheader span {
  color: #ff0000;
}
#debug tr.debug td.debugheader span {
  color: #a52a2a;
}
#debug tr.timing td.debugheader span {
  color: #0000ff;
}
#debug tr.strict td.debugheader span {
  color: #800080;
}



#page-content #col_principale .sitemap_full_lvl1 > li {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    padding: 0;
}

#page-content .sitemap_full_lvl1 > li > a {
    background: none repeat scroll 0 0 #355689;
    font-weight: bold;
    margin: 10px 0 2px;
    padding: 7px 10px;
}

.sitemap_full_lvl1 > li > a, .sitemap_full_lvl2 > li > a {
    color: #fff;
    display: block;
}
/* URL de l'image: /extension/gendarmerie/design/gendarmerie/images/common/puce_sous_menu_blanche.png */
#page-content #col_principale .sitemap_full_lvl2 > li {
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAICAQAAAB0OpaOAAAAKUlEQVR4AWP4/3+iKAMI/AeCDikQAwxADChAZ/yVBDNWc4LVLOIG6QYANtormFiswmYAAAAASUVORK5CYII=') no-repeat scroll left 4px #424242;
    border-top: 1px solid #999;
    line-height: 1.4em;
    margin: 0 0 1px;
    padding-left: 0;
}

.sitemap_full_lvl2 > li > a {
    text-indent: 10px;
}
/* CCS Sitemap */

div#plan_site * li {
   /* padding: 1px 0 1px 0 !important;*/
    text-decoration:none;
    line-height: normal;
    font-size: 14px;
}
div#plan_site * li.cat {
    background: none repeat scroll 0 0 #355689;
    font-size: larger;
    font-weight: bold;
}
div#plan_site * li.cat > ul {
    background-color: #FFFFFF;
    font-size: 14px;
    font-weight: normal;
}
div#plan_site * a {
    text-decoration: none;
    display: block;
}
div#plan_site * li.cat > a {
    padding: 4px 8px;
    margin: 2px;
    color: #FFFFFF;
}
div#plan_site .bloc_background {
    background: none repeat scroll 0 0 rgb(244,245,246);
    border: 1px solid #d4d4d4;
    padding: 9px !important;
    overflow: hidden;
}
div#plan_site .bloc_background > li {
    float: left;
    width: 50%;
}

div.recaptcha_design .field, div.recaptcha_design .buttons{
   border: 1px solid #D4D4D4;
   background-color: rgb(244,245,246);
}

#recaptcha_image, #recaptcha_image img {width:100% !important}
#recaptcha_widget .response{float: left;width:65%}
#recaptcha_widget .help{float: left;width:35%}
#recaptcha_widget {
    background-color: rgb(244,245,246);
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
}
#recaptcha_widget .help{padding:25px 0 0;text-align:  center; }
#recaptcha_widget .response{padding: 5px}
#recaptcha_widget .response input{width:100%}
#recaptcha_widget .inline{display: inline;margin:0 2px}
#recaptcha_widget a{text-decoration:  none}
#recaptcha_widget .glyphicon{font-size: 18px;}

#nav_thematique a {
    text-decoration: none;
}

#nav_thematique ul.tag_list2 {
    padding: 3px !important;
    overflow: hidden;
}

#nav_thematique ul.tag_list1 {
    background: none repeat scroll 0 0 #fff;
    border: 1px solid #d4d4d4;
    padding: 9px !important;
    overflow: hidden;
}

#nav_thematique .tag_level1 h4 {
    background: none repeat scroll 0 0 #355689;
    font-weight: bold;
    margin: 10px 0 2px;
    padding: 7px 10px;
}

#nav_thematique .tag_level1 h4 > a {
    color: #fff;
}

#nav_thematique .tag_level2 > a {
    font-weight: bold;
}

/* Gestion de l'affichage responsive des videos */

.containing-block {
    width: 75%;
}
.outer-container {
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    margin-bottom: 5px;
}
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.playlist .video {
    border: 2px solid #FFFFFF;
    padding: 5px 5px 0 5px;
    margin-top: 5px;
}

.playlist .playlist-img {
    border: 1px solid #d4d4d4;
    padding: 3px;
}
.playlist img {
    width: 100%;
}

.playlist .video .playlist-title {
    text-align: center;
    vertical-align: middle;
    padding: 2px;
    margin: 0;
    font-size: 12px;
    font-weight: bold;
    color: #355689;
}

.playlist .video:hover,
.playlist .video:hover .playlist-title,
.playlist .video.selected,
.playlist .video.selected .playlist-title {
    background-color: #355689;
    color: #FFFFFF;
}

/* Style liens en bas des articles */


.download-wrapper a,
.download-wrapper a:hover,
.download-wrapper a:visited,
.download-wrapper a:focus{
     text-decoration: none;
     color: inherit;
      display:block;
  border: 1px solid #d4d4d4;
  padding: 9px;
  margin: 5px 0;
  border-radius: 5px;
}
.download-file {
  border-radius: 5px;
padding: 4px;

}
.download-wrapper:hover a {
  background-color: #F6F6F6;


}
.download-wrapper:hover .download-file{
  background-color: white;
}
.download-icon {
    float: left;
}

.download-text {
    margin-left: 47px;
    padding: 0;
}
.download-text h4 {
    margin-top: 0;
}
.download-wrapper:hover .download-text {
  background-color: white;
}
.download-wrapper:hover .download-text h4 {
  margin-top: 0;
  text-decoration: underline;
}
.download-text .bloc_background {
    padding: 3px 5px;
}
.download-wrapper:hover .download-text .bloc_background{
  background-color: white;
}
#page-content #col_principale .content-view-line:hover h4 {
    color: white;
}
#page-content #col_principale .content-view-line .download-text span {
    color: #424242;
}

/* Contenus liés ou sous elements colone secondaire */

#page-content #col_secondaire .bloc_background.secondary {
    padding-bottom: 0;
}
#page-content #col_secondaire .embed_display_all a {
    text-decoration: underline;
    color: #424242;
}
#page-content #col_secondaire .embed_display_all a:hover,
#page-content #col_secondaire .embed_display_all a:focus {
    color: #2a6496;
    text-decoration: underline;
}
/* Barre sociale et partage suppression de AddThis */

.share {
    margin-top: 25px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}
.share .facebook iframe {
    transform: scale(1.4);
    -ms-transform: scale(1.4);
    -webkit-transform: scale(1.4);
    -o-transform: scale(1.4);
    -moz-transform: scale(1.4);
    transform-origin: top left;
    -ms-transform-origin: top left;
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
}
.share .facebook {
    width: 213px;
}
.share span {
    font-size: 29px;
}

/* Eregie */
#eregie, #eregie img {
    text-align: center;
}
/* Bloc Twitter / Facebook */
ul#social li {
    padding: 0 !important;
    text-align: center;
    list-style: none;
    background: none;
    display: inline-block;
}
ul#social li a {
    text-decoration: none;
    font-weight: bold;
    font-size: larger;
    color: white;
    padding: 5px;
    display: inline-block;
    width: 100%;
    height: 100%;
}
ul#social li#facebook a {
    background: #3B5998;
    -webkit-border-radius: 6px 0 0 0;
    -moz-border-radius: 6px 0 0 0;
    border-radius: 6px 0 0 0;
}
ul#social li#twitter a {
    background: #55ACEE;
    opacity: 0.50;
    -webkit-border-radius: 0 6px 0 0;
    -moz-border-radius: 0 6px 0 0;
    border-radius: 0 6px 0 0;
}
#tabs-social {
    max-height : 382px;
    width: 100%;
}

/* Icones sociales dans le header */



#boutons-reseaux li.lang-selector{
  line-height: 14px;
}

#boutons-reseaux li.lang-selector a{
  background: none;
  font-size: 1.4em;
  font-weight: bold;
  text-decoration: none;
  color: hsl(0, 0% , 50%);
}

#boutons-reseaux li.lang-selector a:hover, #boutons-reseaux li.lang-selector a.selected{
  color: hsl(349, 55%, 29%);
}


#boutons-reseaux {
    float: right;
    padding: 0;
    margin: 0 0 2px 0;
    list-style: none;
}
#boutons-reseaux li {
    display: inline-block;
    padding: 0;
    margin: 0 0 0 5px;
    background: none;
    height: 14px;
}
#boutons-reseaux a {
    display: block;
    width: 21px;
    height: 21px;
    vertical-align: top;
    background: url('/bundles/giedisplay/images/sprite/sprite-reseaux-sociaux.png') no-repeat;
}
#boutons-reseaux a[href*="twitter.com"] {
    background-position: -90px top;
}
#boutons-reseaux a[href*="twitter.com"]:hover {
    background-position: -112px top;
}
#boutons-reseaux a[href*="facebook.com"] {
    background-position: -46px top;
}
#boutons-reseaux a[href*="facebook.com"]:hover {
    background-position: -68px top;
}
#boutons-reseaux a[href*="dailymotion.com"] {
    background-position: -222px top;
}
#boutons-reseaux a[href*="dailymotion.com"]:hover {
    background-position: -244px top;
}
#boutons-reseaux a[href*="youtube.com"] {
    background-position: -2px top;
}
#boutons-reseaux a[href*="youtube.com"]:hover {
    background-position: -24px top;
}
#boutons-reseaux a[href*="flickr.com"] {
    background-position: -134px top;
}
#boutons-reseaux a[href*="flickr.com"]:hover {
    background-position: -156px top;
}
#boutons-reseaux a[href*="calameo.com"] {
    background-position: -444px top;
}
#boutons-reseaux a[href*="calameo.com"]:hover {
    background-position: -466px top;
}
#boutons-reseaux a[href*="viadeo.com"] {
     background-position: -313px top;
 }
#boutons-reseaux a[href*="viadeo.com"]:hover {
    background-position: -333px top;
}
#boutons-reseaux a[href*="linkedin.com"] {
    background-position: -178px top;
}
#boutons-reseaux a[href*="linkedin.com"]:hover {
    background-position: -200px top;
}
#boutons-reseaux a[href*="/rss/feed"] {
    background-position: -355px top;
}
#boutons-reseaux a[href*="/rss/feed"]:hover {
    background-position: -377px top;
}

/* Bloc thematique */

#bloc_thematique .profil {
    background: rgb(244,245,246);
    border: 1px solid #d4d4d4;
    padding: 15px 20px 10px 20px;
}
#bloc_thematique .profil h2 {
    text-transform: uppercase;
    border-bottom: 1px solid #999;
    font-size: 1.2em;
    font-weight: bold;
    padding-bottom: 8px;
    margin-top: 0;
    margin-bottom: 10px;
}
#bloc_thematique .item {
    padding: 0 3px 0 3px;
    margin-bottom: 20px;
}
#bloc_thematique .profil li {
    list-style: none;
    background: none;
    padding: 0;
}
/* URL de l'image: /bundles/giedisplay/images/common/puce_sous_menu_grise.png */
#bloc_thematique .profil a {
    text-decoration: none;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAICAQAAAB0OpaOAAAAKUlEQVR4AWOI+T9RlAEIgIyY/x1SYAYIghkQiMHgBTNWc4LVLOIG6QYAS7oeL5zO5iQAAAAASUVORK5CYII=') no-repeat scroll left 1px top 4px rgba(0, 0, 0, 0);
    padding: 0 20px 5px 10px;
    float: left;
}
#bloc_thematique .profil .item a {
    background: none;
    padding: 0;
    width: 100%;
}


#TrouverGIe .bloc_background {
  background: rgb(244,245,246) url("/bundles/viamichelin/images/fondcarte.gif") no-repeat scroll 50% 50%;
  padding: 20px;
}

/* Video JS Override */
.vjs-live-controls {
    display: none;
}
#col_secondaire .vjs-play-control,
#col_secondaire .vjs-time-controls,
#col_secondaire .vjs-mute-control,
#col_secondaire .vjs-fullscreen-control {
    width: 3em;
}

/* Bloc CIR */

.navigation_content {
    text-align: center;
}
.navigation_content h4 {
    margin-top: 0;
}
.navigation_content fieldset {
    padding: 10px 10px 0 10px;
    margin-bottom: 8px;
}
.navigation_content button.submit_button {
    padding: 5px 25px;
}

/* Calendrier */
#calendar .calendar-header {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    color: #999;
}
#calendar .calendar-header hr {
    margin-top: 10px;
    margin-bottom: 10px;
}
#calendar .calendar-table {
    display: table;
    table-layout: fixed;
    border-collapse: collapse;
}

#calendar .calendar-col {
    display: table-cell;
    width: 14.285%;
    text-align: center;
    border: solid #C4C4C4 2px;
    height: 65px;
    vertical-align: bottom;
    position: relative;
    padding-bottom: 20px;
}

#calendar .calendar-row {
    display: table-row;
    width: 100%;
}

#calendar .events-container {
    padding-right: 0;
    margin-top: -70px;
}
#calendar .events-default {
    margin-top: 83px;
}
#calendar .events {
    display: none;
    width: 100%;
}
#calendar .events > h3 {
    text-align: center;
    padding: 10px;
    margin: 10px 0 20px 0;
    background-color: white;
}
#calendar .event {
    margin-top: 15px;
    position: relative;
}
#calendar .event > .no-border {
    text-align: center;
    margin-top: 35px;
}
#calendar .hover {
    cursor: pointer;
}
#calendar .calendar-header .hover {
    color: #663399;
}

#calendar .day {
    font-weight: bold;
    top: 0;
    right: 0;
    position: absolute;
    margin: 3px;
}

#calendar .day.other {
    opacity: 0.3;
}

#calendar .head {
    border: none;
    font-weight: bold;
    font-size: 25px;
    color: #999;
    padding-bottom: 10px;
}
#calendar .event-body {
    margin-left: 9px;
    border-left: solid #663399;
    padding: 3px 0 0 10px;
}
#calendar .event-body > h4 {
    margin-top: 0;
    color: #663399;
}
#calendar .tags {
    float: left;
}
#calendar .event-number {
    float: left;
    margin-right: 10px;
}
#calendar .badge {
    font-size: 14px;
    background-color: #663399;
}
#calendar .modal-title {
    text-align: center;
}
#calendar .close > span {
    font-size: xx-large;
}
#calendar .modal-header {
    padding: 15px 15px 10px 15px;
    background-color: rgb(244,245,246);
}
#calendar .no-border {
    border: none;
    margin-left: 0;
}
#calendar input[name='tags']{display:none}
#calendar input[name='tags']+label .glyphicon-unchecked{display:inline}
#calendar input[name='tags']+label .glyphicon-check{display:none}
#calendar input[name='tags']:checked+label .glyphicon-unchecked{display:none}
#calendar input[name='tags']:checked+label .glyphicon-check{display:inline}
#calendar input[name='tags']+label {
    width: 100%;
    font-size: x-large;
}
#calendar input[name='tags']+label span {
    margin-right: 5px;
}
#calendar .events-default p {
    margin-left: 30px;
}
#calendar span.glyphicon-ban-circle {
    font-size: 300px;
    color: #EBEBEB;
}
#calendar .selected {
    background-color: rgb(244,245,246);
}
#topmenu .calendar-icon {
    color:#355689;
    cursor:pointer;
    font-size: 27px;
    margin-top: 3px;
    float: right;
}

/* CSS pour la Timeline */
.timeline {
    display: block;
    width: 100%;
    margin-top: 20px;
}
.timeline .bloc_background {
    position: absolute;
    right: 0;
}
.timeline::before {
    content: "";
    width: 6px;
    margin-left: -4px;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    background-color: #ddd;
    z-index: 0;
}
.timeline-container {
    display: table-row;
}
.timeline-container.left {
    text-align: right;
}
.timeline-container.left:after,
.timeline-container.right:before {
    content: "";
    display: block;
    width: 50%;
}
.timeline-container .body:after {
    content: '';
    position: absolute;
    top: 16px;
    height: 0;
    width: 0;
    border: 16px solid transparent;
}
.timeline-container.left .body {
    margin: 0 52px 10px 0;
}
.timeline-container.right .body {
    margin: 0 0 10px 50px;
}
.timeline-container.left .body:after {
    left: 100%;
    top: 50%;
    margin-top: -16px;
    border-left: 16px solid #ddd;
}
.timeline-container.right .body:after {
    right: 100%;
    top: 50%;
    margin-top: -16px;
    border-right: 16px solid #ddd;
}
.timeline-item {
    display: table-cell;
    vertical-align: top;
    width: 50%;
    position: relative;
}
.timeline-item .body {
    display: inline-block;
    position: relative;
    text-align: left;
    border: 1px solid #ddd;
    padding: 10px;
}
.timeline-item h4 {
    margin-top: 0;
}
.timeline-item .body h4 {
    text-align: center;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}
.timeline-footer {
    margin-top: -5px;
    text-align: center;
    font-weight: bold;
}
.timeline-icon {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: contain !important;
}
.timeline-icon.default {
    background: #999;
    width: 40px;
    height: 40px;
}
.timeline-container.left .timeline-icon {
    left: 100%;
    margin: -36px 0 0 -31px;
}
.timeline-container.right .timeline-icon {
    right: 100%;
    margin: -36px -29px 0 0;
}
.timeline-container.left .timeline-icon.default {
    left: 100%;
    margin: -26px 0 0 -21px;
}
.timeline-container.right .timeline-icon.default {
    right: 100%;
    margin: -26px -19px 0 0;
}
.timeline-date {
    position: absolute;
    width: 250px;
    top: 50%;
    margin-top: -12px;
    font-weight: bold;
}
.timeline-container.left .timeline-date {
    text-align: left;
    left: 100%;
    margin-left: 35px;
}
.timeline-container.right .timeline-date {
    text-align: right;
    right: 100%;
    margin-right: 35px;
}
.cir-events {
    position: relative;
}
.cir-social {
  display: inline-block;
  margin-right: 10px;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  cursor: pointer;
}
.event-remove {
    color: red;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    right: -26px;
    cursor: pointer;
    z-index: 1000;
}

/** TAC */
.tac_bnum_faq {
    position: fixed;
    bottom: 40px;
    left: 3px;
}
.tac_bnum_chat.widget {
    position: fixed;
    bottom: 0;
    left: 3px;
}
.tac_bnum_chat.full {
    position: relative;
    margin: 20px;
}

.tac_activate {
    width: auto !important;
    padding: 5px 15px !important;
    border-radius: 20px !important;
}

/**  Progressive Img */
.progressive-img {
  position: relative;
}

.progressive-img img {
  position: absolute;
  top: 0;
  left: 0;
  transition: all ease 1s;
}

.progressive-img .small {
  opacity: 1;
}
.progressive-img .large {
  opacity: 0;
}

#toolbar_layout { z-index: 2000; }
/**************************************************/
/********************* COL-MD *********************/
/**************************************************/

@media ( min-width: 992px ) {
    #page-content #col_principale .content-view-line:hover {
        background-color: #355689;
        color: white;
    }
}

/**************************************************/
/********************* COL-SM *********************/
/**************************************************/

@media (max-width: 991px) {
    div#page {
        width: 100%;
    }
    div#page-content {
        margin: 0 10px;
    }
    div.block {
        padding: 0 5px;
        clear: none;
    }
    #page-content #col_contextuelle .banner {
        opacity: 1;
    }
    .container {
        width: auto;
        padding-left: 0px;
        padding-right: 0px;
    }
    .row {
        margin-left: -5px;
        margin-right: -5px;
    }
    .col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,
    .col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,
    .col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,
    .col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12
    {
        min-height: 1px;
        padding-left: 5px;
        padding-right: 5px;
        position: relative;
    }
}

/**************************************************/
/********************* COL-XS *********************/
/**************************************************/

@media (max-width: 767px) {
    #top_sub_menu #breadcrumb {
        width: 100%;
    }
    header .title.col-md-6 {
        width: 50%;
    }
    header .col-xs-3 {
        width: 25%;
    }
    header div.span1.minintLogo {
        width: inherit;
        padding-top: 5px;
    }
    #top_sub_menu{
        margin-bottom: 0 !important;
    }
    .logoimg-inner {
        width: 80%;
    }
    .logoimg img {
        width: 100%;
        vertical-align: middle;
    }
    .logoGie img {
        width: 46%;
    }
    .logogn .logoimg {
        width: 100%;
    }
    .logogn .logoGie {
        width: 100%;
    }
    header #logo_title #site_url {
        font-size: 200%;
        line-height: 33px;
    }
    header #logo_title {
        padding: 0;
        margin-top: 10px;
    }
    header div.row-fluid div.span1 {
        width: 10%;
        float: left;
    }
    header div.row-fluid div.span1.logogn {
        width: 6%;
        float: right;
    }
    header div.row-fluid div.span6 {
        width: 70%;
        float: left;
    }
    header .row-fluid div.title {
        margin-left: 0;
    }
    header {
        padding: 5px 5px 0 5px;
    }
    #headersearch .selectBox {
        display: none;
    }
    .toprow .focusslideshow .attribute-image {
        float: right;
        width: 25%;
    }
    .focusslideshow .actu_focus_main_text {
        width: 100%;
        padding: 5px;
    }
    #page-content #col_secondaire,
    #page-content #col_contextuelle {
        padding-left: 5px !important;
        padding-right: 5px !important;
        border: 0 !important;
    }
    #page-content .content-view-line .image.pull-left {
        padding: 0 10px 1px 0;
        width: 45%;
    }
    #page-content #col_secondaire .content-view-line .image.pull-left {
        padding: 0 10px 1px 0;
        width: 45%;
    }
    #page-content #col_secondaire .description {
        float: none;
    }
    #page-content h2.onglet {
        background-color: transparent;
        color: #375589;
        font-size: 2.8em !important;
        float: none;
    }
    #page-content h2.onglet.type2 {
        background-color: transparent;
    }
    #page-content #col_contextuelle h2.onglet {
        background-color: transparent;
        color: #9A0C58;
    }
    ul#miomcti_topmenu-firstlevel li .menu_lvl1_div{
        padding: 0;
        border: 0;
    }
    div#topmenu .navbar-collapse.collapsing li.menu_with_children:hover .lvl2_menu, div#topmenu .navbar-collapse.in li.menu_with_children:hover .lvl2_menu {
        border: 0;
        display: none;
    }
    .lvl2_menu ul li.withsub:hover div.lvl3 {
        display: none;
    }
    .breadcrumb {
        display: none;
    }
    h3 {
        font-size: 1.4em;
    }
    #plan-site {
        display: block;
    }
    #plan-site .bloc-menu {
        display: inline-block;
        padding: 0 3px 0 3px;
        width: 50%;
        vertical-align: top;
    }
    #tabs-social {
        width: 80%;
    }
    div#fancydisplay {
        margin: -10px 0 0 0;
    }
    #fancydisplay .content-view-line {
        border-bottom: 1px solid #ebebeb;
        padding: 5px 5px 15px 5px;
        margin-bottom: 15px;
    }
    #fancydisplay .attribute-display_date {
        color: #355689;
    }
    #col_principale div.block {
        margin: 0 0 10px 0;
    }
    #page-content #col_contextuelle div.image.banner {
        width: 50%;
    }
    #bloc_thematique .profil {
        padding: 15px 15px 10px 15px;
    }
    #topmenu .calendar-icon.visible-xs {
        margin-right: 10px;
    }
    .timeline::before {
        display: none;
    }
    .timeline .bloc_background {
        display: block;
        position: inherit;
        text-align: center;
        margin-bottom: 10px;
    }
    .timeline .bloc_background.affix {
        top: 0;
        left: 0;
        z-index: 1000;
        margin-top: 0;
        position: fixed;
    }
    .timeline-container.left {
        text-align: left;
    }
    .timeline-container.left:after,
    .timeline-container.right:before {
        display: none;
    }
    .timeline-container .body {
        margin: 0 0 10px 0 !important;
        width: 100%;
    }
    .timeline-container .body:after {
        display: none;
    }
    .timeline-item .body h4 {
        text-align: left;
        padding-bottom: 5px;
        border-bottom: 1px solid #eee;
        margin-left: 40px;
        padding-left: 5px;
    }
    .timeline-icon {
        display: none;
    }
    .timeline-date-xs {
        position: absolute;
        width: 70px;
        font-family: Georgia, serif;
        color: #999;
        left: 0;
        top: 0;
        margin-left: 5px;
    }
    .day, .month, .year {
        position: absolute;
    }
    .day {
        font-size: 20px;
        top: 12px;
        left: 4px;
    }
    .month {
        top: 2px;
        left: 1px;
        font-size: 12px;
    }
    .year {
        top: 13px;
        right: 19px;
        font-size: 13px;
        rotation: 270deg !important;
        /* ** Hacks ** */
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
    }
    div#topmenu{
        margin-top:0;
        background-color: unset;
        border: none;
        height: 80px;
    }

    div#topmenu .navbar-header {
        height: 80px;
    }

    div#topmenu .navbar-brand:hover {
        background-color: unset;
        color: inherit;
    }

    div#topmenu .navbar-brand {
        padding: 0;
        display: flex;
    }

    div#topmenu .navbar-toggle {
        padding: 5px;
    }

    div#topmenu .navbar-toggle .icon-bar {
        width: 30px;
        height: 5px;
        background-color: #355689;
    }

    div#topmenu .navbar-collapse.collapsing ul#miomcti_topmenu-firstlevel li.menu_with_children.selected .menu_lvl1_div a,
    div#topmenu .navbar-collapse.in ul#miomcti_topmenu-firstlevel li.menu_with_children.selected .menu_lvl1_div a,
    div#topmenu .navbar-collapse.collapsing ul#miomcti_topmenu-firstlevel li.menu_with_children:hover .menu_lvl1_div a,
    div#topmenu .navbar-collapse.in ul#miomcti_topmenu-firstlevel li.menu_with_children:hover .menu_lvl1_div a {
        border-radius: 5px;
    }
}

@media (max-width: 480px) {
    #page-content #col_contextuelle div.image.banner {
        width: 100%;
    }
    #footer-site,
    #autre-site {
        padding: 15px;
    }
}

.voxusagers__header--graph {
    max-width: 90px;
    position: relative;
}

.voxusagers__icons {
    width: 1.5em;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.voxusagers__icons svg {
    display: inline-block;
}

.voxusagers__header--feelings {
    margin-top: 10px;
}

.voxusagers__header--logo {
    position: absolute;
    top: 25px;
    left: 25px;
}

.voxusagers__body {
    margin: 10px 0;
}
.voxusagers__body a {
    font-weight: bold;
    text-decoration: none;
}

.voxusagers__body a:hover {
    text-decoration: underline;
}

.voxusagers__body div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.voxusagers__footer {
    font-style: italic;
    text-align: center;
    color: white;
    background-color: gray;
    border-radius: 50px;
    margin-bottom: 15px;
    width: 300px;
    padding: 5px;
    position: relative;
}

.voxusagers__footer::before {
    content: "";
    position: absolute;
    bottom: -14px;
    height: 15px;
    border-right: 30px solid gray;
    background: gray;
    border-bottom-right-radius: 80px 50px;
    right: 50%;
}

.voxusagers__footer::after {
    content: "";
    position: absolute;
    bottom: -14px;
    width: 10px;
    height: 14px;
    background: rgb(244,245,246);
    border-bottom-right-radius: 40px 50px;
    right: 50%;
    transform: translateX(-20px);
}


.ez-progressive {
  width: auto;
  position: relative;
  overflow: hidden;
}

.ez-progressive img,
.ez-progressive figcaption {
  transition: opacity ease 0.5s;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
}

.ez-progressive .ez-progressive-placeholder {
  filter: blur(10px);
  position: absolute;
  opacity: 1;
}

.ez-progressive .ez-progressive-image {
  opacity: 0;
}

.ez-progressive figcaption {
  position: absolute;
  transition: opacity ease 0.5s;
  opacity: 0;
  top: auto;
  bottom: 0;
  padding: 0.5em 1em;
  background-color: #222222;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
}

.ez-progressive:hover figcaption {
  opacity: 1;
}

