/**
 * @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");
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
audio,
canvas,
video {
  display: inline-block;
}

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

/* Address styling not present in IE 8/9. */
[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.
 */
html {
  font-family: Verdana, Tahoma, "DejaVu Sans", 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. */
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. */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
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. */
p,
pre {
  margin: 1.5em 0;
}

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

h2 {
  font-size: 1.5em;
  line-height: 2em;
  margin-top: 1em;
  margin-bottom: 1em;
}

h3 {
  font-size: 1.17em;
  line-height: 1.28205em;
  margin-top: 1.28205em;
  margin-bottom: 1.28205em;
}

h4 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

h5 {
  font-size: 0.83em;
  line-height: 1.80723em;
  margin-top: 1.80723em;
  margin-bottom: 1.80723em;
}

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. */
abbr[title] {
  border-bottom: 1px dotted;
}

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

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

/* Address differences between Firefox and other browsers. */
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. */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
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. */
pre {
  white-space: pre-wrap;
}

/* Set consistent quote types. */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.5em 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

dd {
  margin: 0 0 0 30px;
  /* LTR */
}

/* Address paddings set differently in IE 6/7. */
menu,
ol,
ul {
  padding: 0 0 30px 30px;
  /* LTR */
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
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. */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
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.
 */
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.
 */
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.
 */
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.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

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

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  -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).
 */
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.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Remove inner padding and border in Firefox 4+. */
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.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
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 */
/**
 * @file
 * Positioning for a responsive layout.
 *
 * Define CSS classes to create a fluid grid layout with optional sidebars
 * depending on whether blocks are placed in the left or right sidebars.
 *
 * This layout uses the Zen Grids plugin for Compass: http://zengrids.com
 */
/**
 * Center the page.
 *
 * For screen sizes larger than 1200px, prevent excessively long lines of text
 * by setting a max-width.
 */
.region-bottom,
.page-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer {
  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;
}

/* Containers for grid items and flow items. */
#header:before, #header:after,
#main:before,
#main:after,
#footer:before,
#footer:after {
  content: "";
  display: table;
}
#header:after,
#main:after,
#footer:after {
  clear: both;
}

/* Navigation bar */
@media all and (min-width: 480px) {
  #main {
    /* Move all the children of #main down to make room. */
    position: relative;
  }

  #navigation {
    /* Move the navbar up inside #main's padding. */
  }
}
/**
 * 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.
   */
  .sidebar-first {
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  .sidebar-first #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  .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.
   */
  .sidebar-second {
    /* Span 2 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 3rd column from left. */
  }
  .sidebar-second #content {
    float: left;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: -66.66667%;
  }
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }

  /**
   * The layout when there are two sidebars.
   */
  .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. */
  }
  .two-sidebars #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }
  .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. */
  }
  .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;
  }
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
    clear: left;
  }
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
    float: left;
    width: 33.33333%;
    margin-left: 33.33333%;
    margin-right: -66.66667%;
  }
  .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.
   */
  .sidebar-first {
    /* Span 4 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  .sidebar-first #content {
    float: left;
    width: 80%;
    margin-left: 20%;
    margin-right: -100%;
  }
  .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.
   */
  .sidebar-second {
    /* Span 4 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  .sidebar-second #content {
    float: left;
    width: 80%;
    margin-left: 0%;
    margin-right: -80%;
  }
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 20%;
    margin-left: 80%;
    margin-right: -100%;
  }

  /**
   * The layout when there are two sidebars.
   */
  .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. */
  }
  .two-sidebars #content {
    float: left;
    width: 60%;
    margin-left: 20%;
    margin-right: -80%;
  }
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 20%;
    margin-left: 0%;
    margin-right: -20%;
  }
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 20%;
    margin-left: 80%;
    margin-right: -100%;
  }
}
/* Component (SMACSS module) rules */
/* Variables */
/* Colors */
/* Fonts */
/**
 * @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.
 */
.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 */
.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. */
.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.
 */
#skip-link {
  margin: 0;
}
#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. */
.header__logo {
  float: left;
  /* LTR */
  margin: 0;
  padding: 0;
}

