/**
 * selectize.default.css (v0.7.7) - Default Theme
 * Copyright (c) 2013 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */

.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  visibility: visible !important;
  -webkit-box-shadow: inset 0 0 12px 4px #ffffff;
          box-shadow: inset 0 0 12px 4px #ffffff;
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: '!';
  visibility: hidden;
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.selectize-dropdown-header {
  position: relative;
  padding: 5px 8px;
  background: #f8f8f8;
  border-bottom: 1px solid #d0d0d0;
  -webkit-border-radius: 3px 3px 0 0;
     -moz-border-radius: 3px 3px 0 0;
          border-radius: 3px 3px 0 0;
}

.selectize-dropdown-header-close {
  position: absolute;
  top: 50%;
  right: 8px;
  margin-top: -12px;
  font-size: 20px !important;
  line-height: 20px;
  color: #303030;
  opacity: 0.4;
}

.selectize-dropdown-header-close:hover {
  color: #000000;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
  float: left;
  border-top: 0 none;
  border-right: 1px solid #f2f2f2;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}

.selectize-control.plugin-remove_button [data-value] .remove {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  width: 17px;
  padding: 2px 0 0 0;
  font-size: 12px;
  font-weight: bold;
  color: inherit;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  border-left: 1px solid #0073bb;
  -webkit-border-radius: 0 2px 2px 0;
     -moz-border-radius: 0 2px 2px 0;
          border-radius: 0 2px 2px 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

.selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: #00578d;
}

.selectize-control {
  position: relative;
}

.selectize-dropdown,
.selectize-input,
.selectize-input input {
  font-family: inherit;
  font-size: 13px;
  -webkit-font-smoothing: inherit;
  line-height: 18px;
  color: #303030;
}

.selectize-input,
.selectize-control.single .selectize-input.focus {
  display: inline-block;
  cursor: text;
  background: #ffffff;
}

.selectize-input {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  padding: 8px 8px;
  overflow: hidden;
  border: 1px solid #d0d0d0;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.selectize-control.multi .selectize-input.has-items {
  padding: 5px 8px 2px;
}

.selectize-input.full {
  background-color: #ffffff;
}

.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important;
}

.selectize-input.focus {
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

.selectize-input.dropdown-active {
  -webkit-border-radius: 3px 3px 0 0;
     -moz-border-radius: 3px 3px 0 0;
          border-radius: 3px 3px 0 0;
}

.selectize-input > * {
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  vertical-align: baseline;
  zoom: 1;
  width: 90%;
  overflow: hidden;
  white-space: nowrap;
}

.selectize-control.multi .selectize-input > div {
  padding: 2px 6px;
  margin: 0 3px 3px 0;
  color: #ffffff;
  cursor: pointer;
  background: #1da7ee;
  border: 1px solid #0073bb;
}

.selectize-control.multi .selectize-input > div.active {
  color: #ffffff;
  background: #92c836;
  border: 1px solid #00578d;
}

.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #ffffff;
  background: #d2d2d2;
  border: 1px solid #aaaaaa;
}

.selectize-input > input {
  max-width: 100% !important;
  max-height: none !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 1px !important;
  line-height: inherit !important;
  text-indent: 0 !important;
  background: none !important;
  border: 0 none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-user-select: auto !important;
}

.selectize-input > input:focus {
  outline: none !important;
}

.selectize-input::after {
  display: block;
  clear: left;
  content: ' ';
}

.selectize-input.dropdown-active::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 1px;
  background: #f0f0f0;
  content: ' ';
}

.selectize-dropdown {
  position: absolute;
  z-index: 10;
  margin: -1px 0 0 0;
  background: #ffffff;
  border: 1px solid #d0d0d0;
  border-top: 0 none;
  -webkit-border-radius: 0 0 3px 3px;
     -moz-border-radius: 0 0 3px 3px;
          border-radius: 0 0 3px 3px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.selectize-dropdown [data-selectable] {
  overflow: hidden;
  cursor: pointer;
}

.selectize-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  -webkit-border-radius: 1px;
     -moz-border-radius: 1px;
          border-radius: 1px;
}

.selectize-dropdown [data-selectable],
.selectize-dropdown .optgroup-header {
  padding: 5px 8px;
}

.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}

.selectize-dropdown .optgroup-header {
  color: #303030;
  cursor: default;
  background: #ffffff;
}

.selectize-dropdown .active {
  color: #495c68;
  background-color: #f5fafd;
}

.selectize-dropdown .active.create {
  color: #495c68;
}

.selectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}

.selectize-dropdown-content {
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
}

.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer;
}

.selectize-control.single .selectize-input.focus,
.selectize-control.single .selectize-input.focus input {
  cursor: text;
}

.selectize-control.single .selectize-input:after {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 0;
  height: 0;
  margin-top: -3px;
  border-color: #808080 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  content: ' ';
}

.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-color: transparent transparent #808080 transparent;
  border-width: 0 5px 5px 5px;
}

.selectize-control .selectize-input.disabled {
  background-color: #fafafa;
  opacity: 0.5;
}

.selectize-control.multi .selectize-input.has-items {
  padding-right: 5px;
  padding-left: 5px;
}

