/*
Theme Name: Riverview
Version: 1.0
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/*!
Video.js Default Styles (http://videojs.com)
Version 4.10.2
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 occurances 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('./fonts/vjs.eot');
  src: url('./fonts/vjs.eot?#iefix') format('embedded-opentype'), url('./fonts/vjs.woff') format('woff'), url('./fonts/vjs.ttf') format('truetype'), url('./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 hightlight with handle highlight */
  outline: 0;
  position: relative;
  cursor: pointer;
  padding: 0;
  /* background-color-with-alpha */
  background-color: #333333;
  background-color: rgba(51, 51, 51, 0.9);
}
.vjs-default-skin .vjs-slider:focus {
  /* box-shadow */
  -webkit-box-shadow: 0 0 2em #ffffff;
  -moz-box-shadow: 0 0 2em #ffffff;
  box-shadow: 0 0 2em #ffffff;
}
.vjs-default-skin .vjs-slider-handle {
  position: absolute;
  /* Needed for IE6 */
  left: 0;
  top: 0;
}
.vjs-default-skin .vjs-slider-handle:before {
  content: "\e009";
  font-family: VideoJS;
  font-size: 1em;
  line-height: 1;
  text-align: center;
  text-shadow: 0em 0em 1em #fff;
  position: absolute;
  top: 0;
  left: 0;
  /* Rotate the square icon to make a diamond */
  /* transform */
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* Control Bar
--------------------------------------------------------------------------------
The default control bar that is a container for most of the controls.
*/
.vjs-default-skin .vjs-control-bar {
  /* Start hidden */
  display: none;
  position: absolute;
  /* Place control bar at the bottom of the player box/video.
     If you want more margin below the control bar, add more height. */
  bottom: 0;
  /* Use left/right to stretch to 100% width of player div */
  left: 0;
  right: 0;
  /* Height includes any margin you want above or below control items */
  height: 3.0em;
  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7);
}
/* Show the control bar only once the video has started playing */
.vjs-default-skin.vjs-has-started .vjs-control-bar {
  display: block;
  /* Visibility needed to make sure things hide in older browsers too. */

  visibility: visible;
  opacity: 1;
  /* transition */
  -webkit-transition: visibility 0.1s, opacity 0.1s;
  -moz-transition: visibility 0.1s, opacity 0.1s;
  -o-transition: visibility 0.1s, opacity 0.1s;
  transition: visibility 0.1s, opacity 0.1s;
}
/* Hide the control bar when the video is playing and the user is inactive  */
.vjs-default-skin.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  display: block;
  visibility: hidden;
  opacity: 0;
  /* transition */
  -webkit-transition: visibility 1s, opacity 1s;
  -moz-transition: visibility 1s, opacity 1s;
  -o-transition: visibility 1s, opacity 1s;
  transition: visibility 1s, opacity 1s;
}
.vjs-default-skin.vjs-controls-disabled .vjs-control-bar {
  display: none;
}
.vjs-default-skin.vjs-using-native-controls .vjs-control-bar {
  display: none;
}
/* The control bar shouldn't show after an error */
.vjs-default-skin.vjs-error .vjs-control-bar {
  display: none;
}
/* Don't hide the control bar if it's audio */
.vjs-audio.vjs-default-skin.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
}
/* IE8 is flakey with fonts, and you have to change the actual content to force
fonts to show/hide properly.
  - "\9" IE8 hack didn't work for this
  - Found in XP IE8 from http://modern.ie. Does not show up in "IE8 mode" in IE9
*/
@media \0screen {
  .vjs-default-skin.vjs-user-inactive.vjs-playing .vjs-control-bar :before {
    content: "";
  }
}
/* General styles for individual controls. */
.vjs-default-skin .vjs-control {
  outline: none;
  position: relative;
  float: left;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 3.0em;
  width: 4em;
}
/* Font button icons */
.vjs-default-skin .vjs-control:before {
  font-family: VideoJS;
  font-size: 1.5em;
  line-height: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
/* Replacement for focus outline */
.vjs-default-skin .vjs-control:focus:before,
.vjs-default-skin .vjs-control:hover:before {
  text-shadow: 0em 0em 1em #ffffff;
}
.vjs-default-skin .vjs-control:focus {
  /*  outline: 0; */
  /* keyboard-only users cannot see the focus on several of the UI elements when
  this is set to 0 */

}
/* Hide control text visually, but have it available for screenreaders */
.vjs-default-skin .vjs-control-text {
  /* hide-visually */
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* Play/Pause
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-play-control {
  width: 5em;
  cursor: pointer;
}
.vjs-default-skin .vjs-play-control:before {
  content: "\e001";
}
.vjs-default-skin.vjs-playing .vjs-play-control:before {
  content: "\e002";
}
/* Playback toggle
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-playback-rate .vjs-playback-rate-value {
  font-size: 1.5em;
  line-height: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.vjs-default-skin .vjs-playback-rate.vjs-menu-button .vjs-menu .vjs-menu-content {
  width: 4em;
  left: -2em;
  list-style: none;
}
/* Volume/Mute
-------------------------------------------------------------------------------- */
.vjs-default-skin .vjs-mute-control,
.vjs-default-skin .vjs-volume-menu-button {
  cursor: pointer;
  float: right;
}
.vjs-default-skin .vjs-mute-control:before,
.vjs-default-skin .vjs-volume-menu-button:before {
  content: "\e006";
}
.vjs-default-skin .vjs-mute-control.vjs-vol-0:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-0:before {
  content: "\e003";
}
.vjs-default-skin .vjs-mute-control.vjs-vol-1:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-1:before {
  content: "\e004";
}
.vjs-default-skin .vjs-mute-control.vjs-vol-2:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-2:before {
  content: "\e005";
}
.vjs-default-skin .vjs-volume-control {
  width: 5em;
  float: right;
}
.vjs-default-skin .vjs-volume-bar {
  width: 5em;
  height: 0.6em;
  margin: 1.1em auto 0;
}
.vjs-default-skin .vjs-volume-level {
  position: absolute;
  top: 0;
  left: 0;
  height: 0.5em;
  /* assuming volume starts at 1.0 */

  width: 100%;
  background: #66a8cc url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAP0lEQVQIHWWMAQoAIAgDR/QJ/Ub//04+w7ZICBwcOg5FZi5iBB82AGzixEglJrd4TVK5XUJpskSTEvpdFzX9AB2pGziSQcvAAAAAAElFTkSuQmCC) -50% 0 repeat;
}
.vjs-default-skin .vjs-volume-bar .vjs-volume-handle {
  width: 0.5em;
  height: 0.5em;
  /* Assumes volume starts at 1.0. If you change the size of the
     handle relative to the volume bar, you'll need to update this value
     too. */

  left: 4.5em;
}
.vjs-default-skin .vjs-volume-handle:before {
  font-size: 0.9em;
  top: -0.2em;
  left: -0.2em;
  width: 1em;
  height: 1em;
}
/* The volume menu button is like menu buttons (captions/subtitles) but works
    a little differently. It needs to be possible to tab to the volume slider
    without hitting space bar on the menu button. To do this we're not using
    display:none to hide the slider menu by default, and instead setting the
    width and height to zero. */
.vjs-default-skin .vjs-volume-menu-button .vjs-menu {
  display: block;
  width: 0;
  height: 0;
  border-top-color: transparent;
}
.vjs-default-skin .vjs-volume-menu-button .vjs-menu .vjs-menu-content {
  height: 0;
  width: 0;
}
.vjs-default-skin .vjs-volume-menu-button:hover .vjs-menu,
.vjs-default-skin .vjs-volume-menu-button .vjs-menu.vjs-lock-showing {
  border-top-color: rgba(7, 40, 50, 0.5);
  /* Same as ul background */

}
.vjs-default-skin .vjs-volume-menu-button:hover .vjs-menu .vjs-menu-content,
.vjs-default-skin .vjs-volume-menu-button .vjs-menu.vjs-lock-showing .vjs-menu-content {
  height: 2.9em;
  width: 10em;
}
/* Progress
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-progress-control {
  position: absolute;
  left: 0;
  right: 0;
  width: auto;
  font-size: 0.3em;
  height: 1em;
  /* Set above the rest of the controls. */
  top: -1em;
  /* Shrink the bar slower than it grows. */
  /* transition */
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
/* On hover, make the progress bar grow to something that's more clickable.
    This simply changes the overall font for the progress bar, and this
    updates both the em-based widths and heights, as wells as the icon font */
.vjs-default-skin:hover .vjs-progress-control {
  font-size: .9em;
  /* Even though we're not changing the top/height, we need to include them in
      the transition so they're handled correctly. */

  /* transition */
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
/* Box containing play and load progresses. Also acts as seek scrubber. */
.vjs-default-skin .vjs-progress-holder {
  height: 100%;
}
/* Progress Bars */
.vjs-default-skin .vjs-progress-holder .vjs-play-progress,
.vjs-default-skin .vjs-progress-holder .vjs-load-progress,
.vjs-default-skin .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  /* updated by javascript during playback */

  width: 0;
  /* Needed for IE6 */
  left: 0;
  top: 0;
}
.vjs-default-skin .vjs-play-progress {
  /*
    Using a data URI to create the white diagonal lines with a transparent
      background. Surprisingly works in IE8.
      Created using http://www.patternify.com
    Changing the first color value will change the bar color.
    Also using a paralax effect to make the lines move backwards.
      The -50% left position makes that happen.
  */

  background: #66a8cc url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAP0lEQVQIHWWMAQoAIAgDR/QJ/Ub//04+w7ZICBwcOg5FZi5iBB82AGzixEglJrd4TVK5XUJpskSTEvpdFzX9AB2pGziSQcvAAAAAAElFTkSuQmCC) -50% 0 repeat;
}
.vjs-default-skin .vjs-load-progress {
  background: #646464 /* IE8- Fallback */;
  background: rgba(255, 255, 255, 0.2);
}
/* there are child elements of the load progress bar that represent the
   specific time ranges that have been buffered */
.vjs-default-skin .vjs-load-progress div {
  background: #787878 /* IE8- Fallback */;
  background: rgba(255, 255, 255, 0.1);
}
.vjs-default-skin .vjs-seek-handle {
  width: 1.5em;
  height: 100%;
}
.vjs-default-skin .vjs-seek-handle:before {
  padding-top: 0.1em /* Minor adjustment */;
}
/* Live Mode
--------------------------------------------------------------------------------
*/
.vjs-default-skin.vjs-live .vjs-time-controls,
.vjs-default-skin.vjs-live .vjs-time-divider,
.vjs-default-skin.vjs-live .vjs-progress-control {
  display: none;
}
.vjs-default-skin.vjs-live .vjs-live-display {
  display: block;
}
/* Live Display
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-live-display {
  display: none;
  font-size: 1em;
  line-height: 3em;
}
/* Time Display
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-time-controls {
  font-size: 1em;
  /* Align vertically by making the line height the same as the control bar */
  line-height: 3em;
}
.vjs-default-skin .vjs-current-time {
  float: left;
}
.vjs-default-skin .vjs-duration {
  float: left;
}
/* Remaining time is in the HTML, but not included in default design */
.vjs-default-skin .vjs-remaining-time {
  display: none;
  float: left;
}
.vjs-time-divider {
  float: left;
  line-height: 3em;
}
/* Fullscreen
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-fullscreen-control {
  width: 3.8em;
  cursor: pointer;
  float: right;
}
.vjs-default-skin .vjs-fullscreen-control:before {
  content: "\e000";
}
/* Switch to the exit icon when the player is in fullscreen */
.vjs-default-skin.vjs-fullscreen .vjs-fullscreen-control:before {
  content: "\e00b";
}
/* Big Play Button (play button at start)
--------------------------------------------------------------------------------
Positioning of the play button in the center or other corners can be done more
easily in the skin designer. http://designer.videojs.com/
*/
.vjs-default-skin .vjs-big-play-button {
  left: 0.5em;
  top: 0.5em;
  font-size: 3em;
  display: block;
  z-index: 2;
  position: absolute;
  width: 4em;
  height: 2.6em;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  opacity: 1;
  /* Need a slightly gray bg so it can be seen on black backgrounds */
  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7);
  border: 0.1em solid #3b4249;
  /* border-radius */
  -webkit-border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  border-radius: 0.8em;
  /* box-shadow */
  -webkit-box-shadow: 0px 0px 1em rgba(255, 255, 255, 0.25);
  -moz-box-shadow: 0px 0px 1em rgba(255, 255, 255, 0.25);
  box-shadow: 0px 0px 1em rgba(255, 255, 255, 0.25);
  /* transition */
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
/* Optionally center */
.vjs-default-skin.vjs-big-play-centered .vjs-big-play-button {
  /* Center it horizontally */
  left: 50%;
  margin-left: -2.1em;
  /* Center it vertically */
  top: 50%;
  margin-top: -1.4000000000000001em;
}
/* Hide if controls are disabled */
.vjs-default-skin.vjs-controls-disabled .vjs-big-play-button {
  display: none;
}
/* Hide when video starts playing */
.vjs-default-skin.vjs-has-started .vjs-big-play-button {
  display: none;
}
/* Hide on mobile devices. Remove when we stop using native controls
    by default on mobile  */
.vjs-default-skin.vjs-using-native-controls .vjs-big-play-button {
  display: none;
}
.vjs-default-skin:hover .vjs-big-play-button,
.vjs-default-skin .vjs-big-play-button:focus {
  outline: 0;
  border-color: #fff;
  /* IE8 needs a non-glow hover state */
  background-color: #505050;
  background-color: rgba(50, 50, 50, 0.75);
  /* box-shadow */
  -webkit-box-shadow: 0 0 3em #ffffff;
  -moz-box-shadow: 0 0 3em #ffffff;
  box-shadow: 0 0 3em #ffffff;
  /* transition */
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}
.vjs-default-skin .vjs-big-play-button:before {
  content: "\e001";
  font-family: VideoJS;
  /* In order to center the play icon vertically we need to set the line height
     to the same as the button height */

  line-height: 2.6em;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center /* Needed for IE8 */;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
.vjs-error .vjs-big-play-button {
  display: none;
}
/* Error Display
--------------------------------------------------------------------------------
*/
.vjs-error-display {
  display: none;
}
.vjs-error .vjs-error-display {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.vjs-error .vjs-error-display:before {
  content: 'X';
  font-family: Arial;
  font-size: 4em;
  color: #666666;
  /* In order to center the play icon vertically we need to set the line height
     to the same as the button height */

  line-height: 1;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center /* Needed for IE8 */;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.5em;
  width: 100%;
}
.vjs-error-display div {
  position: absolute;
  bottom: 1em;
  right: 0;
  left: 0;
  font-size: 1.4em;
  text-align: center;
  padding: 3px;
  background: #000000;
  background: rgba(0, 0, 0, 0.5);
}
.vjs-error-display a,
.vjs-error-display a:visited {
  color: #F4A460;
}
/* Loading Spinner
--------------------------------------------------------------------------------
*/
.vjs-loading-spinner {
  /* Should be hidden by default */
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 4em;
  line-height: 1;
  width: 1em;
  height: 1em;
  margin-left: -0.5em;
  margin-top: -0.5em;
  opacity: 0.75;
}
/* Show the spinner when waiting for data and seeking to a new time */
.vjs-waiting .vjs-loading-spinner,
.vjs-seeking .vjs-loading-spinner {
  display: block;
  /* only animate when showing because it can be processor heavy */
  /* animation */
  -webkit-animation: spin 1.5s infinite linear;
  -moz-animation: spin 1.5s infinite linear;
  -o-animation: spin 1.5s infinite linear;
  animation: spin 1.5s infinite linear;
}
/* Errors are unrecoverable without user interaction so hide the spinner */
.vjs-error .vjs-loading-spinner {
  display: none;
  /* ensure animation doesn't continue while hidden */
  /* animation */
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
  animation: none;
}
.vjs-default-skin .vjs-loading-spinner:before {
  content: "\e01e";
  font-family: VideoJS;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  text-align: center;
  text-shadow: 0em 0em 0.1em #000;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* Menu Buttons (Captions/Subtitles/etc.)
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-menu-button {
  float: right;
  cursor: pointer;
}
.vjs-default-skin .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0em;
  /* (Width of vjs-menu - width of button) / 2 */

  width: 0em;
  height: 0em;
  margin-bottom: 3em;
  border-left: 2em solid transparent;
  border-right: 2em solid transparent;
  border-top: 1.55em solid #000000;
  /* Same width top as ul bottom */

  border-top-color: rgba(7, 40, 50, 0.5);
  /* Same as ul background */

}
/* Button Pop-up Menu */
.vjs-default-skin .vjs-menu-button .vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 10em;
  bottom: 1.5em;
  /* Same bottom as vjs-menu border-top */

  max-height: 15em;
  overflow: auto;
  left: -5em;
  /* Width of menu - width of button / 2 */

  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7);
  /* box-shadow */
  -webkit-box-shadow: -0.2em -0.2em 0.3em rgba(255, 255, 255, 0.2);
  -moz-box-shadow: -0.2em -0.2em 0.3em rgba(255, 255, 255, 0.2);
  box-shadow: -0.2em -0.2em 0.3em rgba(255, 255, 255, 0.2);
}
.vjs-default-skin .vjs-menu-button:hover .vjs-control-content .vjs-menu,
.vjs-default-skin .vjs-control-content .vjs-menu.vjs-lock-showing {
  display: block;
}
.vjs-default-skin .vjs-menu-button ul li {
  list-style: none;
  margin: 0;
  padding: 0.3em 0 0.3em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}
.vjs-default-skin .vjs-menu-button ul li.vjs-selected {
  background-color: #000;
}
.vjs-default-skin .vjs-menu-button ul li:focus,
.vjs-default-skin .vjs-menu-button ul li:hover,
.vjs-default-skin .vjs-menu-button ul li.vjs-selected:focus,
.vjs-default-skin .vjs-menu-button ul li.vjs-selected:hover {
  outline: 0;
  color: #111;
  /* background-color-with-alpha */
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.75);
  /* box-shadow */
  -webkit-box-shadow: 0 0 1em #ffffff;
  -moz-box-shadow: 0 0 1em #ffffff;
  box-shadow: 0 0 1em #ffffff;
}
.vjs-default-skin .vjs-menu-button ul li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default;
}
/* Subtitles Button */
.vjs-default-skin .vjs-subtitles-button:before {
  content: "\e00c";
}
/* Captions Button */
.vjs-default-skin .vjs-captions-button:before {
  content: "\e008";
}
/* Chapters Button */
.vjs-default-skin .vjs-chapters-button:before {
  content: "\e00c";
}
.vjs-default-skin .vjs-chapters-button.vjs-menu-button .vjs-menu .vjs-menu-content {
  width: 24em;
  left: -12em;
}
/* Replacement for focus outline */
.vjs-default-skin .vjs-captions-button:focus .vjs-control-content:before,
.vjs-default-skin .vjs-captions-button:hover .vjs-control-content:before {
  /* box-shadow */
  -webkit-box-shadow: 0 0 1em #ffffff;
  -moz-box-shadow: 0 0 1em #ffffff;
  box-shadow: 0 0 1em #ffffff;
}
/*
REQUIRED STYLES (be careful overriding)
================================================================================
When loading the player, the video tag is replaced with a DIV,
that will hold the video tag or object tag for other playback methods.
The div contains the video playback element (Flash or HTML5) and controls,
and sets the width and height of the video.

** If you want to add some kind of border/padding (e.g. a frame), or special
positioning, use another containing element. Otherwise you risk messing up
control positioning and full window mode. **
*/
.video-js {
  background-color: #000;
  position: relative;
  padding: 0;
  /* Start with 10px for base font size so other dimensions can be em based and
     easily calculable. */

  font-size: 10px;
  /* Allow poster to be vertially aligned. */

  vertical-align: middle;
  /*  display: table-cell; */
  /*This works in Safari but not Firefox.*/

  /* Provide some basic defaults for fonts */

  font-weight: normal;
  font-style: normal;
  /* Avoiding helvetica: issue #376 */

  font-family: Arial, sans-serif;
  /* Turn off user selection (text highlighting) by default.
     The majority of player components will not be text blocks.
     Text areas will need to turn user selection back on. */

  /* user-select */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Playback technology elements expand to the width/height of the containing div
    <video> or <object> */
.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Fix for Firefox 9 fullscreen (only if it is enabled). Not needed when
   checking fullScreenEnabled. */
.video-js:-moz-full-screen {
  position: absolute;
}
/* Fullscreen Styles */
body.vjs-full-window {
  padding: 0;
  margin: 0;
  height: 100%;
  /* Fix for IE6 full-window. http://www.cssplay.co.uk/layouts/fixed.html */
  overflow-y: auto;
}
.video-js.vjs-fullscreen {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  /* IE6 full-window (underscore hack) */
  _position: absolute;
}
.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}
.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}
/* Poster Styles */
.vjs-poster {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.vjs-poster img {
  display: block;
  margin: 0 auto;
  max-height: 100%;
  padding: 0;
  width: 100%;
}
/* Hide the poster after the video has started playing */
.video-js.vjs-has-started .vjs-poster {
  display: none;
}
/* Don't hide the poster if we're playing audio */
.video-js.vjs-audio.vjs-has-started .vjs-poster {
  display: block;
}
/* Hide the poster when controls are disabled because it's clickable
    and the native poster can take over */
.video-js.vjs-controls-disabled .vjs-poster {
  display: none;
}
/* Hide the poster when native controls are used otherwise it covers them */
.video-js.vjs-using-native-controls .vjs-poster {
  display: none;
}
/* Text Track Styles */
/* Overall track holder for both captions and subtitles */
.video-js .vjs-text-track-display {
  text-align: center;
  position: absolute;
  bottom: 4em;
  /* Leave padding on left and right */
  left: 1em;
  right: 1em;
}
/* Move captions down when controls aren't being shown */
.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}
/* Individual tracks */
.video-js .vjs-text-track {
  display: none;
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em;
  /* Transparent black background, or fallback to all black (oldIE) */
  /* background-color-with-alpha */
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.5);
}
.video-js .vjs-subtitles {
  color: #ffffff /* Subtitles are white */;
}
.video-js .vjs-captions {
  color: #ffcc66 /* Captions are yellow */;
}
.vjs-tt-cue {
  display: block;
}
/* Increase font-size when fullscreen */
.video-js.vjs-fullscreen .vjs-text-track {
  font-size: 3em;
}
/* Hide disabled or unsupported controls */
.vjs-default-skin .vjs-hidden {
  display: none;
}
.vjs-lock-showing {
  display: block !important;
  opacity: 1;
  visibility: visible;
}
/*  In IE8 w/ no JavaScript (no HTML5 shim), the video tag doesn't register.
    The .video-js classname on the video tag also isn't considered.
    This optional paragraph inside the video tag can provide a message to users
    about what's required to play video. */