/* Logo image. */
.header__logo-image {
  padding: 1.5em 0;
  max-width: 420px;
  width: 100%;
  height: auto;
}

/* Wrapper for website name and slogan. */
.header__name-and-slogan {
  float: left;
  padding: 1.5em 0;
  height: auto;
  font-family: MiloSerifWeb, TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
}

/* The name of the website. */
.header__site-name {
  margin: 0;
  font-size: 2em;
  line-height: 1.5em;
}

/* The link around the name of the website. */
.header__site-link:link, .header__site-link:visited {
  color: #0c234b;
  text-decoration: none;
}
.header__site-link:hover, .header__site-link:focus {
  text-decoration: underline;
}

/* The slogan (or tagline) of a website. */
.header__site-slogan {
  margin: 0;
}

/* The secondary menu (login, etc.) */
.header__secondary-menu {
  float: right;
  /* LTR */
}

/* Wrapper for any blocks placed in the header region. */
.header__region {
  /* Clear the logo. */
}

/**
 * Navigation bar.
 */
#navigation {
  /* Sometimes you want to prevent overlapping with main div. */
  /* overflow: hidden; */
  /* Main menu and secondary menu links and menu block links. */
}
#navigation .block {
  margin-bottom: 0;
}
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
#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.
 */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/**
 * Titles.
 */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
}

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

.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;
}

.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;
}

.messages__list {
  margin: 0;
}

.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
.messages--error p.error {
  color: #333;
}

/* System status report. */
.ok,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

.warning,
.messages--warning {
  background-color: #fffce5;
  color: #840;
}

.error,
.messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
.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;
}

.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  float: left;
  /* LTR */
  margin: 0 3px;
}

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

.is-active.tabs-primary__tab {
  border-bottom-color: white;
}

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

a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

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. */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.5em;
}

.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0.75em 3px;
}

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

a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}

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(). */
.inline {
  display: inline;
  padding: 0;
}
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

/* The inline field label used by the Fences module. */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

/**
 * "More" links.
 */
.more-link {
  text-align: right;
  /* LTR */
}

.more-help-link {
  text-align: right;
  /* LTR */
}

.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. */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

.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;
}

.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. */
.pager-current {
  font-weight: bold;
}

/**
 * Blocks.
 */
/* Block wrapper. */
.block {
  margin-bottom: 1.5em;
}

/**
 * Menus.
 */
.menu__item.is-leaf {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHBAMAAAA2fErgAAAAD1BMVEX///+/v7+Li4sAAADAwMBFvsw8AAAAAXRSTlMAQObYZgAAAB1JREFUCFtjYAADYwMGBmYVZSDhKAwkFJWhYiAAAB2+Aa/9ugeaAAAAAElFTkSuQmCC');
  list-style-type: square;
}

.menu__item.is-expanded {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  list-style-type: circle;
}

.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. */
.menu a.active {
  color: #000;
}

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
.new,
.update {
  color: #c00;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
}

/**
 * Unpublished note.
 */
/* The word "Unpublished" displayed underneath the content. */
.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. */
.comments {
  margin: 1.5em 0;
}

/* Preview of the comment before submitting new or updated comment. */
.comment-preview {
  /* Drupal core will use a #ffffea background. See #1110842. */
  background-color: #ffffea;
}

/* Wrapper for a single comment. */
.comment {
  /* Comment's permalink wrapper. */
}
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* Nested comments are indented. */
.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. */
.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). */
}
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
.form-item .description {
  font-size: 0.85em;
}

.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

/* The part of the label that indicates a required field. */
.form-required {
  color: #c00;
}

/* Labels for radios and checkboxes. */
label.option {
  display: inline;
  font-weight: normal;
}

/* Buttons used by contrib modules like Media. */
a.button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

/* Password confirmation. */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
#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. */
.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. */
.openid-link,
.user-link {
  margin-top: 1.5em;
}

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

#user-login ul {
  margin: 1.5em 0;
}

/**
 * Drupal admin tables.
 */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
