@charset "UTF-8";
/**
 * -----------------------------------------------------------------------------------------------
 * #IMPORTS
 * -----------------------------------------------------------------------------------------------
 */
/**
 * Generic utility styles etc.
 */
/**
 * -----------------------------------------------------------------------------------------------
 * #DEBUG
 * -----------------------------------------------------------------------------------------------
 */
/**
 * -----------------------------------------------------------------------------------------------
 * #BASE
 * -----------------------------------------------------------------------------------------------
 */
/**
 * -----------------------------------------------------------------------------------------------
 * #MIXINS
 * -----------------------------------------------------------------------------------------------
 */
/**
 * Create a fully formed type style (sizing and vertical rhythm) by passing in a
 * single value, e.g.:
 *
   `@include font-size(10px);`
 *
 * Thanks to @redclov3r for the `line-height` Sass:
 * twitter.com/redclov3r/status/250301539321798657
 */
/**
 * Style any number of headings in one fell swoop, e.g.:
 *
   .foo {
       @include headings(1, 3) {
           color:#BADA55;
       }
    }
 *
 * With thanks to @lar_zzz, @paranoida, @rowanmanning and ultimately
 * @thierrylemoulec for refining and improving my initial mixin.
 */
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/**
 * -----------------------------------------------------------------------------------------------
 * #RESET
 * -----------------------------------------------------------------------------------------------
 */
/**
 * As well as using normalize.css, it is often advantageous to remove all
 * margins from certain elements.
 */
body,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
figure,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0;
}

/**
 * Give a help cursor to elements that give extra info on `:hover`.
 */
abbr[title],
dfn[title] {
  cursor: help;
}

/**
 * Remove underlines from potentially troublesome elements.
 */
u,
ins {
  text-decoration: none;
}

/**
 * Apply faux underlines to inserted text via `border-bottom`.
 */
ins {
  border-bottom: 1px solid;
}

/**
 * -----------------------------------------------------------------------------------------------
 * #CLEARFIX
 * -----------------------------------------------------------------------------------------------
 */
/**
 * Micro clearfix, as per: css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
 * Extend the clearfix class with Sass to avoid the `.clearfix` class appearing
 * over and over in your markup.
 */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/**
 * Base styles; unclassed HTML elements etc.
 */
/**
 * -----------------------------------------------------------------------------------------------
 * #BOX-SIZING
 * -----------------------------------------------------------------------------------------------
 */
/**
 * Set the global `box-sizing` state to `border-box`.
 *
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 * paulirish.com/2012/box-sizing-border-box-ftw
 */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/**
 * -----------------------------------------------------------------------------------------------
 * #PAGE
 * -----------------------------------------------------------------------------------------------
 */
/**
 * High-, page-level styling.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project,
 *    sourced from our default variables. The `font-size` is calculated to exist
 *    in ems, the `line-height` is calculated to exist unitlessly.
 * 2. Force scrollbars to always be visible to prevent awkward ΓÇÿjumpsΓÇÖ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 * 4. Prevent certain mobile browsers from automatically zooming fonts.
 * 5. Fonts on OSX will look more consistent with other systems that do not
 *    render text using sub-pixel anti-aliasing.
 */
