@charset "UTF-8";
/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
@import url("https://brand.arizona.edu/sites/default/files/ua-banner/ua-web-branding/ua-fonts/milo.css");
/* line 33, ../sass/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
/* line 40, ../sass/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 52, ../sass/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
/* line 58, ../sass/_normalize.scss */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _init.scss partial.
 */
/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
/* line 106, ../sass/_normalize.scss */
html {
  font-family: MiloWeb, Verdana, Geneva, sans-serif;
  /* 1 */
  font-size: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.5em;
}

/* Remove default margin. */
/* line 126, ../sass/_normalize.scss */
body {
  margin: 0;
  padding: 0;
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
/* Address `outline` inconsistency between Chrome and other browsers. */
/* line 148, ../sass/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
/* line 154, ../sass/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
/* line 170, ../sass/_normalize.scss */
p,
pre {
  margin: 1.5em 0;
}

/* line 173, ../sass/_normalize.scss */
blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.5em 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 182, ../sass/_normalize.scss */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.5em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

/* line 190, ../sass/_normalize.scss */
h2 {
  font-size: 1.5em;
  line-height: 2em;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* line 195, ../sass/_normalize.scss */
h3 {
  font-size: 1.17em;
  line-height: 1.28205em;
  margin-top: 1.28205em;
  margin-bottom: 1.28205em;
}

/* line 200, ../sass/_normalize.scss */
h4 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* line 205, ../sass/_normalize.scss */
h5 {
  font-size: 0.83em;
  line-height: 1.80723em;
  margin-top: 1.80723em;
  margin-bottom: 1.80723em;
}

/* line 210, ../sass/_normalize.scss */
h6 {
  font-size: 0.67em;
  line-height: 2.23881em;
  margin-top: 2.23881em;
  margin-bottom: 2.23881em;
}

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
/* line 217, ../sass/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
/* line 223, ../sass/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* Address styling not present in Safari 5 and Chrome. */
/* line 228, ../sass/_normalize.scss */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
/* line 233, ../sass/_normalize.scss */
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.5em 0;
}

/* Address styling not present in IE 8/9. */
/* line 242, ../sass/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 253, ../sass/_normalize.scss */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
  font-size: 1em;
  line-height: 1.5em;
}

/* Improve readability of pre-formatted text in all browsers. */
/* line 262, ../sass/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/* Set consistent quote types. */
/* line 274, ../sass/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
/* line 279, ../sass/_normalize.scss */
small {
  font-size: 80%;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
/* line 285, ../sass/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 291, ../sass/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 294, ../sass/_normalize.scss */
sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
/* line 304, ../sass/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.5em 0;
}

/* line 311, ../sass/_normalize.scss */
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

/* line 316, ../sass/_normalize.scss */
dd {
  margin: 0 0 0 30px;
  /* LTR */
}

/* Address paddings set differently in IE 6/7. */
/* line 323, ../sass/_normalize.scss */
menu,
ol,
ul {
  padding: 0 0 0 30px;
  /* LTR */
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 341, ../sass/_normalize.scss */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */
  /* Responsive images */
  max-width: 100%;
  height: auto;
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

/* Correct overflow displayed oddly in IE 9. */
/* line 362, ../sass/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
/* line 367, ../sass/_normalize.scss */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
/* line 383, ../sass/_normalize.scss */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-style: solid;
  border-top-width: 0.0625em;
  padding-top: 0.4625em;
  border-bottom-style: solid;
  border-bottom-width: 0.0625em;
  padding-bottom: 0.9125em;
  border-left-style: solid;
  border-left-width: 0.0625em;
  padding-left: 0.9125em;
  border-right-style: solid;
  border-right-width: 0.0625em;
  padding-right: 0.9125em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
/* line 398, ../sass/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
/* line 416, ../sass/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 433, ../sass/_normalize.scss */
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 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 444, ../sass/_normalize.scss */
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.
 */
/* line 460, ../sass/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
/* line 472, ../sass/_normalize.scss */
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.
 */
/* line 483, ../sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 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).
 */
/* line 497, ../sass/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 507, ../sass/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Remove inner padding and border in Firefox 4+. */
/* line 513, ../sass/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 522, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
/* line 528, ../sass/_normalize.scss */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
/* line 536, ../sass/_normalize.scss */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* Layout rules */
/* line 36, ../sass/layouts/_responsive.scss */
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 48em) and (max-width: 59.9em) {
  /* line 44, ../sass/layouts/_responsive.scss */ /*tablet */
  .container {
    margin-left: auto;
    margin-right: auto;
    max-width: 768px;
    max-width: 48em;
    padding-left: 15px;
    padding-right: 15px;
  }
}
/*@media (min-width: 60em) and (max-width: 74.9em) {*/
  /* line 54, ../sass/layouts/_responsive.scss */
  /*.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 960px;
    max-width: 60em;
    padding-left: 15px;
    padding-right: 15px;
  }
}*/
@media (min-width: 60em) {
  /* line 64, ../sass/layouts/_responsive.scss */
  .container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    max-width: 75em;
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* Apply the shared properties of grid items in a single, efficient ruleset. */
/* line 80, ../sass/layouts/_responsive.scss */
#header_site,
#content,
#main_nav,
.region-sidebar-first,
.region-sidebar-second,
#footer_site {
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}

/* line 85, ../sass/layouts/_responsive.scss */
#content {
  clear: both;
}

/* Containers for grid items and flow items. */
/* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:before, #header:after,
#main:before,
#main:after,
#footer:before,
#footer:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:after,
#main:after,
#footer:after {
  clear: both;
}

/* Navigation bar */
@media all and (min-width: 480px) {
  /* line 96, ../sass/layouts/_responsive.scss */
  #main {
    /* Move all the children of #main down to make room. */
    position: relative;
    clear: both;
  }

  /* line 102, ../sass/layouts/_responsive.scss */
  #main_nav {
    /* Move the navbar up inside #main's padding. */
    top: 0;
    width: 100%;
  }
}
/**
 * Use 3 grid columns for smaller screens.
 */
@media all and (min-width: 480px) and (max-width: 959px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 123, ../sass/layouts/_responsive.scss */
  .sidebar-first {
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  /* line 125, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  /* line 130, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 138, ../sass/layouts/_responsive.scss */
  .sidebar-second {
    /* Span 2 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 3rd column from left. */
  }
  /* line 140, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: -66.66667%;
  }
  /* line 145, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 153, ../sass/layouts/_responsive.scss */
  .two-sidebars {
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Start a new row and span all 3 columns. */
  }
  /* line 155, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  /* line 160, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }
  /* line 165, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    padding-left: 0;
    padding-right: 0;
    clear: left;
    /* Apply the shared properties of grid items in a single, efficient ruleset. */
    /* Span 1 column, starting in the 1st column from left. */
    /* Span 1 column, starting in the 2nd column from left. */
    /* Span 1 column, starting in the 3rd column from left. */
  }
  /* line 171, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  /* line 175, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
    clear: left;
  }
  /* line 180, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
    float: left;
    width: 33.33333%;
    margin-left: 33.33333%;
    margin-right: -66.66667%;
  }
  /* line 184, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }
}
/**
 * Use 5 grid columns for larger screens.
 */
@media all and (min-width: 960px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 201, ../sass/layouts/_responsive.scss */
  .sidebar-first {
    /* Span 4 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  /* line 203, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 80%;
    margin-left: 20%;
    margin-right: -100%;
  }
  /* line 208, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 20%;
    margin-left: 0%;
    margin-right: -20%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 216, ../sass/layouts/_responsive.scss */
  .sidebar-second {
    /* Span 4 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  /* line 218, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 80%;
    margin-left: 0%;
    margin-right: -80%;
  }
  /* line 223, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 20%;
    margin-left: 80%;
    margin-right: -100%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 231, ../sass/layouts/_responsive.scss */
  .two-sidebars {
    /* Span 3 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  /* line 233, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 60%;
    margin-left: 20%;
    margin-right: -80%;
  }
  /* line 238, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 20%;
    margin-left: 0%;
    margin-right: -20%;
  }
  /* line 243, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 20%;
    margin-left: 80%;
    margin-right: -100%;
  }
}
/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
/* line 22, ../sass/components/_misc.scss */
.with-wireframes #header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
/* line 40, ../sass/components/_misc.scss */
.element-invisible,
.element-focusable,
#navigation .block-menu .block__title,
#navigation .block-menu-block .block__title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the element-invisible effect. */
/* line 45, ../sass/components/_misc.scss */
.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 */
/* line 62, ../sass/components/_misc.scss */
#skip-link {
  margin: 0;
}
/* line 66, ../sass/components/_misc.scss */
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/**
 * Branding header.
 */
/* Wrapping link for logo. */
/* line 81, ../sass/components/_misc.scss */
.header__logo {
  float: left;
  /* LTR */
  margin: 1rem 0;
  padding: 0;
}

/* Logo image. */
/* line 88, ../sass/components/_misc.scss */
.header__logo-image {
  vertical-align: bottom;
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* Wrapper for website name and slogan. */
/* line 96, ../sass/components/_misc.scss */
.header__name-and-slogan {
  float: left;
}

/* The name of the website. */
/* line 101, ../sass/components/_misc.scss */
.header__site-name {
  margin: 0;
  font-size: 2em;
  line-height: 1.5em;
}

/* The link around the name of the website. */
/* line 109, ../sass/components/_misc.scss */
.header__site-link:link, .header__site-link:visited {
  color: #000;
  text-decoration: none;
}
/* line 115, ../sass/components/_misc.scss */
.header__site-link:hover, .header__site-link:focus {
  text-decoration: underline;
}

/* The slogan (or tagline) of a website. */
/* line 121, ../sass/components/_misc.scss */
.header__site-slogan {
  margin: 0;
}

/* The secondary menu (login, etc.) */
/* line 126, ../sass/components/_misc.scss */
.header__secondary-menu {
  float: right;
  /* LTR */
}

/* Wrapper for any blocks placed in the header region. */
/**
 * Navigation bar.
 */
/* line 135, ../sass/components/_misc.scss */
#navigation {
  /* Sometimes you want to prevent overlapping with main div. */
  /* overflow: hidden; */
  /* Main menu and secondary menu links and menu block links. */
}
/* line 139, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 150, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 155, ../sass/components/_misc.scss */
#navigation .links li,
#navigation .menu li {
  /* A simple method to get navigation links to appear in one line. */
  float: left;
  /* LTR */
  padding: 0 10px 0 0;
  /* LTR */
  list-style-type: none;
  list-style-image: none;
}

/**
 * Breadcrumb navigation.
 */
/* line 169, ../sass/components/_misc.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 173, ../sass/components/_misc.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/**
 * Titles.
 */
/* line 189, ../sass/components/_misc.scss */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
}

/**
 * Messages.
 */
/* line 196, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.5em 0;
  padding: 10px 10px 10px 50px;
  /* LTR */
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAD6UlEQVR42s2WX0xbVRzH3YwmC4k+GF/0ZS/S267/bmnX9nL7bwstZlnbjTDYyoC5GCbB0ZW5pdJCe6swbLFA6bpWIGuRMWVjKGP+21QW3SZBSAjGh4XEaTZTH82Cm/3ztS2xs7mw4KLRk3xyzj33/H6fe5Pz7zEA/yr/vUDukj9FH6drqTaqT8EoPs/UV+nX6TD1BlUh9AqLHlmgPKLcRHmoCOWmElK/FOKTYpS8UwLJkASiUyLI3pKhlClN0g46qj+qL/pbArlbrlO1q25JeiSgR2iYJ8ywXLSg/qP6LNl2ro8+Q4MMkKCd9K2t3q3KdQnkXXIF5aISkgEJzONm1F2qW52pDJN1MI2bUBIuAdVOJWSMTPNQgX6/vkjVpvpREpag6oMqWCYta1IzbsHh9ga0RJtzY8URMdRO9U/KSuWmNQUqh2pY3CtG+fvlqJyofMAFNrZAE+7e/RWR4X4cD9tgOGsA2U2CdtMDqwqyMyIzQ5KKqAKmcyaYxkzYd3YvjGNGFtXRPRj58DT+LOemRrFnrBLyITmUDmUyO/NYgu2d26ukHVJo3tXAMGpAs+cQmh0NeClan30uwN7TgnQ6nRd4r3thOGOAJqYB2UVC79AfZAnKHGUxQa8A2tNaNLW/jKvXv8Dyb8s4yryKA4O10A3roIvpUB+swTdz1/LJZ27PQBvT5lBH1RD4BChzlQ2wBNtc22aE/ULQgzRCl4P5BPcT93GMOYz9wb2QhCRgAq35d8u/L2PXe7tADVGgBlcQ+AXQtmlvsP/gzbJZvp8PMkJCFBYh8m0knyiVSsHe0YIGZz1+/uVOvt8z7QGvnwf+ST5EIRHIUyR4fh50rbp5lsDcYR4ReAXgBrng9q/Qfa0bfy035r7Ot2dvz4IX4IEIEAXwvDzscOw4zxJUd1YfEXlE4Aa4BQHMlwzSSBeI7iXvoTxWDqKPYCFsFaKmr+YVliB0JfS89DVpiuhlB9k/tSOZTuYFvq98yI7L0/MAsVWcGp0bfW61hbahwltxSeARsIKyWKesSKQSWIwvYkvvllwfx88pgOvhwthu/AzAxlVX8vz385tLbaVxwpcLZtEw0QDjsBGctzksiE4CimZFfHp++oWHbnbuUfdB0komMgHsRN1r0MWBsEmYODF5onY92/UTwcvBxuzXcN1ccHycVSn2FaPYWwzCQUDWKIt7z3utAJ5c74Hz+OLSomynY+cVfiM/xW3JiDyZpB3FuZrj4oCwE+Ad4qWMjPHjpTtL0mzMoxyZz9yM39Q7Y85Ok930icqm+k59TL2wm9l90dZv8y/8sPAigGf/iUN/Q4anM2zOsdLe+L+4VfwBVVjDs2rTYx0AAAAASUVORK5CYII=');
  background-position: 8px 8px;
  /* LTR */
  background-repeat: no-repeat;
  border: 1px solid #be7;
}

/* line 211, ../sass/components/_misc.scss */
.messages--warning {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACuElEQVRIiWP4//8/Ay0xSYqntTpnT252zqeJBf0Njhsykrz/pyd6/e9vcNpGVQv6q2wlm0qc/r0+IPD/3UG+/61l9v9mdrjIUc2C7hqHUzc3S///eZwBjO9tF/vfWe1wjioWTKixVm8otPn38wQT3IKfxxn/t5Va/utpsNSg2ILWcttrNzdJgQ3+dpQRjEHs+9tE/zeXWt+gyILOamuTqlxrsOtPLub+7+emBsSq/88v5wL7oqHQ9H9nmbkF2RbUF1rev7lJEuziuU3i/90ddcB4UZsoJC62ifyvK7R4QJYFrcUGrmUZ5v9hYb9hosh/bzcDMN42VRgeF9W5hv8bi/XdSbagKtfs2c1NEvCIPbaQ/7+/pwkYn17Ki0hR24T/l2eZPCfJgsZ83dCiNOP/yCnn7iau/8G+5mD8aBsHSoqqyNL9X5erHUm0BcVpRm9ubhZHMoTh/4eDzP/DA23+RwTZ/P96hAlF7t5Wof8FyfpvibKgNk8noyDZ4D9quofg1Bjr/1kJlhjiIF+Upmn/r83RzCJoQXaC3qcbm8SwGMLwvybP/H8jMGlik7u7VeB/Zqz2J7wWVGdr1uTG62J1PQgfWST1/+hiCaxyIF8UJqv9r8hQrcVpQVqkzrcbG0WwGvB2H/P/lnx5MAaxsam5vYn3f2KY+jesFpSlqfZnxWjidP2OGWL/g/0swBjExu4Lhv958Ur/i5KU+lEsCA1lYI4JUv95bZ0gTo2Pt3P+z0myBmMQG5e6mxu4/kf4Kf8EmQm3oCRNebKrvSawIGPBqRG9sMOp5hjjfwdrlf/58bKT4RaUpWvtcLZV/39iscD/H0AFP46jYwYiMeP/44u4/9tbKQODSXUH3II9G7v18hI0n8YGKv+IDVT6joxj/BVx4mgcOCde/SnITPRUJAHEGlTCEkQV19TAAN8FC67hZdFXAAAAAElFTkSuQmCC');
  border-color: #ed5;
}

/* line 220, ../sass/components/_misc.scss */
.messages--error {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACpElEQVR42rWWTUgbQRiGQ0Tx4MWDeFM8eBA9iKAoggiCoCiiIiL4L3oQV1CJB0UEf6iRYFpK7UniTw9VSqL2kvQsVDBpSZrtRo35czVNW3oprRf17exSl4yzu1ikAy9h59vvedhkMrMGAGoxknAk2w8MJ/WosXThiZkZt9jdLeglPjn5ATc3mhJNuNjbK0QbG3ExMICL/n6IfX0gcxB7ekDAELu6IHZ2IlJbi1hLS1BLogmPtbUhMTv7oMSamzUlqnByMxLT0/8STQkDj9TV4ZLj5OysrODl8jIu5Gs68dFR7JG6dWkJ0fFx+TpSX89IDMnwcHU1yKec12Yz3rlc4HkeLwjkXJpPip3U3+7vIx6P4ymph4eG5PlwTQ0lMdytlmBxMWKtrXLeT0zA5XTibvj9fjxfXETkb/3N/Dz2dneVuiTZtliU/rPSUsQ5ziuxZYG03IIlJdKKUPJjdRUAKMmzuTnskB/VYbdTtd9HR4g2NCi9Z2VliDY1BSnBaUEBzsrLqXyzWCiQ9HU5HA4afniIUFWV0hOqqMBpURErOM7NxWlhIZOvCwvA7S3Uxq+DA5AnZ3pO8vJYQSArC8c5Oeqx2Rj4udeLQH6+6v2B7GxW8DkjA0JmJpONwUHY7XZGIAgCzCYTeJUewmIFfqMRfEoKlQ2yJbza2oLWcLvdeDI2hk/3+iQWKzAYkJzNjg5srq9TwJ9OJ76YTNScx+ORJT66X1/grKyEbW2NgfPp6XKd/JMZySrHaQsSU1Oe+0/w3WpVgyu5HBlR6lc+H8gioevDwz6JrWwV5+3txyoSFk5DcOX1MnCyJ4Vwfb1zt1UY9SR8aioDpuppaVpwZbPTl+hHF04dOKzk8XBF8DgJC3/woU/W/EciOtELOWi8DDwp//215Q+p7kiKh2lQSAAAAABJRU5ErkJggg==');
  border-color: #ed541d;
}

/* line 230, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

/* line 233, ../sass/components/_misc.scss */
.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
/* line 238, ../sass/components/_misc.scss */
.messages--error p.error {
  color: #333;
}

/* System status report. */
/* line 244, ../sass/components/_misc.scss */
.ok,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

/* line 249, ../sass/components/_misc.scss */
.warning,
.messages--warning {
  background-color: #fffce5;
  color: #840;
}

/* line 254, ../sass/components/_misc.scss */
.error,
.messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 264, ../sass/components/_misc.scss */
.tabs-primary, .tabs-secondary {
  overflow: hidden;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, transparent));
  background-image: -webkit-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: -moz-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: -o-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbbbbb \0/ie;
  margin: 1.5em 0;
  padding: 0 2px;
  white-space: nowrap;
}