.selectize-control.multi .selectize-input.disabled [data-value] {
  color: #999;
  text-shadow: none;
  background: none;
  border-color: #e6e6e6;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.selectize-control.multi .selectize-input [data-value] {
  text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);
  background-color: #1b9dec;
  background-image: -moz-linear-gradient(top, #1da7ee, #178ee9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#1da7ee), to(#178ee9));
  background-image: -webkit-linear-gradient(top, #1da7ee, #178ee9);
  background-image: -o-linear-gradient(top, #1da7ee, #178ee9);
  background-image: linear-gradient(to bottom, #1da7ee, #178ee9);
  background-repeat: repeat-x;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1da7ee', endColorstr='#ff178ee9', GradientType=0);
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);
}

.selectize-control.multi .selectize-input [data-value].active {
  background-color: #0085d4;
  background-image: -moz-linear-gradient(top, #008fd8, #0075cf);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#008fd8), to(#0075cf));
  background-image: -webkit-linear-gradient(top, #008fd8, #0075cf);
  background-image: -o-linear-gradient(top, #008fd8, #0075cf);
  background-image: linear-gradient(to bottom, #008fd8, #0075cf);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff008fd8', endColorstr='#ff0075cf', GradientType=0);
}

.selectize-control.single .selectize-input {
  background-color: #f9f9f9;
  background-image: -moz-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fefefe), to(#f2f2f2));
  background-image: -webkit-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: -o-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffefefe', endColorstr='#fff2f2f2', GradientType=0);
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.selectize-control.single .selectize-input,
.selectize-dropdown.single {
  border-color: #b8b8b8;
}

.selectize-dropdown .optgroup-header {
  padding-top: 7px;
  font-size: 0.85em;
  font-weight: bold;
}

.selectize-dropdown .optgroup {
  border-top: 1px solid #f0f0f0;
}

.selectize-dropdown .optgroup:first-child {
  border-top: 0 none;
}

.ui-btn-dropdown-container {}

.ui-btn-dropdown-container .selectize-input {
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 9px 20px;
  border: 2px solid #33a7ae;
  -webkit-border-radius: 40px;
     -moz-border-radius: 40px;
          border-radius: 40px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;

  -webkit-transition: background 0.3s, color 0.3s, border-color 0.3s;
      -ms-transition: background 0.3s, color 0.3s, border-color 0.3s;
       -o-transition: background 0.3s, color 0.3s, border-color 0.3s;
          transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.ui-btn-dropdown-container .selectize-input.focus.dropdown-active {
  -webkit-border-radius: 25px 25px 0 0;
     -moz-border-radius: 25px 25px 0 0;
          border-radius: 25px 25px 0 0;
}

.ui-btn-dropdown-container .selectize-control.single .selectize-input,
.ui-btn-dropdown-container .selectize-dropdown.single {
  border-color: #33a7ae;
}

.ui-btn-dropdown-container .selectize-control.single .selectize-input:after {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 10px;
  height: 8px;
  margin-top: -3px;
  border-color: #808080 transparent transparent transparent;
  border-style: solid;
  border-width: 0;
  content: ' ';
  background: url('/bundles/glcommon/images/sprites.png') no-repeat;
  background-position: -150px -410px;
}

.ui-btn-dropdown-container .selectize-control.single .selectize-input:hover,
.ui-btn-dropdown-container .selectize-dropdown.single:hover {
  border-color: #33a7ae;
}

.ui-btn-dropdown-container .selectize-control.single .selectize-input {
  background: #33a7ae;
  background-image: none;
  background-repeat: no-repeat;
  filter: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  letter-spacing: 0.05em;
}

.ui-btn-dropdown-container .selectize-control .selectize-input:hover {
  background: #006971;
}

.ui-btn-dropdown-container .selectize-dropdown {
  font-weight: normal;
  color: #ffffff;
  position: absolute;
  padding-bottom: 10px;
  top: 38px !important;
  z-index: 10;
  margin: -1px 0 0 0;
  background: #33a7ae;
  border: 2px solid;
  border-top: 0 none;
  -webkit-border-radius: 0 0 5px 5px;
     -moz-border-radius: 0 0 5px 5px;
          border-radius: 0 0 5px 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.ui-btn-dropdown-container .selectize-dropdown-content {
  max-height: none;
  overflow-x: hidden;
  overflow-y: auto;
}

.ui-btn-dropdown-container .selectize-dropdown [data-selectable] {
  overflow: hidden;
  cursor: pointer;
  padding-right: 20px;
  padding-left: 20px;
}

.ui-btn-dropdown-container .selectize-dropdown [data-selectable] .highlight {
  color: #ffffff;
  background: #006971;
  -webkit-border-radius: 1px;
     -moz-border-radius: 1px;
          border-radius: 1px;
}

.ui-btn-dropdown-container .selectize-dropdown .active {
  color: #ffffff;
  background: #006971;
}

.ui-btn-dropdown-container-secondary {}

.ui-btn-dropdown-container-secondary .selectize-input {
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  color: #cccccc;
  padding: 9px 20px;
  border: 1px solid #cccccc;
  -webkit-border-radius: 40px;
     -moz-border-radius: 40px;
          border-radius: 40px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;

  -webkit-transition: background 0.3s, color 0.3s, border-color 0.3s;
      -ms-transition: background 0.3s, color 0.3s, border-color 0.3s;
       -o-transition: background 0.3s, color 0.3s, border-color 0.3s;
          transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.ui-btn-dropdown-container-secondary .selectize-input.focus.dropdown-active {
  -webkit-border-radius: 25px 25px 0 0;
     -moz-border-radius: 25px 25px 0 0;
          border-radius: 25px 25px 0 0;
}

.ui-btn-dropdown-container-secondary .selectize-control.single .selectize-input,
.ui-btn-dropdown-container-secondary .selectize-dropdown.single {
  border-color: #cccccc;
}

.ui-btn-dropdown-container-secondary .selectize-control.single .selectize-input:after {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border-color: #808080 transparent transparent transparent;
  border-style: solid;
  border-width: 0;
  content: ' ';
  background: url('/bundles/glcommon/images/sprites.png') no-repeat;
  background-position: -150px -534px;
}

.ui-btn-dropdown-container-secondary .selectize-control.single .selectize-input:hover,
.ui-btn-dropdown-container-secondary .selectize-dropdown.single:hover {
  color: #999999;
  /*border-color: #999999;*/
}

.ui-btn-dropdown-container-secondary .selectize-control.single .selectize-input:hover {
  border-color: #999999;
}

.ui-btn-dropdown-container-secondary .selectize-control.single .selectize-input:hover:after {
  background-position: -150px -524px;
}

.ui-btn-dropdown-container-secondary .selectize-control.single .selectize-input {
  background: #fff;
  background-image: none;
  background-repeat: no-repeat;
  filter: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.ui-btn-dropdown-container-secondary .selectize-control .selectize-input:hover {
  color: #999999;
}

.ui-btn-dropdown-container-secondary .selectize-dropdown {
  font-weight: normal;
  color: #cccccc;
  position: absolute;
  padding-bottom: 10px;
  top: 36px !important;
  z-index: 10;
  margin: -1px 0 0 0;
  background-color: #ffffff;
  border: 1px solid #999999;
  border-top: 0 none;
  -webkit-border-radius: 0 0 5px 5px;
     -moz-border-radius: 0 0 5px 5px;
          border-radius: 0 0 5px 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.ui-btn-dropdown-container-secondary .selectize-dropdown-content {
  color: #cccccc;
  max-height: none;
  overflow-x: hidden;
  overflow-y: auto;
  background: #ffffff;
  border: none;
}

.ui-btn-dropdown-container-secondary .selectize-dropdown [data-selectable] {
  overflow: hidden;
  cursor: pointer;
  padding-right: 20px;
  padding-left: 20px;
  background-color: #ffffff;
  border-top: none;
}

.ui-btn-dropdown-container-secondary .selectize-dropdown [data-selectable] .highlight {
  -webkit-border-radius: 1px;
     -moz-border-radius: 1px;
          border-radius: 1px;
  background-color: #ffffff;
  color: #999999;
}

.ui-btn-dropdown-container-secondary .selectize-dropdown .active {
  background-color: #ffffff;
  color: #999999;
}


@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 3 / 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 2) {

  .ui-btn-dropdown-container .selectize-control.single .selectize-input:after {
    background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
    background-position: -150px -410px;
    -webkit-background-size: 161px 700px;
         -o-background-size: 161px 700px;
            background-size: 161px 700px;
  }
  .ui-btn-dropdown-container-secondary .selectize-control.single .selectize-input:after {
    background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
    background-position: -150px -534px;
    -webkit-background-size: 161px 700px;
         -o-background-size: 161px 700px;
            background-size: 161px 700px;
  }
  .ui-btn-dropdown-container-secondary .selectize-control.single .selectize-input:hover:after {
    background-position: -150px -524px;
    -webkit-background-size: 161px 700px;
         -o-background-size: 161px 700px;
            background-size: 161px 700px;
  }

}

/*! normalize.css v1.1.0 | MIT License | git.io/normalize */

/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */

audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */

[hidden] {
    display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */

/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
    font-size: 100%; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -ms-text-size-adjust: 100%; /* 2 */
}

/**
 * Address `font-family` inconsistency between `textarea` and other form
 * elements.
 */

html,
button,
input,
select,
textarea {
    font-family: sans-serif;
}

/**
 * Address margins handled incorrectly in IE 6/7.
 */

body {
    margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */

a:focus {
    outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

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

/* ==========================================================================
   Typography
   ========================================================================== */

/**
 * Address font sizes and margins set differently in IE 6/7.
 * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
 * and Chrome.
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

h2 {
    font-size: 1.5em;
    margin: 0.83em 0;
}

h3 {
    font-size: 1.17em;
    margin: 1em 0;
}

h4 {
    font-size: 1em;
    margin: 1.33em 0;
}

h5 {
    font-size: 0.83em;
    margin: 1.67em 0;
}

h6 {
    font-size: 0.67em;
    margin: 2.33em 0;
}

/**
 * Address styling not present in IE 7/8/9, Safari 5, and Chrome.
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
 */

b,
strong {
    font-weight: bold;
}

blockquote {
    margin: 1em 40px;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */

dfn {
    font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 * Known issue: no IE 6/7 normalization.
 */

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

/**
 * Address styling not present in IE 6/7/8/9.
 */

mark {
    background: #ff0;
    color: #000;
}

/**
 * Address margins set differently in IE 6/7.
 */

p,
pre {
    margin: 1em 0;
}

/**
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */

code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    _font-family: 'courier new', monospace;
    font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/**
 * Address CSS quotes not supported in IE 6/7.
 */

q {
    quotes: none;
}

/**
 * Address `quotes` property not supported in Safari 4.
 */

q:before,
q:after {
    content: '';
    content: none;
}

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

/* ==========================================================================
   Lists
   ========================================================================== */

/**
 * Address margins set differently in IE 6/7.
 */

dl,
menu,
ol,
ul {
    margin: 1em 0;
}

dd {
    margin: 0 0 0 40px;
}

/**
 * Address paddings set differently in IE 6/7.
 */

menu,
ol,
ul {
    padding: 0 0 0 40px;
}

/**
 * Correct list images handled incorrectly in IE 7.
 */

nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */

/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */

img {
    border: 0; /* 1 */
    -ms-interpolation-mode: bicubic; /* 2 */
}

/**
 * Correct overflow displayed oddly in IE 9.
 */

svg:not(:root) {
    overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */

/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */

figure {
    margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */

/**
 * Correct margin displayed oddly in IE 6/7.
 */

form {
    margin: 0;
}

/**
 * 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 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */

legend {
    border: 0; /* 1 */
    padding: 0;
    white-space: normal; /* 2 */
    *margin-left: -7px; /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */

button,
input,
select,
textarea {
    font-size: 100%; /* 1 */
    margin: 0; /* 2 */
    vertical-align: baseline; /* 3 */
    *vertical-align: middle; /* 3 */
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

button,
input {
    line-height: normal;
}

/**
 * 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 Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */

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.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button; /* 2 */
    cursor: pointer; /* 3 */
    *overflow: visible;  /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
    *height: 13px; /* 3 */
    *width: 13px; /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */

textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ============================================ */
/* This file has a mobile-to-desktop breakpoint */
/* ============================================ */
@media screen and (max-width: 400px) {
  @-ms-viewport {
    width: 320px;
}
}
@media screen {
  .clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
  }

  .grid-container:before, .clearfix:before,
  .grid-container:after,
  .clearfix:after {
    content: ".";
    display: block;
    overflow: hidden;
    visibility: hidden;
    font-size: 0;
    line-height: 0;
    width: 0;
    height: 0;
  }

  .grid-container:after, .clearfix:after {
    clear: both;
  }

  .grid-container, .clearfix {
    /* <IE7> */
    *zoom: 1;
    /* </IE7> */
  }

  .grid-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 960px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .grid-5, .mobile-grid-5, .grid-10, .mobile-grid-10, .grid-15, .mobile-grid-15, .grid-20, .mobile-grid-20, .grid-25, .mobile-grid-25, .grid-30, .mobile-grid-30, .grid-35, .mobile-grid-35, .grid-40, .mobile-grid-40, .grid-45, .mobile-grid-45, .grid-50, .mobile-grid-50, .grid-55, .mobile-grid-55, .grid-60, .mobile-grid-60, .grid-65, .mobile-grid-65, .grid-70, .mobile-grid-70, .grid-75, .mobile-grid-75, .grid-80, .mobile-grid-80, .grid-85, .mobile-grid-85, .grid-90, .mobile-grid-90, .grid-95, .mobile-grid-95, .grid-100, .mobile-grid-100, .grid-33, .mobile-grid-33, .grid-66, .mobile-grid-66 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 30px;
    /* <IE7> */
    *padding-left: 0;
    *padding-right: 0;
    /* </IE7> */
  }
  .grid-5 > *, .mobile-grid-5 > *, .grid-10 > *, .mobile-grid-10 > *, .grid-15 > *, .mobile-grid-15 > *, .grid-20 > *, .mobile-grid-20 > *, .grid-25 > *, .mobile-grid-25 > *, .grid-30 > *, .mobile-grid-30 > *, .grid-35 > *, .mobile-grid-35 > *, .grid-40 > *, .mobile-grid-40 > *, .grid-45 > *, .mobile-grid-45 > *, .grid-50 > *, .mobile-grid-50 > *, .grid-55 > *, .mobile-grid-55 > *, .grid-60 > *, .mobile-grid-60 > *, .grid-65 > *, .mobile-grid-65 > *, .grid-70 > *, .mobile-grid-70 > *, .grid-75 > *, .mobile-grid-75 > *, .grid-80 > *, .mobile-grid-80 > *, .grid-85 > *, .mobile-grid-85 > *, .grid-90 > *, .mobile-grid-90 > *, .grid-95 > *, .mobile-grid-95 > *, .grid-100 > *, .mobile-grid-100 > *, .grid-33 > *, .mobile-grid-33 > *, .grid-66 > *, .mobile-grid-66 > * {
    /* <IE7> */
    *margin-left: expression((!this.className.match(/grid-[1-9]/) && this.currentStyle.display === "block" && this.currentStyle.width === "auto") && "10px");
    *margin-right: expression((!this.className.match(/grid-[1-9]/) && this.currentStyle.display === "block" && this.currentStyle.width === "auto") && "10px");
    /* </IE7> */
  }

  .grid-parent {
    padding-left: 0;
    padding-right: 0;
  }

  body {
    min-width: 320px;
  }
}
@media screen and (max-width: 767px) {
  .mobile-grid-100:before,
  .mobile-grid-100:after {
    content: ".";
    display: block;
    overflow: hidden;
    visibility: hidden;
    font-size: 0;
    line-height: 0;
    width: 0;
    height: 0;
  }

  .mobile-grid-100:after {
    clear: both;
  }

  .mobile-grid-100 {
    /* <IE7> */
    *zoom: 1;
    /* </IE7> */
  }

  .mobile-push-5,
  .mobile-pull-5, .mobile-push-10,
  .mobile-pull-10, .mobile-push-15,
  .mobile-pull-15, .mobile-push-20,
  .mobile-pull-20, .mobile-push-25,
  .mobile-pull-25, .mobile-push-30,
  .mobile-pull-30, .mobile-push-35,
  .mobile-pull-35, .mobile-push-40,
  .mobile-pull-40, .mobile-push-45,
  .mobile-pull-45, .mobile-push-50,
  .mobile-pull-50, .mobile-push-55,
  .mobile-pull-55, .mobile-push-60,
  .mobile-pull-60, .mobile-push-65,
  .mobile-pull-65, .mobile-push-70,
  .mobile-pull-70, .mobile-push-75,
  .mobile-pull-75, .mobile-push-80,
  .mobile-pull-80, .mobile-push-85,
  .mobile-pull-85, .mobile-push-90,
  .mobile-pull-90, .mobile-push-95,
  .mobile-pull-95, .mobile-push-33,
  .mobile-pull-33, .mobile-push-66,
  .mobile-pull-66 {
    position: relative;
  }

  .hide-on-mobile {
    display: none !important;
  }

  .mobile-grid-5 {
    float: left;
    width: 5%;
    /* <IE7> */
    *width: expression(Math.floor(0.05 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-5 {
    margin-left: 5%;
  }

  .mobile-suffix-5 {
    margin-right: 5%;
  }

  .mobile-push-5 {
    left: 5%;
    /* <IE7> */
    *left: expression(Math.floor(0.05 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-5 {
    left: -5%;
    /* <IE7> */
    *left: expression(Math.floor(-0.05 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-10 {
    float: left;
    width: 10%;
    /* <IE7> */
    *width: expression(Math.floor(0.1 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-10 {
    margin-left: 10%;
  }

  .mobile-suffix-10 {
    margin-right: 10%;
  }

  .mobile-push-10 {
    left: 10%;
    /* <IE7> */
    *left: expression(Math.floor(0.1 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-10 {
    left: -10%;
    /* <IE7> */
    *left: expression(Math.floor(-0.1 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-15 {
    float: left;
    width: 15%;
    /* <IE7> */
    *width: expression(Math.floor(0.15 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-15 {
    margin-left: 15%;
  }

  .mobile-suffix-15 {
    margin-right: 15%;
  }

  .mobile-push-15 {
    left: 15%;
    /* <IE7> */
    *left: expression(Math.floor(0.15 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-15 {
    left: -15%;
    /* <IE7> */
    *left: expression(Math.floor(-0.15 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-20 {
    float: left;
    width: 20%;
    /* <IE7> */
    *width: expression(Math.floor(0.2 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-20 {
    margin-left: 20%;
  }

  .mobile-suffix-20 {
    margin-right: 20%;
  }

  .mobile-push-20 {
    left: 20%;
    /* <IE7> */
    *left: expression(Math.floor(0.2 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-20 {
    left: -20%;
    /* <IE7> */
    *left: expression(Math.floor(-0.2 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-25 {
    float: left;
    width: 25%;
    /* <IE7> */
    *width: expression(Math.floor(0.25 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-25 {
    margin-left: 25%;
  }

  .mobile-suffix-25 {
    margin-right: 25%;
  }

  .mobile-push-25 {
    left: 25%;
    /* <IE7> */
    *left: expression(Math.floor(0.25 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-25 {
    left: -25%;
    /* <IE7> */
    *left: expression(Math.floor(-0.25 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-30 {
    float: left;
    width: 30%;
    /* <IE7> */
    *width: expression(Math.floor(0.3 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-30 {
    margin-left: 30%;
  }

  .mobile-suffix-30 {
    margin-right: 30%;
  }

  .mobile-push-30 {
    left: 30%;
    /* <IE7> */
    *left: expression(Math.floor(0.3 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-30 {
    left: -30%;
    /* <IE7> */
    *left: expression(Math.floor(-0.3 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-35 {
    float: left;
    width: 35%;
    /* <IE7> */
    *width: expression(Math.floor(0.35 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-35 {
    margin-left: 35%;
  }

  .mobile-suffix-35 {
    margin-right: 35%;
  }

  .mobile-push-35 {
    left: 35%;
    /* <IE7> */
    *left: expression(Math.floor(0.35 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-35 {
    left: -35%;
    /* <IE7> */
    *left: expression(Math.floor(-0.35 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-40 {
    float: left;
    width: 40%;
    /* <IE7> */
    *width: expression(Math.floor(0.4 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-40 {
    margin-left: 40%;
  }

  .mobile-suffix-40 {
    margin-right: 40%;
  }

  .mobile-push-40 {
    left: 40%;
    /* <IE7> */
    *left: expression(Math.floor(0.4 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-40 {
    left: -40%;
    /* <IE7> */
    *left: expression(Math.floor(-0.4 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-45 {
    float: left;
    width: 45%;
    /* <IE7> */
    *width: expression(Math.floor(0.45 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-45 {
    margin-left: 45%;
  }

  .mobile-suffix-45 {
    margin-right: 45%;
  }

  .mobile-push-45 {
    left: 45%;
    /* <IE7> */
    *left: expression(Math.floor(0.45 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-45 {
    left: -45%;
    /* <IE7> */
    *left: expression(Math.floor(-0.45 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-50 {
    float: left;
    width: 50%;
    /* <IE7> */
    *width: expression(Math.floor(0.5 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-50 {
    margin-left: 50%;
  }

  .mobile-suffix-50 {
    margin-right: 50%;
  }

  .mobile-push-50 {
    left: 50%;
    /* <IE7> */
    *left: expression(Math.floor(0.5 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-50 {
    left: -50%;
    /* <IE7> */
    *left: expression(Math.floor(-0.5 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-55 {
    float: left;
    width: 55%;
    /* <IE7> */
    *width: expression(Math.floor(0.55 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-55 {
    margin-left: 55%;
  }

  .mobile-suffix-55 {
    margin-right: 55%;
  }

  .mobile-push-55 {
    left: 55%;
    /* <IE7> */
    *left: expression(Math.floor(0.55 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-55 {
    left: -55%;
    /* <IE7> */
    *left: expression(Math.floor(-0.55 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-60 {
    float: left;
    width: 60%;
    /* <IE7> */
    *width: expression(Math.floor(0.6 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-60 {
    margin-left: 60%;
  }

  .mobile-suffix-60 {
    margin-right: 60%;
  }

  .mobile-push-60 {
    left: 60%;
    /* <IE7> */
    *left: expression(Math.floor(0.6 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-60 {
    left: -60%;
    /* <IE7> */
    *left: expression(Math.floor(-0.6 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-65 {
    float: left;
    width: 65%;
    /* <IE7> */
    *width: expression(Math.floor(0.65 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-65 {
    margin-left: 65%;
  }

  .mobile-suffix-65 {
    margin-right: 65%;
  }

  .mobile-push-65 {
    left: 65%;
    /* <IE7> */
    *left: expression(Math.floor(0.65 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-65 {
    left: -65%;
    /* <IE7> */
    *left: expression(Math.floor(-0.65 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-70 {
    float: left;
    width: 70%;
    /* <IE7> */
    *width: expression(Math.floor(0.7 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-70 {
    margin-left: 70%;
  }

  .mobile-suffix-70 {
    margin-right: 70%;
  }

  .mobile-push-70 {
    left: 70%;
    /* <IE7> */
    *left: expression(Math.floor(0.7 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-70 {
    left: -70%;
    /* <IE7> */
    *left: expression(Math.floor(-0.7 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-75 {
    float: left;
    width: 75%;
    /* <IE7> */
    *width: expression(Math.floor(0.75 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-75 {
    margin-left: 75%;
  }

  .mobile-suffix-75 {
    margin-right: 75%;
  }

  .mobile-push-75 {
    left: 75%;
    /* <IE7> */
    *left: expression(Math.floor(0.75 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-75 {
    left: -75%;
    /* <IE7> */
    *left: expression(Math.floor(-0.75 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-80 {
    float: left;
    width: 80%;
    /* <IE7> */
    *width: expression(Math.floor(0.8 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-80 {
    margin-left: 80%;
  }

  .mobile-suffix-80 {
    margin-right: 80%;
  }

  .mobile-push-80 {
    left: 80%;
    /* <IE7> */
    *left: expression(Math.floor(0.8 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-80 {
    left: -80%;
    /* <IE7> */
    *left: expression(Math.floor(-0.8 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-85 {
    float: left;
    width: 85%;
    /* <IE7> */
    *width: expression(Math.floor(0.85 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-85 {
    margin-left: 85%;
  }

  .mobile-suffix-85 {
    margin-right: 85%;
  }

  .mobile-push-85 {
    left: 85%;
    /* <IE7> */
    *left: expression(Math.floor(0.85 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-85 {
    left: -85%;
    /* <IE7> */
    *left: expression(Math.floor(-0.85 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-90 {
    float: left;
    width: 90%;
    /* <IE7> */
    *width: expression(Math.floor(0.9 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-90 {
    margin-left: 90%;
  }

  .mobile-suffix-90 {
    margin-right: 90%;
  }

  .mobile-push-90 {
    left: 90%;
    /* <IE7> */
    *left: expression(Math.floor(0.9 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-90 {
    left: -90%;
    /* <IE7> */
    *left: expression(Math.floor(-0.9 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-95 {
    float: left;
    width: 95%;
    /* <IE7> */
    *width: expression(Math.floor(0.95 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-95 {
    margin-left: 95%;
  }

  .mobile-suffix-95 {
    margin-right: 95%;
  }

  .mobile-push-95 {
    left: 95%;
    /* <IE7> */
    *left: expression(Math.floor(0.95 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-95 {
    left: -95%;
    /* <IE7> */
    *left: expression(Math.floor(-0.95 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-33 {
    float: left;
    width: 33.33333%;
    /* <IE7> */
    *width: expression(Math.floor(0.33333 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-33 {
    margin-left: 33.33333%;
  }

  .mobile-suffix-33 {
    margin-right: 33.33333%;
  }

  .mobile-push-33 {
    left: 33.33333%;
    /* <IE7> */
    *left: expression(Math.floor(0.33333 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-33 {
    left: -33.33333%;
    /* <IE7> */
    *left: expression(Math.floor(-0.33333 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-66 {
    float: left;
    width: 66.66667%;
    /* <IE7> */
    *width: expression(Math.floor(0.66667 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-prefix-66 {
    margin-left: 66.66667%;
  }

  .mobile-suffix-66 {
    margin-right: 66.66667%;
  }

  .mobile-push-66 {
    left: 66.66667%;
    /* <IE7> */
    *left: expression(Math.floor(0.66667 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-pull-66 {
    left: -66.66667%;
    /* <IE7> */
    *left: expression(Math.floor(-0.66667 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .mobile-grid-100 {
    clear: both;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .grid-100:before,
  .grid-100:after {
    content: ".";
    display: block;
    overflow: hidden;
    visibility: hidden;
    font-size: 0;
    line-height: 0;
    width: 0;
    height: 0;
  }

  .grid-100:after {
    clear: both;
  }

  .grid-100 {
    /* <IE7> */
    *zoom: 1;
    /* </IE7> */
  }

  .push-5,
  .pull-5, .push-10,
  .pull-10, .push-15,
  .pull-15, .push-20,
  .pull-20, .push-25,
  .pull-25, .push-30,
  .pull-30, .push-35,
  .pull-35, .push-40,
  .pull-40, .push-45,
  .pull-45, .push-50,
  .pull-50, .push-55,
  .pull-55, .push-60,
  .pull-60, .push-65,
  .pull-65, .push-70,
  .pull-70, .push-75,
  .pull-75, .push-80,
  .pull-80, .push-85,
  .pull-85, .push-90,
  .pull-90, .push-95,
  .pull-95, .push-33,
  .pull-33, .push-66,
  .pull-66 {
    position: relative;
  }

  .hide-on-desktop {
    display: none !important;
  }

  .grid-5 {
    float: left;
    width: 5%;
    /* <IE7> */
    *width: expression(Math.floor(0.05 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-5 {
    margin-left: 5%;
  }

  .suffix-5 {
    margin-right: 5%;
  }

  .push-5 {
    left: 5%;
    /* <IE7> */
    *left: expression(Math.floor(0.05 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-5 {
    left: -5%;
    /* <IE7> */
    *left: expression(Math.floor(-0.05 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-10 {
    float: left;
    width: 10%;
    /* <IE7> */
    *width: expression(Math.floor(0.1 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-10 {
    margin-left: 10%;
  }

  .suffix-10 {
    margin-right: 10%;
  }

  .push-10 {
    left: 10%;
    /* <IE7> */
    *left: expression(Math.floor(0.1 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-10 {
    left: -10%;
    /* <IE7> */
    *left: expression(Math.floor(-0.1 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-15 {
    float: left;
    width: 15%;
    /* <IE7> */
    *width: expression(Math.floor(0.15 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-15 {
    margin-left: 15%;
  }

  .suffix-15 {
    margin-right: 15%;
  }

  .push-15 {
    left: 15%;
    /* <IE7> */
    *left: expression(Math.floor(0.15 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-15 {
    left: -15%;
    /* <IE7> */
    *left: expression(Math.floor(-0.15 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-20 {
    float: left;
    width: 20%;
    /* <IE7> */
    *width: expression(Math.floor(0.2 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-20 {
    margin-left: 20%;
  }

  .suffix-20 {
    margin-right: 20%;
  }

  .push-20 {
    left: 20%;
    /* <IE7> */
    *left: expression(Math.floor(0.2 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-20 {
    left: -20%;
    /* <IE7> */
    *left: expression(Math.floor(-0.2 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-25 {
    float: left;
    width: 25%;
    /* <IE7> */
    *width: expression(Math.floor(0.25 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-25 {
    margin-left: 25%;
  }

  .suffix-25 {
    margin-right: 25%;
  }

  .push-25 {
    left: 25%;
    /* <IE7> */
    *left: expression(Math.floor(0.25 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-25 {
    left: -25%;
    /* <IE7> */
    *left: expression(Math.floor(-0.25 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-30 {
    float: left;
    width: 30%;
    /* <IE7> */
    *width: expression(Math.floor(0.3 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-30 {
    margin-left: 30%;
  }

  .suffix-30 {
    margin-right: 30%;
  }

  .push-30 {
    left: 30%;
    /* <IE7> */
    *left: expression(Math.floor(0.3 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-30 {
    left: -30%;
    /* <IE7> */
    *left: expression(Math.floor(-0.3 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-35 {
    float: left;
    width: 35%;
    /* <IE7> */
    *width: expression(Math.floor(0.35 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-35 {
    margin-left: 35%;
  }

  .suffix-35 {
    margin-right: 35%;
  }

  .push-35 {
    left: 35%;
    /* <IE7> */
    *left: expression(Math.floor(0.35 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-35 {
    left: -35%;
    /* <IE7> */
    *left: expression(Math.floor(-0.35 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-40 {
    float: left;
    width: 40%;
    /* <IE7> */
    *width: expression(Math.floor(0.4 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-40 {
    margin-left: 40%;
  }

  .suffix-40 {
    margin-right: 40%;
  }

  .push-40 {
    left: 40%;
    /* <IE7> */
    *left: expression(Math.floor(0.4 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-40 {
    left: -40%;
    /* <IE7> */
    *left: expression(Math.floor(-0.4 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-45 {
    float: left;
    width: 45%;
    /* <IE7> */
    *width: expression(Math.floor(0.45 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-45 {
    margin-left: 45%;
  }

  .suffix-45 {
    margin-right: 45%;
  }

  .push-45 {
    left: 45%;
    /* <IE7> */
    *left: expression(Math.floor(0.45 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-45 {
    left: -45%;
    /* <IE7> */
    *left: expression(Math.floor(-0.45 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-50 {
    float: left;
    width: 50%;
    /* <IE7> */
    *width: expression(Math.floor(0.5 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-50 {
    margin-left: 50%;
  }

  .suffix-50 {
    margin-right: 50%;
  }

  .push-50 {
    left: 50%;
    /* <IE7> */
    *left: expression(Math.floor(0.5 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-50 {
    left: -50%;
    /* <IE7> */
    *left: expression(Math.floor(-0.5 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-55 {
    float: left;
    width: 55%;
    /* <IE7> */
    *width: expression(Math.floor(0.55 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-55 {
    margin-left: 55%;
  }

  .suffix-55 {
    margin-right: 55%;
  }

  .push-55 {
    left: 55%;
    /* <IE7> */
    *left: expression(Math.floor(0.55 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-55 {
    left: -55%;
    /* <IE7> */
    *left: expression(Math.floor(-0.55 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-60 {
    float: left;
    width: 60%;
    /* <IE7> */
    *width: expression(Math.floor(0.6 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-60 {
    margin-left: 60%;
  }

  .suffix-60 {
    margin-right: 60%;
  }

  .push-60 {
    left: 60%;
    /* <IE7> */
    *left: expression(Math.floor(0.6 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-60 {
    left: -60%;
    /* <IE7> */
    *left: expression(Math.floor(-0.6 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-65 {
    float: left;
    width: 65%;
    /* <IE7> */
    *width: expression(Math.floor(0.65 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-65 {
    margin-left: 65%;
  }

  .suffix-65 {
    margin-right: 65%;
  }

  .push-65 {
    left: 65%;
    /* <IE7> */
    *left: expression(Math.floor(0.65 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-65 {
    left: -65%;
    /* <IE7> */
    *left: expression(Math.floor(-0.65 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-70 {
    float: left;
    width: 70%;
    /* <IE7> */
    *width: expression(Math.floor(0.7 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-70 {
    margin-left: 70%;
  }

  .suffix-70 {
    margin-right: 70%;
  }

  .push-70 {
    left: 70%;
    /* <IE7> */
    *left: expression(Math.floor(0.7 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-70 {
    left: -70%;
    /* <IE7> */
    *left: expression(Math.floor(-0.7 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-75 {
    float: left;
    width: 75%;
    /* <IE7> */
    *width: expression(Math.floor(0.75 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-75 {
    margin-left: 75%;
  }

  .suffix-75 {
    margin-right: 75%;
  }

  .push-75 {
    left: 75%;
    /* <IE7> */
    *left: expression(Math.floor(0.75 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-75 {
    left: -75%;
    /* <IE7> */
    *left: expression(Math.floor(-0.75 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-80 {
    float: left;
    width: 80%;
    /* <IE7> */
    *width: expression(Math.floor(0.8 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-80 {
    margin-left: 80%;
  }

  .suffix-80 {
    margin-right: 80%;
  }

  .push-80 {
    left: 80%;
    /* <IE7> */
    *left: expression(Math.floor(0.8 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-80 {
    left: -80%;
    /* <IE7> */
    *left: expression(Math.floor(-0.8 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-85 {
    float: left;
    width: 85%;
    /* <IE7> */
    *width: expression(Math.floor(0.85 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-85 {
    margin-left: 85%;
  }

  .suffix-85 {
    margin-right: 85%;
  }

  .push-85 {
    left: 85%;
    /* <IE7> */
    *left: expression(Math.floor(0.85 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-85 {
    left: -85%;
    /* <IE7> */
    *left: expression(Math.floor(-0.85 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-90 {
    float: left;
    width: 90%;
    /* <IE7> */
    *width: expression(Math.floor(0.9 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-90 {
    margin-left: 90%;
  }

  .suffix-90 {
    margin-right: 90%;
  }

  .push-90 {
    left: 90%;
    /* <IE7> */
    *left: expression(Math.floor(0.9 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-90 {
    left: -90%;
    /* <IE7> */
    *left: expression(Math.floor(-0.9 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-95 {
    float: left;
    width: 95%;
    /* <IE7> */
    *width: expression(Math.floor(0.95 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-95 {
    margin-left: 95%;
  }

  .suffix-95 {
    margin-right: 95%;
  }

  .push-95 {
    left: 95%;
    /* <IE7> */
    *left: expression(Math.floor(0.95 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-95 {
    left: -95%;
    /* <IE7> */
    *left: expression(Math.floor(-0.95 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-33 {
    float: left;
    width: 33.33333%;
    /* <IE7> */
    *width: expression(Math.floor(0.33333 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-33 {
    margin-left: 33.33333%;
  }

  .suffix-33 {
    margin-right: 33.33333%;
  }

  .push-33 {
    left: 33.33333%;
    /* <IE7> */
    *left: expression(Math.floor(0.33333 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-33 {
    left: -33.33333%;
    /* <IE7> */
    *left: expression(Math.floor(-0.33333 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-66 {
    float: left;
    width: 66.66667%;
    /* <IE7> */
    *width: expression(Math.floor(0.66667 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .prefix-66 {
    margin-left: 66.66667%;
  }

  .suffix-66 {
    margin-right: 66.66667%;
  }

  .push-66 {
    left: 66.66667%;
    /* <IE7> */
    *left: expression(Math.floor(0.66667 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .pull-66 {
    left: -66.66667%;
    /* <IE7> */
    *left: expression(Math.floor(-0.66667 * (this.parentNode.offsetWidth - parseFloat(this.parentNode.currentStyle.paddingLeft) - parseFloat(this.parentNode.currentStyle.paddingRight))) + "px");
    /* </IE7> */
  }

  .grid-100 {
    clear: both;
    width: 100%;
  }
}
/*! jQuery UI - v1.10.3 - 2013-09-06
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css
* Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */

.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin-top:2px;padding:.5em .5em .5em .7em;min-height:0}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-noicons{padding-left:.7em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month-year{width:100%}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:49%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:21px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-menu{list-style:none;padding:2px;margin:0;display:block;outline:none}.ui-menu .ui-menu{margin-top:-3px;position:absolute}.ui-menu .ui-menu-item{margin:0;padding:0;width:100%;list-style-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)}.ui-menu .ui-menu-divider{margin:5px -2px 5px -2px;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:2px .4em;line-height:1.5;min-height:0;font-weight:normal}.ui-menu .ui-menu-item a.ui-state-focus,.ui-menu .ui-menu-item a.ui-state-active{font-weight:normal;margin:-1px}.ui-menu .ui-state-disabled{font-weight:normal;margin:.4em 0 .2em;line-height:1.5}.ui-menu .ui-state-disabled a{cursor:default}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item a{position:relative;padding-left:2em}.ui-menu .ui-icon{position:absolute;top:.2em;left:.2em}.ui-menu .ui-menu-icon{position:static;float:right}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("../Resources/public/css/images/animated-overlay.gif");height:100%;filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-tabs-loading a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px}
/* Global */
/* ====== */

body {
    font-family: "Pluto Sans", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0; 
    color: #33a7ae;
    font-weight: normal
}

h3, 
h4,
h5,
h6 {
    text-transform: uppercase;
}

h1,
.like-h1 {
    font-family: "Pluto Sans", sans-serif;
    font-weight: 100;
    font-size: 36px;
}

h2,
.like-h2 {
    font-weight: normal;
    font-size: 20px;
}

h3,
h4,
h5,
h6,
.like-h3 {
    font-weight: bold;
    font-size: 14px;
}

.center-heading {
    text-align: center;
    padding: 45px 0;
}

.dark-background {
    color: #a6ecf0;
}

.dark-background h1,
.dark-background h2,
.dark-background h3,
.dark-background h4,
.dark-background h5,
.dark-background h6 {
    color: #fff;
}

.light-background {
    background: #def5f7;
}

a {
    color: #33a7ae;
    border-bottom: 1px dotted #33a7ae;
    text-decoration: none;

    -webkit-transition: color 0.3s, border-color 0.3s;
    -ms-transition: color 0.3s, border-color 0.3s;
    -o-transition: color 0.3s, border-color 0.3s;
    transition: color 0.3s, border-color 0.3s;

}

a:hover {
    color: #006971;
    border-color: #006971;
}

.dark-background a{
    color: #a6ecf0;
    border-color: #a6ecf0;
}

.dark-background a:hover {
    color: #fff;
    border-color: #fff;
}

.bold-link {
    text-transform: uppercase;
    font-weight: bold;
}

.form-field .large-label {
    width: 100%;
}

input,
textarea {
    border: 1px solid #ccc;
    border-radius: 5px;
    font: inherit;
}

button,
.ui-btn {
    display: inline-block;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 40px;
    padding: 9px 30px;
    font-size: 12px;
    border: 2px solid #33a7ae;

    -webkit-transition: background 0.3s, color 0.3s, border-color 0.3s;
    -ms-transition: background 0.3s, color 0.3s, border-color 0.3s;
    -o-transition: background 0.3s, color 0.3s, border-color 0.3s;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

button,
.ui-btn-primary {
    background: #33a7ae;
    border-color: #33a7ae;
    color: #fff;
}

button[disabled],
button[disabled]:hover,
button[disabled]:focus,
.ui-btn-disabled,
.ui-btn-disabled:hover,
.ui-btn-disabled:focus {
    background: #DFDFDF;
    border-color: #DDD;
    color: #CCC;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

button:hover,
button:focus,
.ui-btn-primary:hover,
.ui-btn-primary:focus {
    background: #006971;
    color: #fff;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ui-btn-secondary {
    background: #006971;
    border-color: #006971;
    color: #94dfe3;
}

.ui-btn-secondary:hover,
.ui-btn-secondary:focus {
    background: #037780;
    border-color: #037780;
    color: #fff;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ui-btn-tertiary {
    background: #fff;
    border-color: #33a7ae;
    color: #33a7ae;
}

.ui-btn-tertiary:hover,
.ui-btn-tertiary:focus,
.ui-btn-tertiary.active {
    background: #eaf6f7;
    border-color: #33a7ae;
    color: #33a7ae;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ui-btn-danger {
    background: #ed5634;
    border-color: #ed5634;
}

.ui-btn-danger:hover,
.ui-btn-danger:focus,
.ui-btn-danger.active {
    background: #fdeeea;
    border-color: #ed5634;
    color: #ed5634;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ui-btn-facebook {
    background: #4670ad;
    border-color: #4670ad;
    color: #fff;
}

.ui-btn-twitter {
    background: #28aae1;
    border-color: #28aae1;
    color: #fff;
}

.ui-btn-facebook:hover,
.ui-btn-facebook:focus,
.ui-btn-twitter:hover,
.ui-btn-twitter:focus
{
    background: #33a7ae;
    border-color: #33a7ae;
    color: #fff;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ui-btn-dropdown {
    position: relative;
    padding-right: 35px;
}

.ui-btn-dropdown:before {
    position: absolute;
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    background-position: -150px -410px;
    width: 10px;
    height: 8px;
    content: "";
    right: 20px;
    top: 13px;
}

.ui-btn-dropdown-secondary {
    position: relative;
    padding-right: 35px;
    background: #fff;
    border-color: #33a7ae;
    color: #33a7ae;
}

.ui-btn-dropdown-secondary:hover,
.ui-btn-dropdown-secondary:focus,
.ui-btn-dropdown-secondary.active {
    background: #eaf6f7;
    border-color: #33a7ae;
    color: #33a7ae;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ui-btn-dropdown-secondary:before {
    position: absolute;
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    background-position: -150px -500px;
    width: 10px;
    height: 8px;
    content: "";
    right: 20px;
    top: 13px;
}

.icon-facebook {
    display: inline-block;
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    padding-left: 35px;
    background-position: 0 -32px;
    overflow: visible;
    height: 21px;
    line-height: 21px;
}

.icon-twitter {
    display: inline-block;
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    padding-left: 48px;
    background-position: 0 -53px;
    overflow: visible;
    height: 20px;
    line-height: 21px;
}

.flash-alert,
.flash-success {
    border-radius: 40px;
    padding: 9px 35px 9px 20px;
    font-size: 12px;
    border: 1px solid #33a7ae;
    margin-top: 15px;
    margin-bottom: 10px;
}

.flash-alert {
    color: #ed5634;
    border: 1px solid #ed5634;
    background: #fdeeea;
}

.flash-success {
    color: #33a7ae; 
    border: 1px solid #33a7ae;
    background: #eaf6f7;
}

.icon-alert {
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    background-position: 0 -16px;
    width:16px;
    height:16px;
    float:left;
    padding: 0;
    margin-right: 15px;
}

.icon-success {
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    width:16px;
    height:16px;
    float:left;
    padding: 0;
    margin-right: 15px;
}

.content-leader {
    font-size: 20px;
}

footer.primary a {
    color: #94dfe3;
    -webkit-transition: color 0.3s;
    -ms-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3sz;
    border-bottom: 1px dotted rgba(255, 255, 255, 0);
}

footer.primary a:hover {
    color: #fff;
}

footer.secondary {
    text-align: right;
}

footer.secondary a {
    color: #0097a2;
    font-size: 13px;
}

footer.secondary a:hover {
    color: #0097a2;
    border-color: #0097a2;
}

.footer-nav {
    float: right;
}

.simple-header {
    padding: 20px 0 25px;
}

.simple-header h1 {
    padding-bottom: 0;
}

.simple-content {
    padding: 20px 0;
    min-height: 250px;
}

.sub-header {
    padding: 5px 0;
}

.sub-header p {
    font-size: 15px;
    font-weight: normal;
}

.greater-than {
    content: "";
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    background-position: -152px -506px;
    width: 8px;
    height: 7px;
    padding: 0 5px;
    margin: 10px 10px 0;
}

.search-query {
    font-weight: bold;
    color: #339999;
}

.search-amount {
    font-weight: normal;

    color: #999999;
    padding-left: 5px;
}

.back-to-home {
    margin: 35px 0;
}

.bottom-spacer {
    padding-bottom: 35px;
}

.form-field {
    padding: 10px 0;
}

.form-field:first-child {
    padding: 0;
}

.form-field label {
    display: inline-block;
    width: 30%;
    padding: 9px 0;
}

.form-field .selectize-control {
    width: 44%;
    display: inline-block;
    vertical-align: middle;
}

.form-field .ui-select {
    display: inline;
}

.form-field input,
.form-field textarea {
    width: 40%;
    padding: 9px;
}

.form-field textarea {
    width: 70%;
    margin-right: 40%;
    resize: vertical;
    max-height: 200px;
}

textarea {
    resize: vertical;
    max-height: 200px;
}

input:focus,
textarea:focus,
.form-field input:focus,
.form-field textarea:focus {
    border-color: #33a7ae;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(100, 188, 193, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(100, 188, 193, 0.6);
}

input[type=checkbox] {
    display: none;
}

.field-error,
.selectize-control .field-error.selectize-input {
    border-color: #ed3456;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(237, 86, 52, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(237, 86, 52, 0.6);
}

.field-error-2 {
    background-color: #ed3456;
    border-color: #ed3456;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(237, 86, 52, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(237, 86, 52, 0.6);
}

.form-field .checkbox {
    padding: 3px 0;
    padding-left: 30px;
    width: 100%;
    position: relative;
    line-height: 23px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: color 0.25s ease-in-out;
    -moz-transition: color 0.25s ease-in-out;
    -ms-transition: color 0.25s ease-in-out;
    -o-transition: color 0.25s ease-in-out;
    transition: color 0.25s ease-in-out;
}

.checkbox:hover {
    color: #45adb4;
}

.checkbox:before {
    position: absolute;   
    display:block;
    content: " "; 
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    background-position: -35px -460px;
    margin-left: -40px;
    width: 23px;
    height: 23px;
    left: 43px;
}

.checkbox.checked:before {
    background-position: -58px -460px;
}

input[type=radio] {
    display: none;
}

.form-field .radio {
    padding: 0;
    padding-left: 30px;
    width: 100%;
    position: relative;
    line-height: 23px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: color 0.25s ease-in-out;
    -moz-transition: color 0.25s ease-in-out;
    -ms-transition: color 0.25s ease-in-out;
    -o-transition: color 0.25s ease-in-out;
    transition: color 0.25s ease-in-out;
}

.radio:before {
    position: absolute;   
    display:block;
    content: " "; 
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    background-position: 0px -460px;
    margin-left: -40px;
    width: 17px;
    height: 17px;
    left: 43px;
}

.radio.checked:before {
    background-position: -17px -460px;
}

.radio:hover {
    color: #45adb4;
}

.field-error,
.selectize-control .field-error.selectize-input {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(237, 86, 52, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(237, 86, 52, 0.6);
}

.submit-wrapper {
    background: #f4f7f7;
    text-align: right;
}

.modal .submit-wrapper {
    background: none;
}

.modal .checkbox:before {
    margin-left: 0px;
    width: 23px;
    height: 23px;
    left: -31px;
}

/* Form Errors */
ul.form-errors li {
    font-weight: bold;
    font-size: 13px;
    color: #ED5634;
}

/* Responsive :: Mobile */
/* ==================== */
@media screen and (max-width: 767px) {

    .form-field label {
        display: block;
        width: auto;
        padding: 9px 0;
}

footer.primary a {
    font-size: 18px
}

/* Responsive Tables */

table, thead, tbody, th, td, tr { 
    display: block; 
}

thead tr { 
    position: absolute;
    top: -9999px;
    left: -9999px;
}

tr { 
    padding-bottom: 0px;
}

td { 
    text-align: right;
    border-top: 1px solid #e0eaeb;
    position: relative;
    padding-left: 50%;    
}

td:first-child {
    border-top: none;
}

td:before {
    font-size: 11px;
    color: rgba(102,102,102,0.75);
    text-align: left;
    position: absolute;
    top: 2px;
    left: 5px;
    width: 20%;
    white-space: nowrap;
}

.simple-header {}

.simple-header h1 {
    font-size: 23px;
    padding-bottom: 0px;
}

.simple-content {
    padding: 20px 30px;
    min-height: 0px;
}

}

/* Retina Displays */
/* =============== */

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 3 / 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 2) {

    .ui-btn-dropdown:before {
            background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
            background-position: -150px -410px;
            background-size: 161px auto;
            width: 10px;
            height: 8px;
    }
    .ui-btn-dropdown-secondary:before {
        background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
        background-position: -150px -500px;
        background-size: 161px auto;
        width: 10px;
        height: 8px;
    }

    .icon-facebook {
        background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
        background-position: 0 -31px;
        background-size: 161px auto;
    }

    .icon-twitter {
        background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
        background-position: 0 -53px;
        background-size: 161px auto;
    }

    .icon-alert {
        background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
        background-position: 0 -16px;
        background-size: 161px auto;
        width:16px;
        height:16px;
    }

    .icon-success {
        background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
        background-size: 161px auto;
        width:16px;
        height:16px;
    }
    .greater-than {
        background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
        background-position: -152px -506px;
        background-size: 161px auto;
        width: 8px;
        height: 7px;
    }
    .checkbox:before {
        background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
        background-position: -34px -460px;
        background-size: 161px auto;
        width: 23px;
        height: 23px;
    }
    .radio:before {
        background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
        background-position: 0px -460px;
        background-size: 161px auto;
        width: 17px;
        height: 17px;
    }

}

@font-face {
    font-family: 'Pluto Sans Cond';
    src: url('/bundles/glcommon/fonts/plutosanscondlight-webfont.eot');
    src: url('/bundles/glcommon/fonts/plutosanscondlight-webfont.eot?#iefix') format('embedded-opentype'),
    url('/bundles/glcommon/fonts/plutosanscondlight-webfont.woff') format('woff'),
    url('/bundles/glcommon/fonts/plutosanscondlight-webfont.ttf') format('truetype'),
    url('/bundles/glcommon/fonts/plutosanscondlight-webfont.svg#pluto_sanscond_light') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Pluto Sans Cond';
    src: url('/bundles/glcommon/fonts/plutosanscondregular-webfont.eot');
    src: url('/bundles/glcommon/fonts/plutosanscondregular-webfont.eot?#iefix') format('embedded-opentype'),
    url('/bundles/glcommon/fonts/plutosanscondregular-webfont.woff') format('woff'),
    url('/bundles/glcommon/fonts/plutosanscondregular-webfont.ttf') format('truetype'),
    url('/bundles/glcommon/fonts/plutosanscondregular-webfont.svg#pluto_sanscond_regular') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Pluto Sans';
    src: url('/bundles/glcommon/fonts/plutosanslight-webfont.eot');
    src: url('/bundles/glcommon/fonts/plutosanslight-webfont.eot?#iefix') format('embedded-opentype'),
    url('/bundles/glcommon/fonts/plutosanslight-webfont.woff') format('woff'),
    url('/bundles/glcommon/fonts/plutosanslight-webfont.ttf') format('truetype'),
    url('/bundles/glcommon/fonts/plutosanslight-webfont.svg#pluto_sanslight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Pluto Sans';
    src: url('/bundles/glcommon/fonts/plutosansextralight-webfont.eot');
    src: url('/bundles/glcommon/fonts/plutosansextralight-webfont.eot?#iefix') format('embedded-opentype'),
    url('/bundles/glcommon/fonts/plutosansextralight-webfont.woff') format('woff'),
    url('/bundles/glcommon/fonts/plutosansextralight-webfont.ttf') format('truetype'),
    url('/bundles/glcommon/fonts/plutosansextralight-webfont.svg#pluto_sansextralight') format('svg');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Pluto Sans';
    src: url('/bundles/glcommon/fonts/plutosansregular-webfont.eot');
    src: url('/bundles/glcommon/fonts/plutosansregular-webfont.eot?#iefix') format('embedded-opentype'),
    url('/bundles/glcommon/fonts/plutosansregular-webfont.woff') format('woff'),
    url('/bundles/glcommon/fonts/plutosansregular-webfont.ttf') format('truetype'),
    url('/bundles/glcommon/fonts/plutosansregular-webfont.svg#pluto_sans_regularregular') format('svg');
    font-weight: bold;
    font-style: normal;
}


body {
    background: #fff;
}

.grid-container {
    max-width: 980px;
    margin: 0 auto;
}

.dark-background {
    background: #33a7ae;
}

/* Header */
/* ------ */

#account-bar {
    height: 54px;
    text-align: right;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 25px;
}

#account-bar a {
    font-size: 13px;
    letter-spacing: 0.05em;
    display: inline-block;
    padding-left: 12px;
    margin: 9px 0;
    text-transform: uppercase;
    vertical-align: middle;
}

#account-bar .user-menu {
    margin: 17px 0;
}

#account-bar .avatar {
    -webkit-border-radius: 9999px;
    border-radius: 9999px;
    max-width: 40px;
}

#account-bar .not-signed-in-copy {
    margin: 17px 0;
}

#main-logo {
    display: inline-block;
    width: 235px;
    height: 48px;
    background: url('/bundles/glcommon/images/logo-full.png') no-repeat 0 0;
}

#main-nav-and-search {
    position: relative;
    text-align: right;
}

#main-nav-and-search .discover-orgs {
    position: relative;
    padding-right: 24px;
}

#main-nav-and-search .discover-orgs.active,
#main-nav-and-search .discover-orgs:hover {
    color: #33a7ae;
}

#main-nav-and-search .discover-orgs:before {
    position: absolute;
    content: "";
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    background-position: -151px -526px;
    width: 11px;
    height: 8px;
    top: 5px;
    right: 0;
}

#main-nav-and-search .discover-orgs.active:before,
#main-nav-and-search .discover-orgs:hover:before {
    background-position: -150px -499px;
}

#header-content nav li img {
    margin-left: 10px;
}

#header-content nav li {
    display: inline-block;
    padding-left: 30px;
    font-size: 14px;
}

#header-content nav li:first-child {
    padding-left: 0;
}

#header-content input {
    margin-left: 30px;
}

#header-content input::-ms-clear {
    display: none;
}

header.primary {
    padding-bottom: 20px;
}

header.primary a,
header.secondary a {
    border: 0;
    color: #666;
    font-weight: normal;
}

header.primary a:hover,
header.secondary a:hover {
    color: #45adb4;
}

#page-container {
    position: relative;
}

#announcement-link {
    position: relative;
    display: inline-block;
    width: 115px;
    height: 10px;
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    background-position: 0px -693px;
    padding: 0 !important;
    text-align: left;
}

#announcement-link-wrapper {
    cursor: pointer;
    text-transform: none !important;
    color: #9d9d9d;
    font-size: 12px; 
}

.shares-text {
    position: relative;
    display:inline-block;
    margin-left: 15px;
    letter-spacing: 0;
    margin-right: 28px;
}

.shares-text:after {
    position: absolute;
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    background-position: -153px -543px;
    width: 8px;
    height: 5px;
    content: "";
    top: 7px;
    margin-left: 11px;
    /*top: -12px;*/
    /*left: 50%;*/
    /*margin-left: -11px;*/
}

#shares-menu {
    position: absolute;
    padding: 15px 20px;
    border: 1px solid #e5e5e5;
    font-size: 12px;
    background: #fff;
    color: #9d9d9d;
    right: 0;
    z-index: 2000;
    text-align: center;
    display: none;
    border-radius: 5px;

}

.shares-left {
    display: block;
    background: url('/bundles/glcommon/images/sprites.png');
    background-position: 0px -705px;
    padding: 0;
    margin:0;
    float:left;
    height: 100%;
    width: 0;
    transition: width 2s;
}

.end-cap {
    display: block;
    float: left;
    background: url('/bundles/glcommon/images/sprites.png');
    background-position: -109px -705px; 
    width: 5%;
    height: 10px;
    padding: 0;
    margin: 0;
}

.remaining-5 .end-cap {
    display: none;
}

.remaining-5 .shares-left {
    width: 0%;
}

.remaining-4 .shares-left {
    width: 15%;
}

.remaining-3 .shares-left {
    width: 35%;
}

.remaining-2 .shares-left {
    width: 55%;
}

.remaining-1 .shares-left {
    width: 75%;
}

.remaining-0 .shares-left {
    width: 95%;
}

.shares-description {
    max-width: 168px;
    padding-top: 10px;
    padding-bottom: 2px;
    color: #9d9d9d;
}

#shares-menu:before {
    position: absolute;
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    background-position: -80px -459px;
    width: 22px;
    height: 12px;
    content: "";
    top: -12px;
    left: 50%;
    margin-left: -11px;
}

#shares-menu .highlight, #announcement-link-wrapper .highlight {
    color: #33a7ae;
}

#shares-menu a {
    font-size: 12px;
    margin: 10px 0 2px 0;
    padding: 0;
    border-bottom: 1px dashed #33a7ae;
    color: #33a7ae;
}

#site-search-wrapper {
    position: relative;
    width: 30px;
}

#site-search {
    position: relative;
    position: absolute;
    top: -24px;
    right: 0;
    z-index: 1;
    display: inline-block;
    width: 23px;
    height: 36px;
    padding-left: 15px;
    border: 1px solid #c8c8c8;
    border-radius: 40px ;
    background: #fff url('/bundles/glcommon/images/search.png') right center no-repeat;
}

#site-search:focus {
    outline: 0;
    border-color: #33a7ae;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(100, 188, 193, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(100, 188, 193, 0.6);
}

#search-btn {
    position: absolute;
    top: -24px;
    right: 0px;
    z-index: 2;
    display: none;
    width: 41px;
    height: 40px;
    -webkit-border-radius: 999px;
    border-radius: 999px;
    opacity: 0;
}

#search-btn.show {
    display: block;
}

#discover-drop-down {
    position: absolute;
    z-index: 1000;
    width: 100%;
    background: #dff5f7;
    text-align: center;
    padding: 35px 0;
    top: 154px;
    border-top: 1px solid #cbe0e2;
    border-bottom: 1px solid #cbe0e2;
    display: none;
}

#discover-drop-down:after {
    position: absolute;
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    background-position: -102px -460px;
    width: 21px;
    height: 12px;
    content: "";
    top: -11px;
    margin-left: 120px;

}
#discover-drop-down h1 {
    padding-bottom: 25px;
}

#discover-drop-down p {
    padding: 0 25px;
}

#discover-drop-down a {
    position: relative;
    color: #33a7ae;
    font-size: 20px;
    display: inline-block;
}

#discover-drop-down a.link-arrow {
    padding-right: 15px;
}

#discover-drop-down a.link-arrow:before {
    position: absolute;
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    background-position: -123px -460px;
    width: 7px;
    height: 11px;
    content: "";
    right: 0px;
    top: 10px;
}

.drop-down-icon {
    display: block !important;
}
/* Footer */
/* ------ */

footer.primary h3 {
    color: #fff;
    text-transform: uppercase;
    text-align: left;
}

footer.secondary {
    background: #006971;
}

footer.primary {
    position: relative;
    background: #33a7ae;
    padding: 50px 0 0 0;
    color: #94dfe3;
    z-index: 30;
}

.org-header {
    margin-bottom: 25px;
}
/* Secondary Footer */
/* ---------------- */

#footer-logo {
    width: 168px;
    height: 34px;
    display: inline-block;
    background: url('/bundles/glcommon/images/logo-blue.png') no-repeat 0 0;
}

.footer-nav li {
    float: left;
    padding-left: 20px;
}

.footer-nav a {
    line-height: 39px;
    font-weight: normal;
}

footer.secondary {
    padding: 25px 0 25px 0;
}

footer.secondary ul {
    margin: 0;
}

.footer-home-link {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-home-link:hover {
    border: 0;
}

/* Organizations Nav */
/* ----------------- */
nav.organizations-nav {
    margin-bottom: 15px;
}

nav.organizations-nav > ul {
    float: left;
    width: 40%;
}

nav.organizations-nav ul {
    padding: 0;
    margin: 0;
}

nav.organizations-nav li {
    padding-bottom: 7px;
}

nav.organizations-nav ul ul {
    padding: 7px 0 20px 0;
}

nav.organizations-nav .category-heading {
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
}

nav.organizations-nav .category {
    color: #94dfe3;
    font-weight: normal;
}

/* Social */
/* ------ */

.social-header {
    margin-top: 10px;
}

.social h3 {
    margin-bottom: 25px;
}

.social-links h3 {
    text-align: left;
    letter-spacing: 0.05em;
}

.social-links {
    overflow: auto;
    margin-bottom: 50px;
}

.social-links div {
    float: left;
}

.social-links a {
    min-height: 29px;
    line-height: 30px;
}

.social-links .twitter {
    margin-left: 30px;
    margin-top: 15px;
}

.social-links .facebook {
    margin-left: 10px;
    margin-top: 15px;
}

.social-links .gnp {
    margin-left: 30px;
    margin-top: 22px;
    width: 170px;
    height: 29px;
    background: url('https://cdn.greatnonprofits.org/img/dashboard/gnp_bug.png') no-repeat left 0;
    background-size: contain;
    padding-left: 49px;
    padding-top: 5px;
}

.social-links .facebook:hover,
.social-links .twitter:hover {
    /* empty because it's
    necessary for :hover:before
    & :hover:after to work */
}

.social-links .facebook:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url('/bundles/glcommon/images/facebook.png') no-repeat;
    position: relative;
    top: 10px;
    left: -10px;
}

.social-links .twitter:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url('/bundles/glcommon/images/twitter.png') no-repeat;
    position: relative;
    top: 10px;
    left: -10px;
}

.social-links .facebook:hover:before,
.social-links .twitter:hover:before {
    background-position: 0 100%;
}

.social .facebook:hover a,
.social .twitter:hover a {
    color: #FFF;
}

.social p {
    margin: 0 0 30px 0;
    text-align: left;
}

.social ::-webkit-input-placeholder {
    color: #33a7ae;
    opacity: 1;
}

.social :-moz-placeholder { /* Firefox 18- */
    color: #33a7ae;
    opacity: 1;
}

.social ::-moz-placeholder {  /* Firefox 19+ */
    color: #33a7ae;
    opacity: 1;
}

.social :-ms-input-placeholder {
    color: #33a7ae;
    opacity: 1;
}

.signup-input {
    font-size: 12px;
    font-weight: bold;
    color: #33a7ae;
    background-color: #94dfe3;
    border-color: #33a7ae;
    outline: 0;
    width: 87%;
    padding: 8px 12px;
    margin-bottom: 33px;
}

/* FORM ERROR */
.field-error-2 {
    color: #FFFFFF;
    background-color: rgba(148, 223, 227, .91);
    border-color: #ed3456;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(237, 86, 52, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(237, 86, 52, 0.6);
}

.social input {
    display: block;
}

.social input:focus {
    border-color: #33a7ae;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(100, 188, 193, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(100, 188, 193, 0.6);
}

/* User Dropdown Menu */
/* ================== */

.user-menu-wrapper {
    position: relative;
}

#user-menu {
    position: absolute;
    width: 190px;
    border: 1px solid #e5e5e5;
    background: #fff;
    right: 0;
    z-index: 1000;
}

#user-menu:before {
    position: absolute;
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    background-position: -80px -459px;
    width: 22px;
    height: 12px;
    content: "";
    top: -12px;
    left: 50%;
    margin-left: -11px;
}

#user-menu ul {
    padding: 0;
    margin: 0;
}

#user-menu li {
    position: relative;
    margin: 0;
}

#user-menu a {
    letter-spacing: 0.35px;
    position: relative;
    display: block;
    z-index: 1;
    padding: 15px 5px 15px 50px;
    text-align: left;
    color: #999;
    font-size: 12px;
    margin: 0;
    border-bottom: 1px solid #e5e5e5;
}

#user-menu a:hover {
    position: relative;
    display: block;
    z-index: 1;
    color: #33a7ae;
}

#user-menu li:hover {
    background: #dff5f7;
}

#user-menu li:before {
    background:url('/bundles/glcommon/images/sprites.png') no-repeat 0px -411px;
    width:25px;
    height:24px;
    display:block;
    position:absolute;
    content: " ";
    top:10px;
    left:12px;
    z-index: 0;
}

#user-menu .um-account:before {
    background-position: 0px -411px;
}

#user-menu .um-account:hover:before {
    background-position: 0px -436px;
}

#user-menu .um-invite-friends:before {
    background-position: -25px -411px;
}

#user-menu .um-invite-friends:hover:before {
    background-position: -25px -436px;
}

#user-menu .um-settings:before {
    background-position: -50px -411px;
    height: 24px;
}

#user-menu .um-settings:hover:before {
    background-position: -50px -436px;
}

#user-menu .um-submit-org:before {
    background-position: -75px -411px;
}

#user-menu .um-submit-org:hover:before {
    background-position: -75px -436px;
}

#user-menu .um-manage-org:before {
    background-position: -100px -411px;
}

#user-menu .um-manage-org:hover:before {
    background-position: -100px -435px;
}

#user-menu .um-logout:before {
    background-position: -125px -411px;
}

#user-menu .um-logout:hover:before {
    background-position: -125px -436px;
}

/* Callouts */
/* ======== */

#callouts {
    font-weight: normal;
    padding: 50px 0;
    background: #33a7ae;
    color: #94dfe3;
    text-align: center;
}

#callouts img {
    padding-bottom: 20px;
}

#callouts p {
    max-width: 265px;
    margin: 0 auto;
    padding-bottom: 20px;
    height: 90px;
}

#callouts h3 {
    font-family: "Pluto Sans", sans-serif;
    font-weight: 100;
    font-size: 20px;
    text-transform: none;
    color: #fff;
    padding-bottom: 20px;
}
.callout-button {
    margin-top: 30px;
}

#callouts .button {
    background: #006971;
    color: #33a7ae;
}

/* Tables */

table {
    border: 1px solid #e0eaeb;
    border-bottom: none;
}

tr {
    border-bottom: 1px solid #e0eaeb;
}

th {
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: left;
    color: #2a989f;
    background-color: #def5f7;
}

th,
td {
    padding: 15px 20px;
}

/* Discover Organizations */
/* ====================== */

#discover-organizations {
    color: #006971;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
}

#discover-organizations h2 {
    font-weight: normal;
    font-size: 38px;
    margin: 25px 0 15px
}

#discover-organizations nav {
    height: 26px;
    padding-bottom: 35px
}

#discover-organizations nav,
#discover-organizations nav a {
    position: relative;
    text-transform: uppercase;
    border-bottom: none;
    color: #33a7ae;
    letter-spacing: 1px;
    z-index: 100;
}

#discover-organizations nav a {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 14px;
}

#discover-organizations nav a:hover,
#discover-organizations nav a.active {
    font-family: 'Pluto Sans', sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    background: url('/bundles/glcommon/images/icon_link-hover_arrow.png') no-repeat center bottom;
}

#organization-browser {
    position: relative;
    text-align: left;
    white-space: nowrap;
    font-size: 0;
    width: 100%;
    height: 620px;
    margin-top: -120px;
    overflow: hidden;
    z-index: 1;
}

.ob-item .metrics {
    position: absolute;
    font-size: 14px;
    bottom: 0;
    padding: 15px;
}

.ob-tooltip .metrics {
    width: 100%;
}

.ob-tooltip .metric {
    float:left;
    width: 33%;
}

.ob-track-visual {
    cursor: pointer;
}

#organization-browser .metric {
    font-weight: normal;
}

#organization-browser .ob-description {
    font-size: 13px;
    white-space: normal;
    margin: 0;
    padding: 10px 15px 0 15px;
    max-height: 115px;
    overflow: hidden;
    margin-bottom: 40px;
}

.ob-tooltip h4 {
    font-weight: normal;
    font-size: 16px;
    text-transform: inherit;
    color: #ffffff;
    padding: 15px 15px 0 15px;
    white-space: normal;
}


.ob-item .metric {
    position: relative;
    padding-top: 10px;
}

.metric:before {
    position: absolute;
    display:block;
    content: " ";
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    background-position: -112px 0px;
    width: 15px;
    height: 15px;
    left: 0px;
    top: 10px;
}

.metric .value {
    padding-left: 20px;
}

.metric.promotions:before {
    background-position: -127px 0px;
}

.metric.donations:before {
    background-position: -142px 0px;
}

.ob-template {
    display: none;
}

.ob-items {
    padding-bottom: 40px;
    position: absolute;
    margin-top:120px;
}

.ob-item {
    cursor: pointer;
    position: relative;
    transition: 1s;
    color: #94dfe3;
}

.ob-tower img {
    left: -100%;
}

.ob-item-info h4 {
    size: 16px;
    text-transform: inherit;
    color: #94dfe3;
    padding: 15px;
}

.ob-item-info {
    white-space: normal;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: 0.0s;
    top: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";

    /* 144245 */
    background: transparent;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99186669,endColorstr=#99186669)"; /* IE8 */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99186669,endColorstr=#99186669);   /* IE6 & 7 */
    zoom: 1;
    background: rgba(24, 102, 105, 0.6);
    /*background: rgba(51,167,174,0.4);*/
}

.ob-item-info.hover {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.ob-tooltip {
    z-index: 10;
    position: absolute;
    width: 300px;
    background: #33a7ae;
    margin-left: 56px;
    left: 80%;
    bottom: 50%;
}

.ob-tooltip.left {
    left: inherit;
    right: 80%;
}

.ob-tooltip.left:after {
    left: inherit;
    right: -48px;
    background-position: -94px -643px;
}

.ob-tooltip:after {
    position: absolute;
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    background-position: -92px -596px;
    width: 55px;
    height: 45px;
    content: "";
    left: -48px;
    bottom: 0;
}

.ob-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #33a7ae;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.ob-grouping-top .ob-image {
    background-size: cover;
}

.ob-item:hover:after {
    opacity: 0;
}

.ob-grouping-top {
    width: 420px;
    height: 206px;
}

.ob-tower {
    width: 200px;
    height: 420px;
    margin: 4px;
}

.ob-large-square {
    width: 420px;
    height: 420px;
    margin: 4px;
}

.ob-stack-item {
    width: 206px;
    height: 206px;
    margin: 4px;
}

.ob-stack-item.second{
    margin-top: 8px;
}

.ob-grouping-top {
    margin: 4px 4px;
}

.ob-bottom-grouping-item {
    display: inline-block;
    width: 206px;
    height: 206px;
    margin: 4px;
}

.ob-items > div {
    display: inline-block;
}

#organization-browser .ob-grouping {
    padding: 0;
    white-space: nowrap;
}

/*.ob-controls .ob-track{
position: absolute;
width: 80%;
height: 15px;
left: 10%;
bottom: 40px;
background: #f3f3f3;

box-shadow: #ccc 1px 1px inset;

-webkit-border-radius: 20px;
border-radius: 20px;
}*/

    .ob-track {
        position: absolute;
        left: 0;
        right: 40px;
        height: 15px;
}

.ob-track-visual {
    position: absolute;
    bottom: 40px;
    width: 80%;
    left: 10%;
    height: 15px;
    background: #f3f3f3;

    box-shadow: #ccc 1px 1px inset;

    -webkit-border-radius: 20px;
    border-radius: 20px;
}

.ob-controls .ob-handle {
    position: absolute;
    top: 0;
    display: inline-block;
    text-align: center;
    font-size: 10px;
    color: #006971;
    width: 40px;
    height: 13px;
    background: #33a7ae;
    left: 0%;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    cursor: pointer;
}

.ob-controls {
    padding-bottom: 40px;
}

/* Stamps */

.stamp {
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    width: 160px;
    height: 105px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.stamp-social {
    background-position: 0 -304px;
}

.stamp-video {
    background-position: 0 -202px;
}

.stamp-donate {
    background-position: 0 -96px;
}

/* Side Menu */
/* ========= */

.side-menu {
    /*margin-left: 30px;*/
    /*min-width: 300px;*/
}

.side-menu header {
    padding: 15px 20px;
    text-transform: uppercase;
    text-align: left;
    color: #33a7ae;
    background-color: #def5f7;
    border: 1px solid #e0eaeb;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
}

.side-menu ul {
    padding: 0;
    margin: 0;
}

.side-menu li {
    border: 1px solid #e0eaeb;
    border-top: 0;
}

.side-menu a {
    display: block;
    color: #666;
    padding: 15px 20px;
    border-left: 2px solid rgba(255,255,255,0);
    border-bottom: 0;
}

.side-menu a:hover,
.side-menu .active {
    font-weight: bold;
    border-left: 2px solid #33a7ae;
}

.side-menu header.settings,
.side-menu header.org-profile {
    padding: 15px 20px 15px 66px;
}

header.settings:before,
header.org-profile:before {
    background: url('/bundles/glcommon/images/sprites.png') no-repeat 0px -435px;
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    content: " ";
    top: 10px;
    left: 23px;
    z-index: 0;
}

header.settings:before {
    background-position: -50px -435px;
}

/* User Password Forms */

.user-section {
    text-align: center;
    padding: 35px 0 70px 0;
}

/* Responsive :: Tablet */
/* ==================== */
@media only screen and (min-width : 768px) and (max-width : 1024px) {

    /* Header */
    #account-bar {
        padding-right: 30px;
        padding-left: 30px;
}

#header-content {
    padding-right: 20px;
    padding-left: 20px;
}

#main-nav-and-search {
    position: relative;
    text-align: right;
}

nav.organizations-nav, aside.social-container {
    padding-left: 20px;
}

footer.primary > div.grid-container:first-child aside.grid-parent {
    padding-left: 20px;
}

#site-search {
    width: 19px;
}

#main-nav-and-search ul {
    padding-left: 0;
}

#header-content nav li {
    padding-left: 10px;
    font-size: 12px;
}

#main-nav-and-search .discover-orgs {
    position: relative;
    padding-right: 15px;
}

li.um-submit-org {
    padding-right: 7px;
}

/* Footer */
footer.secondary {
    margin-top: 40px;
    padding-right: 10px;
    padding-left: 10px;
}

.footer-nav-container {
    text-align: center;
    width: 100%;
    left: 0;
    position: relative;
    z-index: 1;
}

.footer-nav {
    float: none;
}

.footer-nav ul {
    padding: 0;
}

.footer-nav li {
    float: none !important;
    padding-left: 15px;
    display: inline;
}

.footer-nav li:first-child {
    padding-left: 0px;
}

.footer-logo {
    text-align: center;
    width: 100%;
    left: 0;
    float: none;
}

#footer-logo {
    margin-top: 10px;
    float: none;
}

/* Callouts */

#callouts h3 {
    font-size: 19px;
    -webkit-transition: font-size .5s ease-in-out;
    -moz-transition: font-size .5s ease-in-out;
    -ms-transition: font-size .5s ease-in-out;
    -o-transition: font-size .5s ease-in-out;
    transition: font-size .5s ease-in-out;
}

}

/* Tablet Portrait */
@media screen and (min-width : 768px) and (max-width: 1023px) {

    .simple-content {
        width: 96%;
        margin: 0 2%;
}

}

/* TOUCH DEVICES TO HIDE ORG BROWSER */
@media only screen (orientation : portrait) and (orientation : landscape) {

    .ob-controls {
        display: none;
}

}

/* Responsive :: Mobile */
/* ==================== */
@media screen and (max-width: 767px) {

    .simple-content {
        padding: 0px 20px 20px;
        min-height: 0px;
}

html,
body {
    -ms-overflow-x: hidden;
    overflow-x: hidden;
}

/* Mobile Menu */
/* =========== */

header.primary-mobile {
    background: #ffffff;
    padding: 20px 0 17px;
}

.primary-mobile a {
    border-bottom: none;
}

.go-home {
    width: 200px;
    height: 41px;
    display: inline-block;
    margin-left: 20px;
    background: url('/bundles/glcommon/images/logo-mobile.png') no-repeat 0 0;
}

.slide-out {
    min-width: 100% !important;
    height: 100% !important;
}

#mobile-menu-btn {
    content: "";
    background: url('/bundles/glcommon/images/menu-icon.png') no-repeat 0 0;
    width: 40px;
    height: 26px;
    display: inline-block;
    text-decoration: none;
    border-bottom: none;
    float: right;
    position: relative;
    top: 8px;
    margin-right: 25px;
    z-index: 99999;

    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);

    -webkit-transition: -webkit-transform 250ms ease-out 0s, right 250ms ease-in-out;
    -moz-transition: -moz-transform 250ms ease-out 0s, right 250ms ease-in-out;
    -o-transition: -o-transform 250ms ease-out 0s, right 250ms ease-in-out;
    transition: transform 250ms ease-out 0s, right 250ms ease-in-out;
}

#mobile-menu-btn:hover,
#mobile-menu-btn:focus {
    text-decoration: none;
    border-bottom: none;
}

#mobile-menu-btn.open {
    right: 258px;
    z-index: 99999;
    background-position: 0 100%;
    margin-right: 20px;

    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);

    -webkit-transition: -webkit-transform 250ms ease-out 0s, right 250ms ease-in-out;
    -moz-transition: -moz-transform 250ms ease-out 0s, right 250ms ease-in-out;
    -o-transition: -o-transform 250ms ease-out 0s, right 250ms ease-in-out;
    transition: transform 250ms ease-out 0s, right 250ms ease-in-out;
}

#mobile-menu {
    display: none;
    font-size: 22px;
    width: 264px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -265px;
    z-index: 1000;
    background: #47a5aa;
    border-right: thin solid #17415c;
}

#mobile-menu ul {
    margin: 0px 0 0 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

#mobile-menu li {
    border-bottom: 1px solid #67c6cb;
}

#mobile-menu a {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    width: 234px;
    padding: 13px 0 13px 30px;
    display: block;
    border-bottom: 1px solid #2f787d;

    -webkit-transition: background .25s ease-in-out;
    -moz-transition: background .25s ease-in-out;
    -ms-transition: background .25s ease-in-out;
    -o-transition: background .25s ease-in-out;
    transition: background .25s ease-in-out;
}

#mobile-menu a:hover,
#mobile-menu a:focus {
    background: #2c989e;
    text-decoration: none;
    outline: none;
}

#mobile-menu li.mobile-avatar a {
    padding: 7px 0 0px 30px;
}

#mobile-menu li.mobile-avatar a .user-name {
    display: inline-block;
    vertical-align: top;
    margin-top: 9px;
    margin-left: 5px;
}

#mobile-menu li.mobile-avatar img {
    display: inline-block;
    -webkit-border-radius: 999px;
    border-radius: 999px;
}

#mobile-user-menu-trigger:after {
    position: absolute;
    content: "";
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    background-position: -123px -588px;
    width: 11px;
    height: 7px;
    top: 25px;
    right: 20px;
}

#mobile-user-menu-trigger.open:after {
    position: absolute;
    content: "";
    background: url('/bundles/glcommon/images/sprites.png') no-repeat;
    background-position: -123px -581px;
    width: 11px;
    height: 7px;
    top: 25px;
    right: 20px;
}

#mobile-user-menu {
    display: none;
}

#mobile-menu li.logged-in {
    border-bottom: 1px solid #ffffff;
}

#mobile-menu li.logged-in a {
    color: #33a7ae;
    background: #E4F1F2;
    border-bottom: 1px solid #b5dbde;
}

#mobile-menu li.not-logged-in a {
    background: #2c989e;
}

#mobile-menu li.logged-in a:hover {
    background: #94DFE3;
}

#mobile-menu li.not-logged-in a:hover {
    background: #006971;
}

#mobile-menu li.logged-in.mobile-avatar a:hover {
    background: #E4F1F2;
}

#mobile-cover {
    width: 100%;
    height: 100%;
    background-color: rgba(256,256,256,.88);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    display: none;
}

/* Mobile Footer */
/* ============= */

footer.primary {
    padding: 1.5em 0 0 0;
}

.social {
    padding: 0 10px 20px;
}

.social-links {
    text-align: left;
    margin-bottom: 2em;
}

.social-links ul {
    padding: 0;
    text-align: center;
}

.social-links li {
    width: auto;
    padding-left: 0;
    margin-right: auto;
    margin-bottom: 5px;
    margin-left: auto;
}

.email-signup {
    padding-right: 30px;
    padding-left: 30px;
    text-align: center;
}

footer.primary h3 {
    font-size: 17px;
    padding-bottom: 5px;
    text-align: center;
}

.email-signup p {
    font-size: 14px;
    text-align: center;
}

.email-signup input {
    display: inline-block;
}

.mobile-footer {
    text-align: center;
}

#footer-logo {
    float: none;
}

/* Org Browser */

#discover-organizations {
    display: none;
}

}

/* Retina Displays */
/* =============== */

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 3 / 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 2) {

    #site-search {
            background: #fff url('/bundles/glcommon/images/search@2x.png') right center no-repeat;
            background-size: 27px 14px;
    }

    #main-logo {
        background: url('/bundles/glcommon/images/logo-full@2x.png') no-repeat 0 0;
        background-size: 235px 48px;
    }

    .go-home {
        background: url('/bundles/glcommon/images/logo-mobile@2x.png') no-repeat 0 0;
        background-size: 200px 41px;
    }

    #footer-logo {
        background: url('/bundles/glcommon/images/logo-blue@2x.png') no-repeat 0 0;
        background-size: 168px 34px;
    }

    .social .facebook:before {
        background: url('/bundles/glcommon/images/facebook@2x.png') no-repeat;
        background-size: 30px 60px;
    }

    .social .twitter:before {
        background: url('/bundles/glcommon/images/twitter@2x.png') no-repeat;
        background-size: 30px 60px;
    }

    #main-nav-and-search .discover-orgs:before {
        background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
        background-position: -151px -524px;
        background-size: 161px auto;
    }

    #discover-drop-down:after {
        background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
        background-position: -102px -460px;
        background-size: 161px auto;
    }

    #discover-drop-down a.link-arrow:before {
        background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
        background-position: -123px -460px;
        background-size: 161px auto;
    }
    #user-menu:before {
        background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
        background-position: -80px -460px;
        background-size: 161px auto;
    }
    #user-menu li:before {
        background:url('/bundles/glcommon/images/sprites@2x.png') no-repeat 0px -410px;
        background-size: 161px auto;
    }
    .metric:before {
        background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
        background-position: -112px 0px;
        background-size: 161px auto;
    }
    .ob-tooltip:after {
        background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
        background-position: -92px -595px;
        background-size: 161px auto;
    }

    .stamp {
        background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
        background-size: 161px auto;
    }

    .stamp-social {
        background-position: 0 -304px;
        background-size: 161px auto;
    }

    .stamp-video {
        background-position: 0 -202px;
        background-size: 161px auto;
    }

    .stamp-donate {
        background-position: 0 -96px;
        background-size: 161px auto;
    }

    header.settings:before,
    header.org-profile:before {
        background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat 0px -435px;
        background-size: 161px auto;
    }

    #mobile-user-menu-trigger:after {
        background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
        background-position: -123px -588px;
        background-size: 161px auto;
    }

    #mobile-user-menu-trigger.open:after {
        background: url('/bundles/glcommon/images/sprites@2x.png') no-repeat;
        background-position: -123px -581px;
        background-size: 161px auto;
    }

    #mobile-menu-btn {
        background: url('/bundles/glcommon/images/retina-graphics/menu-icon-2x.png') no-repeat 0 0;
        background-size: 40px 52px;
    }

}


.new-social-links > div {
    display: block;
    width: 30%;
    float: left;
    padding: 0;
    margin: 15px 0;
    min-height: 30px;
    max-height: 30px;
}

.new-social-links > div a {
    text-indent: 30px;
    color: #94dfe3;
    -webkit-transition: color 0.3s;
    -ms-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3sz;
    display: block;
    text-indent: 35px;
    margin: 6px 0 0;
}

.new-social-links > div:hover {
    background-position: left bottom !important;
}

.new-social-links > div a:hover {
    color: #fff;
}

.new-social-links > div.facebook {
    background: url('/bundles/glcommon/images/facebook.png') no-repeat left 0;
}
.new-social-links > div.twitter {
    background: url('/bundles/glcommon/images/twitter.png') no-repeat left 0;
}
.new-social-links > div.gnp {
    background: url('https://cdn.greatnonprofits.org/img/dashboard/gnp_bug.png') no-repeat left 0;
    background-size: 30px;
}

.new-social-links > div:not(:last-child)
{
    margin-right: 4.5%;
}


@media only screen and (max-width: 768px)  {
    .new-social-links > div {
        width: 100% !important;
        margin: 15px auto !important;
        clear: both;
        float: none !important;
        max-width: 240px;
    }
    footer.primary .grid-66.grid-parent {
        margin: 40px 0;
    }
}

footer.primary .grid-container.grid-parent {
    max-width: 1366px;
}


@media screen and (min-width : 1024px) {
    footer.primary > div:first-child > .grid-parent:first-child {
        padding-left: 20px;
    }
}





/* Modals and Overlays */
/* ------------------- */
body.blocker {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

#modal-holder {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    display: none;
    z-index: 10000;
}

.blocker #modal-holder {
    height: 100%;
}

.modal-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    top: 0;
    left: 0;
}

.blocker .modal-backdrop {
    background: rgba(51, 167, 174, 0.4);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#6633A7AE,endColorstr=#6633A7AE)"; /* IE8 */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#6633A7AE,endColorstr=#6633A7AE);   /* IE6 & 7 */
        zoom: 1;
}

.modal {
    width: 55%;
    margin: 40px auto;
    background: #dff5f7;
    -webkit-box-shadow:  1px 1px 3px 1px rgba(0, 0, 0, .2);
            box-shadow:  1px 1px 3px 1px rgba(0, 0, 0, .2);
    position: relative;
    overflow: visible;
}

.overlay {
    background: #FFF;
    padding: 10px 25px;
    border: 1px solid #CCC;
    position: absolute;
    box-shadow: 0 0 15px rgba(0,0,0,.25);
    border-radius: 5px;
    display: none;
}

.overlay .overlay-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 19px;
    overflow: hidden;
}

.overlay .overlay-close img {
    width: 20px;
    max-width: 38px;
    height: auto;
    position: absolute;
    left: 0;
}

.overlay .overlay-close:hover img {
    bottom: -1px;
}

.callout-link {
    border: 0;
    color: #666;
}

.modal h1 {
    margin: 0;
    font-size: 32px;
}

.modal .intro {
    font-size: 19px;
}

.modal .modal-close {
    cursor: pointer;
    position: absolute;
    right: -10px;
    top: -10px;
    background: #fff;
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align: center;
    border-radius: 100%;
    -webkit-box-shadow:  1px 1px 3px 1px rgba(0, 0, 0, .2);
            box-shadow:  1px 1px 3px 1px rgba(0, 0, 0, .2);
    color: #33a7ae;
    font-size: 23px;
}

/* Specfic Overlays */

#promote-modal {
    padding-top: 20px;
    width: 475px;
    text-align: center;
}

#promote-modal.not-logged-in {
    width: 915px;
}

#promote-modal h2 {
    padding: 0 75px;
    margin-bottom: 30px;
}

#promote-modal .social-login {
    padding-top: 15px;
}

#promote-modal .social-login .ui-btn {
    padding:13px 45px;
}

#promote-modal h2.must-log-in {
    padding: 20px 35px 0;
    margin-bottom: 30px;
}

#promote-modal .signup-section {
    padding-top: 18px;
}

#promote-modal .left-side {
    border-right: 1px dashed #33a7ae;
    margin-top: -20px;
}

.promote-buttons {
    padding-bottom: 30px;
}

.promote-buttons a {
    width: 245px;
    margin-bottom: 25px;
}

.share-to-give-logo {
    margin-bottom: 50px;
}

#promote-modal p {
    padding: 0 35px;
}

.promote-copy {
    padding-bottom: 20px;
}

/* Login */


/* Login */
/* ===== */

#login-modal {
    width: 475px;
    padding-top: 20px;
    font-weight: normal;
}

.login-title {
    padding-bottom: 20px;
}

.login-head-section {
    padding: 0 75px;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px dashed #33a7ae;
    margin-bottom: 35px;
}

.login-head-section a {
    margin-bottom: 25px;
}

.email-signin-section {
    border-bottom: 1px dashed #33a7ae;
    margin-bottom: 20px;
    padding: 0 50px 35px;
}

.signup-section {
    padding: 0 45px 20px;
    text-align: center;
    font-size: 18px;
}

.email-wrapper {
    padding-bottom: 20px;
}

.email-signin-section label {
    color: #777;
    font-size: 18px;
    margin-top: 4px;
    display: inline-block;
}

.password-wrapper {
    padding-bottom: 20px;
}

.email-wrapper .form-control,
.password-wrapper .form-control {
    padding: 6px 10px;
}

.remember-wrapper {
    padding-top: 8px;
    text-align: left;
}

.remember-wrapper label {
    margin-top: 0;
}

.remember-checkbox {
    font-size: 16px !important;
    margin-left: 31px;
    position: relative;
}

.submit-button-wrapper {
    text-align: right;
}

.email-signin-section input[type="text"],
.email-signin-section input[type="password"]
{
    width: 91%;
}

.forgot-password {
    padding-top:10px;
    width: 100%;
    text-align: right;
}

.forgot-password a {
    color: #999;
    border: 0;
    font-size: 12px;
}
.forgot-password a:hover {
    border-bottom: 1px dotted #777;
}

#reset-modal {
    width: 475px;
    padding-top: 20px;
    font-weight: normal;
    text-align: center;
}

#reset-modal .reset-title {
    padding: 0 75px 20px 75px;
}

#reset-modal .mid-section {
    padding: 0 50px 30px 50px;
    border-bottom: 1px dashed #33a7ae;
    margin-bottom: 20px;
}

#reset-modal .info-text {
    padding-bottom: 40px;
}

#reset-modal label {
    color: #777;
    font-size: 18px;
    margin-top: 4px;
    display: inline-block;
}

#reset-modal input[type="text"] {
    width: 91%;
}

#reset-modal .email-wrapper input[type="text"] {
    padding: 6px 10px;
}

#reset-modal .email-wrapper {
    padding-bottom: 30px;
}

#reset-modal .submit-wrapper {
    text-align: right;
}

#tac-modal {
    padding: 15px 30px;
    width: 650px;
}

#share-to-give-modal {
    width: 900px;
    max-width: 100%;
    text-align: center;
    padding: 25px 0px;
}

#share-to-give-modal .description {
    width: 520px;
    max-width: 100%;
    margin: 5px auto 30px auto;
}

#share-to-give-modal .sign-up-button {
    padding: 9px 60px;
}

#share-to-give-modal .three-columns {
    margin-top: 30px;
}

#share-to-give-modal .three-columns img {
    margin: 0 auto;
}

#share-to-give-modal .three-columns p {
    padding: 7px 20px;
    margin-top: 0;
}

#share-to-give-modal .three-columns .one {
    padding: 7px 50px;
}

#share-to-give-modal .three-columns .three {
    padding: 7px 20px;
}

/* Responsive :: Tablet */
/* ==================== */
/* Tablet Landscape */
@media screen and (min-width : 768px) and (max-width : 1024px) {

    

}

/* Tablet Portrait */
@media screen and (min-width : 768px) and (max-width: 1023px) {

    #promote-modal.not-logged-in {
        width: 94%;
        margin: 20px 3% 0;
    }

    #promote-modal h2.must-log-in {
        font-size: 32px;
        line-height: 1.2;
    }

    #promote-modal .login-head-section {
        padding: 0 15px;
    }

    #promote-modal .email-signin-section {
        padding: 0 20px 25px;
    }
    
}

/* Responsive :: Mobile */
/* ==================== */
@media screen and (max-width: 767px) {

    #page-container {
        -webkit-transition: opacity 0.5s ease-in-out;
           -moz-transition: opacity 0.5s ease-in-out;
            -ms-transition: opacity 0.5s ease-in-out;
             -o-transition: opacity 0.5s ease-in-out;
                transition: opacity 0.5s ease-in-out;
    }

    #page-container.modal-opening {
        opacity: 0;
    }

    #page-container.modal-open {
        display: none;
    }

    #modal-holder {
        position: absolute;
        width: 100%;
        height: 100%;
        display: none;
        z-index: 10000;
    }
    
    .modal-backdrop {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0);
    }

    .modal {
        margin: 0 auto;
    }

    .modal .modal-close {
        right: 0;
        top: 0;
    }

    .submit-button-wrapper input[type="submit"] {
        width: 100%;
        margin: 15px 0;
    }

    /* Login */

    #login-modal {
        width: auto;
        padding-top: 50px;
    }

    .login-head-section {
        padding: 0;
    }

    .login-title {
        line-height: 1.1;
    }

    /* Reset */
    
    #reset-modal {
        width: auto;
        padding-top: 50px;
    }

    #reset-modal .reset-title {
        padding: 0 20px 20px;
        line-height: 1.1;
    }

    #reset-modal .mid-section {
        padding: 0 30px 35px;
        border-bottom: 1px dashed #33a7ae;
        margin-bottom: 20px;
    }

    #reset-modal .email-wrapper {
        text-align: left;
    }

    #reset-modal .submit-wrapper input[type="submit"] {
        width: 100%;
    }

    /* Terms and Conditions */
    #tac-modal {
        width: auto;
        padding-top: 50px;
    }

    /* Promote Logged In */
    
    #promote-modal {
        padding-top: 50px;
        width: auto;
    }

    #promote-modal h2.must-log-in {
        padding: 0;
        margin-bottom: 30px;
        line-height: 1.1;
    }

    /* Promote Not Logged In */
    
    #promote-modal.not-logged-in {
        width: auto;
    }

    #promote-modal .left-side {
        border-right: none;
        margin-top: 0px;
    }

    #promote-modal .email-signin-section {
        text-align: left;
    }

}