html {
  font-size: 0.8125em;
  /* [1] */
  line-height: 1.4;
  /* [1] */
  font-family: "Open Sans", Arial, sans-serif;
  background-color: #fff;
  color: #fff;
  overflow-y: scroll;
  /* [2] */
  min-height: 100%;
  /* [3] */
  -webkit-text-size-adjust: 100%;
  /* [4] */
  -ms-text-size-adjust: 100%;
  /* [4] */
  -moz-osx-font-smoothing: grayscale;
  /* [5] */
  -webkit-font-smoothing: antialiased;
  /* [5] */
  -webkit-tap-highlight-color: transparent;
  font-smooth: always;
  -moz-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

/**
 * Reset fonts for relevant elements
 */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
 * Links
 */
a {
  color: #505050;
  text-decoration: none;
}
a:hover, a:focus {
  color: #505050;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/**
 * Misc.
 */
::-moz-selection {
  background: rgba(255, 255, 255, 0.7);
  color: #000;
  text-shadow: none;
}
::selection {
  background: rgba(255, 255, 255, 0.7);
  color: #000;
  text-shadow: none;
}

::-moz-selection {
  background: rgba(255, 255, 255, 0.7);
  color: #000;
  text-shadow: none;
}

::-webkit-selection {
  background: rgba(255, 255, 255, 0.7);
  color: #000;
  text-shadow: none;
}

/**
 * -----------------------------------------------------------------------------------------------
 * #HEADINGS
 * -----------------------------------------------------------------------------------------------
 */
/**
 * As per: csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css
 *
 * When we define a heading we also define a corresponding class to go with it.
 * This allows us to apply, say, `class=alpha` to a `h3`; a double-stranded
 * heading hierarchy.
 */
h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", Arial, sans-serif;
}

h1,
.alpha {
  font-size: 50px;
  font-size: 3.84615rem;
  line-height: 1.092;
  color: #000;
  font-weight: 400;
}

h2,
.beta {
  font-size: 18px;
  font-size: 1.38462rem;
  line-height: 1.01111;
  font-weight: 400;
  margin : 0 0 0px 0;
}

h3,
.gamma {
  font-size: 16px;
  font-size: 1.23077rem;
  line-height: 1.1375;
  font-style: italic;
  font-weight: 400;
}

h4,
.delta {
  font-size: 18px;
  font-size: 1.38462rem;
  line-height: 1.01111;
}

h5,
.epsilon {
  font-size: 16px;
  font-size: 1.23077rem;
  line-height: 1.1375;
}

h6,
.zeta {
  font-size: 14px;
  font-size: 1.07692rem;
  line-height: 1.3;
}

h2.newsheader{
	margin : 0 0 20px 0;
	font-size : 22px;
}

.popup-container ul{
	list-style: disc outside none;
	margin : 0 0 0 20px;
}

.popup-container ul li{
list-style: disc outside none;
	margin : 0 0 12px 0px;
}

/**
 * A series of classes for setting massive type; for use in heroes, mastheads,
 * promos, etc.
 */
.giga {
  font-size: 96px;
  font-size: 7.38462rem;
  line-height: 1.1375;
}

.mega {
  font-size: 72px;
  font-size: 5.53846rem;
  line-height: 1.01111;
}

.kilo {
  font-size: 48px;
  font-size: 3.69231rem;
  line-height: 1.1375;
}

/**
 * -----------------------------------------------------------------------------------------------
 * #PARAGRAPHS
 * -----------------------------------------------------------------------------------------------
 */
p {
  margin-bottom: 15px;
}

/**
 * The `.lede` class is used to make the introductory text (usually a paragraph)
 * of a document slightly larger.
 */
.lede,
.lead {
  font-size: 14.625px;
  font-size: 1.125rem;
  line-height: 1.24444;
}

/**
 * -----------------------------------------------------------------------------------------------
 * #SMALLPRINT
 * -----------------------------------------------------------------------------------------------
 */
/**
 * A series of classes for setting tiny type; for use in smallprint etc.
 */
.smallprint,
.milli {
  font-size: 12px;
  font-size: 0.92308rem;
  line-height: 1.51667;
}

.micro {
  font-size: 10px;
  font-size: 0.76923rem;
  line-height: 1.82;
}

/**
 * -----------------------------------------------------------------------------------------------
 * #IMAGES
 * -----------------------------------------------------------------------------------------------
 */
/**
 * 1. Fluid images for responsive purposes.
 * 2. Offset `alt` text from surrounding copy.
 * 3. Setting `vertical-align` removes the whitespace that appears under `img`
 *    elements when they are dropped into a page as-is. Safer alternative to
 *    using `display: block;`.
 */
img {
  max-width: 100%;
  /* [1] */
  font-style: italic;
  /* [2] */
  vertical-align: middle;
  /* [3] */
}

/**
 * If a `width` and/or `height` attribute have been explicitly defined, letΓÇÖs
 * not make the image fluid.
 */
img[width],
img[height] {
  max-width: none;
}

/**
 * Images in `figure` elements.
 */
figure > img {
  display: block;
}

/**
 * -----------------------------------------------------------------------------------------------
 * #LISTS
 * -----------------------------------------------------------------------------------------------
 */
/**
 * Remove vertical spacing from nested lists.
 */
li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Objects and abstractions
 */
/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */
.jspContainer {
  overflow: hidden;
  position: relative;
}

.jspPane {
  position: absolute;
}

.jspVerticalBar {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 100%;
  background: red;
}

.jspHorizontalBar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background: red;
}