/* line 274, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  float: left;
  /* LTR */
  margin: 0 3px;
}

/* line 278, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.5em;
  text-decoration: none;
}

/* Primary tabs. */
/* line 291, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  text-shadow: 1px 1px 0 white;
  border: 1px solid #bbbbbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

/* line 300, ../sass/components/_misc.scss */
.is-active.tabs-primary__tab {
  border-bottom-color: white;
}

/* line 306, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

/* line 316, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

/* line 320, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
  background-image: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -o-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  border-color: #fff;
}

/* Secondary tabs. */
/* line 344, ../sass/components/_misc.scss */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.5em;
}

/* line 351, ../sass/components/_misc.scss */
.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0.75em 3px;
}

/* line 357, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  -webkit-border-radius: 0.75em;
  -moz-border-radius: 0.75em;
  -ms-border-radius: 0.75em;
  -o-border-radius: 0.75em;
  border-radius: 0.75em;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-shadow: 1px 1px 0 white;
  background-color: #f2f2f2;
  color: #666;
  padding: 0 .5em;
}

/* line 366, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}

/* line 371, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
/* line 399, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 403, ../sass/components/_misc.scss */
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

/* The inline field label used by the Fences module. */
/* line 411, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

/**
 * "More" links.
 */
/* line 418, ../sass/components/_misc.scss */
.more-link {
  text-align: right;
  /* LTR */
}

/* line 421, ../sass/components/_misc.scss */
.more-help-link {
  text-align: right;
  /* LTR */
}

/* line 424, ../sass/components/_misc.scss */
.more-help-link a {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC');
  background-position: 0 50%;
  /* LTR */
  background-repeat: no-repeat;
  padding: 1px 0 1px 20px;
  /* LTR */
}

/**
 * Pager.
 */
/* A list of page numbers when more than 1 page of content is available. */
/* line 439, ../sass/components/_misc.scss */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

/* line 444, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis, .pager-current {
  display: inline;
  padding: 0 0.5em;
  list-style-type: none;
  background-image: none;
}

/* line 456, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis {
  /* A concatenation of several list items using an ellipsis. */
}

/* The current page's list item. */
/* line 461, ../sass/components/_misc.scss */
.pager-current {
  font-weight: bold;
}

/**
 * Blocks.
 */
/* Block wrapper. */
/* line 471, ../sass/components/_misc.scss */
.block {
  margin-bottom: 1.5em;
}

/**
 * Menus.
 */
/* line 478, ../sass/components/_misc.scss */
.menu__item.is-leaf {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHBAMAAAA2fErgAAAAD1BMVEX///+/v7+Li4sAAADAwMBFvsw8AAAAAXRSTlMAQObYZgAAAB1JREFUCFtjYAADYwMGBmYVZSDhKAwkFJWhYiAAAB2+Aa/9ugeaAAAAAElFTkSuQmCC');
  list-style-type: square;
}

/* line 485, ../sass/components/_misc.scss */
.menu__item.is-expanded {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  list-style-type: circle;
}

/* line 492, ../sass/components/_misc.scss */
.menu__item.is-collapsed {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  list-style-type: disc;
}

/* The active item in a Drupal menu. */
/* line 501, ../sass/components/_misc.scss */
.menu a.active {
  color: #000;
}

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
/* line 511, ../sass/components/_misc.scss */
.new,
.update {
  color: #c00;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
}

/**
 * Unpublished note.
 */
/* The word "Unpublished" displayed underneath the content. */
/* line 522, ../sass/components/_misc.scss */
.unpublished {
  height: 0;
  overflow: visible;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  /* A very nice CSS3 property. */
  word-wrap: break-word;
}

/**
 * Comments.
 */
/* Wrapper for the list of comments and its title. */
/* line 550, ../sass/components/_misc.scss */
.comments {
  margin: 1.5em 0;
}

/* Preview of the comment before submitting new or updated comment. */
/* line 555, ../sass/components/_misc.scss */
.comment-preview {
  /* Drupal core will use a #ffffea background. See #1110842. */
  background-color: #ffffea;
}

/* Wrapper for a single comment. */
/* line 561, ../sass/components/_misc.scss */
.comment {
  /* Comment's permalink wrapper. */
}
/* line 564, ../sass/components/_misc.scss */
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* Nested comments are indented. */
/* line 571, ../sass/components/_misc.scss */
.indented {
  /* Drupal core uses a 25px left margin. */
  margin-left: 30px;
  /* LTR */
}

/**
 * Forms.
 */
/* Wrapper for a form element (or group of form elements) and its label. */
/* line 581, ../sass/components/_misc.scss */
.form-item {
  margin: 1.5em 0;
  /* Pack groups of checkboxes and radio buttons closer together. */
  /* Form items in a table. */
  /* Highlight the form elements that caused a form submission error. */
  /* The descriptive help text (separate from the label). */
}
/* line 586, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 593, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 600, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 605, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

/* line 612, ../sass/components/_misc.scss */
.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

/* The part of the label that indicates a required field. */
/* line 618, ../sass/components/_misc.scss */
.form-required {
  color: #c00;
}

/* Labels for radios and checkboxes. */
/* line 623, ../sass/components/_misc.scss */
label.option {
  display: inline;
  font-weight: normal;
}

/* Buttons used by contrib modules like Media. */
/* line 629, ../sass/components/_misc.scss */
a.button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

/* Password confirmation. */
/* line 635, ../sass/components/_misc.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
/* line 640, ../sass/components/_misc.scss */
#user-login-form {
  text-align: left;
  /* LTR */
}

/**
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */
/* OpenID creates a new ul above the login form's links. */
/* line 652, ../sass/components/_misc.scss */
.openid-links {
  /* Position OpenID's ul next to the rest of the links. */
  margin-bottom: 0;
}

/* The "Log in using OpenID" and "Cancel OpenID login" links. */
/* line 659, ../sass/components/_misc.scss */
.openid-link,
.user-link {
  margin-top: 1.5em;
}

/* line 663, ../sass/components/_misc.scss */
html.js #user-login-form li.openid-link,
#user-login-form li.openid-link {
  /* Un-do some of the padding on the ul list. */
  margin-left: -20px;
  /* LTR */
}

/* line 667, ../sass/components/_misc.scss */
#user-login ul {
  margin: 1.5em 0;
}

/**
 * Drupal admin tables.
 */
/* line 675, ../sass/components/_misc.scss */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
/* line 680, ../sass/components/_misc.scss */
form tbody {
  border-top: 1px solid #ccc;
}
/* line 683, ../sass/components/_misc.scss */
form table ul {
  margin: 0;
}

/* line 688, ../sass/components/_misc.scss */
tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

/* line 693, ../sass/components/_misc.scss */
tr.even {
  background-color: #fff;
}

/* Markup generated by theme_tablesort_indicator(). */
/* line 708, ../sass/components/_misc.scss */
td.active {
  background-color: #ddd;
}

/* Center checkboxes inside table cell. */
/* line 714, ../sass/components/_misc.scss */
td.checkbox,
th.checkbox {
  text-align: center;
}

/* Drupal core wrongly puts this in system.menus.css. Since we override that, add it back. */
/* line 719, ../sass/components/_misc.scss */
td.menu-disabled {
  background: #ccc;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list. */
/* line 730, ../sass/components/_misc.scss */
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 741, ../sass/components/_misc.scss */
html.js .collapsible .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  background-position: 5px 65%;
  /* LTR */
  background-repeat: no-repeat;
  padding-left: 15px;
  /* LTR */
}
/* line 750, ../sass/components/_misc.scss */
html.js .collapsed .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  background-position: 5px 50%;
  /* LTR */
}
/* line 757, ../sass/components/_misc.scss */
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
/* line 769, ../sass/components/_misc.scss */
tr.drag {
  background-color: #fffff0;
}

/* line 772, ../sass/components/_misc.scss */
tr.drag-previous {
  background-color: #ffd;
}

/* line 775, ../sass/components/_misc.scss */
.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
/* line 784, ../sass/components/_misc.scss */
tr.selected td {
  background: #ffc;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
/* line 793, ../sass/components/_misc.scss */
.progress {
  font-weight: bold;
}
/* line 796, ../sass/components/_misc.scss */
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
/* line 802, ../sass/components/_misc.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1428463494');
}

/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved front-end performance.
 */
@media print {
  /* Underline all links. */
  /* line 16, ../sass/_print.scss */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  /* line 20, ../sass/_print.scss */
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }

  /* line 25, ../sass/_print.scss */
  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  /* line 27, ../sass/_print.scss */
  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 1rem;
  }
  /* line 35, ../sass/_print.scss */
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  /* line 40, ../sass/_print.scss */
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  /* line 46, ../sass/_print.scss */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Turn off any background colors or images. */
  /* line 57, ../sass/_print.scss */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  /* line 77, ../sass/_print.scss */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
/* SMACSS theme rules */
/* line 11, ../sass/catstrap/catstrap.scss */
#header_site ul.menu {
  padding: 0;
  margin: 0;
  border: 0 none;
  text-align: right;
}
/* line 16, ../sass/catstrap/catstrap.scss */
#header_site ul.menu li {
  list-style: none;
  display: inline-block;
  padding: 0 .6rem;
  text-align: left;
}
/* line 21, ../sass/catstrap/catstrap.scss */
#header_site ul.menu li a {
  font-size: 1rem;
  text-decoration: none;
  color: #6b868d;
  text-transform: none;
  font-family: MiloWeb-Text, sans-serif;
  font-weight: normal;
}
/* line 28, ../sass/catstrap/catstrap.scss */
#header_site ul.menu li a:hover {
  text-decoration: underline;
}