form tbody {
  border-top: 1px solid #ccc;
}
form table ul {
  margin: 0;
}

tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

tr.even {
  background-color: #fff;
}

/* Markup generated by theme_tablesort_indicator(). */
td.active {
  background-color: #ddd;
}

/* Center checkboxes inside table cell. */
td.checkbox,
th.checkbox {
  text-align: center;
}

/* Drupal core wrongly puts this in system.menus.css. Since we override that, add it back. */
td.menu-disabled {
  background: #ccc;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list. */
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
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 */
}
html.js .collapsed .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  background-position: 5px 50%;
  /* LTR */
}
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
tr.drag {
  background-color: #fffff0;
}

tr.drag-previous {
  background-color: #ffd;
}

.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
tr.selected td {
  background: #ffc;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
.progress {
  font-weight: bold;
}
.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;
}
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1439853432');
}

/**
 * @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. */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }

  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 16px;
  }
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Turn off any background colors or images. */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  #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;
  }
}
/* Import the Milo Fonts */
/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
fieldset#edit-captcha {
  display: none;
}

/* BASE */
body {
  color: #333;
  font-weight: 100;
  font-size: 1.2em;
  font-family: MiloWeb, Verdana, Geneva, sans-serif;
}

a {
  text-decoration: none;
  color: #ab0520;
}
a:hover {
  color: #CC665E;
}

h1.page__title {
  font-family: MiloSerifWeb, TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  color: #6F868D;
  text-transform: uppercase;
  font-size: 3em;
  line-height: 1em;
  font-weight: 500;
  margin-bottom: 0.5em;
}

h2 {
  color: #0c234b;
  font-family: MiloSerifWeb, TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  line-height: 1.2em;
  font-size: 1.7em;
}

#content h2.block__title {
  margin: 1em 0;
}

h3 {
  color: #0c234b;
  font-family: MiloSerifWeb, TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  font-size: 1.25em;
}

/* Catstrap Table */
table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  border: 1px solid #fff;
  font-size: 18px;
  font-size: 1.125rem;
}

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

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

table > thead > tr > th,
table > thead > tr > td {
  border-bottom-width: 1px;
}

table > tbody > tr > td {
  background: #fff;
  color: #49595e;
}

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

@media screen and (max-width: 767px) {
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > thead > tr > th {
    white-space: nowrap;
  }

  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
}
table > tbody + tbody {
  border-top: 2px solid #ddd;
}

table table {
  background-color: #fff;
}

table > tbody > tr:nth-of-type(odd) > td, table > tbody > tr:nth-of-type(odd) > th {
  background-color: #EEF1F1;
}

table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #076873;
  color: #fff;
}

.table-responsive {
  min-height: .01%;
  overflow-x: auto;
}

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }

  .table-responsive > table {
    margin-bottom: 0;
  }

  .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;
  }

  .table-responsive > table {
    border: 0;
  }

  .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;
  }

  .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;
  }

  .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;
  }
}
label {
  display: block;
  margin-bottom: 5px;
  padding: 20px 0 0 0;
  color: #49595E;
  font-weight: bold;
  font-size: 1em;
}

input.form-text {
  width: 50%;
  height: 40px;
  height: 2.5rem;
  display: block;
  padding: 6px 12px;
  border: 1px solid #076873;
  border-radius: 1px;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  -webkit-box-shadow: inset 0 1px 1px rgba(131, 210, 226, 0.075);
  box-shadow: inset 0 1px 1px rgba(235, 239, 238, 0.075);
  color: #545454;
  vertical-align: middle;
  font-size: 1.4em;
  line-height: 1.428571429;
  -webkit-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;
}

textarea.form-textarea {
  width: 50%;
  height: auto;
  display: block;
  padding: 6px 12px;
  border: 1px solid #076873;
  border-radius: 1px;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  -webkit-box-shadow: inset 0 1px 1px rgba(131, 210, 226, 0.075);
  box-shadow: inset 0 1px 1px rgba(235, 239, 238, 0.075);
  color: #545454;
  vertical-align: middle;
  font-size: 1.4em;
  line-height: 1.428571429;
  -webkit-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;
}