.jspCap {
  display: none;
}

.jspHorizontalBar .jspCap {
  float: left;
}

.jspTrack {
  background: #dde;
  position: relative;
}

.jspDrag {
  background: #bbd;
  position: relative;
  top: 0;
  left: 0;
  cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
  float: left;
  height: 100%;
}

.jspArrow {
  background: #50506d;
  text-indent: -20000px;
  display: block;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.jspArrow.jspDisabled {
  cursor: default;
  background: #80808d;
}

.jspVerticalBar .jspArrow {
  height: 16px;
}

.jspHorizontalBar .jspArrow {
  width: 16px;
  float: left;
  height: 100%;
}

.jspVerticalBar .jspArrow:focus {
  outline: none;
}

.jspCorner {
  background: #eeeef4;
  float: left;
  height: 100%;
}

.jspDrag {
  background: #f0f0f0;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.jspHorizontalBar, .jspVerticalBar, .jspTrack {
  background: #5d5d5d;
  border-radius: 10px;
  -webkit-box-shadow: inset 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
          box-shadow: inset 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
}

.jspTrack .jspActive, .jspTrack .jspHover, .jspDrag:hover {
  background: #fff;
}

.vegas-overlay {
  background: transparent url(../images/overlays/01.png);
  opacity: 0.5;
  z-index: -1;
}

.vegas-background {
  -ms-interpolation-mode: bicubic;
  image-rendering: optimizeQuality;
  max-width: none !important;
  /* counteracts global img modification by twitter bootstrap library */
  z-index: -2;
}

.vegas-overlay,
.vegas-background {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropdown {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}

.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #428bca;
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777;
}

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}

.open > .dropdown-menu {
  display: block;
}

.open > a {
  outline: 0;
}

.dropdown-menu-right {
  left: auto;
  right: 0;
}

.dropdown-menu-left {
  left: 0;
  right: auto;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid;
  content: "";
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }

  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
/**
 * Partials
 */
.container {
  width: 980px;
  margin-left: auto;
  margin-right: auto;
}

/**
 * -----------------------------------------------------------------------------------------------
 * #HEADER
 * -----------------------------------------------------------------------------------------------
 */
.header {
  background: #000;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  z-index: 9999;
  position: relative;
}

.logo {
  margin: 0 auto 50px;
  width: 397px;
}

.nav ul {
  list-style: none;
  padding: 0;
  width: 691px;
  margin: 0 auto;
}
.nav ul li {
  float: left;
  margin-right: 100px;
}
.nav ul li:last-child {
  margin-right: 0;
}
.nav ul li a {
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
}
.nav ul li a:hover, .nav ul li a:focus {
  text-decoration: none;
  color: #f0f0f0;
}
.nav ul.dropdown-menu {
  width: 30px;
  border: none;
  background: #000;
  margin-top: 5px;
  left: -47px;
  text-align: center;
}
.nav ul.dropdown-menu li {
  float: none;
  margin-right: 0;
}
.nav ul.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.nav .dropdown-menu > li > a {
  padding: 5px 10px;
}
.nav ul.dropdown-menu.dropdown-profile {
  left: -52px;
}

/**
 * -----------------------------------------------------------------------------------------------
 * #MAIN
 * -----------------------------------------------------------------------------------------------
 */
.message {
    width: 898px;
    height: 267px;
    background: url("../images/msg-bg1.png") top left no-repeat;
    margin: 130px auto 0;
    text-align: center;
    padding: 75px 50px 50px;
}
.message h1 {
  font-size: 48px;
  color: #5d5d5d;
  width: 690px;
  margin: 0 auto;
}

.news {
  margin: 110px auto 0;
  width: 882px;
  height: 216px;
  background: url("../images/feed-bg.png") top left no-repeat;
  padding: 55px 110px 0 120px;
}

.news-title {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-left: 6px;
}

.news-excerpt {
  margin-top: 6px;
  font-size: 14px;
  line-height: 24px;
  font-style: italic;
  color: #fff;
  font-weight: 300;
  letter-spacing: 1px;
}

.news-link:hover {
  text-decoration: none;
}
.news-link:hover .news-excerpt {
  text-decoration: underline;
}