/*!
 * Bootstrap v3.3.2 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/* Import Milo Fonts */
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  /* line 49, ../sass/catstrap/catstrap.scss */
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }

  /* line 57, ../sass/catstrap/catstrap.scss */
  a,
  a:visited {
    text-decoration: underline;
  }

  /* line 60, ../sass/catstrap/catstrap.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }

  /* line 63, ../sass/catstrap/catstrap.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 67, ../sass/catstrap/catstrap.scss */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  /* line 71, ../sass/catstrap/catstrap.scss */
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 76, ../sass/catstrap/catstrap.scss */
  thead {
    display: table-header-group;
  }

  /* line 80, ../sass/catstrap/catstrap.scss */
  tr,
  img {
    page-break-inside: avoid;
  }

  /* line 83, ../sass/catstrap/catstrap.scss */
  img {
    max-width: 100% !important;
  }

  /* line 88, ../sass/catstrap/catstrap.scss */
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 93, ../sass/catstrap/catstrap.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }

  /* line 96, ../sass/catstrap/catstrap.scss */
  select {
    background: #fff !important;
  }

  /* line 99, ../sass/catstrap/catstrap.scss */
  .navbar {
    display: none;
  }

  /* line 103, ../sass/catstrap/catstrap.scss */
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }

  /* line 106, ../sass/catstrap/catstrap.scss */
  .label {
    border: 1px solid #000;
  }

  /* line 109, ../sass/catstrap/catstrap.scss */
  .table {
    border-collapse: collapse !important;
  }

  /* line 113, ../sass/catstrap/catstrap.scss */
  .table td,
  .table th {
    background-color: #fff !important;
  }

  /* line 117, ../sass/catstrap/catstrap.scss */
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
/* line 121, ../sass/catstrap/catstrap.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 127, ../sass/catstrap/catstrap.scss */
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 132, ../sass/catstrap/catstrap.scss */
html {
  font-size: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* line 137, ../sass/catstrap/catstrap.scss */
body {
  font-family: MiloWeb, Verdana, Geneva, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}

/* line 148, ../sass/catstrap/catstrap.scss */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 153, ../sass/catstrap/catstrap.scss */
a {
  color: #395180;
  text-decoration: none;
  font-weight: bold;
}

/* line 159, ../sass/catstrap/catstrap.scss */
a:hover,
a:focus {
  /*color: #63000B;*/
  text-decoration: underline;
}

/* line 163, ../sass/catstrap/catstrap.scss */
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 168, ../sass/catstrap/catstrap.scss */
a, button {
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

/* line 174, ../sass/catstrap/catstrap.scss */
figure {
  margin: 0;
}

/* line 177, ../sass/catstrap/catstrap.scss */
img {
  vertical-align: middle;
}

/* line 184, ../sass/catstrap/catstrap.scss */
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* line 189, ../sass/catstrap/catstrap.scss */
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

/* line 206, ../sass/catstrap/catstrap.scss */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

/* line 213, ../sass/catstrap/catstrap.scss */
h1,
.h1 {
  margin-top: 0;
  margin-bottom: 0.5em;
}

/* line 221, ../sass/catstrap/catstrap.scss */
h2,
.h2,
h3,
.h3 {
  margin-top: 1em;
  margin-bottom: 0.5em;
}

/* line 230, ../sass/catstrap/catstrap.scss */
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 235, ../sass/catstrap/catstrap.scss */
h1,
.h1 {
  font-size: 50px;
  font-size: 3.125rem;
  font-family: MiloSerifWeb, TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  text-transform: uppercase;
  color: #49595E;
}

/* line 244, ../sass/catstrap/catstrap.scss */
h2,
.h2 {
  font-size: 36px;
  font-size: 2.25rem;
  font-family: MiloSerifWeb, TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  /*text-transform: uppercase;*/
  color: #49595E;
}

/* line 252, ../sass/catstrap/catstrap.scss */
h3,
.h3 {
  font-size: 24px;
  font-size: 1.5rem;
  color: #395180;
  font-weight: 700;
  text-transform: uppercase;
}

/* line 260, ../sass/catstrap/catstrap.scss */
h4,
.h4 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

/* line 266, ../sass/catstrap/catstrap.scss */
h5,
.h5 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

/* line 272, ../sass/catstrap/catstrap.scss */
h6,
.h6 {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* line 277, ../sass/catstrap/catstrap.scss */
p {
  margin: 0 0 16px;
  margin: 0 0 1rem;
}

/* line 281, ../sass/catstrap/catstrap.scss */
.lead {
  margin-bottom: 20px;
  margin-bottom: 1.2rem;
  font-size: 18px;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
  color: #49595E;
}

@media (min-width: 768px) {
  /* line 291, ../sass/catstrap/catstrap.scss */
  .lead {
    font-size: 24px;
    font-size: 1.4rem;
  }
}
/* line 297, ../sass/catstrap/catstrap.scss */
small,
.small {
  font-size: 85%;
}

/* line 301, ../sass/catstrap/catstrap.scss */
mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3;
}

/* line 305, ../sass/catstrap/catstrap.scss */
.text-left {
  text-align: left;
}

/* line 308, ../sass/catstrap/catstrap.scss */
.text-right {
  text-align: right;
}

/* line 311, ../sass/catstrap/catstrap.scss */
.text-center {
  text-align: center;
}

/* line 314, ../sass/catstrap/catstrap.scss */
.text-justify {
  text-align: justify;
}

/* line 317, ../sass/catstrap/catstrap.scss */
.text-nowrap {
  white-space: nowrap;
}

/* line 320, ../sass/catstrap/catstrap.scss */
.text-lowercase {
  text-transform: lowercase;
}

/* line 323, ../sass/catstrap/catstrap.scss */
.text-uppercase {
  text-transform: uppercase;
}

/* line 326, ../sass/catstrap/catstrap.scss */
.text-capitalize {
  text-transform: capitalize;
}

/* line 329, ../sass/catstrap/catstrap.scss */
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #ab0520;
  background-color: #f9f2f4;
}

/* line 336, ../sass/catstrap/catstrap.scss */
ul,
ol {
  margin-top: 0;
  margin-bottom: 0.625em;
  padding-left: 16px;
  padding-left: 1rem;
}

/* line 345, ../sass/catstrap/catstrap.scss */
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}

/* line 348, ../sass/catstrap/catstrap.scss */
ul.triangle li {
  padding-left: 5px;
  padding-left: 0.3em;
  position: relative;
  list-style: none;
}

/* line 354, ../sass/catstrap/catstrap.scss */
ul.triangle li:before {
  position: absolute;
  top: 8px;
  left: -15px;
  width: 0px;
  height: 0px;
  border-top: 8px solid #395180;
  border-left: 8px solid rgba(0, 0, 0, 0);
  content: '';
}

/* line 364, ../sass/catstrap/catstrap.scss */
ul.triangle a {
  color: #395180;
}

/* line 367, ../sass/catstrap/catstrap.scss */
dl {
  margin-top: 0;
  margin-bottom: 1em;
}

/* line 372, ../sass/catstrap/catstrap.scss */
dt,
dd {
  line-height: 1.42857143;
}

/* line 375, ../sass/catstrap/catstrap.scss */
dt {
  font-weight: bold;
}

/* line 378, ../sass/catstrap/catstrap.scss */
dd {
  margin-left: 0;
}

@media (min-width: 768px) {
  /* line 382, ../sass/catstrap/catstrap.scss */
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* line 391, ../sass/catstrap/catstrap.scss */
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
/* line 396, ../sass/catstrap/catstrap.scss */
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777;
}

/* line 401, ../sass/catstrap/catstrap.scss */
table {
  background-color: transparent;
}

/* line 404, ../sass/catstrap/catstrap.scss */
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: left;
}

/* line 410, ../sass/catstrap/catstrap.scss */
th {
  text-align: left;
}

/* Catstrap Table */
/* line 414, ../sass/catstrap/catstrap.scss */
table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  border: 1px solid #fff;
  font-size: 18px;
  font-size: 1.125rem;
}

/* line 427, ../sass/catstrap/catstrap.scss */
table > thead > tr > th,
table > tbody > tr > th,
table > tfoot > tr > th,
table > thead > tr > td,
table > tbody > tr > td,
table > tfoot > tr > td {
  padding: 10px;
  line-height: 1.42857143;
  vertical-align: top;
  border: 1px solid #fff;
}

/* line 433, ../sass/catstrap/catstrap.scss */
table > thead > tr > th {
  vertical-align: bottom;
  background: #49595e;
  color: #fff;
  font-size: 20px;
  font-size: 1.3rem;
  text-transform: uppercase;
  padding-left: 12px;
  line-height: 1;
}

/* line 444, ../sass/catstrap/catstrap.scss */
table > thead > tr > th,
table > thead > tr > td {
  border-bottom-width: 1px;
}

/* line 447, ../sass/catstrap/catstrap.scss */
table > tbody > tr > td {
  background: #fff;
  color: #49595e;
}

/* line 456, ../sass/catstrap/catstrap.scss */
table > caption + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > th,
table > thead:first-child > tr:first-child > th,
table > caption + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > td,
table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

/* line 459, ../sass/catstrap/catstrap.scss */
table > tbody + tbody {
  border-top: 2px solid #ddd;
}

/* line 462, ../sass/catstrap/catstrap.scss */
table table {
  background-color: #fff;
}

/* line 465, ../sass/catstrap/catstrap.scss */
table > tbody > tr:nth-of-type(odd) > td, table > tbody > tr:nth-of-type(odd) > th {
  background-color: #EEF1F1;
}

/* line 468, ../sass/catstrap/catstrap.scss */
table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}

/* line 474, ../sass/catstrap/catstrap.scss */
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}

/* line 480, ../sass/catstrap/catstrap.scss */
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #546581;
  color: #fff;
}

/* line 484, ../sass/catstrap/catstrap.scss */
.table-responsive {
  min-height: .01%;
  overflow-x: auto;
}

@media screen and (max-width: 767px) {
  /* line 489, ../sass/catstrap/catstrap.scss */
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }

  /* line 496, ../sass/catstrap/catstrap.scss */
  .table-responsive > table {
    margin-bottom: 0;
  }

  /* line 504, ../sass/catstrap/catstrap.scss */
  .table-responsive > table > thead > tr > th,
  .table-responsive > table > tbody > tr > th,
  .table-responsive > table > tfoot > tr > th,
  .table-responsive > table > thead > tr > td,
  .table-responsive > table > tbody > tr > td,
  .table-responsive > table > tfoot > tr > td {
    white-space: nowrap;
  }

  /* line 507, ../sass/catstrap/catstrap.scss */
  .table-responsive > table {
    border: 0;
  }

  /* line 515, ../sass/catstrap/catstrap.scss */
  .table-responsive > table > thead > tr > th:first-child,
  .table-responsive > table > tbody > tr > th:first-child,
  .table-responsive > table > tfoot > tr > th:first-child,
  .table-responsive > table > thead > tr > td:first-child,
  .table-responsive > table > tbody > tr > td:first-child,
  .table-responsive > table > tfoot > tr > td:first-child {
    border-left: 0;
  }

  /* line 523, ../sass/catstrap/catstrap.scss */
  .table-responsive > table > thead > tr > th:last-child,
  .table-responsive > table > tbody > tr > th:last-child,
  .table-responsive > table > tfoot > tr > th:last-child,
  .table-responsive > table > thead > tr > td:last-child,
  .table-responsive > table > tbody > tr > td:last-child,
  .table-responsive > table > tfoot > tr > td:last-child {
    border-right: 0;
  }

  /* line 529, ../sass/catstrap/catstrap.scss */
  .table-responsive > table > tbody > tr:last-child > th,
  .table-responsive > table > tfoot > tr:last-child > th,
  .table-responsive > table > tbody > tr:last-child > td,
  .table-responsive > table > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
/* line 533, ../sass/catstrap/catstrap.scss */
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* line 539, ../sass/catstrap/catstrap.scss */
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

/* line 550, ../sass/catstrap/catstrap.scss */
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  color: #49595E;
  font-size: 24px;
  font-size: 1.5rem;
}

/* line 558, ../sass/catstrap/catstrap.scss */
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 564, ../sass/catstrap/catstrap.scss */
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

/* line 569, ../sass/catstrap/catstrap.scss */
input[type="file"] {
  display: block;
}

/* line 572, ../sass/catstrap/catstrap.scss */
input[type="range"] {
  display: block;
  width: 100%;
}

/* line 577, ../sass/catstrap/catstrap.scss */
select[multiple],
select[size] {
  height: auto;
}

/* line 582, ../sass/catstrap/catstrap.scss */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 587, ../sass/catstrap/catstrap.scss */
output {
  display: block;
  padding-top: 7px;
  font-size: 0.875rem;
  line-height: 1.42857143;
  color: #555;
}

/* line 594, ../sass/catstrap/catstrap.scss */
.form-control {
  display: block;
  width: 50%;
  height: 2.5rem;
  height: 40px;
  padding: 6px 12px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.42857143;
  color: #647980;
  background-color: #eef1f1;
  background-image: none;
  border: 0;
  -webkit-box-shadow: 0;
  box-shadow: 0;
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

@media (max-width: 768px) {
  /* line 614, ../sass/catstrap/catstrap.scss */
  .form-control {
    width: 100%;
  }
}
/* line 618, ../sass/catstrap/catstrap.scss */
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

/* line 624, ../sass/catstrap/catstrap.scss */
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

/* line 628, ../sass/catstrap/catstrap.scss */
.form-control:-ms-input-placeholder {
  color: #999;
}

/* line 631, ../sass/catstrap/catstrap.scss */
.form-control::-webkit-input-placeholder {
  color: #999;
}

/* line 636, ../sass/catstrap/catstrap.scss */
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eee;
  opacity: 1;
}

/* line 641, ../sass/catstrap/catstrap.scss */
textarea.form-control {
  height: auto;
}

/* line 644, ../sass/catstrap/catstrap.scss */
input[type="search"] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* line 651, ../sass/catstrap/catstrap.scss */
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"] {
    line-height: 34px;
  }

  /* line 661, ../sass/catstrap/catstrap.scss */
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }

  /* line 671, ../sass/catstrap/catstrap.scss */
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
/* line 675, ../sass/catstrap/catstrap.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 679, ../sass/catstrap/catstrap.scss */
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 686, ../sass/catstrap/catstrap.scss */
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
  font-size: 16px;
  font-size: 1rem;
}

/* line 698, ../sass/catstrap/catstrap.scss */
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
  /*display: none;*/
}

/* line 705, ../sass/catstrap/catstrap.scss */
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

/* line 709, ../sass/catstrap/catstrap.scss */
.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}

/* line 718, ../sass/catstrap/catstrap.scss */
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

/* line 727, ../sass/catstrap/catstrap.scss */
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}

/* line 733, ../sass/catstrap/catstrap.scss */
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

/* line 739, ../sass/catstrap/catstrap.scss */
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}

/* line 742, ../sass/catstrap/catstrap.scss */
.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}

/* line 748, ../sass/catstrap/catstrap.scss */
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}

/* line 752, ../sass/catstrap/catstrap.scss */
.has-feedback {
  position: relative;
}

/* line 755, ../sass/catstrap/catstrap.scss */
.has-feedback .form-control {
  padding-right: 42.5px;
}

/* line 758, ../sass/catstrap/catstrap.scss */
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}

/* line 770, ../sass/catstrap/catstrap.scss */
.input-lg + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

/* line 775, ../sass/catstrap/catstrap.scss */
.input-sm + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* line 789, ../sass/catstrap/catstrap.scss */
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}