.vjs-no-js {
  padding: 20px;
  color: #ccc;
  background-color: #333;
  font-size: 18px;
  font-family: Arial, sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0px auto;
}
.vjs-no-js a,
.vjs-no-js a:visited {
  color: #F4A460;
}
/* -----------------------------------------------------------------------------
The original source of this file lives at
https://github.com/videojs/video.js/blob/master/src/css/video-js.less */


/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading{
  background-image: url("./images/fancybox/fancybox_sprite.png");
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("./images/fancybox/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("./images/fancybox/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("./images/fancybox/fancybox_overlay.png");
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading {
    background-image: url("./images/fancybox/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }

  #fancybox-loading div {
    background-image: url("./images/fancybox/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}
/*

Uniform Theme: Uniform Default
Version: 1.8
By: Josh Pyles
License: MIT License
---
For use with the Uniform plugin:
http://uniformjs.com/

*/
/* General settings */
div.selector, div.selector span, div.checker span, div.radio span, div.uploader, div.uploader span.action, div.button, div.button span {
  background-image: url("../images/sprite.png");
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
}

div.selector, div.checker, div.button, div.radio, div.uploader {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
  /* Keeping this as :focus to remove browser styles */
}

div.selector:focus, div.checker:focus, div.button:focus, div.radio:focus, div.uploader:focus {
  outline: 0;
}

div.selector, div.selector *, div.radio, div.radio *, div.checker, div.checker *, div.uploader, div.uploader *, div.button, div.button * {
  margin: 0;
  padding: 0;
}

.highContrastDetect {
  background: url("../images/bg-input.png") repeat-x 0 0;
  width: 0px;
  height: 0px;
}

/* Input & Textarea */
input.uniform-input,
select.uniform-multiselect,
textarea.uniform {
  padding: 3px;
  background: url("../images/bg-input.png") repeat-x 0 0;
  outline: 0;
}

input.uniform-input.active,
select.uniform-multiselect.active,
textarea.uniform.active {
  background: url("../images/bg-input-focus.png") repeat-x 0 0;
}

/* Remove default webkit and possible mozilla .search styles.
 * Keeping this as :active to remove browser styles */
div.checker input,
input[type="search"],
input[type="search"]:active {
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* Select */
div.selector {
  background-position: 0 -130px;
  line-height: 26px;
  height: 26px;
  padding: 0 0 0 10px;
  position: relative;
  overflow: hidden;
}

div.selector span {
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  background-position: right 0;
  height: 26px;
  line-height: 26px;
  padding-right: 25px;
  cursor: pointer;
  width: 100%;
  display: block;
}

div.selector.fixedWidth {
  width: 190px;
}

div.selector.fixedWidth span {
  width: 155px;
}

div.selector select {
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  border: none;
  background: none;
  position: absolute;
  height: 22px;
  top: 2px;
  left: 0px;
  width: 100%;
}

div.selector.active {
  background-position: 0 -156px;
}

div.selector.active span {
  background-position: right -26px;
}

div.selector.hover, div.selector.focus {
  background-position: 0 -182px;
}

div.selector.hover span, div.selector.focus span {
  background-position: right -52px;
}

div.selector.hover.active, div.selector.focus.active {
  background-position: 0 -208px;
}

div.selector.hover.active span, div.selector.focus.active span {
  background-position: right -78px;
}

div.selector.disabled, div.selector.disabled.active {
  background-position: 0 -234px;
}

div.selector.disabled span, div.selector.disabled.active span {
  background-position: right -104px;
}

/* Checkbox */
div.checker {
  position: relative;
}

div.checker, div.checker span, div.checker input {
  width: 19px;
  height: 19px;
}

div.checker span {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  zoom: 1;
  text-align: center;
  background-position: 0 -260px;
}

div.checker span.checked {
  background-position: -76px -260px;
}

div.checker input {
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  border: none;
  background: none;
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  zoom: 1;
}

div.checker.active span {
  background-position: -19px -260px;
}

div.checker.active span.checked {
  background-position: -95px -260px;
}

div.checker.hover span, div.checker.focus span {
  background-position: -38px -260px;
}

div.checker.hover span.checked, div.checker.focus span.checked {
  background-position: -114px -260px;
}

div.checker.hover.active span, div.checker.focus.active span {
  background-position: -57px -260px;
}

div.checker.hover.active span.checked, div.checker.focus.active span.checked {
  background-position: -133px -260px;
}

div.checker.disabled, div.checker.disabled.active {
  background-position: -152px -260px;
}

div.checker.disabled span.checked, div.checker.disabled.active span.checked {
  background-position: -171px -260px;
}

/* Radio */
div.radio {
  position: relative;
}

div.radio, div.radio span, div.radio input {
  width: 18px;
  height: 18px;
}

div.radio span {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  zoom: 1;
  text-align: center;
  background-position: 0 -279px;
}

div.radio span.checked {
  background-position: -72px -279px;
}

div.radio input {
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  border: none;
  background: none;
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  zoom: 1;
  text-align: center;
}

div.radio.active span {
  background-position: -18px -18px -279px;
}

div.radio.active span.checked {
  background-position: -90px -279px;
}

div.radio.hover span, div.radio.focus span {
  background-position: -36px -36px -279px;
}

div.radio.hover span.checked, div.radio.focus span.checked {
  background-position: -108px -279px;
}

div.radio.hover.active span, div.radio.focus.active span {
  background-position: -54px -279px;
}

div.radio.hover.active span.checked, div.radio.focus.active span.checked {
  background-position: -126px -279px;
}

div.radio.disabled span, div.radio.disabled.active span {
  background-position: -144px -279px;
}

div.radio.disabled span.checked, div.radio.disabled.active span.checked {
  background-position: -162px -279px;
}

/* Uploader */
div.uploader {
  background-position: 0 -297px;
  height: 28px;
  width: 190px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

div.uploader span.action {
  background-position: right -409px;
  height: 28px;
  line-height: 28px;
  width: 82px;
  text-align: center;
  float: left;
  display: inline;
  overflow: hidden;
  cursor: pointer;
}

div.uploader span.filename {
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  float: left;
  cursor: default;
  height: 24px;
  margin: 2px 0 2px 2px;
  line-height: 24px;
  width: 85px;
  padding: 0 10px;
}

div.uploader input {
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  border: none;
  background: none;
  position: absolute;
  top: 0;
  right: 0;
  float: right;
  cursor: default;
  width: 100%;
  height: 100%;
}

div.uploader.active span.action {
  background-position: right -465px;
}

div.uploader.hover, div.uploader.focus {
  background-position: 0 -353px;
}

div.uploader.hover span.action, div.uploader.focus span.action {
  background-position: right -437px;
}

div.uploader.hover.active span.action, div.uploader.focus.active span.action {
  background-position: right -493px;
}

div.uploader.disabled, div.uploader.disabled.active {
  background-position: 0 -325px;
}

div.uploader.disabled span.action, div.uploader.disabled.active span.action {
  background-position: right -381px;
}

/* Buttons */
div.button {
  background-position: 0 -641px;
  height: 30px;
  cursor: pointer;
  position: relative;
  /* Keep buttons barely visible so they can get focus */
}
div#venues{
  color: #094e93;
  font-family: "Interstate",helvetica,arial,sans-serif;
  font-size: 18pt;
  font-weight: normal;
  padding-top: 25px;
  text-transform: uppercase;
}

div.button a, div.button button, div.button input {
  opacity: 0.01;
  filter: alpha(opacity=1);
  -moz-opacity: 0.01;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}

div.button span {
  display: -moz-inline-box;
  display: inline-block;
  *display: inline;
  zoom: 1;
  line-height: 22px;
  text-align: center;
  background-position: right -521px;
  height: 22px;
  margin-left: 13px;
  padding: 8px 15px 0 2px;
}

div.button.active {
  background-position: 0 -671px;
}

div.button.active span {
  background-position: right -551px;
  cursor: default;
}

div.button.hover, div.button.focus {
  background-position: 0 -701px;
}

div.button.hover span, div.button.focus span {
  background-position: right -581px;
}

div.button.disabled, div.button.disabled.active {
  background-position: 0 -731px;
}

div.button.disabled span, div.button.disabled.active span {
  background-position: right -611px;
  cursor: default;
}

/* INPUT & TEXTAREA */
input.uniform-input,
select.uniform-multiselect,
textarea.uniform {
  font-size: 12px;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #777;
  border-top: solid 1px #aaaaaa;
  border-left: solid 1px #aaaaaa;
  border-bottom: solid 1px #cccccc;
  border-right: solid 1px #cccccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

input.uniform-input.hover, input.uniform-input.focus,
select.uniform-multiselect.hover,
select.uniform-multiselect.focus,
textarea.uniform.hover,
textarea.uniform.focus {
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  border-color: #999;
}

/* PRESENTATION */
/* Buttons */
div.button span {
  font-weight: bold;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

div.button.hover span, div.button.focus span {
  color: #555;
}

div.button.disabled span, div.button.disabled.active span {
  color: #bbb;
}

/* Select */
div.selector {
  font-size: 12px;
}

div.selector span {
  color: #666;
  text-shadow: 0 1px 0 white;
}

div.selector select {
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 12px;
}

div.selector.disabled span, div.selector.disabled.active span {
  color: #bbb;
}

/* Checker */
div.checker {
  margin-right: 5px;
}

/* Radio */
div.radio {
  margin-right: 3px;
}

/* Uploader */
div.uploader span.action {
  text-shadow: white 0px 1px 0px;
  background-color: #fff;
  font-size: 11px;
  font-weight: bold;
}

div.uploader span.filename {
  color: #777;
  border-right: solid 1px #bbbbbb;
  font-size: 11px;
}

div.uploader.disabled span.action, div.uploader.disabled.active span.action {
  color: #aaa;
}

div.uploader.disabled span.filename, div.uploader.disabled.active span.filename {
  border-color: #ddd;
  color: #aaa;
}

input.uniform-input, input.uniform-input:focus {
  background-color: #fff;
}

::-webkit-input-placeholder {
  color: #505055;
}

:-moz-placeholder {
  color: #505055;
}

::-moz-placeholder {
  color: #505055;
}

:-ms-input-placeholder {
  color: #505055;
}

:placeholder {
  color: #505055;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Interstate Light", Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.714em;
  color: #182A3D;
  overflow-x: hidden;
  background: #a9a19c;
  -webkit-font-smoothing: subpixel-antialiased;
}

body p{
padding-bottom: 15px;
  text-align: justify;
}

img {
  max-width: 100%;
}

a {
  color: #094e93;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

input, select, textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

input, textarea {
  margin: 0;
  padding: 2px 5px;
}

a:focus, input:focus, select:focus, textarea:focus {
  outline: none;
}

input[type="submit"] {
  cursor: pointer;
  color: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  backface-visibility: hidden;
}
input[type="submit"]:hover {
  opacity: 0.8;
  filter: "alpha(opacity=80)";
  -ms-filter: "alpha(opacity=80)";
}

select {
  margin: 0;
  padding: 2px 8px;
}

div.selector {
  position: relative;
  padding: 0 8px;
  width: 100% !important;
  background: #cec9c5;
}
div.selector span {
  font-family: "Interstate Light", Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  color: #505055;
  display: block;
  width: 100% !important;
  -webkit-font-smoothing: auto;
  text-shadow: none;
}
div.selector span:after {
  content: '';
  display: block;
  border-right: 15px solid #a9a19c;
  border-top: 15px solid transparent;
  position: absolute;
  right: 5px;
  bottom: 5px;
}
div.selector select {
  top: 0;
}

div.checker,
div.checker span,
div.checker input,
div.radio,
div.radio span,
div.radio input {
  display: block;
  width: 18px;
  height: 18px;
  background: #cec9c5;
}

div.radio,
div.radio span,
div.radio input {
  border-radius: 18px;
}

div.checker,
div.radio {
  display: inline-block;
  margin-right: 10px;
}

div.checker span.checked,
div.radio span.checked {
  border: 4px solid #cec9c5;
  background: #094e93;
}

textarea {
  resize: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: inherit;
}

h2{
  padding-bottom: 10px;
  padding-top: 10px;
}
h3{
  padding-bottom: 5px;
  padding-top: 5px;
}

/*ul{
  padding-bottom: 10px;
}*/

b, strong{
  font-family: "Interstate", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
}

.clearfix,
.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.corner-wrap {
  position: relative;
}
.corner-wrap img {
  display: block;
}
.corner-wrap .corner-lt,
.corner-wrap .corner-rb {
  /*width: 80px;
  height: 77px;*/
  position: absolute;
  z-index: 10;
}
.corner-wrap .corner-lt {
  left: -24px;
  top: -24px;
  /*background: url(./images/corner-topleft.png) left top no-repeat;*/
}
.corner-wrap .corner-rb {
  right: -24px;
  bottom: -24px;
  /*background: url(./images/corner-rightbottom.png) right bottom no-repeat;*/
}
.home .corner-wrap .corner-lt {
  left: -15px;
  top: -15px;
}
.home .corner-wrap .corner-rb {
  right: -15px;
  bottom: -15px;
}
.blue-bg {
  position: relative;
  margin: 0 32px 60px;
  height: 85px;
  background: url(./images/download-bg_.png) 0 -86px repeat-x;
}
.body .main .blue-bg a:hover{
  text-decoration: none;
}
.blue-bg .corner-left,
.blue-bg .corner-right {
  display: block;
  width: 32px;
  height: 85px;
  position: absolute;
  top: 0;
}
.blue-bg .corner-left {
  left: -32px;
  background: url(./images/download-bg_.png) -1px 2px no-repeat;
}
.blue-bg .corner-right {
  right: -32px;
  background: url(./images/download-bg_.png) -14px -172px no-repeat;
}
.blue-bg:hover {
  background-position: 0 -355px;
}
.blue-bg:hover .corner-left {
  background-position: -2px -267px;
}
.blue-bg:hover .corner-right {
  background-position: -11px -449px;
}
.blue-bg a {
  font-family: Interstate, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 1.6em;
  text-transform: uppercase;
  display: table;
  text-align: center;
  color: #fff;
  width: 100%;
}
.blue-bg a span {
  display: table-cell;
  vertical-align: middle;
  height: 81px;
letter-spacing: 0.1em;

}
.blue-bg a:hover {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.narrow {
  display: none;
}

.container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrap {
  overflow: hidden;
}
.wrap .sidebar-pusher {
  position: relative;
  left: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  padding-top: 173px;
}
.wrap .sidebar-pusher > .sidebar {
  /*position: absolute;*/
  position: fixed;
  top: 0;
  /*right: 0;*/
  right: -235px;
  /*-webkit-transform: translate3d(100%, 0, 0);*/
  /*-moz-transform: translate3d(100%, 0, 0);*/
  /*transform: translate3d(100%, 0, 0);*/
  width: 235px;
  height: 100%;
  padding-top: 173px;
  background: #094e93;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.wrap .sidebar-pusher > .sidebar ul {
  border-bottom: 1px solid rgba(68, 88, 128, 0.9);
  border-bottom: 1px solid #475b82 \0;
}
.wrap .sidebar-pusher > .sidebar ul li {
  border-top: 1px solid rgba(68, 88, 128, 0.9);
  border-top: 1px solid #475b82 \0;
}
.wrap .sidebar-pusher > .sidebar ul li a {
  display: block;
  padding: 12px 20px 12px 28px;
  font-size: 13px;
  line-height: 1.154em;
  color: #F2F0EE;
}
.wrap .sidebar-pusher > .sidebar ul li a:hover {
  background: #073b6e;
}
.wrap .sidebar-pusher > .sidebar ul li .sub-menu {
  display: none;
}
.wrap .sidebar-pusher > .sidebar ul li .sub-menu a {
  padding-left: 38px;
  background: #073b6e;
}
.wrap .sidebar-pusher > .sidebar ul li .sub-menu a:hover {
  background: #121d35;
}

.wrap .sidebar-pusher > .sidebar ul li:hover > .sub-menu {
  display: block;
}
.wrap .sidebar-pusher > .sidebar ul li.has-child > a {
    background-image: url("./images/icon-expand.png");
    background-position: 8px -67px;
    background-repeat: no-repeat;
}
.wrap .sidebar-pusher > .sidebar ul li.has-child:hover > a {
    background-position: 8px -105px;
}

.wrap.animate .sidebar-pusher {
  /*-webkit-transform: translate3d(-235px, 0, 0);
  -moz-transform: translate3d(-235px, 0, 0);
  -ms-transform: translate3d(-235px, 0, 0);
  -o-transform: translate3d(-235px, 0, 0);
  transform: translate3d(-235px, 0, 0);*/
  left: -235px;
}
.wrap.animate .header {
  left: -235px;
}
.wrap.animate .sidebar {
  right: 0;
}
.wrap.animate .menu .main-menu > ul > li.active.trigger > .inner:after {
  border: none;
}
.wrap.animate .menu .main-menu > ul > li.active.trigger > .inner > a {
  background: url(./images/icon-expand.png) right -25px no-repeat;
}

.inner-wrap {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0 auto -44px;
}

.footer, .push {
  clear: both;
  height: 55px;
}

.menu {
  clear: both;
  min-height: 42px;
  background: #094e93;
}
.menu .main-menu > ul {
  display: table;
  width: 100%;
}
.menu .main-menu > ul > li {
  display: table-cell;
  vertical-align: middle;
}
.home .menu .main-menu > ul > li {
  z-index: 99;
  position: relative;
}
.menu .main-menu > ul > li .inner {
  position: relative;
}
.menu .main-menu > ul > li .inner > a {
  font-family: Interstate, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 1.3em;
  letter-spacing: 0.025em;
  color: #fff;
  text-transform: uppercase;
  display: block;
  padding: 14px 7px 12px;
  white-space: nowrap;
  word-break: break-word;
  text-overflow: ellipsis;
  overflow: hidden;
}
.menu .main-menu > ul > li .inner > .sub-menu > li:last-child > a {
  height: 37px;
  background: url(./images/sub-menu-footer.png) right -1px no-repeat;
}
.menu .main-menu > ul > li .inner > .sub-menu > li:last-child > a:hover {
  background-position: right -42px;
}
.menu .main-menu > ul > li:hover .sub-menu {
  display: block;
}
.menu .main-menu > ul > li.dropdown .inner > .sub-menu {
  display: block;
}
.menu .main-menu > ul > li:nth-child(1) {
  transition-delay: 1.2s;
  -moz-transition-delay: 1.2s;
  -webkit-transition-delay: 1.2s;
  -o-transition-delay: 1.2s;
}
.menu .main-menu > ul > li:nth-child(2) {
  transition-delay: 1.05s;
  -moz-transition-delay: 1.05s;
  -webkit-transition-delay: 1.05s;
  -o-transition-delay: 1.05s;
}
.menu .main-menu > ul > li:nth-child(3) {
  transition-delay: 0.9s;
  -moz-transition-delay: 0.9s;
  -webkit-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
}
.menu .main-menu > ul > li:nth-child(4) {
  transition-delay: 0.75s;
  -moz-transition-delay: 0.75s;
  -webkit-transition-delay: 0.75s;
  -o-transition-delay: 0.75s;
}
.menu .main-menu > ul > li:nth-child(5) {
  transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
}
.menu .main-menu > ul > li:nth-child(6) {
  transition-delay: 0.45s;
  -moz-transition-delay: 0.45s;
  -webkit-transition-delay: 0.45s;
  -o-transition-delay: 0.45s;
}
.menu .main-menu > ul > li:nth-child(7) {
  transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
}
.menu .main-menu > ul > li:nth-child(8) {
  transition-delay: 0.15s;
  -moz-transition-delay: 0.15s;
  -webkit-transition-delay: 0.15s;
  -o-transition-delay: 0.15s;
}
.menu .main-menu > ul > li.active {
  display: none;
}
.menu .main-menu > ul > li.active.trigger {
  display: table-cell;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  backface-visibility: hidden;
  transition-delay: 0s;
  -moz-transition-delay: 0s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  right: 0;
}
.menu .main-menu > ul > li.active.trigger .inner:after {
  content: '';
  display: block;
  border-top: 18px solid #094e93;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
}
.menu .main-menu > ul > li.active.trigger .inner > a {
  padding-left: 10px;
  padding-right: 20px;
  max-width: 230px;
  background: url(./images/icon-expand-default.png) right 14px no-repeat;
}
.menu .main-menu > ul > li.active.trigger:hover .sub-menu {
  display: none;
}
.menu .main-menu .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 280px;
  z-index: 10;
}
.menu .main-menu .sub-menu li {
  border-top: 1px solid rgba(116, 140, 190, 0.9);
  border-top: 1px solid #475b82 \0;
}
.menu .main-menu .sub-menu li a {
  display: block;
  padding: 7px 30px 7px 15px;
  color: #fff;
  background: rgba(9,78,147, 0.9);
  background: #233a69 \0;
}
.menu .main-menu .sub-menu li a:hover {
  background: rgba(7,58,110, 0.9);
  background: #073b6e \0;
}
.menu .main-menu .sub-menu .sub-menu {
  display: block;
  position: static;
}
.menu .main-menu .sub-menu .sub-menu a {
  font-size: 13px;
  padding-left: 30px;
}
/* #7 #36 */
.menu .main-menu .sub-menu li a {
  padding: 7px 20px 7px 25px;
}
.menu .main-menu .sub-menu li.has-child > a {
  background-image: url(./images/icon-expand.png);
  background-position: 5px -67px;
  background-repeat: no-repeat;
}
.menu .main-menu .sub-menu li.has-child > .sub-menu a {
  background-color: rgba(7,59,110, 0.9);
}

.menu .main-menu .sub-menu li.has-child.desktop-dropdown > a{
  background-position: 5px -105px;
}
.menu .main-menu .sub-menu li.has-child > .sub-menu{
  display: none;
}
/*.menu .main-menu .sub-menu li.has-child:hover > .sub-menu{
  display: block;
}*/


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.header .logo {
  float: left;
  width: 50%;
  max-width: 434px;
  padding: 20px 20px 12px 20px;
}
.header .logo a {
  display: block;
}
.header .logo img {
  display: block;
}
.header .logo .png {
  display: none;
}
.ie .header .logo img {
  display: none;
}
.ie .header .logo .png {
  display: block;
}
.header .site-navi {
  float: right;
  padding: 20px 20px 0 0;
}
.header .site-navi li {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  backface-visibility: hidden;
  float: left;
  margin-left: 30px;
}
.header .site-navi li a {
  -webkit-transition: color 0.5s;
  -moz-transition: color 0.5s;
  -ms-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
  backface-visibility: hidden;
  display: block;
  padding: 5px 30px 3px 0;
  font-family: Interstate, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 1em;
  letter-spacing: 0.025em;
  color: #A9A19C;
  text-transform: uppercase;
  background: url("./images/icons-sprites.png") right 0 no-repeat;
}
.header .site-navi li a:hover {
  color: #094e93;
}
.header .site-navi li.icons-contact a {
  background-position: right -88px;
}
.header .site-navi li.icons-contact a:hover {
  background-position: right -110px;
}
.header .site-navi li.icons-home a {
  background-position: right -198px;
}
.header .site-navi li.icons-home a:hover {
  background-position: right -220px;
}
.header .site-navi li.icons-search {
  position: relative;
}
.header .site-navi li.icons-search a {
  background-position: right 0;
}
.header .site-navi li.icons-search a:hover {
  background-position: right -44px;
}
.header .site-navi li.icons-search:hover .search-form {
  display: block;
}
.header .site-navi li.icons-services a {
  background-position: right -22px;
}
.header .site-navi li.icons-services a:hover {
  background-position: right -66px;
}
.header .site-navi li .search-form {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 30px;
}
.header .site-navi li .search-form input[type="text"] {
  display: block;
  border: none;
  box-shadow: none;
  background: #f2f0ee;
  width: 194px;
  height: 21px;
}
.header .site-navi li .search-form input[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  box-shadow: none;
  background: none;
  text-indent: -9999px;
  display: block;
  width: 26px;
  height: 21px;
  background: url("./images/icons-sprites.png") center -44px no-repeat;
}
.header .narrow-menu {
  display: none;
  margin-right: 180px;
  font-family: Interstate, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 1.3em;
  letter-spacing: 0.025em;
  color: #fff;
  text-transform: uppercase;
  padding: 12px 10px 12px 30px;
  background: url(./images/icon-expand.png) 0 12px no-repeat;
}
.header .narrow-menu.open {
  background-position: 0 -27px;
}
.header .sidebar {
  position: absolute;
  right: 20px;
  top: 0;
  width: 152px;
  background: #f2f0ee;
  text-align: center;
}
.header .sidebar:before {
  content: '';
  display: block;
  width: 170px;
  height: 16px;
  position: absolute;
  top: -16px;
  right: -8px;
  background: url(./images/sidebar-top.png) top right no-repeat;
}
.header .sidebar h3 {
  font-family: "Interstate", Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.025em;
  color: #094e93;
  text-transform: uppercase;
  padding: 10px 0 9px;
  background: url(./images/sidebar-top-bg.png) -8px 0 no-repeat;
}
.header .sidebar ul {
  border-top: 1px solid #ccc;
}
.header .sidebar ul li {
  border-bottom: 1px solid #ccc;
}
.header .sidebar ul li a {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  backface-visibility: hidden;
  font-size: 13px;
  line-height: 1.153em;
  display: block;
  padding: 13px 0;
  color: #505055;
}
.header .sidebar ul li a:hover {
  background: #ddd9d7;
}

.body {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  backface-visibility: hidden;
  position: relative;
  background: #a9a19c;
}
.body .container {
  position: relative;
  background: #fff;
  box-shadow: -1px 1px 10px #847a75;
  padding: 0 100px;
  margin-bottom: 25px;
}
.home .body .container{
  padding: 0 0 20px;
}
/*.body .body-inner{
  position: relative;
  padding: 0 60px;
}*/
.body .sidebar-bg {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  width: 152px;
  background: #f2f0ee;
  box-shadow: -1px 1px 10px rgba(0, 0, 0, 0.5);
}
.body .sidebar-bg .sidebar-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #094e93;
  padding: 9px 10px;
}
.body .sidebar-bg .sidebar-footer:after {
  content: '';
  display: block;
  border-right: 85px solid #a9a19c;
  border-top: 85px solid transparent;
  position: absolute;
  right: -16px;
  bottom: -16px;
}
.body .sidebar-bg .sidebar-footer img {
  display: block;
}
.body .main {
  padding-bottom: 30px;
}
.body .main a {
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
  backface-visibility: hidden;
}
.body .main a:hover {
  text-decoration: underline;
}
.body .main .flexslider {
  position: relative;
}
.body .main .flexslider li {
  position: relative;
}
.body .main .flexslider img {
  width: 100%;
  display: block;
}
.body .main .flexslider .caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9;
  background: rgba(9,78,174, 0.9);
  font-family: "Interstate Light", Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #F2F0EE;
  text-transform: uppercase;
  padding: 13px 20px;
  min-height: 45px;
}

.home .body .main .flexslider li{
  background-repeat: no-repeat;
  background-size: cover;
}
.home .body .main .flexslider img {
  width: auto;
  height: 500px;
  display: block;
  visibility: hidden;
}
.home .body .main .flexslider .sw-video{
  padding-right: 152px;
  background: #f2f0ee;
}
.home .body .main .flexslider .sw-video iframe{
  width: 100%;
  height: 500px;
  display: block;
}
.home .body .main .flexslider .caption{
  padding: 13px 60px 13px 20px;
  text-align: center;
  min-height: 55px;
}
.home .body .main .flexslider .caption:after{
  content: "";
  position: absolute;
  right: 14px;
  top: 0;
  width: 31px;
  height: 100%;
  background: url(images/slider-caption-icon.png) no-repeat center center;
}
.home .body .main .flexslider .flex-control-paging{
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}
.home .body .main .flexslider .flex-control-paging li{
  list-style: none;
}
.home .body .main .flexslider .flex-control-paging li a{
  text-indent: -9999px;
  display: inline-block;
  height: 25px;
  width: 25px;
  background: url(images/slider-paged-icon.png) no-repeat center 0;
}
.home .body .main .flexslider .flex-control-paging li a.flex-active{
  background-position: center -25px;
}

.body .main .banner .flexslider {
  /*margin-bottom: 25px;*/
  overflow: hidden;
}
.body .main .news,
.body .main .calendar {
  float: left;
  background: #fff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-top: 14px solid #094e93;
}
.body .main .news {
  padding-bottom: 5px;
  width: 60%;
}
.body .main .news h3 {
  font-family: 'Lyon Display Web', Times, serif;
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  font-size: 26px;
  letter-spacing: -0.025em;
  color: #A9A19C;
}
.body .main .news a {
  display: block;
  font-size: 13px;
  line-height: 1.92em;
  color: #505055;
  padding-bottom: 15px;
}
.home .body .main .news a {
  padding-bottom: 0;
}
.body .main .news a:hover h5{
  text-decoration: underline;
}
.body .main .news a h5 {
  display: inline-block;
  position: relative;
  font-family: Interstate, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: #094e93;
}
.body .main .news a h5:after {
  content: '';
  display: inline-block;
  margin-left: 8px;
  border-right: 12px solid #094e93;
  border-top: 12px solid transparent;
}
.body .main .calendar {
  width: 37%;
  margin-left: 3%;
  position: relative;
}
.body .main .calendar .pager {
  position: absolute;
  top: 5px;
  right: 0;
}
.body .main .calendar .pager a {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  backface-visibility: hidden;
  display: block;
  float: left;
  width: 10px;
  height: 17px;
  background: url(./images/icon-pager.png) 0 0 no-repeat;
}
.body .main .calendar .pager a.prev {
  background-position: 0 0;
}
.body .main .calendar .pager a.next {
  margin-left: 2px;
  background-position: -11px 0;
}
.body .main .calendar .pager a:hover {
  opacity: 0.8;
  filter: "alpha(opacity=80)";
  -ms-filter: "alpha(opacity=80)";
}
.body .main .main-content .calendar {
  margin: 0 0 25px;
  width: 100%;
}
.body .main .block {
  padding: 64px 0 35px;
  border-top: 6px solid #094e93;
}
.body .main .block:after {
  content: '';
  display: block;
  clear: both;
}
.body .main .block:first-child {
  border-top: none;
}
.body .main .block h1,
.body .main .block h2,
.body .main .block h3,
.body .main .block h4 {
  clear: both;
  color: #094e93;
}
.body .main .block h1 {
  font-family: 'Lyon Display Web', Times, serif;
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  font-size: 60px;
  line-height: 1em;
  letter-spacing: -1.5px;
  padding-bottom: 30px;
}
.body .main .block h2 {
  font-family: 'Lyon Display Web', Times, serif;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  font-size: 40px;
  line-height: 1.125em;
  letter-spacing: -0.025em;
}
.body .main .block h3 {
  font-family: "Interstate", Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.body .main .block .content > ul > li,
.body .main .block .content > ol > li{
  position: relative;
  font-family: Interstate, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  color: #094e93;
  padding: 0 0 15px 20px;
}
.body .main .block .content > ul > li:before {
  content: '/';
  color: #a9a19c;
  position: absolute;
  left: 0;
  top: 0;
}
.body .main .block .content > ol {
  color: #a9a19c;
  margin-left: 20px;
}
.body .main .block .content > ol > li {
  list-style: decimal;
  padding-left: 0;
}
.body .main .block .content > ul > li > a,
.body .main .block .content > ol > li > a {
  font-family: Interstate, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  color: #094e93;
  display: block;
}
.body .main .block ol > li > a:hover{
  text-decoration: none;
}
.body .main .block .content > ul > li > span,
.body .main .block .content > ol > li > span,
.body .main .block .content > ul > li > a span,
.body .main .block .content > ol > li > a span {
  position: absolute;
  left: 0;
  top: 0;
  color: #a9a19c;
  display: none;
}
.body .main .main-content > .selector{
  margin-bottom: 20px;
}
.body .main .collapse .collapse-toggle {
  cursor: pointer;
  position: relative;
  padding-left: 18px;
}
.body .main .collapse .collapse-toggle:before {
  content: '';
  display: block;
  border-right: none;
  border-left: 6px solid #094e93;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  left: 0;
  top: 7px;
}
.body .main .collapse.open .collapse-toggle:before {
  top: 9px;
  border-bottom: none;
  border-top: 6px solid #094e93;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}
.body .main .collapse .collapse-content {
  display: none;
}
.body .main .block .table {
  clear: both;
  margin-bottom: 50px;
}
.body .main .block table {
  width: 100%;
  background: #fff;
  /*box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.3);*/
  /*word-break: break-all;*/
}
.body .main .block table th {
  font-family: Interstate, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 1.428em;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: #fff;
  background: #094e93;
  padding: 7px 15px;
  border-left: 1px solid #a9a19c;
}
.body .main .block table th:first-child {
  border-left: none;
}
.body .main .block table tbody tr:nth-child(odd) {
  background: #f2f0ee;
}
.body .main .block table td {
  font-size: 14px;
  line-height: 1.428em;
  color: #094e93;
  padding: 10px 15px;
  border: 1px solid #a9a19c;
}
.body .main .block table td:first-child {
  width: 30%;
}
.body .main .block table td:last-child {
  width: 20%;
}
.body .main .block table td a {
  display: inline-block;
  padding-right: 13px;
  position: relative;
  font-family: Interstate, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.body .main .block table td a:after {
  content: '';
  display: inline-block;
  border-right: 10px solid #094e93;
  border-top: 10px solid transparent;
}
.body .main .block table.contact td a:after {
  border: none;
}
.body .main .block .thumb img {
  width: 100%;
  display: block;
}
.body .main .block h4,
.body .main .block .thumb .caption,
.body .main .block .video-container .caption {
  font-family: Interstate, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #094e93;
  text-transform: uppercase;
  padding-top: 15px;
  position: relative;
  z-index: 11;
}
.body .main .block .badge {
  text-align: center;
  margin-bottom: 30px;
}
.body .main .block .video {
  font-family: Interstate, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #094e93;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 35px;
  height: 0;
  overflow: hidden;
}
.body .main .block .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.body .main .block .video p {
  padding-top: 15px;
}
.body .main .block #map {
  border: none;
  border-radius: 0;
  margin: 35px 0;
}
.body .main .block .map-riverview{
  position: relative;
}
.body .main .block .map-riverview .drop-trigger{
  display: block;
  background-color: rgba(242, 240, 238, 0.85);
  background-color: #fff\0;
  width: 100%;
  height: 32px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  top: 0px;
  left: 0px;
  text-transform: uppercase;
  color: #094e93;
  font-family: "Interstate", sans-serif;
  font-size: 0.875em;
  line-height: 1em;
  padding: 9px 25px 0px;
  cursor: pointer;
}
.body .main .block .map-riverview .drop-trigger .arrow{
  background: url(./images/dropDown-triangle.png) left top no-repeat;
  width: 11px;
  height: 11px;
  position: absolute;
  right: 30px;
  top: 10px;
}
.body .main .block #map .im-container{
  width: 100%;
}
.body .main .block .map-riverview .im-sidebar{
  position: absolute;
  top: 32px;
  float: none;
  height: 318px;
  width: 100%;
  background-color: rgba(242, 240, 238, 0.65);
  background: #fff\0;
  display: none;
}
.body .main .block .map-riverview .im-sidebar .im-list-container{
  padding-top: 0;
}
.body .main .block .map-riverview .im-list-location a{
  background-color: rgba(242, 240, 238, 0.65);
  background: #fff\0;
  border-bottom: 1px solid #EEEEEE;
  border-left: none;
  display: block;
  font-size: 14px;
  min-height: 30px;
  padding: 7px;
  transition: border-color 0.2s ease 0s;
}
.body .main .block .map-riverview .im-list-location a:hover{
  background-color: rgba(242, 240, 238, 0.9);
  background: #fff\0;
  border-left: none;
  border-color: none;
  border-bottom: 1px solid #eee;
}
.body .main .block .map-riverview .im-list-location h4,
.body .main .block .map-riverview .im-list-location span{
  color: #094e93;
  display: block;
  font-family: "Interstate";
  font-size: 0.875em;
  font-style: normal;
  font-weight: bold;
  line-height: 1em;
}
.body .main .block .map-riverview .im-list-location h4{
  margin: 4px 0 4px 20px;
}
.body .main .block #map .im-clear-button{
  background-color: rgba(255, 255, 255, 0.8)!important;
  width: 115px !important;
}
.body .main .block #map .im-clear-button:hover{
  background-color: #f2f0ee!important;
}
.body .main .block .buttons {
  margin-bottom: 15px;
}
.body .main .block .main-content {
  transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
}
.body .main .block .content {
  float: left;
  width: 66%;
  /*ul,
  ol{
  	padding-top: 20px;
  }*/
}

.body .main .block .content .flexslider{
  overflow: hidden;
}

.body .main .block .content > p {
  padding-bottom: 15px;
}
.body .main .block .content > a {
  font-family: Interstate, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.body .main .block .content .thumb {
  position: relative;
  margin-bottom: 50px;
}
.lazy-container{
  height: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.body .main .block .content .thumb .caption {
  font-size: 16px;
  color: #F2F0EE;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(9,78,147, 0.9);
  background: #273146 \0;
  padding: 15px 16px;
}
.body .main .block .content .flexslider {
  margin-bottom: 30px;
}
.body .main .block .content .flexslider .caption {
  font-size: 16px;
  color: #F2F0EE;
  text-align: center;
}
.body .main .block .content .flexslider .flex-direction-nav {
  position: absolute;
  bottom: 16px;
  width: 100%;
  z-index: 10;
}
.body .main .block .content .flexslider .flex-direction-nav a {
  position: absolute;
  bottom: 0;
  display: block;
  width: 10px;
  height: 13px;
}
.body .main .block .content .flexslider .flex-direction-nav a.flex-prev {
  left: 10px;
  background: url(./images/fancybox-prev.png) center no-repeat;
}
.body .main .block .content .flexslider .flex-direction-nav a.flex-next {
  right: 10px;
  background: url(./images/fancybox-next.png) center no-repeat;
}
.body .main .block .side-info {
  transition-delay: 0.8s;
  -moz-transition-delay: 0.8s;
  -webkit-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  float: right;
  width: 32%;
  padding-left: 4%;
}
.video-js {
  position: relative;
  padding-bottom: 67.74%;
  height: 0 !important;
  width: 100% !important;
}
.video-js video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.body .main .block .side-info .video-container {
  margin-bottom: 60px;
}
.body .main .block .side-info > p {
  padding-bottom: 15px;
}
.body .main .block .side-info .thumb {
  margin-bottom: 45px;
}
.body .main .block .side-info > ul > li{
  position: relative;
  padding-left: 0;
}
.body .main .block .side-info > ul > li > a {
  position: relative;
  display: inline-block;
  padding-right: 15px;
  padding-left: 15px;
}
.body .main .block .side-info > ul > li > a:after {
  content: '';
  display: inline-block;
  margin-left: 5px;
  border-right: 10px solid #094e93;
  border-top: 10px solid transparent;
}
.body .main .block .side-info > ul > li > span,
.body .main .block .side-info > ul > li > a > span{
  position: absolute;
  left: 0;
  top: 0;
  color: #a9a19c;
}
.body .main .block .side-info > ul.contact-list > li > a{
  padding-left: 0;
}
.body .main .block .side-info > ul.contact-list > li{
  margin-bottom: 20px;
}
.body .main .block .side-info > ul.contact-list > li h3{
  padding-bottom: 0;
}
.body .main .block .side-info > ul.current_position > li > a {
  font-family: Interstate, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  color: #094e93;
  display: block;
  padding-bottom: 15px;
}
/*.body .main .block .side-info > ul.external-link > li > a {
  text-decoration: underline;
}*/
.body .main .block .side-info .tour-dates ul li {
  margin-bottom: 15px;
}
.body .main .block .side-info .tour-dates ul li a {
  font-family: Interstate, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.body .main .block .side-info .tour-dates ul li a:after {
  border: none;
}
.body .main .block .thumb-list {
  clear: both;
  margin-left: -25px;
}
.body .main .block .thumb-list:after {
  content: '';
  display: block;
  clear: both;
}
.body .main .block .thumb-list .item {
  float: left;
  width: 33.3%;
  padding: 30px 0 30px 25px;
}
.body .main .block .thumb-list .item a {
  display: block;
  padding: 0;
}
.body .main .block .gallery {
  clear: both;
  margin: 15px 0 0 -25px;
}
.body .main .block .gallery:after {
  content: '';
  display: block;
  clear: both;
}
.body .main .block .gallery .item {
  float: left;
  width: 16.66%;
  padding: 0 0 25px 25px;
}
.body .main .block .gallery .item a {
  display: block;
  padding: 0;
  position: relative;
}
.body .main .block .gallery .item a img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
  filter: url('./js/filters.svg#grayscale'); /* Firefox 3.5+ */
  filter: gray; /* IE6-9 */
  -webkit-filter: grayscale(1); /* Webkit Nightlies & Google Chrome Canary */
}
.body .main .block .gallery .item a img:hover {
  filter: none; /* Applies to FF + IE */
  -webkit-filter: grayscale(0);
}
/*.body .main .block .gallery .item a .hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  filter: "alpha(opacity=0)";
  -ms-filter: "alpha(opacity=0)";
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  backface-visibility: hidden;
}
.body .main .block .gallery .item a:hover .hover {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}*/
.body .main .block .spirit-list {
  clear: both;
  margin-left: -25px;
  font-size: 0;
}
.body .main .block .content > .spirit-list > li:before{
  content: '';
  display: none;
}
.body .main .block .spirit-list:after {
  content: '';
  display: block;
  clear: both;
}
.body .main .block .spirit-list .item {
  /*float: left;*/
  display: inline-block;
  width: 25%;
  padding: 0 0 20px 25px;
  font-size: 13px;
  vertical-align: top;
}
.body .main .block .spirit-list .item .caption {
  font-family: Interstate, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #094e93;
  text-transform: uppercase;
  padding-top: 15px;
  text-align: center;
}
.body .main .block .news-list > li {
  border-top: 2px solid #f2f0ee;
  padding: 25px 0 30px;
}
.body .main .block .news-list > li:after {
  content: '';
  display: block;
  clear: both;
}
.body .main .block .news-list > li:first-child {
  border: none;
  padding-top: 0;
}
.body .main .block .news-list > li .thumb {
  margin-bottom: 0;
}
.body .main .block form {
  color: #505055;
  padding-top: 15px;
}
.body .main .block form h3{
  font-family: "Interstate", Arial, sans-serif;
  font-weight: bold;
}
.body .main .block form input, .body .main .block form select, .body .main .block form textarea {
  font-family: "Interstate Light", Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 1.154em;
  border: none;
  background: #cec9c5;
  padding: 5px 8px;
  margin: 0 0 15px;
  box-shadow: none;
  width: 100%;
}
.body .main .block form input[type="submit"] {
  font-family: "Interstate", Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  width: auto;
  padding: 8px 13px;
  margin: 0;
  background: #094e93;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.3);
}
.body .main .block form textarea {
  height: 80px;
}
.body .main .block form .form-control {
  margin-bottom: 20px;
}
.body .main .block form .form-control:after {
  content: '';
  display: block;
  clear: both;
}
.body .main .block form .control-group {
  margin-bottom: 15px;
}
.body .main .block form .control-group:after {
  content: '';
  display: block;
  clear: both;
}
.body .main .block form .control-group input, .body .main .block form .control-group select, .body .main .block form .control-group textarea {
  margin-bottom: 0;
}
.body .main .block form .control-group .input-control {
  float: right;
  width: 49%;
}
.body .main .block form .control-group .input-control:first-child {
  float: left;
}
.body .main .block form span.wpcf7-list-item {
  margin: 0;
}
.body .main .block form .check-control .wpcf7-list-item {
  display: block;
  padding: 6px 0 6px 8px;
  margin-bottom: 10px;
}
.body .main .block form .check-control .wpcf7-list-item:after {
  content: '';
  display: block;
  clear: both;
}
.body .main .block form .check-control .wpcf7-list-item input[type="checkbox"] {
  margin: 0;
}
.body .main .block form .check-control .wpcf7-list-item .wpcf7-list-item-label {
  display: inline-block;
  font-size: 13px;
  line-height: 18px;
  height: 18px;
  color: #505055;
}
.body .main .block form .check-inline .wpcf7-list-item {
  display: inline-block;
  margin: 0 27px 0 0;
}
.body .main .block form .selector {
  margin-bottom: 15px;
}
.body .main .block form .selector select {
  margin: 0;
}
.body .main .block form.search-form {
  position: relative;
  padding-right: 40px;
}
.body .main .block form.search-form input[type="text"] {
  background: #f2f0ee;
}
.body .main .block form.search-form input[type="submit"] {
  position: absolute;
  right: 0;
  top: 16px;
  text-indent: -9999px;
  width: 30px;
  height: 21px;
  background: url(./images/icons-sprites.png) right -44px;
  box-shadow: none;
}

.footer {
  padding-bottom: 13px;
  background: url(./images/footer.png) bottom left repeat-x;
}
.footer .footer-menu {
  display: table;
  width: 100%;
}
.footer .footer-menu li {
  display: table-cell;
  width: 14%;
}
.footer .footer-menu li a {
  display: block;
  padding: 4px;
  font-family: Interstate, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
line-height: 12px;
  letter-spacing: 0.025em;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}
.footer .footer-menu li a:hover {
  color: #094e93;
}
.footer .footer-menu li:first-child {
  width: 10%;
}
.footer .footer-menu li:first-child a {
  text-align: left;
}
.footer .footer-menu li:last-child {
  width: 20%;
}
.footer .footer-menu li:last-child a {
  text-align: right;
}

#left-col {
  float: left;
  width: 32%;
  background: #fff;
  /*border-top: 15px solid #094e93;*/
  padding: 18px 13px;
  margin-bottom: 20px;
}
#white-box-top{
  margin-bottom: 15px;
}
#searchbar{
  margin-bottom: 15px;
}
#left-col .venue-info{
  display: inline-block;
  margin-top: 15px;
  padding: 5px 0px 5px 0px;
  font-family: 'Interstate', helvetica, arial, sans-serif;
  font-weight: normal;
  font-size: 13pt;
  color: #094e93;
  text-transform: uppercase;
}
#left-col .venue-info:hover {
  color: #A9A19C;
}

#main-calendar {
  float: right;
  width: 65%;
  background: #094e93;
  border-top: 15px solid #fff;
  padding: 13px;
  margin-bottom: 20px;
}

.home .container {
  max-width: 1102px;
}
.home .header .container {
  position: relative;
}
.home .header .main-menu {
  margin-right: 152px;
}
.home .header .main-menu > ul li.quick_links {
  display: none;
}
.home .main {
  /*margin: 0 152px 20px 0;
  padding: 25px 22px 0 0;*/
  margin: 0 0 20px 0;
}
.home .body .container{
  background: none;
  padding: 0 20px;
  box-shadow: none;
}
.home .main .content{
  display: table;
  width: 100%;
}
.home .main .content > div{
  display: table-cell;
  float: none;
  vertical-align: top;
}
.home .main .content .news{
  width: 60%;
}
.home .main .content .seperate{
  width: 2%;
}
.home .main .content .calendar{
  width: 38%;
}
.home .main .content .calendar .inner{
  position: relative;
}

.quick-links .menu .main-menu > ul > li.active.trigger .inner:after {
  border: none;
}

.fancybox-close {
  width: 14px;
  height: 14px;
  right: -40px;
  top: 0;
  background: url(./images/fancybox-close.png) center no-repeat;
}

.fancybox-nav {
  top: auto;
  bottom: 0;
  height: auto;
  z-index: 8051;
}
.fancybox-nav span {
  width: 10px;
  height: 13px;
  bottom: 13px;
  top: auto;
  margin: 0;
  visibility: visible;
}
.fancybox-nav.fancybox-prev span {
  background: url(./images/fancybox-prev.png) center no-repeat;
}
.fancybox-nav.fancybox-next span {
  background: url(./images/fancybox-next.png) center no-repeat;
}

.fancybox-title {
  font-family: 'Interstate', Arial, sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #094e93;
  text-transform: uppercase;
  text-align: center;
  padding: 11px 10px 9px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(169, 161, 156, 0.9);
  background: #99928d \0;
}

.fancybox-opened .fancybox-skin {
  border-radius: 0;
  -webkit-box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* new home: quick links */
.banner.corner-wrap{
  overflow: hidden;
}
#menu-quick-links-clone{
  z-index: 10;
  position: absolute;
  right: 0;
  top: 0;
  width: 152px;
  height: 100%;
  text-align: center;
  moz-box-sizing:border-box;
  -ms-box-sizing:border-box;
  box-sizing:border-box;
  padding-bottom: 55px;
}
#menu-quick-links-clone ul{
  overflow: hidden;
  height: 100%;
  border-top: 1px solid #ccc;
  background: #f2f0ee;
}
#menu-quick-links-clone ul li {
  border-bottom: 1px solid #ccc;
}
#menu-quick-links-clone ul li a {
  backface-visibility: hidden;
  color: #505055;
  display: block;
  font-size: 13px;
  line-height: 1.153em;
  padding: 13px 0;
  transition: all 0.5s ease 0s;
}
#menu-quick-links-clone ul li a:hover {
  background: #ddd9d7;
  text-decoration: none;
}
/* new home: .feature-boxes */
.cols5,
.cols4{
  font-size: 0;
}
.cols5 .col,
.cols4 .col{
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  width: 20%;
}