.main {
  margin-bottom: 110px;
  min-height: 525px;
}

.main.sizex {
  min-height: 675px;
}

.divider {
  margin-bottom: 15px;
  margin-top: 15px;
}

.popup {
  width: 797px;
  height: 686px;
  background: url(../images/modal.png) top left no-repeat;
  padding: 20px 50px 30px 30px;
  margin: 40px auto;
  opacity: .9;
}

.scroll-pane {
  width: 717px;
  height: 530px;
  overflow: auto;
  outline: none;
}

.popup-container {
  padding-right: 40px;
}

.exit-popup {
  display: inline-block;
  float: right;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 20px;
  color: #fff;
}
.exit-popup:hover {
  color: #fff;
}

.filler {
  width: auto;
  left: 0;
  min-width: 100%;
  position: absolute;
  top: 0;
}
.filler h2 {
  margin-bottom: 20px;
}

.no-show1 {
  height: 296px;
  -webkit-transition: height 1s ease 300ms;
          transition: height 1s ease 300ms;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  z-index: 9998;
}

.show1,
.keepshow1 {
  height: 580px;
  -webkit-transition: height 1s ease 300ms;
          transition: height 1s ease 300ms;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9998;
}

.no-show {
  height: 296px;
  -webkit-transition: height 1s ease 300ms;
          transition: height 1s ease 300ms;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  z-index: 9998;
}

.show,
.keepshow {
  height: 1063px;
  -webkit-transition: height 1s ease 300ms;
          transition: height 1s ease 300ms;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9998;
}

.containerx {
  width: 780px;
  position: absolute;
  bottom: 140px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.about .containerx {
  bottom: 50px;
}

.scroll-panex {
  width: 770px;
  height: 550px;
  overflow: auto;
  outline: none;
}
.scroll-panex h2 {
  text-transform: uppercase;
}

#contact .containerx {
  bottom: 230px;
}
#contact .containerx h2 {
  text-transform: uppercase;
}
#contact .containerx form {
  margin-top: 25px;
}
#contact .containerx textarea {
  width: 370px;
  height: 115px;
  background: rgba(255, 255, 255, 0.45);
  -webkit-box-shadow: 2px 1px 6px 0px rgba(18, 14, 17, 0.78) inset;
          box-shadow: 2px 1px 6px 0px rgba(18, 14, 17, 0.78) inset;
  border-radius: 10px;
  border: none;
  float: right;
  margin-bottom: 20px;
  padding: 5px 15px;
}
#contact .containerx input {
  width: 270px;
  height: 30px;
  background: rgba(255, 255, 255, 0.45);
  -webkit-box-shadow: 2px 1px 6px 0px rgba(18, 14, 17, 0.78) inset;
          box-shadow: 2px 1px 6px 0px rgba(18, 14, 17, 0.78) inset;
  border-radius: 20px;
  border: none;
  float: left;
  margin-bottom: 10px;
  padding: 5px 15px;
}
#contact .containerx input:focus,
#contact .containerx select:focus,
#contact .containerx textarea:focus,
#contact .containerx button:focus {
  outline: none;
}
#contact .containerx button {
  border: none;
  text-transform: uppercase;
  padding: 3px 15px;
  background: rgba(255, 255, 255, 0.45);
  -webkit-box-shadow: 2px 1px 6px 0px rgba(18, 14, 17, 0.78) inset;
          box-shadow: 2px 1px 6px 0px rgba(18, 14, 17, 0.78) inset;
  border-radius: 20px;
  margin-bottom: 50px;
}
#contact .containerx button:hover {
  background: rgba(255, 255, 255, 0.65);
}
#contact .containerx .close, #contact .containerx .left {
  float: left;
}
#contact .containerx .send, #contact .containerx .right {
  float: right;
}
#contact .containerx .left {
  width: 285px;
}
#contact .containerx .right {
  width: 385px;
}
#contact .containerx ::-webkit-input-placeholder {
  color: #fff;
  letter-spacing: 1px;
}
#contact .containerx :-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
  letter-spacing: 1px;
}
#contact .containerx ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
  letter-spacing: 1px;
}
#contact .containerx :-ms-input-placeholder {
  color: #fff;
  letter-spacing: 1px;
}
#contact .containerx .contact {
  margin-bottom: 20px;
  font-size: 18px;
}
#contact .containerx .contact a {
  display: inline-block;
  margin-left: 5px;
  font-size: 24px;
  color: #fff;
}
#contact .containerx .contact a:hover {
  color: #fff;
}