/* line 792, ../sass/catstrap/catstrap.scss */
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 797, ../sass/catstrap/catstrap.scss */
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

/* line 802, ../sass/catstrap/catstrap.scss */
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}

/* line 807, ../sass/catstrap/catstrap.scss */
.has-success .form-control-feedback {
  color: #3c763d;
}

/* line 819, ../sass/catstrap/catstrap.scss */
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}

/* line 822, ../sass/catstrap/catstrap.scss */
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 827, ../sass/catstrap/catstrap.scss */
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

/* line 832, ../sass/catstrap/catstrap.scss */
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}

/* line 837, ../sass/catstrap/catstrap.scss */
.has-warning .form-control-feedback {
  color: #8a6d3b;
}

/* line 849, ../sass/catstrap/catstrap.scss */
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}

/* line 852, ../sass/catstrap/catstrap.scss */
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 857, ../sass/catstrap/catstrap.scss */
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

/* line 862, ../sass/catstrap/catstrap.scss */
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}

/* line 867, ../sass/catstrap/catstrap.scss */
.has-error .form-control-feedback {
  color: #a94442;
}

/* line 870, ../sass/catstrap/catstrap.scss */
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}

/* line 873, ../sass/catstrap/catstrap.scss */
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

/* line 876, ../sass/catstrap/catstrap.scss */
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  /* line 883, ../sass/catstrap/catstrap.scss */
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }

  /* line 888, ../sass/catstrap/catstrap.scss */
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  /* line 893, ../sass/catstrap/catstrap.scss */
  .form-inline .form-control-static {
    display: inline-block;
  }

  /* line 896, ../sass/catstrap/catstrap.scss */
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }

  /* line 902, ../sass/catstrap/catstrap.scss */
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }

  /* line 905, ../sass/catstrap/catstrap.scss */
  .form-inline .input-group > .form-control {
    width: 100%;
  }

  /* line 908, ../sass/catstrap/catstrap.scss */
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }

  /* line 913, ../sass/catstrap/catstrap.scss */
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }

  /* line 920, ../sass/catstrap/catstrap.scss */
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }

  /* line 924, ../sass/catstrap/catstrap.scss */
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }

  /* line 928, ../sass/catstrap/catstrap.scss */
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
/* line 933, ../sass/catstrap/catstrap.scss */
.btn {
  display: inline-block;
  padding: 6px 12px;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.42857143;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 0;
  letter-spacing: 0.05em;
}

/* line 962, ../sass/catstrap/catstrap.scss */
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 969, ../sass/catstrap/catstrap.scss */
.btn:hover,
.btn:focus,
.btn.focus {
  text-decoration: none;
}

/* line 973, ../sass/catstrap/catstrap.scss */
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* line 981, ../sass/catstrap/catstrap.scss */
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: .65;
}

/* line 989, ../sass/catstrap/catstrap.scss */
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}

/* line 999, ../sass/catstrap/catstrap.scss */
.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

/* line 1006, ../sass/catstrap/catstrap.scss */
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}

/* line 1026, ../sass/catstrap/catstrap.scss */
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}

/* line 1030, ../sass/catstrap/catstrap.scss */
.btn-red {
  color: #fff;
  background-color: #ab0520;
}

/* line 1039, ../sass/catstrap/catstrap.scss */
.btn-red:hover,
.btn-red:focus,
.btn-red.focus,
.btn-red:active,
.btn-red.active,
.open > .dropdown-toggle.btn-red {
  color: #fff;
  background-color: #CC665E;
}

/* line 1045, ../sass/catstrap/catstrap.scss */
.btn-red:active,
.btn-red.active,
.open > .dropdown-toggle.btn-red {
  background-image: none;
}

/* line 1065, ../sass/catstrap/catstrap.scss */
.btn-red.disabled,
.btn-red[disabled],
fieldset[disabled] .btn-red,
.btn-red.disabled:hover,
.btn-red[disabled]:hover,
fieldset[disabled] .btn-red:hover,
.btn-red.disabled:focus,
.btn-red[disabled]:focus,
fieldset[disabled] .btn-red:focus,
.btn-red.disabled.focus,
.btn-red[disabled].focus,
fieldset[disabled] .btn-red.focus,
.btn-red.disabled:active,
.btn-red[disabled]:active,
fieldset[disabled] .btn-red:active,
.btn-red.disabled.active,
.btn-red[disabled].active,
fieldset[disabled] .btn-red.active {
  background-color: #ab0520;
}

/* line 1068, ../sass/catstrap/catstrap.scss */
.btn-blue {
  color: #fff;
  background-color: #0C234B;
}

/* line 1077, ../sass/catstrap/catstrap.scss */
.btn-blue:hover,
.btn-blue:focus,
.btn-blue.focus,
.btn-blue:active,
.btn-blue.active,
.open > .dropdown-toggle.btn-blue {
  color: #fff;
  background-color: #395180;
}

/* line 1083, ../sass/catstrap/catstrap.scss */
.btn-blue:active,
.btn-blue.active,
.open > .dropdown-toggle.btn-blue {
  background-image: none;
}

/* line 1103, ../sass/catstrap/catstrap.scss */
.btn-blue.disabled,
.btn-blue[disabled],
fieldset[disabled] .btn-blue,
.btn-blue.disabled:hover,
.btn-blue[disabled]:hover,
fieldset[disabled] .btn-blue:hover,
.btn-blue.disabled:focus,
.btn-blue[disabled]:focus,
fieldset[disabled] .btn-blue:focus,
.btn-blue.disabled.focus,
.btn-blue[disabled].focus,
fieldset[disabled] .btn-blue.focus,
.btn-blue.disabled:active,
.btn-blue[disabled]:active,
fieldset[disabled] .btn-blue:active,
.btn-blue.disabled.active,
.btn-blue[disabled].active,
fieldset[disabled] .btn-blue.active {
  background-color: #0C234B;
}

/* line 1108, ../sass/catstrap/catstrap.scss */
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 26px;
  padding: 0.625rem 1.625rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333;
}

/* line 1116, ../sass/catstrap/catstrap.scss */
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 0.75rem;
  line-height: 1.5;
}

/* line 1121, ../sass/catstrap/catstrap.scss */
.btn-block {
  display: block;
  width: 100%;
}

/* line 1125, ../sass/catstrap/catstrap.scss */
.btn-block + .btn-block {
  margin-top: 5px;
}

/* line 1130, ../sass/catstrap/catstrap.scss */
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

/* line 1133, ../sass/catstrap/catstrap.scss */
.btn-arrow:after {
  content: " »";
}

/* line 1136, ../sass/catstrap/catstrap.scss */
.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  -o-transition: opacity .15s linear;
  transition: opacity .15s linear;
}

/* line 1142, ../sass/catstrap/catstrap.scss */
.fade.in {
  opacity: 1;
}

/*.collapse {
  display: none;
  visibility: hidden;
}*/
/* line 1149, ../sass/catstrap/catstrap.scss */
.collapse.in {
  display: block;
  visibility: visible;
}

/* line 1153, ../sass/catstrap/catstrap.scss */
tr.collapse.in {
  display: table-row;
}

/* line 1156, ../sass/catstrap/catstrap.scss */
tbody.collapse.in {
  display: table-row-group;
}

/* line 1159, ../sass/catstrap/catstrap.scss */
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .35s;
  -o-transition-duration: .35s;
  transition-duration: .35s;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
}

/* line 1177, ../sass/catstrap/catstrap.scss */
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* line 1182, ../sass/catstrap/catstrap.scss */
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

/* line 1187, ../sass/catstrap/catstrap.scss */
.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}

/* line 1192, ../sass/catstrap/catstrap.scss */
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

/* line 1201, ../sass/catstrap/catstrap.scss */
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 1.125rem;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 1210, ../sass/catstrap/catstrap.scss */
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}

/* line 1219, ../sass/catstrap/catstrap.scss */
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}

/* line 1224, ../sass/catstrap/catstrap.scss */
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 0.75rem;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 1233, ../sass/catstrap/catstrap.scss */
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}

/* line 1242, ../sass/catstrap/catstrap.scss */
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}

/* line 1247, ../sass/catstrap/catstrap.scss */
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}

/* line 1252, ../sass/catstrap/catstrap.scss */
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* line 1256, ../sass/catstrap/catstrap.scss */
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

/* line 1261, ../sass/catstrap/catstrap.scss */
.input-group-addon {
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 1272, ../sass/catstrap/catstrap.scss */
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 0.75rem;
  border-radius: 3px;
}

/* line 1277, ../sass/catstrap/catstrap.scss */
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 1.125rem;
  border-radius: 6px;
}

/* line 1283, ../sass/catstrap/catstrap.scss */
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

/* line 1292, ../sass/catstrap/catstrap.scss */
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 1296, ../sass/catstrap/catstrap.scss */
.input-group-addon:first-child {
  border-right: 0;
}

/* line 1305, ../sass/catstrap/catstrap.scss */
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 1309, ../sass/catstrap/catstrap.scss */
.input-group-addon:last-child {
  border-left: 0;
}

/* line 1312, ../sass/catstrap/catstrap.scss */
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

/* line 1317, ../sass/catstrap/catstrap.scss */
.input-group-btn > .btn {
  position: relative;
}

/* line 1320, ../sass/catstrap/catstrap.scss */
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}

/* line 1325, ../sass/catstrap/catstrap.scss */
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}

/* line 1329, ../sass/catstrap/catstrap.scss */
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}

/* line 1333, ../sass/catstrap/catstrap.scss */
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  margin-left: -1px;
}

/* line 1336, ../sass/catstrap/catstrap.scss */
.breadcrumb {
  padding: 0.5em 1em 0.5em 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 1341, ../sass/catstrap/catstrap.scss */
.breadcrumb a {
  color: #666;
  font-weight: normal;
}

/* line 1345, ../sass/catstrap/catstrap.scss */
.breadcrumb > li {
  display: inline-block;
}

/* line 1348, ../sass/catstrap/catstrap.scss */
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}

/* line 1353, ../sass/catstrap/catstrap.scss */
.breadcrumb > .active {
  color: #333;
}

/* line 1356, ../sass/catstrap/catstrap.scss */
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

/* line 1369, ../sass/catstrap/catstrap.scss */
a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 1374, ../sass/catstrap/catstrap.scss */
.label:empty {
  display: none;
}

/* line 1377, ../sass/catstrap/catstrap.scss */
.btn .label {
  position: relative;
  top: -1px;
}

/* line 1381, ../sass/catstrap/catstrap.scss */
.label-default {
  background-color: #777;
}

/* line 1385, ../sass/catstrap/catstrap.scss */
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}

/* line 1388, ../sass/catstrap/catstrap.scss */
.label-primary {
  background-color: #337ab7;
}

/* line 1392, ../sass/catstrap/catstrap.scss */
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090;
}

/* line 1395, ../sass/catstrap/catstrap.scss */
.label-success {
  background-color: #5cb85c;
}

/* line 1399, ../sass/catstrap/catstrap.scss */
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}

/* line 1402, ../sass/catstrap/catstrap.scss */
.label-info {
  background-color: #5bc0de;
}

/* line 1406, ../sass/catstrap/catstrap.scss */
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}

/* line 1409, ../sass/catstrap/catstrap.scss */
.label-warning {
  background-color: #f0ad4e;
}

/* line 1413, ../sass/catstrap/catstrap.scss */
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}

/* line 1416, ../sass/catstrap/catstrap.scss */
.label-danger {
  background-color: #d9534f;
}

/* line 1420, ../sass/catstrap/catstrap.scss */
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}

/* line 1452, ../sass/catstrap/catstrap.scss */
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}

/* line 1470, ../sass/catstrap/catstrap.scss */
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after {
  clear: both;
}

/* line 1473, ../sass/catstrap/catstrap.scss */
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

/* line 1478, ../sass/catstrap/catstrap.scss */
.pull-right {
  float: right !important;
}

/* line 1481, ../sass/catstrap/catstrap.scss */
.pull-left {
  float: left !important;
}

/* line 1484, ../sass/catstrap/catstrap.scss */
.hide {
  display: none !important;
}

/* line 1487, ../sass/catstrap/catstrap.scss */
.show {
  display: block !important;
}

/* line 1490, ../sass/catstrap/catstrap.scss */
.invisible {
  visibility: hidden;
}

/* line 1493, ../sass/catstrap/catstrap.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 1500, ../sass/catstrap/catstrap.scss */
.hidden {
  display: none !important;
  visibility: hidden !important;
}

/* line 1504, ../sass/catstrap/catstrap.scss */
.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

/* line 1513, ../sass/catstrap/catstrap.scss */
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

/* line 1527, ../sass/catstrap/catstrap.scss */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  /* line 1531, ../sass/catstrap/catstrap.scss */
  .visible-xs {
    display: block !important;
  }

  /* line 1534, ../sass/catstrap/catstrap.scss */
  table.visible-xs {
    display: table;
  }

  /* line 1537, ../sass/catstrap/catstrap.scss */
  tr.visible-xs {
    display: table-row !important;
  }

  /* line 1541, ../sass/catstrap/catstrap.scss */
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  /* line 1546, ../sass/catstrap/catstrap.scss */
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  /* line 1551, ../sass/catstrap/catstrap.scss */
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  /* line 1556, ../sass/catstrap/catstrap.scss */
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 1561, ../sass/catstrap/catstrap.scss */
  .visible-sm {
    display: block !important;
  }

  /* line 1564, ../sass/catstrap/catstrap.scss */
  table.visible-sm {
    display: table;
  }

  /* line 1567, ../sass/catstrap/catstrap.scss */
  tr.visible-sm {
    display: table-row !important;
  }

  /* line 1571, ../sass/catstrap/catstrap.scss */
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 1576, ../sass/catstrap/catstrap.scss */
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 1581, ../sass/catstrap/catstrap.scss */
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 1586, ../sass/catstrap/catstrap.scss */
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 1591, ../sass/catstrap/catstrap.scss */
  .visible-md {
    display: block !important;
  }

  /* line 1594, ../sass/catstrap/catstrap.scss */
  table.visible-md {
    display: table;
  }

  /* line 1597, ../sass/catstrap/catstrap.scss */
  tr.visible-md {
    display: table-row !important;
  }

  /* line 1601, ../sass/catstrap/catstrap.scss */
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 1606, ../sass/catstrap/catstrap.scss */
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 1611, ../sass/catstrap/catstrap.scss */
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 1616, ../sass/catstrap/catstrap.scss */
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  /* line 1621, ../sass/catstrap/catstrap.scss */
  .visible-lg {
    display: block !important;
  }

  /* line 1624, ../sass/catstrap/catstrap.scss */
  table.visible-lg {
    display: table;
  }

  /* line 1627, ../sass/catstrap/catstrap.scss */
  tr.visible-lg {
    display: table-row !important;
  }

  /* line 1631, ../sass/catstrap/catstrap.scss */
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  /* line 1636, ../sass/catstrap/catstrap.scss */
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  /* line 1641, ../sass/catstrap/catstrap.scss */
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  /* line 1646, ../sass/catstrap/catstrap.scss */
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  /* line 1651, ../sass/catstrap/catstrap.scss */
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 1656, ../sass/catstrap/catstrap.scss */
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  /* line 1661, ../sass/catstrap/catstrap.scss */
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  /* line 1666, ../sass/catstrap/catstrap.scss */
  .hidden-lg {
    display: none !important;
  }
}
@media (max-width: 479px) {
  /* line 1671, ../sass/catstrap/catstrap.scss */
  img {
    width: 100%;
    height: auto;
    display: block;
  }
}
/* line 1677, ../sass/catstrap/catstrap.scss */
.visible-print {
  display: none !important;
}