.form-actions input.form-submit {
  display: inline-block;
  background: #ab0520;
  border: 0;
  color: #fff;
  font-weight: bold;
  padding: 0.7em 1em;
}
.form-actions input.form-submit:hover {
  background: #63000B;
}

#content {
  padding-bottom: 2em;
}

/* UA BANNER */
#ua-web-branding-banner-v1.blue {
  position: relative;
  margin: 0 auto;
  background-color: #AB0520;
  height: 59px;
}
#ua-web-branding-banner-v1.blue p {
  margin: 8px 0px 0px;
  height: 34px;
  background: url(/sites/all/themes/ua_siab_fan/images/ua-logo-new.png) no-repeat 0px 5px;
  text-indent: -9999em;
}

#ua-web-branding-banner-v1 .ua-home.asdf {
  display: inline-block;
  margin-left: 8px;
  min-width: 353px;
}

.page-wrapper {
  width: 96%;
  padding-left: 2%;
  padding-right: 2%;
}

/* MENU */
.header__region {
  float: right;
}
.header__region #block-nodeblock-122 {
  padding-top: 1em;
  margin: 0;
}
.header__region #block-nodeblock-122 p {
  margin: 0;
  font-size: .75em;
}
.header__region #block-nodeblock-122 p a {
  color: #647980;
}
.header__region #block-nodeblock-122 p a:hover {
  color: #596367;
}
.header__region #block-search-form {
  margin-bottom: 0;
}
.header__region #block-search-form input.form-text {
  padding: 0.4em;
  border: 1px solid #CBCBCB;
  background: #f0f0f2;
  width: 11em;
  display: inline-block;
  font-size: inherit;
}
.header__region #block-search-form input.form-submit {
  text-indent: -9999em;
  border: 0;
  width: 24px;
  height: 24px;
  background: url("/sites/all/themes/ua_siab_fan/images/search.png") no-repeat 50% 50%;
  padding: 0;
}

#navigation {
  border-top: 1px solid #cbcbcb;
  padding: 0;
  clear: both;
  line-height: 0;
}
#navigation ul.menu {
  display: inline-block;
}
#navigation ul.menu li {
  padding-right: 2.3em;
}
#navigation ul.menu li a {
  color: #395180;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.95em;
  letter-spacing: 0.03em;
}
#navigation ul.menu li a:hover {
  color: #7B89AE;
}
#navigation ul.menu li ul {
  padding: 1.5em 1em 1em;
}
#navigation ul.menu li ul li a {
  font-size: 0.9em;
  color: #fff;
  font-weight: normal;
  padding: 0.3em;
  text-transform: none;
}
#navigation ul.menu li ul li a:hover {
  background: #DBE8EA;
  color: #076873;
}
#navigation ul.menu li > a {
  padding: 1em 0;
}
#navigation .tinynav-wrapper {
  padding: 1em 0;
}
#navigation .tinynav-wrapper select.tinynav.tinynav1 {
  margin: 0 auto;
}

.section-people .people-list ul, .section-people .item-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.section-people .people-list ul li, .section-people .item-list ul li {
  border-bottom: 1px solid #CBCBCB;
  padding: 1.5em 0;
}
.section-people .people-list ul li h2, .section-people .item-list ul li h2 {
  margin: 0 0 1em;
}
.section-people .people-list ul li .field-name-field-photo, .section-people .item-list ul li .field-name-field-photo {
  float: left;
  width: 25%;
  margin-right: 1%;
}
.section-people .people-list ul li .field-name-field-photo img, .section-people .item-list ul li .field-name-field-photo img {
  width: 100%;
  height: auto;
}
.section-people .people-list ul li.views-row-first, .section-people .item-list ul li.views-row-first {
  padding: 0 0 1.5em 0;
}
.section-people .people-list ul li:after, .section-people .item-list ul li:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

a.feed-icon img {
  clear: both;
  margin-top: 1em;
}

ul.sf-menu li ul {
  background-color: rgba(12, 35, 75, 0.8);
  background-image: url("/sites/all/themes/ua_siab_fan/images/menu-triangle.png");
  background-position: 2em 0;
  background-repeat: no-repeat;
}