.img-right {
  float: right;
  margin-left: 40px;
  margin-bottom: 40px;
}

/**
 * -----------------------------------------------------------------------------------------------
 * #FOOTER
 * -----------------------------------------------------------------------------------------------
 */
.footer {
  width: 100%;
  height: 53px;
  background: url("../images/footer.png") top center no-repeat;
  margin-bottom: 20px;
  padding-top: 13px;
}
.footer .news-link {
  float: left;
}
.footer .in-link {
  float: right;
}
.footer .footer-center {
  width: 934px;
  text-align: center;
  float: left;
  line-height: 32px;
  color: #fff;
  font-size: 12px;
}
.footer .footer-center a {
  color: #fff;
}
.footer .footer-center a:hover {
  color: #fff;
}
.footer .footer-center .foundry {
  top: -5px;
  position: relative;
  left: 5px;
}

/**
 * Helpers
 */
/**
 * -----------------------------------------------------------------------------------------------
 * #PRINT
 * -----------------------------------------------------------------------------------------------
 */
/**
 * Source: https://github.com/h5bp/html5-boilerplate/blob/master/css/main.css
 */
@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  select {
    background: #fff !important;
  }
}
/* endif */
/** /!!! core css Should not edit !!!/**/

.csSlideOuter {
  overflow: hidden;
}
.lightSlider:before, .lightSlider:after {
  content: " ";
  display: table;
}
.csSlideWrapper > .lightSlider:after {
  clear: both;
}
.csSlideWrapper .csSlide {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-timing-function: inherit;
  transition-timing-function: inherit;
}
.csSlideWrapper .csFade {
  position: relative;
}
.csSlideWrapper .csFade > * {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 9;
  margin-right: 0;
  width: 100%;
}
.csSlideWrapper.usingCss .csFade > * {
  opacity: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: inherit;
  transition-timing-function: inherit;
}
.csSlideWrapper .csFade > *.active {
  z-index: 10;
}
.csSlideWrapper.usingCss .csFade > *.active {
  opacity: 1;
}
/** /!!! End of core css Should not edit !!!/**/

/* Pager */
.csSlideOuter .csPager.cSpg {
  margin: 10px 0 0;
  padding: 0;
  text-align: center;
}
.csSlideOuter .csPager.cSpg > li {
  cursor: pointer;
  display: inline-block;
  padding: 0 5px;
}
.csSlideOuter .csPager.cSpg > li a {
  background-color: #222222;
  border-radius: 30px;
  display: inline-block;
  height: 8px;
  overflow: hidden;
  text-indent: -999em;
  width: 8px;
  position: relative;
  z-index: 99;
  -webkit-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}
.csSlideOuter .csPager.cSpg > li:hover a, .csSlideOuter .csPager.cSpg > li.active a {
  background-color: #428bca;
}
.csSlideOuter .media {
  opacity: 0.8;
}
.csSlideOuter .media.active {
  opacity: 1;
}
/* End of pager */