@media print {
  /* line 1681, ../sass/catstrap/catstrap.scss */
  .visible-print {
    display: block !important;
  }

  /* line 1684, ../sass/catstrap/catstrap.scss */
  table.visible-print {
    display: table;
  }

  /* line 1687, ../sass/catstrap/catstrap.scss */
  tr.visible-print {
    display: table-row !important;
  }

  /* line 1691, ../sass/catstrap/catstrap.scss */
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
/* line 1695, ../sass/catstrap/catstrap.scss */
.visible-print-block {
  display: none !important;
}

@media print {
  /* line 1699, ../sass/catstrap/catstrap.scss */
  .visible-print-block {
    display: block !important;
  }
}
/* line 1703, ../sass/catstrap/catstrap.scss */
.visible-print-inline {
  display: none !important;
}

@media print {
  /* line 1707, ../sass/catstrap/catstrap.scss */
  .visible-print-inline {
    display: inline !important;
  }
}
/* line 1711, ../sass/catstrap/catstrap.scss */
.visible-print-inline-block {
  display: none !important;
}

@media print {
  /* line 1715, ../sass/catstrap/catstrap.scss */
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  /* line 1720, ../sass/catstrap/catstrap.scss */
  .hidden-print {
    display: none !important;
  }
}
/* Layout - UA Header */
/* line 1725, ../sass/catstrap/catstrap.scss */
#header_site #site_identifier a {
  float: left;
  margin: 1.5rem 0;
  padding: 0;
  width: 100%;
  text-align: center;
}

/* line 1732, ../sass/catstrap/catstrap.scss */
#header_site #site_identifier a img {
  width: 80%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
}

@media (min-width: 768px) {
  /* line 1739, ../sass/catstrap/catstrap.scss */
  #header_site #site_identifier a {
    float: left;
    margin: 2.5rem 0;
    padding: 0;
    width: auto;
  }

  /* line 1745, ../sass/catstrap/catstrap.scss */
  #header_site #site_identifier a img {
    width: 100%;
  }
}
/* line 1749, ../sass/catstrap/catstrap.scss */
#header_site #utility_links {
  display: none;
  margin: 1rem 0 1.5rem 0;
  background-color: transparent;
}

@media (min-width: 768px) {
  /* line 1755, ../sass/catstrap/catstrap.scss */
  #header_site #utility_links {
    display: block;
  }
}
/* line 1759, ../sass/catstrap/catstrap.scss */
#header_site #utility_links ul {
  padding: 0;
  margin: 0;
  border: 0 none;
  text-align: right;
}

/* line 1765, ../sass/catstrap/catstrap.scss */
#header_site #utility_links ul li {
  list-style: none;
  display: inline-block;
  padding: 0 .6rem;
  text-align: left;
}

/* line 1771, ../sass/catstrap/catstrap.scss */
#header_site #utility_links ul li a {
  font-size: 16px;
  font-size: 1rem;
  text-decoration: none;
  color: #6b868d;
  text-transform: none;
  font-family: MiloWeb-Text, sans-serif;
  font-weight: normal;
}

/* line 1780, ../sass/catstrap/catstrap.scss */
#header_site #utility_links ul li a:hover {
  text-decoration: underline;
}

/* line 1783, ../sass/catstrap/catstrap.scss */
#header_site #search {
  float: right;
}

/* line 1786, ../sass/catstrap/catstrap.scss */
#header_site #search .form-item {
  display: inline;
}

/* line 1789, ../sass/catstrap/catstrap.scss */
#header_site #search .form-item input {
  border-collapse: collapse;
  width: 13.8rem;
  font-family: MiloWeb, sans-serif;
  font-weight: normal;
  font-size: 1.125rem;
  line-height: 1em;
  border: 0;
  background-color: #eef1f1;
  color: #333333;
  padding: .5rem;
  outline: 0;
}

/* line 1802, ../sass/catstrap/catstrap.scss */
#header_site #search .form-actions {
  display: inline;
}

/* line 1805, ../sass/catstrap/catstrap.scss */
#header_site #search .form-actions input[type="submit"] {
  text-indent: -9999em;
  background: url("../img/search-icon.png");
  width: 40px;
  height: 40px;
  width: 2.5rem;
  height: 2.5rem;
  background-size: 24px 24px;
  background-size: 1.5rem 1.5rem;
  border: 0;
  background-repeat: no-repeat;
  background-position: 9px 7px;
  outline: 0;
}

/* line 1819, ../sass/catstrap/catstrap.scss */
#header_site #search form {
  border: 1px solid #d3d7de;
  background-color: #eef1f1;
  color: #333333;
  width: 272px;
  width: 17rem;
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
}

@media (max-width: 767px) {
  /* line 1829, ../sass/catstrap/catstrap.scss */
  #header_site #search {
    width: 100%;
    float: none;
    clear: both;
  }
}
/* End Layout - Header */
/* Layout - Menu */
/* line 1837, ../sass/catstrap/catstrap.scss */
#main_nav {
  clear: both;
}

/* line 1840, ../sass/catstrap/catstrap.scss */
#main_nav > ul {
  display: block;
  list-style: none;
  border-top: 2px solid #eef1f1;
  margin: 0;
  padding: 0;
}

/* line 1847, ../sass/catstrap/catstrap.scss */
#main_nav > ul > li {
  list-style: none;
  display: inline-block;
  padding: 0 3rem 0 .6rem;
  text-align: left;
  float: left;
}

/* line 1854, ../sass/catstrap/catstrap.scss */
#main_nav > ul > li.last {
  padding: 0 .6rem;
}

/* line 1857, ../sass/catstrap/catstrap.scss */
#main_nav > ul > li > a {
  color: #395180;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  padding: 1rem 0;
  float: left;
}

/* line 1867, ../sass/catstrap/catstrap.scss */
#main_nav > ul > li > a:hover,
#main_nav > ul > li > a:focus {
  text-decoration: none;
  color: #7B89AE;
}

/* END Layout - Menu */
/* Layout - Sidebar */
/* line 1873, ../sass/catstrap/catstrap.scss */
#sidebar_first .quick-links h3 {
  margin-top: 38px;
  margin-top: 2.4rem;
}

/* line 1877, ../sass/catstrap/catstrap.scss */
#sidebar_first .quick-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 1882, ../sass/catstrap/catstrap.scss */
#sidebar_first .quick-links ul li {
  line-height: 1;
}

/* line 1885, ../sass/catstrap/catstrap.scss */
#sidebar_first .quick-links ul li a {
  display: block;
  color: #333;
  padding: 8px 12px 8px 8px;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  font-weight: normal;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

/* line 1896, ../sass/catstrap/catstrap.scss */
#sidebar_first .quick-links ul li a:hover {
  text-decoration: none;
  color: #0d6772;
  background: #dbe8ea url("../img/sidebar-menu-chevron.png") no-repeat 100% 50%;
}

/* END Layout - Sidebar */
/* Layout - Footer */
/* line 1903, ../sass/catstrap/catstrap.scss */
footer#footer_site {
  margin-top: 40px;
  margin-top: 2.5rem;
  background: #dfe4e7;
  padding: 40px 0;
  padding: 2.5rem 0;
}

/* line 1910, ../sass/catstrap/catstrap.scss */
footer#footer_site a {
  color: #333;
  text-decoration: underline;
}

/* line 1914, ../sass/catstrap/catstrap.scss */
footer#footer_site a:hover {
  color: #777;
}

/* line 1917, ../sass/catstrap/catstrap.scss */
footer#footer_site #footer_logo {
  text-align: center;
}

/* line 1920, ../sass/catstrap/catstrap.scss */
footer#footer_site #footer_logo img {
  max-width: 360px;
  width: 80%;
  height: auto;
  margin: 0 auto 1rem;
}

@media (min-width: 992px) {
  /* line 1927, ../sass/catstrap/catstrap.scss */
  footer#footer_site #footer_logo img {
    float: left;
    margin: 0;
  }
}
/* line 1933, ../sass/catstrap/catstrap.scss */
footer#footer_site ul {
  display: block;
  margin: 0;
  padding: 16px 0 0;
  padding: 1rem 0 0;
  text-align: center;
}

/* MLL - restoring contextual menu styles */
footer#footer_site ul.contextual-links {
	display: none;
  margin: 0;
  padding: 0.25em 0;
  position: absolute;
  right: 0;
  text-align: left;
}

footer#footer_site ul.contextual-links a {
	color: #333 !important;
  display: block;
  margin: 0.25em 0;
  padding: 0.25em 1em 0.25em 0.5em;
	text-decoration: none;
}

/* line 1940, ../sass/catstrap/catstrap.scss */
footer#footer_site ul > li {
  display: inline-block;
  list-style: none;
  padding: 0 12px;
  padding: 0 .75rem;
  border-right: 1px solid #a8a69d;
}

/* line 1947, ../sass/catstrap/catstrap.scss */
footer#footer_site ul > li.last {
  border-right: 0;
}

/* line 1950, ../sass/catstrap/catstrap.scss */
footer#footer_site ul > li a {
  color: #333;
}

/* line 1953, ../sass/catstrap/catstrap.scss */
footer#footer_site #footer_copyright {
  clear: both;
  border-top: 1px solid #a8a69d;
  margin-top: 32px;
  margin-top: 2rem;
  float: left;
  width: 100%;
  padding-top: 16px;
  padding-top: 1rem;
}

@media (min-width: 992px) {
  /* line 1964, ../sass/catstrap/catstrap.scss */
  footer#footer_site ul {
    float: right;
    text-align: right;
  }

  /* line 1968, ../sass/catstrap/catstrap.scss */
  footer#footer_site ul > li {
    float: left;
  }
}
/* END Layout - Footer */
/* Layout */
/* line 1975, ../sass/catstrap/catstrap.scss */
#footer_site {
  background-color: #cfccc0;
  padding: 2rem 0;
}

/* line 1979, ../sass/catstrap/catstrap.scss */
#sidebar_first .quick-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 1984, ../sass/catstrap/catstrap.scss */
#sidebar_first .quick-links ul li {
  line-height: 1;
}

/* line 1987, ../sass/catstrap/catstrap.scss */
#sidebar_first .quick-links ul li a {
  display: block;
  color: #333;
  padding: 8px 12px 8px 8px;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
}

/* line 1993, ../sass/catstrap/catstrap.scss */
#sidebar_first .quick-links ul li a:hover {
  text-decoration: none;
  color: #0d6772;
  background: #dbe8ea url("../images/sidebar-menu-chevron.png") no-repeat 100% 50%;
}

/* line 2, ../sass/catstrap/catstrap-zen.scss */
#header_site .header__region {
  float: right;
  clear: right;
  text-align: center;
}
/* line 7, ../sass/catstrap/catstrap-zen.scss */
#header_site .header__region .block-menu {
  display: none;
  margin: 1rem 0 1.5rem 0;
  background-color: transparent;
  float: right;
}
/* line 13, ../sass/catstrap/catstrap-zen.scss */
#header_site .header__region #block-search-form {
  float: right;
  clear: right;
  margin: 0;
}
/* line 17, ../sass/catstrap/catstrap-zen.scss */
#header_site .header__region #block-search-form .form-item {
  display: inline;
}
/* line 19, ../sass/catstrap/catstrap-zen.scss */
#header_site .header__region #block-search-form .form-item input {
  border-collapse: collapse;
  width: 13.8rem;
  font-family: MiloWeb, sans-serif;
  font-weight: normal;
  font-size: 1.125rem;
  line-height: 1em;
  border: 0;
  background-color: #eef1f1;
  color: #333333;
  padding: .5rem;
  outline: 0;
}
/* line 33, ../sass/catstrap/catstrap-zen.scss */
#header_site .header__region #block-search-form .form-actions {
  display: inline;
}
/* line 35, ../sass/catstrap/catstrap-zen.scss */
#header_site .header__region #block-search-form .form-actions input[type="submit"] {
  text-indent: -9999em;
  background: url("../images/search-icon.png");
  width: 40px;
  height: 40px;
  width: 2.5rem;
  height: 2.5rem;
  background-size: 24px 24px;
  background-size: 1.5rem 1.5rem;
  border: 0;
  background-repeat: no-repeat;
  background-position: 9px 7px;
  outline: 0;
}
/* line 50, ../sass/catstrap/catstrap-zen.scss */
#header_site .header__region #block-search-form form {
  border: 1px solid #d3d7de;
  background-color: #eef1f1;
  color: #333333;
  width: 272px;
  width: 17rem;
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
}
/* line 61, ../sass/catstrap/catstrap-zen.scss */
#header_site #utility_links {
  display: block;
  clear: both;
}
/* line 64, ../sass/catstrap/catstrap-zen.scss */
#header_site #utility_links ul {
  font-family: 'MiloWeb-Medium';
}
/* line 66, ../sass/catstrap/catstrap-zen.scss */
#header_site #utility_links ul li {
  margin: 0;
  padding: 0;
}
/* line 71, ../sass/catstrap/catstrap-zen.scss */
#header_site #utility_links ul li a,
#header_site #utility_links ul li a:link,
#header_site #utility_links ul li a:visited {
  color: #49595E;
  padding: 1rem 0.5rem 0.5rem;
  margin: 0;
}
/* line 77, ../sass/catstrap/catstrap-zen.scss */
#header_site #utility_links ul li a:hover, #header_site #utility_links ul li a:focus, #header_site #utility_links ul li a:active,
#header_site #utility_links ul li a:link:hover,
#header_site #utility_links ul li a:link:focus,
#header_site #utility_links ul li a:link:active,
#header_site #utility_links ul li a:visited:hover,
#header_site #utility_links ul li a:visited:focus,
#header_site #utility_links ul li a:visited:active {
  text-decoration: underline;
  color: #49595E;
}
/* line 82, ../sass/catstrap/catstrap-zen.scss */
#header_site #utility_links ul li.last a {
  padding-right: 0;
}