.home .feature-boxes{
  clear: both;
  width: 100%;
  margin-bottom: 25px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
  line-height: 1;
}
.home .feature-boxes h3{
  font-family: 'Lyon Display Web';
  color: #a9a19c;
  font-size: 2.8em;
  font-weight: bold;
  text-align: center;
  padding: 20px 0 25px;
}
.home .feature-boxes .col{
  padding: 0 13px 20px;
  line-height: 1.5;
}
.home .feature-boxes .col .fb-icon{
  width: 100%;
  height: 80px;
  margin: 20px 0;
  display: table;
  text-align: center;
}
.home .feature-boxes .col .fb-icon span{
  display: table-cell;
  vertical-align: middle;
}
.home .feature-boxes .col .fb-icon img{
  max-height: 60px;
  width: auto;
}
.home .feature-boxes .col h5{
  padding-bottom: 5px;
  color: #094e93;
  font-family: "Interstate";
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
.home .feature-boxes .col p{
  color: #505055;
  font-family: "Interstate Light";
  text-align: center;
}
.home .feature-boxes .fb-footer{
  text-align: center;
}
.home .feature-boxes .fb-footer a{
  display: inline-block;
  position: relative;
  color: #094e93;
  font-family: "Interstate";
  font-size: 1.15em;
}
.home .feature-boxes .fb-footer a:after {
  border-right: 12px solid #094e93;
  border-top: 12px solid transparent;
  content: "";
  display: inline-block;
  margin-left: 8px;
}

/* toolbox */
.toolbox{
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.tb-bg{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #394d78;
  background: rgba(9, 78, 147, 0.9);
}
.tb-items{
  position: relative;
  top: 50%;
  max-width: 730px;
  margin: -195px auto 0;
  padding: 50px;
  background: #9c9797;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}
.tb-items:before,
.tb-items:after{
  content: "";
  width: 52px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: #9c9797;
}
.tb-items:after{
  width: 100%;
  height: 52px;
  top: auto;
  bottom: 0;
}
.tb-items li.col{
  list-style: none;
  width: 25%;
  height: 155px;
  padding: 20px 0 0 0;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-family: "Interstate";
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}
.tb-items li.col a{
  display: block;
  color: #fff;
}
.tb-items li.col a:hover{
  opacity: 0.85;
}
.tb-items li.col a span{
  display: block;
  line-height: 24px;
  padding-bottom: 20px;
  text-transform: uppercase;
}
.tb-items li.col img{
  max-width: 100%;
  vertical-align: top;
}
.tb-items a.tb-close{
  position: absolute;
  right: -35px;
  top: 0;
  width: 15px;
  height: 15px;
  background: url(images/icon-tb-close.png) no-repeat;
}


/***** Adding CSS for Embedding Vimeo Responsively (embedresponsively.com) ******/

.embed-container { 
	position: relative; 
	padding-bottom: 56.25%; 
	height: 0; overflow: 
	hidden; max-width: 100%; 
	} 
	
.embed-container iframe, .embed-container object, .embed-container embed { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
	}


@media only screen and (max-width: 1280px) {
  .body .container {
    padding: 0 60px;
  }
}
@media only screen and (max-width: 1100px) {
  .footer .footer-menu li {
    width: auto;
  }
  .footer .footer-menu li:last-child {
    width: 23%;
  }
}
@media only screen and (max-width: 1000px) {
  .header .site-navi li {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 920px) {
  body {
    background: #fff;
  }
  .home {
    background: #a9a19c;
  }
  .header{
    position: relative;
    padding-top: 40px;
    background: #a9a19c;
    box-shadow: -2px 2px 5px #a9a19c;
  }
  .home .header{
    background: #fff;
    box-shadow: none;
  }
  .header .top{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
  }
  .wrap .sidebar-pusher {
    padding-top: 0;
  }
  .wrap .sidebar-pusher > .sidebar {
    display: none;
  }

  .narrow {
    display: block;
  }

  .site-navi {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    backface-visibility: hidden;
    opacity: 0;
    filter: "alpha(opacity=0)";
    -ms-filter: "alpha(opacity=0)";
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
  }

  .menu {
    min-height: 40px;
  }
  .menu .container {
    position: relative;
  }
  .menu .narrow-menu {
    display: block;
  }
  .menu .main-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #094e93;
  }
  .menu .main-menu > ul {
    display: block;
  }
  .menu .main-menu > ul > li {
    display: block;
    border-top: 2px solid rgba(68, 88, 128, 0.9);
    border-top: 2px solid #475b82 \0;
  }
  .menu .main-menu > ul > li .inner > a {
    padding: 12px 10px 12px 50px;
    background: #094e93 url(./images/icon-expand.png) 20px -67px no-repeat;
  }
  .menu .main-menu > ul > li.open .inner > a {
    background-position: 20px -105px;
  }
  .menu .main-menu > ul > li .inner > .sub-menu > li:last-child > a {
    background: none;
  }
  .menu .main-menu > ul > li:hover .sub-menu {
    display: none;
  }
  .menu .main-menu > ul > li.open .inner > .sub-menu {
    display: block;
  }
  .menu .main-menu > ul > li.active {
    display: block;
  }
  .menu .main-menu > ul > li.active.trigger {
    display: none;
  }
  .menu .main-menu .sub-menu {
    position: static;
    width: 100%;
    background: #073b6e;
  }
  .menu .main-menu .sub-menu li a {
    background: none;
    padding-left: 50px;
  }
  .menu .main-menu .sub-menu li.has-child > a {
    background: url(./images/icon-expand.png) 20px -67px no-repeat;
  }
  .menu .main-menu .sub-menu li.has-child.open > a {
    background-position: 20px -105px;
  }
  .menu .main-menu .sub-menu li.open .sub-menu {
    display: block;
  }
  .menu .main-menu .sub-menu .sub-menu {
    display: none;
    background: #121d35;
  }
  .menu .main-menu .sub-menu .sub-menu li a {
    padding-left: 70px;
  }
  .home .header .main-menu > ul li.quick_links {
    display: block;
  }

  .header .logo {
    display: none;
    width: auto;
  }
  .header .logo.narrow {
    display: block;
    float: none;
  }
  .header .site-navi {
    float: none;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    z-index: 2;
  }
  .header .site-navi li {
    margin: 0;
    padding: 9px 0 10px;
    cursor: pointer;
  }
  .header .site-navi li a {
    width: 50px;
    text-indent: -9999px;
  }
  .header .site-navi li.icons-contact {
    background: #d3d8e1;
  }
  .header .site-navi li.icons-contact a,
  .header .site-navi li.icons-contact a:hover {
    background-position: center -176px;
  }
  .header .site-navi li.icons-contact:hover {
    box-shadow: inset 1px 0 8px rgba(27, 44, 79, 0.3);
  }
  .header .site-navi li.icons-home {
    background: #506187;
  }
  .header .site-navi li.icons-home a,
  .header .site-navi li.icons-home a:hover {
    background-position: center -242px;
  }
  .header .site-navi li.icons-home:hover {
    box-shadow: inset 1px 0 8px rgba(27, 44, 79, 0.8);
  }
  .header .site-navi li.icons-search {
    background: #7c89a5;
  }
  .header .site-navi li.icons-search a,
  .header .site-navi li.icons-search a:hover {
    background-position: center -154px;
  }
  .header .site-navi li.icons-search:hover {
    box-shadow: inset 1px 0 8px rgba(27, 44, 79, 0.6);
  }
  .header .site-navi li.icons-services {
    background: #a7b0c3;
  }
  .header .site-navi li.icons-services a,
  .header .site-navi li.icons-services a:hover {
    background-position: center -132px;
  }
  .header .site-navi li.icons-services:hover {
    box-shadow: inset 1px 0 8px rgba(27, 44, 79, 0.5);
  }
  .header .site-navi li .search-form {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    top: 100%;
    padding-right: 0;
  }
  .header .site-navi li .search-form input[type="text"] {
    width: 249px;
    height: 30px;
    padding: 5px 10px;
    background: #506187;
    color: #fff;
  }
  .header .site-navi li .search-form input[type="submit"] {
    display: none;
  }
  .header .site-navi li .search-form ::-webkit-input-placeholder {
    color: #fff;
  }
  .header .site-navi li .search-form :-moz-placeholder {
    color: #fff;
  }
  .header .site-navi li .search-form ::-moz-placeholder {
    color: #fff;
  }
  .header .site-navi li .search-form :-ms-input-placeholder {
    color: #fff;
  }
  .header .site-navi li .search-form :placeholder {
    color: #fff;
  }
  .header .sidebar {
    display: none;
  }
  /* new home */

  .home .body .main .flexslider .flex-control-paging{
  }
  /*flexislider img*/
  .home .body .main .flexslider .slides li{

  }
  .home .body .main .flexslider .slides li:before{
    content: "";
    display: block;
    padding-top: 57%;
  }
  .home .body .main .flexslider .slides img {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
  }
  .home .body .main .flexslider .sw-video{
    padding-right: 0;
  }
  /* .home .body .main .flexslider .sw-video{
    position: relative;
  }
  .home .body .main .flexslider .sw-video:before{
    content: "";
    display: block;
    padding-top: 59%;
  } */
  .home .body .main .flexslider .sw-video iframe{
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }


  #menu-quick-links-clone{
    display: none;
  }

  .footer .footer-menu li a{
    font-size: 10px;
    color: #a9a19c;
  }
  .home .footer .footer-menu li a{
    color: #fff;
  }

  .body .sidebar-bg {
    display: none;
  }
  .body .container{
    padding: 0 20px;
    box-shadow: none;
  }
  .home .body .container{
    padding: 0 20px;
  }
  /*.body .body-inner{
    padding: 0 0 20px;
  }*/
  .body .main {
    padding-right: 0;
  }
  .body .main .block #map {
    /*height: 400px;*/
  }

  .home .main {
    margin-right: 0;
  }

  .fancybox-close {
    right: -20px;
  }

  .corner-wrap .corner-lt,
  .corner-wrap .corner-rb {
    width: 60px;
  }
  .corner-wrap .corner-lt{
    left: -18px;
    top: -18px;
  }
  .corner-wrap .corner-rb{
    right: -18px;
    bottom: -18px;
  }
}
@media only screen and (max-width: 720px) {
  /*.body .main .block .table {
    overflow: auto;
  }*/
  .footer .footer-menu li a{
    font-size: 9px;
  }

  /* new home */
  .home .feature-boxes h3{
    font-size: 2.6em;
    padding-bottom: 40px;
  }
  .home .feature-boxes .col{
    display: block;
    width: 100%;
    padding: 0 0 25px 80px;
    position: relative;
  }
  .home .feature-boxes .col .fb-icon{
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    max-width: 60px;
    height: auto;
    margin: 0;
  }
  .home .feature-boxes .col h5,
  .home .feature-boxes .col p{
    text-align: left;
  }

  .toolbox{
    width: 105%;
    overflow-y: auto;
  }
}
@media only screen and (max-width: 680px) {
  .footer .footer-menu li:last-child {
    width: 26%;
  }

  .tb-items li.col{
    width: 50%;
  }
}
@media only screen and (max-width: 598px) {
  .footer .footer-menu li:last-child {
    width: 30%;
  }
}
@media only screen and (max-width: 530px) {
  .inner-wrap {
    margin-bottom: -65px;
  }

  .footer, .push {
    height: 65px;
  }
  .footer .footer-menu {
    display: block;
    padding: 5px 0;
    text-align: center;
  }
  .footer .footer-menu li {
    display: inline-block;
  }
  .footer .footer-menu li:first-child, .footer .footer-menu li:last-child {
    width: auto;
  }
  .footer .footer-menu li a {
    line-height: 1em;
  }

  .home .body .main .flexslider .caption{
    min-height: 0;
  }
  .body .main .banner .flexslider .caption {
    font-size: 12px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .body .main .content,
  .body .main .content > div{
    display: block;
  }
  .body .main .content .news,
  .body .main .content .calendar{
    width: 100%;
  }
  .body .main .news,
  .body .main .calendar {
    float: none;
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
  }
  .body .main .block {
    padding-top: 50px;
  }
  .body .main .block .content,
  .body .main .block .side-info {
    float: none;
    display: block;
    width: 100%;
    padding: 0;
  }
  .body .main .block h1 {
    font-size: 48px;
  }
  .body .main .block h2 {
    font-size: 35px;
  }
  .body .main .block .badge {
    text-align: left;
  }
  .body .main .block #map {
    margin-top: 0;
    /*height: 240px;*/
  }
  .body .main .block table th,
  .body .main .block table td{
    font-size: 11px;
  }
  .body .main .block .content {
    margin-bottom: 30px;
  }
  .body .main .block .gallery {
    margin-left: -20px;
  }
  .body .main .block .gallery .item {
    width: 25%;
    padding-left: 20px;
  }
  .body .main .block .thumb-list .item {
    width: 50%;
  }
  .body .main .block .spirit-list .item {
    width: 33.3%;
  }

  #left-col,
  #main-calendar {
    float: none;
    display: block;
    width: 100%;
  }


  .corner-wrap .corner-lt,
  .corner-wrap .corner-rb {
    width: 40px;
  }
  .corner-wrap .corner-lt{
    left: -12px;
    top: -12px;
  }
  .corner-wrap .corner-rb{
    right: -12px;
    bottom: -12px;
  }
  .home .corner-wrap .corner-lt{
    left: -8px;
    top: -8px;
  }
  .home .corner-wrap .corner-rb{
    right: -8px;
    bottom: -8px;
  }
  .side-info .corner-wrap .corner-lt,
  .side-info .corner-wrap .corner-rb {
    width: 88px;
  }
  .side-info .corner-wrap .corner-lt{
    left: -24px;
    top: -24px;
  }
  .side-info .corner-wrap .corner-rb{
    right: -24px;
    bottom: -24px;
  }
  .body .main .block table th,
  .body .main .block table td{
    padding: 5px;
  }

  .tb-items li.col{
    width: 100%;
  }
}
@media only screen and (max-width: 320px) {
  .container {
    padding: 0 10px;
  }

  /*.wrap .sidebar-pusher {
    padding-top: 141px;
  }*/

  .body .main {
    margin-bottom: 0;
  }
}
.menu .sidebar,
.sidebar-bg,
.main-menu > ul > li,
.main,
.main .block,
.main-content,
.main-content .side-info {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  backface-visibility: hidden;
  opacity: 0;
  filter: "alpha(opacity=0)";
  -ms-filter: "alpha(opacity=0)";
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.visible,
.menu .sidebar.visible,
.main-menu.visible > ul > li,
.body .main .block.visible,
.body .main .block.visible .main-content,
.body .main .block.visible .main-content .side-info {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

/* [z] the content style */
.content_area blockquote{
  color: rgb(169, 161, 156);
  font-family: 'Lyon Display';
  font-size: 29.25px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.625px;
  line-height: 32px;
  /*margin-bottom: 15px;*/
}
.content_area ul{
  /*list-style: disc;*/
  margin: 0px 0;
}
.content_area ul li{
  position: relative;
  padding-left: 20px;
  background: url(images/li-before.png) no-repeat 0 5px;
}

/*.content_area ul ul{
  list-style: circle;
}
.content_area ul ul ul{
  list-style: square;
}*/
.content_area ol{
  list-style: decimal;
  margin: 15px 0 15px 20px;
}
.content_area em{
  font-style: italic;
}

/*Update map height*/


.im-container, .im-element{
height: 570px !important;
}

@media only screen and (max-width: 1280px) {

.im-container, .im-element{
height: 400px !important;
}

}

@media only screen and (max-width: 1000px) {

.im-container, .im-element{
height: 250px !important;

}
}

@media only screen and (max-width: 720px) {

.im-container, .im-element{
height: 200px !important;

}
}

@media only screen and (max-width: 530px) {

.im-container, .im-element{
height: 150px !important;
}
}

/*Search Results New Blue
_____________________________________*/
	
	
	.page-template-page-search #cse a{
    color: #094e93 !important;
}
.page-template-page-search .gs-webResult.gs-result a.gs-title:link,
.page-template-page-search .gs-webResult.gs-result a.gs-title:link b,
.page-template-page-search .gs-imageResult a.gs-title:link,
.page-template-page-search .gs-imageResult a.gs-title:link b{
    color: #094e93 !important;
}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	