/** Gallery */
.csSlideOuter .csPager.cSGallery {
  list-style: none outside none;
  padding-left: 0;
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.csSlideOuter .csPager.cSGallery li {
  opacity: 0.7;
  -webkit-transition: opacity 0.35s linear 0s;
  transition: opacity 0.35s linear 0s;
}
.csSlideOuter .csPager.cSGallery li.active, .csSlideOuter .csPager.cSGallery li:hover {
  opacity: 1;
}
.csSlideOuter .csPager.cSGallery img {
  display: block;
  height: auto;
  max-width: 100%;
}
.csSlideOuter .csPager.cSGallery:before, .csSlideOuter .csPager.cSGallery:after {
  content: " ";
  display: table;
}
.csSlideOuter .csPager.cSGallery:after {
  clear: both;
}
/* End of Gallery*/

/* slider actions */
.csAction > a {
  width: 32px;
  display: block;
  top: 50%;
  height: 32px;
  background-image: url('../img/controls.png');
  cursor: pointer;
  position: absolute;
  z-index: 99;
  margin-top: -16px;
  opacity: 0.5;
  -webkit-transition: opacity 0.35s linear 0s;
  transition: opacity 0.35s linear 0s;
}
.csAction > a:hover {
  opacity: 1;
}
.csAction > .csPrev {
  background-position: 0 0;
  left: 10px;
}
.csAction > .csNext {
  background-position: -32px 0;
  right: 10px;
}
.cS-hidden {
  height: 1px;
  opacity: 0;
  filter: alpha(opacity=0);
  overflow: hidden;
}

/* Ticker Styling */
.ticker-wrapper.has-js {
  margin: 0px 0px 20px 0px;
  padding: 0px 20px 0px 0px;
  width: 650px;
  height: 42px;
  display: block;

  background-color: #000;
  font-size: 0.75em;
}
.ticker {

  width: 610px;
  height: 33px;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #000;
}
.ticker-title {
  padding-top: 9px;
  color: #990000;
  font-weight: bold;
  background-color: #000;
  text-transform: uppercase;
}
.ticker-content {
  margin: 0px;
  padding:10px 0;
  position: absolute;
  background-color: #000;
  overflow: hidden;
  white-space: nowrap;

  font-size: 14px;
  line-height: 24px;
  font-style: italic;
  color: #fff;
  font-weight: 300;
  letter-spacing: 1px;
  margin-left: -10px;
}
.ticker-content:focus {
  none;
}
.ticker-content a {
  text-decoration: none;
  color: #1F527B;
}
.ticker-content a:hover {
  text-decoration: underline;
  color: #0D3059;
}
.ticker-swipe {
  padding-top: 20px;
  position: absolute;
  top: 0px;
  background-color: #000;
  display: block;
  width: 800px;
  height: 43px;
}
.ticker-swipe span {
  margin-left: 1px;
  background-color: #000;
  border-bottom: 1px solid #fff;
  height: 12px;
  width: 7px;
  display: block;
}
.ticker-controls {
  padding: 8px 0px 0px 0px;
  list-style-type: none;
  float: left;
}
.ticker-controls li {
  padding: 0px;
  margin-left: 5px;
  float: left;
  cursor: pointer;
  height: 16px;
  width: 16px;
  display: block;
}
.ticker-controls li.jnt-play-pause {
  background-position: 32px 16px;
}
.ticker-controls li.jnt-play-pause.over {
  background-position: 32px 32px;
}
.ticker-controls li.jnt-play-pause.down {
  background-position: 32px 0px;
}
.ticker-controls li.jnt-play-pause.paused {
  background-position: 48px 16px;
}
.ticker-controls li.jnt-play-pause.paused.over {
  background-position: 48px 32px;
}
.ticker-controls li.jnt-play-pause.paused.down {
  background-position: 48px 0px;
}
.ticker-controls li.jnt-prev {
  background-position: 0px 16px;
}
.ticker-controls li.jnt-prev.over {
  background-position: 0px 32px;
}
.ticker-controls li.jnt-prev.down {
  background-position: 0px 0px;
}
.ticker-controls li.jnt-next {
  background-position: 16px 16px;
}
.ticker-controls li.jnt-next.over {
  background-position: 16px 32px;
}
.ticker-controls li.jnt-next.down {
  background-position: 16px 0px;
}
.js-hidden {
  display: none;
}
.no-js-news {
  padding: 10px 0px 0px 45px;
  color: #000;
}
.left .ticker-swipe {
  /*left: 80px;*/
}
.left .ticker-controls, .left .ticker-content, .left .ticker-title, .left .ticker {
    float: left;
}
.left .ticker-controls {
    padding-left: 6px;
}
.right .ticker-swipe {
  /*right: 80px;*/
}
.right .ticker-controls, .right .ticker-content, .right .ticker-title, .right .ticker {
    float: right;
}
.right .ticker-controls {
    padding-right: 6px;
}

.signature {
    margin-top: 20px;
}

.git {
    margin-top: 70px;
}

.updates{
	font-weight : 700;
}

a.jump, a.mailto {
	color : #ffffff;
}

a.jump:hover, a.mailto:hover {
	font-weight : 700;
}

.ticker-content:hover {
	text-decoration : underline;
	font-weight : 700;
}
	
.news-filler{
	display : block;
	margin : 70px auto 0;
}