@media screen and (min-width: 48em) {
  /* line 90, ../sass/catstrap/catstrap-zen.scss */
  #header_site .header__region .block-menu {
    display: block;
  }
  /* line 92, ../sass/catstrap/catstrap-zen.scss */
  #header_site .block-search {
    padding-top: 1rem;
  }
  /* line 94, ../sass/catstrap/catstrap-zen.scss */
  #header_site #utility_links {
    display: block;
    clear: none;
  }
  /* line 97, ../sass/catstrap/catstrap-zen.scss */
  #header_site #utility_links ul {
    text-align: right;
  }
  /* line 99, ../sass/catstrap/catstrap-zen.scss */
  #header_site #utility_links ul li {
    float: none;
    display: inline-block;
    margin: 0;
    padding: 0;
  }
  /* line 104, ../sass/catstrap/catstrap-zen.scss */
  #header_site #utility_links ul li.last a {
    padding-right: 0;
  }
}
/* NEWS */
/* line 114, ../sass/catstrap/catstrap-zen.scss */
.view-news .views-row {
  float: left;
  width: 100%;
  border-bottom: 2px solid #eef1f1;
  padding: 24px 0;
  padding: 1.5rem 0;
}
/* line 121, ../sass/catstrap/catstrap-zen.scss */
.view-news .views-row .views-field-field-news-photos img {
  width: 100%;
  height: auto;
  padding-right: 24px;
  padding-right: 1.5rem;
}
/* line 131, ../sass/catstrap/catstrap-zen.scss */
.view-news .views-row .views-field-title h2 {
  margin-top: 1rem;
  margin-bottom: 4px;
  margin-bottom: 0.2rem;
}
/* line 138, ../sass/catstrap/catstrap-zen.scss */
.view-news .views-row .views-field-field-news-publish-date span {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #999;
  padding-bottom: 4px;
  padding-bottom: 0.2rem;
}

@media (min-width: 30em) {
  /* line 151, ../sass/catstrap/catstrap-zen.scss */
  .view-news .views-row .views-field-field-news-photos img {
    float: left;
    max-width: 240px;
    width: 100%;
    height: auto;
  }

  /* line 157, ../sass/catstrap/catstrap-zen.scss */
  .view-news .views-row .views-field-title h2 {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  /* line 166, ../sass/catstrap/catstrap-zen.scss */
  #header_site #search {
    width: 100%;
    float: none;
    clear: both;
  }
}
/* OPTIONAL UA ZEN COMPONENTS - COMMENT OUT WHAT YOU DON'T NEED */
/* line 1, ../sass/components/_uazen-superfish.scss */
#main_nav {
  clear: both;
}
/* line 3, ../sass/components/_uazen-superfish.scss */
#main_nav .block-superfish {
  border-top: 2px solid #eef1f1;
  text-align: center;
}
/* line 6, ../sass/components/_uazen-superfish.scss */
#main_nav .block-superfish ul.menu {
  width: 100%;
  list-style: none;
}
/* line 9, ../sass/components/_uazen-superfish.scss */
#main_nav .block-superfish ul.menu li {
  padding-right: 3rem;
}
/* line 11, ../sass/components/_uazen-superfish.scss */
#main_nav .block-superfish ul.menu li a {
  color: #395180;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}
/* line 18, ../sass/components/_uazen-superfish.scss */
#main_nav .block-superfish ul.menu li a:hover {
  color: #7B89AE;
  text-decoration: none;
}
/* line 24, ../sass/components/_uazen-superfish.scss */
#main_nav .block-superfish ul.menu li ul {
  padding: 1.5em 1em 1em;
}
/* line 27, ../sass/components/_uazen-superfish.scss */
#main_nav .block-superfish ul.menu li ul li a {
  font-size: 0.9em;
  color: #fff;
  font-weight: normal;
  padding: 0.3em;
  text-transform: none;
}
/* line 33, ../sass/components/_uazen-superfish.scss */
#main_nav .block-superfish ul.menu li ul li a:hover {
  background: #DBE8EA;
  color: #076873;
}
/* line 43, ../sass/components/_uazen-superfish.scss */
#main_nav .block-superfish ul.menu li > a {
  padding: 1em 0;
}
/* line 47, ../sass/components/_uazen-superfish.scss */
#main_nav .block-superfish select {
  width: 14rem;
  margin: 1.2rem 0;
}
/* line 52, ../sass/components/_uazen-superfish.scss */
#main_nav .tinynav-wrapper {
  padding: 1em 0;
}
/* line 54, ../sass/components/_uazen-superfish.scss */
#main_nav .tinynav-wrapper select.tinynav.tinynav1 {
  margin: 0 auto;
}

/* line 59, ../sass/components/_uazen-superfish.scss */
ul.sf-menu li ul {
  background-color: rgba(12, 35, 75, 0.8);
  background-image: url("../images/menu-triangle.png");
  background-position: 2em 0;
  background-repeat: no-repeat;
}

/* line 65, ../sass/components/_uazen-superfish.scss */
.sf-menu li:hover > ul, .sf-menu li.sfHover > ul {
  top: 100%;
}

/* line 2, ../sass/components/_uazen-flexslider.scss */
#content_featured .flexslider {
  border: 0;
  margin: 0;
}
/* line 7, ../sass/components/_uazen-flexslider.scss */
#content_featured .flexslider ul.slides li .slide-image-container {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
  padding-top: 64px;
  padding-top: 4rem;
  background-position: 50% 50%;
}
/* line 14, ../sass/components/_uazen-flexslider.scss */
#content_featured .flexslider ul.slides li .slide-image-container h2 {
  font-size: 36px;
  font-size: 2.25rem;
  font-family: MiloSerifWeb, TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  margin: 0;
  line-height: 1em;
}
/* line 20, ../sass/components/_uazen-flexslider.scss */
#content_featured .flexslider ul.slides li .slide-image-container h2 a {
  color: #fff;
  font-weight: 300;
  text-transform: none;
}
/* line 24, ../sass/components/_uazen-flexslider.scss */
#content_featured .flexslider ul.slides li .slide-image-container h2 a:hover {
  text-decoration: none;
}
/* line 29, ../sass/components/_uazen-flexslider.scss */
#content_featured .flexslider ul.slides li .slide-image-container p {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  padding-top: 1rem;
}
/* line 38, ../sass/components/_uazen-flexslider.scss */
#content_featured .flexslider .flex-direction-nav a {
  padding: 28px 9px;
  padding: 1.75rem 0.62rem;
  background: #6f868d;
  color: #fff;
  margin: -96px 0 0;
  margin: -6rem 0 0;
  text-align: center;
  display: block;
  top: 100%;
}
/* line 49, ../sass/components/_uazen-flexslider.scss */
#content_featured .flexslider .flex-direction-nav a:before {
  content: ' ';
}
/* line 57, ../sass/components/_uazen-flexslider.scss */
#content_featured .flexslider .flex-direction-nav .flex-prev {
  left: 0;
  background: #6f868d url(../images/flex-prev.png) no-repeat 50% 50%;
  width: 49%;
  height: 96px;
}
/* line 63, ../sass/components/_uazen-flexslider.scss */
#content_featured .flexslider .flex-direction-nav .flex-next {
  right: 0;
  background: #6f868d url(../images/flex-next.png) no-repeat 50% 50%;
  width: 49%;
  height: 96px;
}
/* line 69, ../sass/components/_uazen-flexslider.scss */
#content_featured .flexslider .flexslider .flex-direction-nav a, #content_featured .flexslider .flexslider .flex-direction-nav a {
  display: block !important;
}
/* line 73, ../sass/components/_uazen-flexslider.scss */
#content_featured #block-views-featured-content-block {
  margin: 0;
}

@media (min-width: 48em) and (max-width: 59.9em) {
  /* line 78, ../sass/components/_uazen-flexslider.scss */
  #content_featured .flexslider ul.slides li .slide-image-container p {
    padding-right: 256px;
    padding-right: 16rem;
  }

  /* line 82, ../sass/components/_uazen-flexslider.scss */
  #content_featured .flexslider .flex-direction-nav a {
    padding: 28px 9px;
    padding: 1.75rem 0.62rem;
    background: #6f868d;
    color: #fff;
    margin: -48px 0 0;
    margin: -3rem 0 0;
    text-align: center;
    display: block;
    top: 50%;
  }
  /* line 93, ../sass/components/_uazen-flexslider.scss */
  #content_featured .flexslider .flex-direction-nav a:before {
    content: ' ';
  }
  /* line 101, ../sass/components/_uazen-flexslider.scss */
  #content_featured .flexslider .flex-direction-nav .flex-prev {
    left: 0;
    background: url(../images/flex-prev.png) no-repeat 0 0;
    width: 60px;
    height: 96px;
  }
  /* line 107, ../sass/components/_uazen-flexslider.scss */
  #content_featured .flexslider .flex-direction-nav .flex-next {
    right: 0;
    background: url(../images/flex-next.png) no-repeat 0 0;
    width: 60px;
    height: 96px;
  }
  /* line 113, ../sass/components/_uazen-flexslider.scss */
  #content_featured .flexslider .flexslider .flex-direction-nav a, #content_featured .flexslider .flexslider .flex-direction-nav a {
    display: block !important;
  }

  /* line 118, ../sass/components/_uazen-flexslider.scss */
  #content_featured .flexslider ul.slides li .slide-image-container {
    padding-top: 96px;
    padding-top: 6rem;
  }

  /* line 122, ../sass/components/_uazen-flexslider.scss */
  #content_featured .flexslider ul.slides li .slide-image-container h2 {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1em;
  }

  /* line 127, ../sass/components/_uazen-flexslider.scss */
  #content_featured .flexslider ul.slides li .slide-image-container p {
    font-size: 24px;
    font-size: 1.5rem;
    padding-top: 1rem;
  }
}
@media (min-width: 60em) {
  /* line 134, ../sass/components/_uazen-flexslider.scss */
  #content_featured .flexslider ul.slides li .slide-image-container {
    padding-top: 120px;
    padding-top: 7.5rem;
  }

  /* line 138, ../sass/components/_uazen-flexslider.scss */
  #content_featured .flexslider .flex-direction-nav a {
    margin: -48px 0 0;
    margin: -3rem 0 0;
    top: 50%;
  }

  /* line 143, ../sass/components/_uazen-flexslider.scss */
  #content_featured .flexslider .flex-direction-nav .flex-prev {
    width: 60px;
    height: 96px;
  }

  /* line 147, ../sass/components/_uazen-flexslider.scss */
  #content_featured .flexslider .flex-direction-nav .flex-next {
    width: 60px;
    height: 96px;
  }

  /* line 151, ../sass/components/_uazen-flexslider.scss */
  #content_featured .flexslider ul.slides li .slide-image-container h2 {
    font-size: 60px;
    font-size: 3.75rem;
    line-height: 1em;
  }

  /* line 156, ../sass/components/_uazen-flexslider.scss */
  #content_featured .flexslider ul.slides li .slide-image-container p {
    font-size: 24px;
    font-size: 1.5rem;
    padding-top: 1rem;
  }
}
/* line 1, ../sass/components/_uazen-multilevelmenu.scss */
.dl-menuwrapper button {
  background: #002147;
}

/* line 4, ../sass/components/_uazen-multilevelmenu.scss */
.dl-menuwrapper button:hover, .dl-menuwrapper button.dl-active, .dl-menuwrapper ul {
  background: #002147;
}

/* line 7, ../sass/components/_uazen-multilevelmenu.scss */
.dl-menuwrapper {
  max-width: none;
}

/* line 2, ../sass/components/_uazen-home-modules.scss */
.block.mission-statement {
  background: #ecf4f3 url("../images/mission-bg.jpg") repeat-x 0 0;
  text-align: center;
  padding: 64px 0;
  padding: 4rem 0;
  margin: 0;
}
/* line 8, ../sass/components/_uazen-home-modules.scss */
.block.mission-statement h3 {
  color: #0c234b;
  font-size: 28px;
  font-size: 1.8rem;
  font-family: MiloSerifWeb, TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  text-transform: none;
  line-height: 1.4;
}
/* line 16, ../sass/components/_uazen-home-modules.scss */
.block.mission-statement a {
  display: block;
  padding: 16px;
  padding: 1rem;
  font-size: 18px;
  font-size: 1.125rem;
  color: #ab0520;
  border-bottom: 2px solid #076873;
  text-transform: uppercase;
  width: 220px;
  margin: 16px auto 0;
  margin: 1rem auto 0;
}

@media (min-width: 48em) {
  /* line 31, ../sass/components/_uazen-home-modules.scss */
  .block.mission-statement h3 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
/* line 37, ../sass/components/_uazen-home-modules.scss */
#block-views-news-home-3-col-news-block {
  padding: 64px 0;
  padding: 4rem 0;
}
/* line 40, ../sass/components/_uazen-home-modules.scss */
#block-views-news-home-3-col-news-block h2.block-title {
  text-align: center;
  font-family: MiloWeb, Verdana, Geneva, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
/* line 49, ../sass/components/_uazen-home-modules.scss */
#block-views-news-home-3-col-news-block h2.block-title:before {
  content: "—";
  margin-right: 0.3em;
  color: #c8d9d8;
}
/* line 54, ../sass/components/_uazen-home-modules.scss */
#block-views-news-home-3-col-news-block h2.block-title:after {
  content: "—";
  margin-left: 0.3em;
  color: #c8d9d8;
}
/* line 61, ../sass/components/_uazen-home-modules.scss */
#block-views-news-home-3-col-news-block .view-news .views-row {
  width: 33%;
  padding: 0 15px;
  border: 0;
}
/* line 66, ../sass/components/_uazen-home-modules.scss */
#block-views-news-home-3-col-news-block .view-news .views-row .views-field-field-news-photos img {
  max-width: 100%;
  padding-right: 0;
}
/* line 72, ../sass/components/_uazen-home-modules.scss */
#block-views-news-home-3-col-news-block .view-news .views-row .views-field-title h2 {
  display: block;
  font-size: 22px;
  font-size: 1.4rem;
  float: left;
  margin-top: 16px;
  margin-top: 1rem;
}


/* OGI Layout Customization */

.ui-widget,
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: MiloWeb, Verdana, Geneva, sans-serif;
	font-size: 1rem;
}

table.ui-datepicker-calendar > thead > tr > th {
	font-size: 1rem;
	font-weight: normal;
}

/* Bootstrap Screen Reader Class */

.sr-only,
.ui-accordion-content h2.node-title {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	border: 0;
	color: #373737;
	background-color: #fff;
}

input.form-text,
input.form-file,
textarea.form-textarea {
	border: 1px solid #e1e1e1;
	background: #eef1f1;
	padding-left: 5px;
	border-radius: 2px;
}

.block-views img {
	max-width: none;
}

h1 {
	font-size: 2rem;
}

h2 {
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.3;
	margin: 0px 0px 22px;
	text-rendering: optimizelegibility;
}

h2.red {
	color: #ab0520;
	line-height: 1.1;
	margin: 10px 0;
	font-weight: 700;
}

h4,
h4 a {
	color: #ab0520;
}

h4 a:hover {
	text-decoration: none;
}

label {
	font-size: 1.125rem;
	display: inherit;
}