.sf-menu li:hover > ul, .sf-menu li.sfHover > ul {
  top: 2.8em;
}

/* HOME SLIDESHOW */
#home-slideshow img {
  width: 100%;
}

.flex-nav-container {
  margin: 0;
}
.flex-nav-container .flexslider {
  border: 0;
  background: transparent;
}
.flex-nav-container .views-field-field-caption {
  position: absolute;
  top: 6em;
  width: 100%;
}
.flex-nav-container .views-field-field-caption .caption-container {
  background: url("/sites/all/themes/ua_siab_fan/images/red-half-bg.png") repeat-y 50% 0;
}
.flex-nav-container .views-field-field-caption .caption-container h3 {
  color: white;
  margin: 0px auto;
  font-family: MiloSerifWeb, TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  font-size: 2em;
}
.flex-nav-container .views-field-field-caption .caption-container h3 .field-name-field-caption {
  float: right;
  width: 70%;
  background: #ab0520 url("/sites/all/themes/ua_siab_fan/images/cap-bg.png") no-repeat 1em 1.2em;
  padding: 1em 1em 1em 4em;
}
.flex-nav-container .views-field-field-caption .hero-button {
  padding-top: 1em;
  width: 86%;
  float: right;
}
.flex-nav-container .bottom-caption-container {
  background: #6f868d;
  padding: 1.5em 0;
}
.flex-nav-container .bottom-caption-container p {
  margin: 0;
  color: #fff;
}
.flex-nav-container .bottom-caption-container .caption-left {
  width: 75%;
  float: left;
}
.flex-nav-container .bottom-caption-container .caption-right {
  width: 25%;
  float: right;
  text-align: center;
}

.flex-direction-nav li a {
  top: 30%;
  padding: 1em 0.2em;
}

.flex-direction-nav li a.next {
  right: 0;
  background: url("../images/r-arrow.png") no-repeat 50% 50%;
  background-color: rgba(111, 134, 141, 0.7);
}
.flex-direction-nav li a.next:hover {
  background-color: #6f868d;
}

.flex-direction-nav li a.prev {
  left: 0;
  background: url("../images/l-arrow.png") no-repeat 50% 50%;
  background-color: rgba(111, 134, 141, 0.7);
}
.flex-direction-nav li a.prev:hover {
  background-color: #6f868d;
}

#block-views-hero-links-hero-links-block .views-row {
  width: 21%;
  padding: 0 2%;
  text-align: center;
  float: left;
}
#block-views-hero-links-hero-links-block .views-row h3 {
  font-family: MiloSerifWeb, TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  text-transform: uppercase;
  font-size: 1.8em;
  margin: 0 0 0.3em 0;
  border-bottom: 2px solid #ab0520;
  letter-spacing: -0.01em;
  line-height: 1em;
  padding-bottom: 0.2em;
}
#block-views-hero-links-hero-links-block .views-row h3 a {
  color: #ab0520;
}
#block-views-hero-links-hero-links-block .views-row h3 a:hover {
  color: #CC665E;
}
#block-views-hero-links-hero-links-block .views-row p {
  margin: 0;
  font-size: 1.2em;
}

#block-views-news-block-2 {
  padding-top: 1em;
}
#block-views-news-block-2 h2 {
  text-align: center;
  font-size: 3em;
  color: #0c234b;
  font-family: MiloSerifWeb, TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  text-transform: uppercase;
  font-weight: 500;
}
#block-views-news-block-2 .view-News ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#block-views-news-block-2 .view-News ul li {
  width: 48%;
  float: left;
  min-height: 230px;
  display: inline-block;
  vertical-align: top;
  border-bottom: none;
  padding: 0;
}
#block-views-news-block-2 .view-News ul li.views-row-odd {
  margin-right: 2%;
}
#block-views-news-block-2 .view-News ul li.views-row-even {
  margin-left: 2%;
}
#block-views-news-block-2 .view-News ul li.views-row-1,
#block-views-news-block-2 .view-News ul li.views-row-2 {
  padding-top: 1em;
  border-top: 1px solid #cbcbcb;
}
#block-views-news-block-2 .view-News ul .date-title-container {
  border-left: 10px solid #ab0520;
  padding-left: 1em;
}
#block-views-news-block-2 .view-News ul .date-title-container .date-display-single {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.8em;
}
#block-views-news-block-2 .view-News ul .date-title-container h3.news-title {
  margin: 0 0 0.5em 0;
  font-family: MiloSerifWeb, TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  font-size: 1.5em;
  line-height: 1.1em;
}
#block-views-news-block-2 .view-News ul p {
  margin: 1em 0;
}