#content table {
	width: 100% !important;
}

#content table th {
	font-size: 0.9rem;
	text-align: center;
}

#content table td {
	font-size: 0.9rem;
}

#content table th a {
	color: #fff;
}

table.webform-grid .checkbox {
	display: table-cell;
	position: inherit;
}

table.webform-grid td.webform-grid-option {
	vertical-align: middle;
}

/* Directory Table */

.view-directory table caption {
	font-size: 1.3em;
}

.view-directory table th.views-field-title {
	width: 20%;
}

.view-directory table th.views-field-field-person-email {
	width: 25%;
}

.view-directory table th.views-field-field-person-phone-numbers {
	width: 20%;
}

.view-directory table td.views-field-field-person-phone-numbers {
	text-align: center;
}

.view-directory table th.views-field-field-person-job-titles {
	width: 35%;
}

#main .view-directory input.form-submit {
	margin-top: 30px;
	margin-bottom: 0;
}

.view-directory .views-exposed-form .views-exposed-widget {
	padding-right: 0.3em;
}

#banner-menu {
	float: right;
}

.ua-redbar-v1 .redbar ul {
    margin-bottom: 0;
}

#banner-menu ul.menu li {
  list-style: none;
  display: inline-block;
  padding: 0;
  text-align: left;
}

#banner-menu ul.menu li a {
	font-size: 1rem;
  text-decoration: none;
  color: #fff;
  text-transform: none;
  font-family: MiloWeb-Text, sans-serif;
  font-weight: normal;
	display: block;
	height: 59px;
	padding: 19px 10px 20px;
}

#banner-menu ul.menu li a:hover {
	background: #900;
}

#block-menu-menu-banner-menu {
	z-index: 500;
}

#block-menu-menu-banner-menu ul.menu li a,
#block-menu-menu-banner-menu ul.menu li a:link,
#block-menu-menu-banner-menu ul.menu li a:visited {
	color: #fff;
}

.region-navigation {
	margin-top: 17px;
}

#header_site .region-navigation .block-search {
	padding-top: 0;
}

#header_site ul.menu li {
	padding: 0px 0.9rem;
}

#block-search-form {
	float: right;
}

.header .logo-box {
	display: table;
	float: left;
	width: 33.3333%;
}

.header .logo-box-wrapper {
	display: table-cell;
	height: 100px;
	vertical-align: middle;
	max-width: 100%;
	width: 100%;
}

.header .right-box {
	display: table;
	float: left;
	width: 66.6667%;
}

.header .right-box-wrapper {
	display: table-cell;
	height: 100px;
	vertical-align: middle;
}

/* MegaMenu */

#block-tb-megamenu-main-menu {
	float: left;
	margin-bottom: 6px;
	z-index: 99;
}

@media (max-width: 1048px) {
	#block-tb-megamenu-main-menu {
		float: none;
		margin: 0 0 0 -4px;
		text-align: left;
		display: inline-block;
	}
}

.tb-megamenu {
  background-color: #fff;
	min-height: 44px;
	margin: 0;
	border: 0px none;
}

.tb-megamenu .nav > .active > a,
.tb-megamenu .nav > .active > a:hover {
  /*border: 1px solid transparent;*/
  background-color: #fff;
  color: #395180;
}

.tb-megamenu .nav > .active > a:hover {
	border-bottom: none;
}

.tb-megamenu .nav li.dropdown.active > .dropdown-toggle,
.tb-megamenu .nav li.dropdown.open.active > .dropdown-toggle,
.tb-megamenu .nav > li.dropdown.open.active > a:hover {
    background-color: #fff;
    color: #395180;
}

.tb-megamenu .nav li.dropdown.active > .dropdown-toggle {
	border-color: transparent;
	border-bottom: none;
}

.tb-megamenu .nav li.dropdown.open.active > .dropdown-toggle,
.tb-megamenu .nav > li.dropdown.open.active > a:hover,
.tb-megamenu .nav li.dropdown.active > .dropdown-toggle:hover,
.tb-megamenu .nav li.dropdown.open > .dropdown-toggle {
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
	border-color: #e1e1e1;
	border-bottom: none;
	font-weight: bold;
}

.tb-megamenu .nav li a.dropdown-toggle:hover {
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
	border-color: #e1e1e1;
	border-bottom: none;
}

.tb-megamenu .dropdown-menu .mega-nav > li.level-3 > a {
    padding: 0;
}

.tb-megamenu .nav li.dropdown.open > .dropdown-toggle .caret,
.tb-megamenu .nav li.dropdown.active > .dropdown-toggle .caret,
.tb-megamenu .nav li.dropdown.open.active > .dropdown-toggle .caret,
.tb-megamenu .nav li.dropdown.open .caret,
.tb-megamenu .nav li.dropdown.open a:hover .caret {
    border-top-color: #666;
    border-bottom-color: #666;
}

.tb-megamenu .nav > li > a {
	border: 1px solid transparent;
	border-bottom: none;
	border-radius: 3px;
	color: #395180;
	font-family: Arial, sans-serif;
	font-size: 0.9em;
	font-weight: bold;
	line-height: 1.2;
	padding: 6px 13px;
	text-shadow: none;
}

.tb-megamenu .nav > li > a:focus,
.tb-megamenu .nav > li > a:hover {
  background-color: #fff;
  color: #395180;
	border-bottom: none;
}

.tb-megamenu .nav li.dropdown.open > .dropdown-toggle {
	color: #395180;
	background-color: #fff;
}

.tb-megamenu .dropdown-menu li > a:hover,
.tb-megamenu .dropdown-menu li > a:focus,
.tb-megamenu .dropdown-submenu:hover > a {
    color: #395180;
		opacity: 0.6;
		transition: opacity 0.2s linear 0s;
}

.tb-megamenu .dropdown-menu {
	/*box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);*/
	/*border-top: 1px solid;*/
	border-bottom: 1px solid;
	border-color: #e1e1e1;
	border-radius: 0px 3px 3px;
	margin-top: -1px;
}

.tb-megamenu ul.mega-nav li.active a,
.tb-megamenu ul.mega-nav li:first-child.active a {
	padding-left: 4px;
	padding-top: 4px;
}

.tb-megamenu .mega-nav > li a,
.tb-megamenu .dropdown-menu .mega-nav > li a {
  padding-left: 4px;
}

/* Responsive Menu */

@media (max-width: 979px) {
	.ua-redbar-v1 .redbar {
		background: transparent;
	}
	.navbar-header {
		position: absolute;
		top: 0;
	}
	.ua-redbar-v1 {
		width: 264px;
		background: transparent;
	}
	.ua-redbar-v1 .navbar-static-top {
		height: 42px;
		z-index: 500;
	}
	.ua-redbar-v1 .container {
		height: 42px;
	}
	.mean-container .mean-bar {
		background: #ab0520;
		z-index: 499;
	}
}

.tb-megamenu .btn-navbar {
	float: right;
	z-index: 402;
}

.header-icons {
	float: right;
}

@media (max-width: 74.9em) and (min-width: 60em) {
	#block-tb-megamenu-main-menu {
		max-width: 566px;
	}
	.tb-megamenu .nav > li > a {
		padding: 11px 8px;		
	}
}

@media (max-width: 979px) {
	.tb-megamenu .btn-navbar {
		background: #fff;
		text-shadow: none;
		color: #1e1e1e;
		box-shadow: none;
		height: 40px;
		border-color: #ccc;
		display: block;
		margin-bottom: 10px;
	}
	.header .right-box-wrapper {
		text-align: right;
	}
	.header-icons {
		float: none;
	}
	.tb-megamenu .btn-navbar:hover,
	.tb-megamenu .btn-navbar:focus,
	.tb-megamenu .btn-navbar:active,
	.tb-megamenu .btn-navbar.active,
	.tb-megamenu .btn-navbar.disabled,
	.tb-megamenu .btn-navbar[disabled] {
		color: #1e1e1e;
		background-color: #fff;
	}
	.tb-megamenu .nav-collapse {
		background: #fff;
		border: 0px none;
		box-shadow: none;
		left: auto;
		margin: 13px 0px 0px;
		max-height: inherit;
		overflow: hidden;
		padding: 0;
		position: absolute;
		right: 0;
		top: 50%;
		width: 500%;
		z-index: 999;
	}
	.tb-megamenu .nav-collapse ul.nav {
		background: #fff none repeat scroll 0% 0%;
		border: 1px solid #ccc;
		border-radius: 3px 0px 3px 3px;
		float: none;
		padding: 6px 6px 3px;
	}
	.tb-megamenu .nav-collapse ul.nav > li > a,
	.tb-megamenu .nav-collapse .dropdown-menu a {
		border-bottom: none;
		border-right: none;
		background: #f2f2f2;
		color: #1e1e1e;
		font-weight: normal;
		text-shadow: none;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
	}
	.tb-megamenu .nav-collapse .nav > li {
		float: none;
		margin: 0 0 3px;
		display: block;
	}
	.tb-megamenu .nav-collapse .nav > li > a:hover,
	.tb-megamenu .nav-collapse .nav > li > a:focus {
		background-color: #e9e9e9;
		font-weight: bold;
		color: #1e1e1e;
		box-shadow: none;
	}
	.tb-megamenu .nav-collapse .nav > li.active > a:hover,
	.tb-megamenu .nav-collapse .nav > li.active > a:focus {
		background-color: #e9e9e9;		
	}
	.tb-megamenu .nav li.dropdown.open > .dropdown-toggle {
		box-shadow: none;
		border-color: transparent;
		border-bottom: none;
		color: #1e1e1e;
		background-color: #e9e9e9;
	}
	.tb-megamenu .nav-collapse .dropdown-menu {
		background-color: #f7f7f7;
	}
	.tb-megamenu .nav-collapse .dropdown-menu a {
		border-top: 4px solid #f7f7f7;
	}
	.tb-megamenu .nav-collapse .dropdown-menu a:hover {
		background-color: #e9e9e9;
	}
	.tb-megamenu .nav li.dropdown.active > .dropdown-toggle,
	.tb-megamenu .nav li.dropdown.open.active > .dropdown-toggle,
	.tb-megamenu .nav > li.dropdown.open.active > a:hover {
			background-color: #f2f2f2;
			color: #1e1e1e;
	}
	.tb-megamenu .nav li.dropdown.open.active > .dropdown-toggle,
	.tb-megamenu .nav > li.dropdown.open.active > a:hover,
	.tb-megamenu .nav li.dropdown.active > .dropdown-toggle:hover {
		box-shadow: none;
	}
	.tb-megamenu .nav-collapse .nav li a {
		border-top: none;
	}
	.tb-megamenu .nav-collapse .caret {
    display: inline-block !important;
	}
	.tb-megamenu .span12.mega-col-nav .mega-inner {
    padding: 0;
	}
	.tb-megamenu .mega-nav > li:first-child > a,
	.tb-megamenu .dropdown-menu .mega-nav > li:first-child > a {
    padding-top: 9px;
	}
	.tb-megamenu .mega-nav > li a,
	.tb-megamenu .dropdown-menu .mega-nav > li a {
		font-size: 0.875rem;
    padding: 9px 25px;
		margin-left: 0;
	}
	.tb-megamenu .dropdown-menu .mega-nav li.level-3 a {
		padding-left: 50px;
	}
		
	.tb-megamenu .nav li a.dropdown-toggle:hover {
		box-shadow: none;
		border-color: transparent;
		border-bottom: none;
	}
}

/* Footer */

#footer_site .block-block,
#footer_site .block-views,
#footer_site .block-aggregator {
	float: left;
	width: 25%;
	min-height: 1px;
	padding-left: 5%;
  padding-right: 0;
	min-width: 270px;
}

#footer_site .first {
	padding-left: 0;
}
@media (max-width: 47.9em) {
	#footer_site .block-block,
	#footer_site .block-views,
	#footer_site .block-aggregator {
		float: left;
		width: 100%;
		min-height: 1px;
		padding-left: 15px;
		padding-right: 15px;
		min-width: 280px;
		margin-bottom: 1em;
	}
}
@media (min-width: 48em) and (max-width: 59.9em) {
	#footer_site .first {
		padding-left: 15px;
	}
}

#footer_site .black-block-head,
#footer_site .block-views h2,
#footer_site .block-aggregator h2 {
	font-family: Arimo, sans-serif;
	color: #1e1e1e;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.3;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 15px;
}

#footer_site .block-views h2.field-content,
#footer_site .views-field-title {
	text-transform: none;
	margin-bottom: 0;
	font-size: 0.75rem;
	font-family: Arimo, sans-serif;
}

#footer_site .date-display-single,
#footer_site .date-display-start,
#footer_site .date-display-end {
	font-size: 0.75rem;
	font-family: Arimo, sans-serif;
}

#footer_site .block-block p,
#footer_site .block-views p,
#footer_site .block-aggregator a {
	font-family: Arimo, sans-serif;
	font-size: 0.75rem;
	color: #424242;
	margin-bottom: 16px;
}

footer#footer_site ul {
	float: left;
  text-align: left;
	padding: 0;
}

footer#footer_site ul > li {
	display: inline-block;
	list-style: outside none none;
	padding: 0;
	border-right: none;
}

#footer_site #mc_embed_signup label {
	font-family: Arimo, sans-serif;
	font-size: 0.75rem;
	color: #7f7f7f;
}

#footer_site #mc_embed_signup input.email {
  border: 1px solid #e1e1e1;
  background: #eef1f1;
	padding: 4px 0;
	font-size: 0.75rem;
}

#footer_site #mc_embed_signup input.button {
	font-family: Arimo, sans-serif;
	font-weight: normal;
	font-size: 0.75rem;
	height: 26px;
	line-height: 26px;
	width: 24%;
	min-width: 74px;
}

#main input.button-primary,
#main input.form-submit {
	background-color: #777;
	border: 1px solid #777;
	border-radius: 4px;
	color: #fff;
	font-family: Arimo, sans-serif;
	font-weight: bold;
	font-size: 0.75rem;
	height: 28px;
	line-height: 28px;
	margin-right: 4px;
	padding-top: 0;
}

#main input.button-primary:hover,
#main input.form-submit:hover {
	background-color: #aaa;
}

#main select.form-select {
  border: 1px solid #e1e1e1;
}

#footer_bottom {
	background: #f7f7f7 none repeat scroll 0% 0%;
}

.region-footer-ua {
	padding-top: 21px;
	padding-bottom: 20px;
}

.region-footer-ua .block-block {
	float: left;
	width: 25%;
	min-height: 1px;
	padding-left: 15px;
  padding-right: 15px;
	min-width: 280px;
}

.region-footer-ua .block-block p {
	font-family: Arimo, sans-serif;
	font-size: 0.6875rem;
	color: #515151;
}

#photo_banner .flexslider {
	margin: 0;
	padding: 0;
	border: none;
	box-shadow: none;
}

a.feed-icon img {
	width: 16px;
	height: 16px;
}

/* Social Media Icons */

.social .fa {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  display: block;
  height: 40px;
  float: left;
  line-height: 40px;
  margin: 0 10px 0 0;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear;
  text-align: center;
  width: 40px;
}

.fa-facebook {
	background: #3b5998;
}

.fa-pinterest-p {
	background: #b8242a;
}

.fa-youtube {
	background: #c4302b;
}

.fa-linkedin {
	background: #1b92bd;
}

.fa-twitter {
	background: #00bdec;
}

.fa-google-plus {
	background: #db4237;
}

.fa-skype {
	background: #00afe6;
}

.fa-tumblr {
	background: #31516a;
}

.fa-instagram {
	background: #c6c6c6;
}

.social-icons {
	display: block;
	height: 40px;
	float: left;
	margin-bottom: 10px;
}

footer#footer_site a.fa,
footer#footer_site a.fa:hover {
  color: #fff;
	text-decoration: none;
}

footer#footer_site a.fa:hover {
	opacity: 0.5;
}

footer#footer_site a.newsletter-button {
	background-color: #e8e8e8;
  border: solid 1px #5b5b5b;
  color: #5b5b5b;
  display: inline-block;
  padding: 8px 10px;
  text-shadow: none;
	text-decoration: none;
}

footer#footer_site a.newsletter-button:hover {
	text-decoration: none;
	opacity: 0.5;
}

footer#footer_site a {
  text-decoration: none;
}

.region-footer-ua a.fa-arrow-up {
  background: #777;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: block;
  float: right;
  height: 40px;
  text-align: center;
  width: 40px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
	padding-top: 11px;
	text-decoration: none;
	color: #fff;
}

.region-footer-ua a.fa-arrow-up:hover {
	opacity: 0.5;
	text-decoration: none;
}

.region-footer-ua a.fa-arrow-up:visited,
.region-footer-ua a.fa-arrow-up:active {
	text-decoration: none;
}

.region-footer-ua .footer-icon {
  color: #c6c6c6;
  left: 16px;
  position: relative;
	float: left;
}

.region-footer-ua .address,
.region-footer-ua .phone {
	padding-left: 35px;
	font-family: Arimo, sans-serif;
	font-size: 0.6875rem;
	color: #7f7f7f;
}

.search-header {
  border-right: 1px solid rgba(204,204,204,.8);
  color: #1e1e1e;
  display: inline-block;
  height: 30px;
  margin: 5px 0;
  position: relative;
  text-align: center;
  vertical-align: top;
  width: 41px;
	float: right;
}

.search-header a {
	color: #ab0520;
	display: block;
  height: 23px;
  padding-top: 7px;
  width: 100%;
}

.search-header a svg {
	overflow: visible;
	opacity: 1;
	transition: all 0.3s linear 0s;
}

#block-menu-menu-navigation-sidebar h2.block-title,
.region-sidebar-first h2.block-title {
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: #ab0520;
	font-family: MiloWeb-Text,sans-serif;
	border-bottom: 1px solid #e7e7e7;
	padding-bottom: 5px;
}

.region-sidebar-first ul.menu a,
.region-sidebar-first ul.menu a:active,
.region-sidebar-first ul.menu a.visited {
	color: #ab0520;
	font-family: MiloWeb-Text,sans-serif;
	font-weight: normal;
}

/* FlexSlider */

.flex-direction-nav a {
	height: 50px;
}

@media (min-width: 48em) and (max-width: 59.9em) {
  #content_featured .flexslider .flex-direction-nav a {
    top: 60%;
  }
  #content_featured .flexslider .flex-direction-nav .flex-prev {
    left: 0;
    background: url(../images/flex-prev.png) no-repeat 0 0;
    width: 30px;
    height: 48px;
  }
  #content_featured .flexslider .flex-direction-nav .flex-next {
    right: 0;
    background: url(../images/flex-next.png) no-repeat 0 0;
    width: 30px;
    height: 48px;
  }
}
@media (max-width: 47.9em) {
  #content_featured .flexslider .flex-direction-nav a {
    top: 100%;
  }
  #content_featured .flexslider .flex-direction-nav .flex-prev {
    left: 0;
    background: url(../images/flex-prev.png) no-repeat 0 0;
    width: 30px;
    height: 48px;
  }
  #content_featured .flexslider .flex-direction-nav .flex-next {
    right: 0;
    background: url(../images/flex-next.png) no-repeat 0 0;
    width: 30px;
    height: 48px;
  }
}

/* Search Box */

#header_site .container {
	position: relative;
}

.header-icons {
	display: inline-block;
	margin-right: 13px;
	text-align: right;
	vertical-align: top;
	z-index: 401;
}

.search-active {
		width: 50%;
    bottom: 0px;
    display: none;
    margin: 18px 0px;
    overflow: hidden;
    position: absolute;
    right: 27px;
    top: 5px;
    z-index: 920;
}
@media (max-width: 74.9em) and (min-width: 60em) {
	.search-active {
    right: 26px;
		top: 3px;
		width: 65%;
	}
}
	
@media (max-width: 979px) {
	.search-active {
		width: 80%;
    bottom: 0px;
    display: none;
    margin: 18px 0px;
    overflow: hidden;
    position: absolute;
    right: 89px;
    top: 12px;
    z-index: 920;
	}
}

@media (max-width: 520px) {
	.header-icons {
  display: none;
	}
}

.col-md-9 {
    width: 75%;
		float: left;
}
.search-active .close {
    position: absolute;
    right: 79px;
    z-index: 1;
}
.search-active .close {
    float: right;
    font-size: 1.625rem;
    margin: 24px 0px 0px 5px;
}
.open > a {
    outline: 0px none;
}
.close,
.close:visited {
    float: none;
    font-size: 1rem;
    font-weight: normal;
    line-height: 16px;
    color: #7F7F7F;
    position: relative;
    text-shadow: none;
    opacity: 1;
    vertical-align: top;
    transition: color 0.2s linear 0s;
		text-decoration: none;
}
.close:hover {
		text-decoration: none;
}
.search-active .close span {
    line-height: 18px;
    margin-right: 5px;
    margin-top: 0px;
    text-transform: uppercase;
}
.close span {
    display: inline-block;
    font-size: 0.75rem;
    font-family: Arial;
    line-height: 12px;
    margin-top: 2px;
    vertical-align: top;
}
* {
    border-color: #E1E1E1;
    border-style: solid;
    border-width: 0px;
}
* {
    box-sizing: border-box;
}
.search-active form {
    height: 100%;
    margin: 0px;
    position: relative;
    width: 100%;
}
.element-invisible {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    height: 1px;
}
.container-inline div, .container-inline label {
    display: inline;
}
.form-group {
    margin-bottom: 15px;
}
.container-inline label {
    display: inline;
}
label {
    font-weight: bold;
    margin: 0px 0px 3px;
}
.search-active .search-string,
.search-active .search-string:hover {
    box-sizing: border-box;
    box-shadow: none;
    color: #1E1E1E;
    font-size: 1.5rem;
    height: 100%;
    line-height: 30px;
    margin: 0px;
    padding: 14px 135px 14px 18px;
    width: 100%;
}
.search-active .search-submit {
    background: transparent none repeat scroll 0% 0%;
    border-left-width: 1px;
    height: 30px;
    line-height: 1;
    margin: 0px;
    outline: medium none;
    padding: 0px;
    position: absolute;
    right: 1px;
    top: 17px;
    width: 46px;
    transition: all 0.3s linear 0s;
}
button {
    outline: medium none;
    text-decoration: none;
		font-family: "Arimo",sans-serif;
}
#search-block-form .form-actions {
    display: none;
}
.form-control {
  border: 1px solid #e1e1e1;
  border-top-color: rgb(225, 225, 225);
  border-top-style: solid;
  border-top-width: 1px;
  border-right-color: rgb(225, 225, 225);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgb(225, 225, 225);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-left-color: rgb(225, 225, 225);
  border-left-style: solid;
  border-left-width: 1px;
  -webkit-box-shadow: 0 1px #fff,inset 0 1px 4px rgba(0,0,0,.15);
  -moz-box-shadow: 0 1px #fff,inset 0 1px 4px rgba(0,0,0,.15);
  box-shadow: 0 1px #fff,inset 0 1px 4px rgba(0,0,0,.15);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 0.75rem;
  height: 40px;
  line-height: 22px;
  margin-bottom: 22px;
  min-height: 40px;
  padding: 8px 12px;
  width: 100%;
}
.search-header a svg path,
.search-active .search-submit svg path {
	fill: #ab0520;
}

#search-form input.form-text {
	border: 1px solid #e1e1e1;
	background: #eef1f1;
	height: 31px;
	padding-left: 5px;
	border-radius: 2px;
}

.webform-client-form input.form-text,
.webform-client-form textarea.form-textarea {
	border: 1px solid #e1e1e1;
	background: #eef1f1 none repeat scroll 0% 0%;
  padding-left: 5px;
  border-radius: 2px;
}

/*GKN Alumni Form*/
.page-node-19266 .webform-component--basic-info,
.page-node-19266 .webform-component--where-living {
	display: block;
	float: left;
	width: 50%;
}

.page-node-19266 .webform-component--where-living legend {
	margin-bottom: 0;
}

.page-node-19266 .webform-component--basic-info .fieldset-wrapper {
	padding-top: 9px;
}

.page-node-19266 .webform-component--where-living--city {
	margin-top: 0;
}

.page-node-19266 .webform-component--plans-after-grad,
.page-node-19266 .webform-component--why-the-ua,
.page-node-19266 .webform-component--how-involved,
.page-node-19266 .webform-component--other-ways-involved,
.page-node-19266 .form-actions {
	display: block;
	float: left;
	width: 100%;
}

/*Slate CRM Form*/
div.form_page input[type="password"],
div.form_page input[type="text"],
div.form_page input[type="email"],
div.form_page input[type="tel"],
div.form_page input:not([type]),
div.form_page select,
div.form_page textarea {
	border: 1px solid #e1e1e1;
	background: #eef1f1;
	border-radius: 2px;
  padding-left: 5px;
}

div.form_action button.default {
	background-color: #777;
	border: 1px solid #777;
	border-radius: 4px;
	color: #fff;
	font-family: Arimo, sans-serif;
	font-weight: bold;
	font-size: 0.75rem;
	height: 28px;
	line-height: 28px;
	margin-right: 4px;
	padding-top: 0;
}

div.form_action button.default:hover {
	background-color: #aaa;
}

.entityform input.form-text,
.entityform input.form-file,
.entityform textarea.form-textarea {
	border: 1px solid #e1e1e1;
	background: #eef1f1;
	padding-left: 5px;
	border-radius: 2px;
}

.entityform input.form-file,
.entityform input.form-submit {
	float: left;
	margin-right: 5px;
}

.entityform .field-multiple-table .field-label label {
	color: #fff;
	padding-left: 10px;
}

.entityform .field-multiple-table input.form-text,
.entityform .field-group-multiple-table input.form-text {
	background: #fff;
}

.entityform .field-multiple-table a.tabledrag-handle .handle {
  height: 22px;
}

.entityform .field-group-multiple-table tr.even td,
.entityform .field-multiple-table tr.even td {
	background: #eef1f1;
}

.entityform .field-group-multiple-table textarea.form-textarea {
	background: #fff;
}


/* Calendar */

.view .date-nav-wrapper .date-next,
.view .date-nav-wrapper .date-prev {
	list-style: none;
}
.view .date-nav-wrapper .date-prev a {
	margin-right: 5px;
}
.view .date-nav-wrapper .date-next a {
	margin-left: 5px;
}
.calendar-calendar div.day {
	width: auto;
}

.region-sidebar-first .view .date-nav-wrapper .date-heading h3 {
	font-size: 1em;
}

.region-sidebar-first .view .date-nav-wrapper .date-heading h3 a {
	font-weight: normal;
}

.region-sidebar-first .view .date-nav-wrapper .date-nav {
	height: 20px;
	margin-bottom: 0;
}

.region-sidebar-first .view .date-nav-wrapper .date-prev,
.region-sidebar-first .view .date-nav-wrapper .date-next {
	background: transparent;
}

.region-sidebar-first .calendar-calendar th.days {
	font-weight: normal;
}

.region-sidebar-first .calendar-calendar table,
.region-sidebar-first .calendar-calendar table > thead > tr > th {
	font-size: 1rem;
}

/* Accordions */

.jquery-ui-filter-accordion .ui-state-default,
.jquery-ui-filter-accordion .ui-state-hover {
	background: #f2efea;
}

.jquery-ui-filter-accordion .ui-state-default a {
	color: #333;
}

.ui-accordion .ui-accordion-header {
	font-size: 1rem;
}

.ui-accordion-header .ui-accordion-icons,
.ui-accordion .ui-accordion-icons {
  padding-left: 1.8em;
}

.ui-accordion-content p,
.ui-accordion-content li,
.ui-accordion-content a {
	font-size: 0.9rem;
	font-family: MiloWeb, Verdana, Geneva, sans-serif;
}

.ui-accordion-content a {
	font-weight: bold;
	color: #395180;
	text-decoration: none;
}

.ui-accordion-content a:hover {
	text-decoration: underline;
}

.block-quicktabs .ui-state-default a,
.block-quicktabs .ui-state-default a:link,
.block-quicktabs .ui-state-default a:visited {
  color: #333;
	font-family: MiloWeb, Verdana, Geneva, sans-serif;
	font-size: 1rem;
  font-weight: bold;
}

.block-quicktabs .ui-state-default,
.block-quicktabs .ui-widget-content .ui-state-default,
.block-quicktabs .ui-widget-header .ui-state-default {
	background: #f2efea;
}

.block-quicktabs .ui-accordion h3 {
	margin-bottom: 0;
	text-transform: none;
}

.block-quicktabs .ui-accordion-header-active {
	border: 1px solid #aaa;
}

.block-quicktabs .ui-accordion .ui-corner-bottom {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

@media (max-width: 47.9em) {
	.ui-accordion .ui-accordion-header {
		font-size: 0.8rem;
	}
	.ui-accordion .ui-accordion-content {
		padding: 0.5em;
	}
	.ui-accordion .ui-accordion-content p {
		margin-bottom: 0.5rem;
	}
	.block-quicktabs .ui-helper-reset {
		line-height: 1;
	}
}

/* IE Font Fixes */

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
/* IE10+ CSS styles go here */
	body {
		font-family: MiloWeb, sans-serif, Verdana, Geneva;
	}
	h2 {
		font-family: MiloSerifWeb, serif, Georgia, TimesNewRoman;
	}
	.tb-megamenu .nav > li > a {
		font-size: 14px;
	}
	#banner-menu ul.menu li a {
    font-size: 14px;
	}
	p {
		font-size: 15px;
	}
	.region-news .views-field-title h2.field-content {
		font-size: 18px;
	}
	.region-news .views-field-field-summary p {
    font-size: 13px;
	}
}