#block-views-news-block-3 {
  padding-top: 1em;
}
#block-views-news-block-3 h2 {
  text-align: center;
  font-size: 3em;
  color: #0c234b;
  font-family: MiloSerifWeb, TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  text-transform: uppercase;
  margin: 0.25em 0 !important;
  border-bottom: 1px solid #CBCBCB;
  font-weight: 500;
}
#block-views-news-block-3 .view-News ul li {
  border-bottom: 0;
  padding: 1.5em 0;
}
#block-views-news-block-3 .news-list-block li {
  width: 33.3%;
  float: left;
}

#footer {
  padding-top: 2em;
  background: #e6e3d9;
}
#footer #block-menu-menu-footer-menu {
  float: right;
  margin: 0;
}
#footer #block-menu-menu-footer-menu ul.menu {
  float: right;
  margin: 0.9em 0;
}
#footer #block-menu-menu-footer-menu ul.menu li {
  list-style: none;
  display: inline-block;
  border-right: 1px solid #000;
  padding: 0 0.7em 0 0.5em;
}
#footer #block-menu-menu-footer-menu ul.menu li a {
  color: #333;
  font-weight: bold;
  font-size: 0.8em;
}
#footer #block-menu-menu-footer-menu ul.menu li a:hover {
  color: #777;
}
#footer #block-menu-menu-footer-menu ul.menu li.last {
  border-right: none;
}
#footer .footer-logo-block {
  float: left;
  margin: 0;
}
#footer .footer-logo-block p {
  margin: 0;
  font-size: 0.9em;
}
#footer #block-block-7 {
  border-top: 1px solid #8E8C85;
  font-size: 0.8em;
  width: 100%;
}

/* SIDEBAR */
.sidebar h2.block-title {
  font-family: MiloWeb, Verdana, Geneva, sans-serif;
  font-size: 1em;
  text-transform: uppercase;
  color: #003E7E;
  margin: 0;
  padding-left: 0.3em;
  padding-bottom: 0.5em;
}
.sidebar .quick-links ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0.5em 0 !important;
  border-bottom: 1px solid #D8E5E2;
}
.sidebar .quick-links ul li {
  padding: 0;
  margin: 0;
}
.sidebar .quick-links ul li a {
  display: block;
  color: #333;
  font-size: 0.85em;
  padding: 0.3em 1em 0.3em 0.4em;
  line-height: 1.1em;
  margin: 0.2em 0;
}
.sidebar .quick-links ul li a:hover {
  background: #dbe8ea url("/sites/all/themes/ua_siab_fan/images/sidebar-menu-chevron.png") no-repeat 100% 50%;
  color: #076873;
}
.sidebar .item-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #D8E5E2;
}
.sidebar .item-list ul li.views-row-first {
  padding-bottom: 1em;
  border-bottom: 1px solid #eee;
}
.sidebar .item-list ul li.views-row-last {
  padding: 0 0 1em 0;
  border-bottom: 1px solid #eee;
}
.sidebar .item-list ul li h2 {
  margin: 0.5em 0;
  font-size: 1.5em;
}
.sidebar .item-list ul li h2 a {
  color: #495978;
}
.sidebar .item-list ul li h2 a:hover {
  color: #6f868d;
}
.sidebar .item-list ul li .views-field-field-event-date {
  font-weight: bold;
  margin-bottom: 0.5em;
}

.view-News ul,
.view-events ul,
.view-meetings ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.view-News ul li,
.view-events ul li,
.view-meetings ul li {
  border-bottom: 1px solid #CBCBCB;
  padding: 1.5em 0;
}
.view-News ul li h2,
.view-events ul li h2,
.view-meetings ul li h2 {
  margin-top: 0;
  margin-bottom: 0.5em;
}
.view-News ul li span.date-display-single,
.view-events ul li span.date-display-single,
.view-meetings ul li span.date-display-single {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.8em;
}
.view-News ul li.views-row-first,
.view-events ul li.views-row-first,
.view-meetings ul li.views-row-first {
  padding: 0 0 1.5em 0;
}

#block-views-news-block-2 h2.block__title {
  margin: 0 0 0.5em 0;
}

.item-list ul.pager {
  padding: 1.5em 0;
}
.item-list ul.pager li {
  border: 0;
  padding: 0;
}

/* CALENDAR */
.view-calendar-of-events .date-nav-wrapper .date-nav {
  height: 30px;
}
.view-calendar-of-events ul.pager {
  list-style: none;
  padding: 0;
  margin: 0;
}
.view-calendar-of-events ul.pager li.date-prev, .view-calendar-of-events ul.pager li.date-next {
  background: #ab0520;
}
.view-calendar-of-events ul.pager li.date-prev a, .view-calendar-of-events ul.pager li.date-next a {
  color: #fff;
  margin: 0 0.75em;
}
.view-calendar-of-events .calendar-calendar td.empty {
  color: #ccc;
}
.view-calendar-of-events .calendar-calendar td .inner div.day a {
  color: #ab0520;
}
.view-calendar-of-events .calendar-calendar .month-view .full tr td.single-day.today {
  border-bottom: 2px solid;
}
.view-calendar-of-events .calendar-calendar .month-view .full tr td.today, .view-calendar-of-events .calendar-calendar .month-view .full tr.odd td.today, .view-calendar-of-events .calendar-calendar .month-view .full tr.even td.today {
  border-left: 2px solid #7C7F12;
  border-right: 2px solid #7C7F12;
}
.view-calendar-of-events .calendar-calendar .month-view .full td.date-box.today {
  border-color: #5C8727;
}
.view-calendar-of-events .calendar-calendar .month-view .full td.single-day div.monthview, .view-calendar-of-events .calendar-calendar .week-view .full td.single-day div.weekview, .view-calendar-of-events .calendar-calendar .day-view .full td.single-day div.dayview {
  background: #E6E3D9;
}

/* FAQ */
.view-faq .view-content .item-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.view-faq .view-content .item-list ul li {
  padding-bottom: 1.5em;
  border-top: 1px solid #cbcbcb;
}

/* BLOG */
.view-blog .view-content .item-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 0;
  font-family: MiloSerifWeb, TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
}

.btn-blue {
  background: #0c234b;
  color: #fff;
}

.btn-red {
  background: #ab0520;
  color: #fff;
}
.btn-red:hover {
  background: #63000B;
  color: #fff;
}

.btn-large {
  padding: 0.7em 1em;
  font-size: 1.5em;
}

.btn-medium {
  padding: 0.7em 1em;
  font-size: 1.2em;
}

/* MEDIA QUERIES */
@media all and (min-width: 0px) and (max-width: 479px) {
  #block-views-hero-links-hero-links-block .views-row {
    width: 96%;
    padding-bottom: 2.5em;
  }

  #block-views-news-block-2 .view-News ul li {
    min-height: 0;
    width: 100%;
    margin: 0;
    border-top: 1px solid #CBCBCB;
    padding-top: 1em;
  }

  #block-views-news-block-2 .view-News ul li.views-row-even {
    margin: 0;
  }

  #block-views-news-block-2 .view-News ul li.views-row-odd {
    margin: 0;
  }

  .flex-nav-container .bottom-caption-container .caption-left {
    width: 100%;
    float: none;
    text-align: center;
  }

  .flex-nav-container .bottom-caption-container .caption-right {
    width: 100%;
    float: none;
    text-align: center;
    padding-top: 1em;
  }

  .header__logo {
    width: 100%;
    text-align: center;
  }

  .header__region {
    width: 100%;
    text-align: center;
  }

  .header__region #block-nodeblock-122 {
    padding-top: 0;
  }

  .header__region #block-search-form {
    margin-bottom: 1.5em;
  }

  .flex-direction-nav li a {
    position: relative;
    margin: 0;
    z-index: 100;
    padding: 1em 0;
    width: 49.8%;
  }

  .flex-direction-nav li a.prev {
    float: left;
  }

  .flex-direction-nav li a.next {
    float: right;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  .page-wraper {
    width: 96%;
    padding-left: 2%;
    padding-right: 2%;
  }

  .flex-direction-nav li a {
    position: relative;
    margin: 0;
    z-index: 100;
    padding: 1em 0;
    width: 49.8%;
  }

  .flex-direction-nav li a.prev {
    float: left;
  }

  .flex-direction-nav li a.next {
    float: right;
  }

  #block-views-hero-links-hero-links-block .views-row {
    width: 46%;
    padding-bottom: 2.5em;
  }

  #block-views-news-block-2 .view-News ul li {
    min-height: 0;
    width: 100%;
    margin: 0;
    border-top: 1px solid #CBCBCB;
    padding-top: 1em;
    width: 49.9%;
  }

  #block-views-news-block-2 .view-News ul li.views-row-even {
    margin: 0;
  }

  #block-views-news-block-2 .view-News ul li.views-row-odd {
    margin: 0;
  }

  .flex-nav-container .bottom-caption-container .caption-left {
    width: 100%;
    float: none;
    text-align: center;
  }

  .flex-nav-container .bottom-caption-container .caption-right {
    width: 100%;
    float: none;
    text-align: center;
    padding-top: 1em;
  }

  .header__logo {
    width: 100%;
    text-align: center;
  }

  .header__region {
    width: 100%;
    text-align: center;
  }

  .header__region #block-nodeblock-122 {
    padding-top: 0;
  }

  .header__region #block-search-form {
    margin-bottom: 1.5em;
  }

  section.sidebar {
    margin-top: 4.5em;
  }
}
@media all and (min-width: 768px) and (max-width: 959px) {
  .page-wrapper {
    width: 768px;
  }

  #block-views-hero-links-hero-links-block .views-row h3 {
    font-size: 1.2em;
  }

  #block-views-hero-links-hero-links-block .views-row p {
    font-size: 0.9em;
  }

  .view-News ul li {
    min-height: 280px;
  }

  #navigation ul.menu li a {
    font-size: 0.65em;
  }

  #navigation ul.menu li {
    padding-right: 1.1em;
  }

  .sf-menu li:hover > ul, .sf-menu li.sfHover > ul {
    top: 1.95em;
  }

  #block-views-news-block-2 .view-News ul li {
    min-height: 300px;
  }

  section.sidebar {
    margin-top: 4.5em;
  }
}
@media all and (min-width: 960px) and (max-width: 1199px) {
  .page-wrapper {
    width: 960px;
  }

  #navigation ul.menu li a {
    font-size: 0.8em;
  }

  #navigation ul.menu li {
    padding-right: 1.5em;
  }

  .sf-menu li:hover > ul, .sf-menu li.sfHover > ul {
    top: 2.4em;
  }

  #block-views-hero-links-hero-links-block .views-row h3 {
    font-size: 1.5em;
  }

  #block-views-hero-links-hero-links-block .views-row p {
    font-size: 1em;
  }

  #block-views-news-block-2 .view-News ul .date-title-container h3.news-title {
    font-size: 1.3em;
  }

  section.sidebar {
    margin-top: 4.5em;
  }
}
@media all and (min-width: 1200px) {
  #navigation ul.menu li a {
    font-size: 0.95em;
  }

  #block-views-hero-links-hero-links-block .views-row h3 {
    font-size: 1.8em;
  }

  #block-views-hero-links-hero-links-block .views-row p {
    font-size: 1.2em;
  }

  section.sidebar {
    margin-top: 4.5em;
  }
}
