/**
 * @file
 * @copyright Copyright (c) 2013 Palantir.net
 * 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. */
/* line 23, ../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 38, ../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 _base.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: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  /* 1 */
  font-size: 90%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.80556em;
}

/* 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 153, ../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 169, ../sass/_normalize.scss */
p,
pre {
  margin: 1.80556em 0;
}

/* line 173, ../sass/_normalize.scss */
blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.80556em 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: 2.7em;
  line-height: 1.33745em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.66872em;
  margin-bottom: 0.66872em;
}

/* line 190, ../sass/_normalize.scss */
h2 {
  font-size: 2.22em;
  line-height: 1.62663em;
  margin-top: 0.81331em;
  margin-bottom: 0.81331em;
}

/* line 195, ../sass/_normalize.scss */
h3 {
  font-size: 1.83em;
  line-height: 1.97328em;
  margin-top: 0.98664em;
  margin-bottom: 0.98664em;
}

/* line 200, ../sass/_normalize.scss */
h4 {
  font-size: 1.58em;
  line-height: 2.28551em;
  margin-top: 1.14276em;
  margin-bottom: 1.14276em;
}

/* line 205, ../sass/_normalize.scss */
h5 {
  font-size: 1.2em;
  line-height: 1.50463em;
  margin-top: 1.50463em;
  margin-bottom: 1.50463em;
}

/* line 210, ../sass/_normalize.scss */
h6 {
  font-size: 1.1em;
  line-height: 1.64141em;
  margin-top: 1.64141em;
  margin-bottom: 1.64141em;
}

/* 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 222, ../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 {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.80556em 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 248, ../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.80556em;
}

/* 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 284, ../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 301, ../sass/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.80556em 0;
}

/* line 310, ../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 321, ../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-width: 0.06944em;
  border-top-style: solid;
  padding-top: 0.5625em;
  border-bottom-width: 0.06944em;
  border-bottom-style: solid;
  padding-bottom: 1.10417em;
  border-left-width: 0.06944em;
  border-left-style: solid;
  padding-left: 1.10417em;
  border-right-width: 0.06944em;
  border-right-style: solid;
  padding-right: 1.10417em;
}

/**
 * 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 413, ../sass/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 432, ../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 443, ../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 457, ../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 471, ../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 482, ../sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
  -webkit-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 */
  -moz-box-sizing: content-box;
  -webkit-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 506, ../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 512, ../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.80556em;
  margin-bottom: 1.80556em;
}

/* 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.
 */
/* line 42, ../sass/layouts/_responsive.scss */
#page,
.region-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
/* line 50, ../sass/layouts/_responsive.scss */
#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. */
/* line 45, ../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 69, ../sass/layouts/_responsive.scss */
  #main {
    /* Move all the children of #main down to make room. */
    padding-top: 3em;
    position: relative;
  }

  /* line 74, ../sass/layouts/_responsive.scss */
  #navigation {
    /* Move the navbar up inside #main's padding. */
    position: absolute;
    top: 0;
    height: 3em;
    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 95, ../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 97, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 200%;
    margin-left: 100%;
    margin-right: -300%;
  }
  /* line 102, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 110, ../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 112, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 200%;
    margin-left: 0%;
    margin-right: -200%;
  }
  /* line 117, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 200%;
    margin-right: -300%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 125, ../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 127, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 200%;
    margin-left: 100%;
    margin-right: -300%;
  }
  /* line 132, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  /* line 137, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 300%;
    margin-left: 0%;
    margin-right: -300%;
    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 143, ../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 147, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
  }
  /* line 152, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
    float: left;
    width: 100%;
    margin-left: 100%;
    margin-right: -200%;
  }
  /* line 156, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
    float: left;
    width: 100%;
    margin-left: 200%;
    margin-right: -300%;
  }
}
/**
 * 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 173, ../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 175, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 400%;
    margin-left: 100%;
    margin-right: -500%;
  }
  /* line 180, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 188, ../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 190, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 400%;
    margin-left: 0%;
    margin-right: -400%;
  }
  /* line 195, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 400%;
    margin-right: -500%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 203, ../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 205, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 300%;
    margin-left: 100%;
    margin-right: -400%;
  }
  /* line 210, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  /* line 215, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 400%;
    margin-right: -500%;
  }
}
/* 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 15, ../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 39, ../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 65, ../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: 0;
  padding: 0;
}

/* Logo image. */
/* line 88, ../sass/components/_misc.scss */
.header__logo-image {
  vertical-align: bottom;
}

/* Wrapper for website name and slogan. */
/* line 93, ../sass/components/_misc.scss */
.header__name-and-slogan {
  float: left;
}

/* The name of the website. */
/* line 98, ../sass/components/_misc.scss */
.header__site-name {
  margin: 0;
  font-size: 2.7em;
  line-height: 1.33745em;
}

/* The link around the name of the website. */
/* line 105, ../sass/components/_misc.scss */
.header__site-link:link, .header__site-link:visited {
  color: #000;
  text-decoration: none;
}
/* line 111, ../sass/components/_misc.scss */
.header__site-link:hover, .header__site-link:focus {
  text-decoration: underline;
}

/* The slogan (or tagline) of a website. */
/* line 118, ../sass/components/_misc.scss */
.header__site-slogan {
  margin: 0;
}

/* The secondary menu (login, etc.) */
/* line 123, ../sass/components/_misc.scss */
.header__secondary-menu {
  float: right;
  /* LTR */
}

/* Wrapper for any blocks placed in the header region. */
/* line 128, ../sass/components/_misc.scss */
.header__region {
  /* Clear the logo. */
  clear: both;
}

/**
 * Navigation bar.
 */
/* line 136, ../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 140, ../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 156, ../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 170, ../sass/components/_misc.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 174, ../sass/components/_misc.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/**
 * Titles.
 */
/* line 185, ../sass/components/_misc.scss */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
}

/**
 * Messages.
 */
/* line 197, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.80556em 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 212, ../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 221, ../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 231, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

/* line 234, ../sass/components/_misc.scss */
.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
/* line 239, ../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 265, ../sass/components/_misc.scss */
.tabs-primary, .tabs-secondary {
  overflow: hidden;
  *zoom: 1;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYmJiYmJiIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: -webkit-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: linear-gradient(to top, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbb \0/ie;
  margin: 1.80556em 0;
  padding: 0 2px;
  white-space: nowrap;
}

/* line 275, ../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 279, ../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.80556em;
  text-decoration: none;
}

/* Primary tabs. */
/* line 292, ../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 #fff;
  border: 1px solid #bbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

/* line 301, ../sass/components/_misc.scss */
.tabs-primary__tab.is-active {
  border-bottom-color: #fff;
}

/* line 307, ../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;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-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 317, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

/* line 321, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
  background-image: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  border-color: #fff;
}

/* Secondary tabs. */
/* line 345, ../sass/components/_misc.scss */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.80556em;
}

/* line 351, ../sass/components/_misc.scss */
.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0.90278em 3px;
}

/* line 358, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  -moz-border-radius: 0.75em;
  -webkit-border-radius: 0.75em;
  border-radius: 0.75em;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-shadow: 1px 1px 0 #fff;
  background-color: #f2f2f2;
  color: #666;
  padding: 0 .5em;
}

/* line 367, ../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 372, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
/* line 400, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 404, ../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 412, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

/**
 * "More" links.
 */
/* line 419, ../sass/components/_misc.scss */
.more-link {
  text-align: right;
  /* LTR */
}

/* line 422, ../sass/components/_misc.scss */
.more-help-link {
  text-align: right;
  /* LTR */
}

/* line 425, ../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 440, ../sass/components/_misc.scss */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

/* line 445, ../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 452, ../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 462, ../sass/components/_misc.scss */
.pager-current {
  font-weight: bold;
}

/**
 * Blocks.
 */
/* Block wrapper. */
/* line 472, ../sass/components/_misc.scss */
.block {
  margin-bottom: 1.80556em;
}

/**
 * Menus.
 */
/* line 479, ../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 486, ../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 493, ../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 502, ../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 523, ../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 551, ../sass/components/_misc.scss */
.comments {
  margin: 1.80556em 0;
}

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

/* Wrapper for a single comment. */
/* line 562, ../sass/components/_misc.scss */
.comment {
  /* Comment's permalink wrapper. */
}
/* line 565, ../sass/components/_misc.scss */
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* Nested comments are indented. */
/* line 572, ../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 582, ../sass/components/_misc.scss */
.form-item {
  margin: 1.80556em 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 599, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 606, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

/* line 613, ../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 619, ../sass/components/_misc.scss */
.form-required {
  color: #c00;
}

/* Labels for radios and checkboxes. */
/* line 624, ../sass/components/_misc.scss */
label.option {
  display: inline;
  font-weight: normal;
}

/* Buttons used by contrib modules like Media. */
/* line 630, ../sass/components/_misc.scss */
a.button {
  -moz-appearance: button;
  -webkit-appearance: button;
}

/* Password confirmation. */
/* line 635, ../sass/components/_misc.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
/* line 641, ../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 653, ../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.80556em;
}

/* 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 668, ../sass/components/_misc.scss */
#user-login ul {
  margin: 1.80556em 0;
}

/**
 * Drupal admin tables.
 */
/* line 676, ../sass/components/_misc.scss */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
/* line 681, ../sass/components/_misc.scss */
form tbody {
  border-top: 1px solid #ccc;
}
/* line 684, ../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 694, ../sass/components/_misc.scss */
tr.even {
  background-color: #fff;
}

/* Markup generated by theme_tablesort_indicator(). */
/* line 709, ../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 720, ../sass/components/_misc.scss */
td.menu-disabled {
  background: #ccc;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list. */
/* line 731, ../sass/components/_misc.scss */
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 742, ../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 751, ../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 758, ../sass/components/_misc.scss */
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
/* line 770, ../sass/components/_misc.scss */
tr.drag {
  background-color: #fffff0;
}

/* line 773, ../sass/components/_misc.scss */
tr.drag-previous {
  background-color: #ffd;
}

/* line 776, ../sass/components/_misc.scss */
.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
/* line 785, ../sass/components/_misc.scss */
tr.selected td {
  background: #ffc;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
/* line 794, ../sass/components/_misc.scss */
.progress {
  font-weight: bold;
}
/* line 797, ../sass/components/_misc.scss */
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
/* line 803, ../sass/components/_misc.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1439833065');
}

/**
 * @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 15, ../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: 14.4px;
  }
  /* line 34, ../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 54, ../sass/_print.scss */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  /* line 64, ../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;
  }
}
/* line 1, ../sass/_mandatory_header.scss */
#mandatory-header-wrapper {
  background: #7a0019;
  /* Old browsers */
  background: -moz-linear-gradient(top, #7a0019 0%, #610014 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #7a0019), color-stop(100%, #610014));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #7a0019 0%, #610014 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #7a0019 0%, #610014 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #7a0019 0%, #610014 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #7a0019 0%, #610014 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7a0019', endColorstr='#610014',GradientType=0 );
  /* IE6-9 */
}

/* line 13, ../sass/_mandatory_header.scss */
#mandatory-footer-wrapper {
  background-color: #ffffff;
  border-bottom: 1px solid #fc3;
  border-left: 1px solid #fc3;
  border-right: 1px solid #fc3;
  position: relative;
  top: -4px;
}

/* TRY TO RESET ALL UMN ELEMENTS
need specificity >= 110 to override (at least 1 ID + 1 class in selector)
*/
/* line 13, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h .umnhf,
#umnhf-f .umnhf {
  background: none;
  border: none;
  bottom: auto;
  clear: none;
  /*cursor: auto;*/
  float: none;
  font: normal normal normal 11px/22px arial, verdana, sans-serif;
  height: auto;
  left: auto;
  letter-spacing: normal;
  margin: 0;
  max-height: none;
  max-width: none;
  min-height: 0;
  min-width: 0;
  overflow: visible;
  padding: 0;
  position: static;
  right: auto;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-transform: none;
  top: auto;
  visibility: visible;
  white-space: normal;
  width: auto;
  z-index: auto;
}

/* line 45, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h.umnhf {
  position: relative;
  background-color: #7a0019;
}

/* line 50, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h.umnhf,
#umnhf-f.umnhf {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* line 57, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h {
  *zoom: 1;
}
/* line 38, ../../../../../../../../.rvm/gems/ruby-2.2.0@compass/gems/compass-core-1.0.3/stylesheets/compass/utilities/general/_clearfix.scss */
#umnhf-h:after {
  content: "";
  display: table;
  clear: both;
}

/* line 61, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h a.umnhf,
#umnhf-h a.umnhf:link,
#umnhf-h a.umnhf:active,
#umnhf-h a.umnhf:visited
#umnhf-f a.umnhf,
#umnhf-f a.umnhf:link,
#umnhf-f a.umnhf:active,
#umnhf-f a.umnhf:visited {
  color: #7a0019;
  text-decoration: underline;
}

/* line 73, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h a.umnhf:hover {
  color: #666699;
}

/* line 77, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h #umnhf-h-cl {
  background-color: #fff;
  text-align: right;
  line-height: 22px;
  padding: 0 10px 0 0;
}

/* line 84, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h #umnhf-h-cl p.umnhf,
#umnhf-h #umnhf-h-cl ul.umnhf,
#umnhf-h #umnhf-h-cl ul li.umnhf {
  display: inline;
}

/* line 90, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h #umnhf-h-cl ul li.umnhf {
  margin: 0 0 0 10px;
}

/* line 94, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h #umnhf-h-mast {
  background: #7a0019;
  /* Old browsers */
  background: -moz-linear-gradient(top, #7a0019 0%, #610014 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #7a0019), color-stop(100%, #610014));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #7a0019 0%, #610014 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #7a0019 0%, #610014 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #7a0019 0%, #610014 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #7a0019 0%, #610014 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7a0019', endColorstr='#610014',GradientType=0 );
  /* IE6-9 */
  height: 62px;
  margin: 0 auto;
}

/* line 107, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h #umnhf-h-mast {
  position: relative;
}

/* line 111, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h #umnhf-h-logo,
#umnhf-h #umnhf-h-onestop,
#umnhf-h #umnhf-h-myu {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 0;
}
/* line 117, ../sass/_umn_mandatory_headerfooter.scss */
.umnhf-campus-tc #umnhf-h #umnhf-h-logo, .umnhf-campus-tc
#umnhf-h #umnhf-h-onestop, .umnhf-campus-tc
#umnhf-h #umnhf-h-myu {
  background-image: url(../images/umtc-wordmark-transparent.png);
  background-size: 410px 159px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.1), only screen and (min-device-pixel-ratio: 1.1) {
  /* line 117, ../sass/_umn_mandatory_headerfooter.scss */
  .umnhf-campus-tc #umnhf-h #umnhf-h-logo, .umnhf-campus-tc
  #umnhf-h #umnhf-h-onestop, .umnhf-campus-tc
  #umnhf-h #umnhf-h-myu {
    background-image: url(../images/umtc-wordmark-transparent@2x.png);
    background-size: 410px 159px;
  }
}
/* line 120, ../sass/_umn_mandatory_headerfooter.scss */
.umnhf-h #umnhf-h #umnhf-h-logo, .umnhf-h
#umnhf-h #umnhf-h-onestop, .umnhf-h
#umnhf-h #umnhf-h-myu {
  background-image: url(../images/umtc-wordmark-transparent.png);
  background-size: 410px 159px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.1), only screen and (min-device-pixel-ratio: 1.1) {
  /* line 120, ../sass/_umn_mandatory_headerfooter.scss */
  .umnhf-h #umnhf-h #umnhf-h-logo, .umnhf-h
  #umnhf-h #umnhf-h-onestop, .umnhf-h
  #umnhf-h #umnhf-h-myu {
    background-image: url(../images/umtc-wordmark-transparent@2x.png);
    background-size: 410px 159px;
  }
}
/* line 123, ../sass/_umn_mandatory_headerfooter.scss */
.umnhf-campus-d #umnhf-h #umnhf-h-logo, .umnhf-campus-d
#umnhf-h #umnhf-h-onestop, .umnhf-campus-d
#umnhf-h #umnhf-h-myu {
  background-image: url(../images/umd-wordmark-transparent.png);
  background-size: 410px 159px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.1), only screen and (min-device-pixel-ratio: 1.1) {
  /* line 123, ../sass/_umn_mandatory_headerfooter.scss */
  .umnhf-campus-d #umnhf-h #umnhf-h-logo, .umnhf-campus-d
  #umnhf-h #umnhf-h-onestop, .umnhf-campus-d
  #umnhf-h #umnhf-h-myu {
    background-image: url(../images/umd-wordmark-transparent@2x.png);
    background-size: 410px 159px;
  }
}
/* line 126, ../sass/_umn_mandatory_headerfooter.scss */
.umnhf-campus-c #umnhf-h #umnhf-h-logo, .umnhf-campus-c
#umnhf-h #umnhf-h-onestop, .umnhf-campus-c
#umnhf-h #umnhf-h-myu {
  background-image: url(../images/umc-wordmark-transparent.png);
  background-size: 410px 159px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.1), only screen and (min-device-pixel-ratio: 1.1) {
  /* line 126, ../sass/_umn_mandatory_headerfooter.scss */
  .umnhf-campus-c #umnhf-h #umnhf-h-logo, .umnhf-campus-c
  #umnhf-h #umnhf-h-onestop, .umnhf-campus-c
  #umnhf-h #umnhf-h-myu {
    background-image: url(../images/umc-wordmark-transparent@2x.png);
    background-size: 410px 159px;
  }
}
/* line 129, ../sass/_umn_mandatory_headerfooter.scss */
.umnhf-campus-m #umnhf-h #umnhf-h-logo, .umnhf-campus-m
#umnhf-h #umnhf-h-onestop, .umnhf-campus-m
#umnhf-h #umnhf-h-myu {
  background-image: url(../images/umm-wordmark-transparent.png);
  background-size: 410px 159px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.1), only screen and (min-device-pixel-ratio: 1.1) {
  /* line 129, ../sass/_umn_mandatory_headerfooter.scss */
  .umnhf-campus-m #umnhf-h #umnhf-h-logo, .umnhf-campus-m
  #umnhf-h #umnhf-h-onestop, .umnhf-campus-m
  #umnhf-h #umnhf-h-myu {
    background-image: url(../images/umm-wordmark-transparent@2x.png);
    background-size: 410px 159px;
  }
}
/* line 132, ../sass/_umn_mandatory_headerfooter.scss */
.umnhf-campus-r #umnhf-h #umnhf-h-logo, .umnhf-campus-r
#umnhf-h #umnhf-h-onestop, .umnhf-campus-r
#umnhf-h #umnhf-h-myu {
  background-image: url(../images/umr-wordmark-transparent.png);
  background-size: 410px 159px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.1), only screen and (min-device-pixel-ratio: 1.1) {
  /* line 132, ../sass/_umn_mandatory_headerfooter.scss */
  .umnhf-campus-r #umnhf-h #umnhf-h-logo, .umnhf-campus-r
  #umnhf-h #umnhf-h-onestop, .umnhf-campus-r
  #umnhf-h #umnhf-h-myu {
    background-image: url(../images/umr-wordmark-transparent@2x.png);
    background-size: 410px 159px;
  }
}
/* line 135, ../sass/_umn_mandatory_headerfooter.scss */
.umnhf-campus-e #umnhf-h #umnhf-h-logo, .umnhf-campus-e
#umnhf-h #umnhf-h-onestop, .umnhf-campus-e
#umnhf-h #umnhf-h-myu {
  background-image: url(../images/ume-wordmark-transparent.png);
  background-size: 410px 159px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.1), only screen and (min-device-pixel-ratio: 1.1) {
  /* line 135, ../sass/_umn_mandatory_headerfooter.scss */
  .umnhf-campus-e #umnhf-h #umnhf-h-logo, .umnhf-campus-e
  #umnhf-h #umnhf-h-onestop, .umnhf-campus-e
  #umnhf-h #umnhf-h-myu {
    background-image: url(../images/ume-wordmark-transparent@2x.png);
    background-size: 410px 159px;
  }
}

/* line 140, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h #umnhf-h-logo {
  display: block;
  float: left;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 410px;
  height: 62px;
}

/* line 150, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h #umnhf-h-ql {
  position: absolute;
  top: 3px;
  right: 10px;
  width: 160px;
}

/* line 157, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h #umnhf-h-onestop,
#umnhf-h #umnhf-h-myu {
  background-position: 0 -112px;
  display: block;
  float: right;
  height: 24px;
  margin: 0 0 0 5px;
  overflow: hidden;
  white-space: nowrap;
  width: 73px;
}

/* line 169, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h-ql > li > a {
  display: block;
  height: 24px;
  width: 73px;
}

/* line 175, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h-ql span,
#umnhf-h-mast button#umnhf-m-search {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* line 187, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h #umnhf-h-onestop {
  background-position: -73px -112px;
}

/* line 191, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h #umnhf-h-search {
  height: 22px;
  top: 32px;
  right: 10px;
  position: absolute;
  width: 249px;
  border: 2px solid #fc3;
  background: #fc3;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

/* line 204, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h #umnhf-h-search label.umnhf {
  display: none;
}

/* line 208, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h #umnhf-h-search #umnhf-h-st {
  border: 0;
  color: #333;
  background-color: #fff;
  cursor: text;
  line-height: 18px;
  font-size: 12px;
  position: absolute;
  width: 200px;
  padding-left: 3px;
  -moz-box-shadow: inset 1px 1px 1px #888;
  -webkit-box-shadow: inset 1px 1px 1px #888;
  box-shadow: inset 1px 1px 1px #888;
}

/* line 223, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h-search input#umnhf-h-st,
.mobile input[type="text"] {
  -webkit-appearance: none;
  border-radius: 0;
}

/* line 229, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h #umnhf-h-sb {
  border: 0;
  cursor: pointer;
  font: bold 0.925em/1.35em arial,helvetica,clean,sans-serif;
  height: 22px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  white-space: nowrap;
  width: 41px;
  color: #7a0019;
}

/* line 243, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-f {
  line-height: 18px;
  /* this is overridden */
  padding: 5px 0 0 0;
}

/* line 248, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-f #umnhf-f-cl {
  float: right;
  margin: 8px 10px 0 0;
  max-width: 400px;
  text-align: right;
  width: 350px;
}

/* line 256, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-f #umnhf-f-cl h2.umnhf {
  display: inline;
  text-align: right;
}

/* line 261, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-f #umnhf-f-cl ul.umnhf {
  display: inline;
  list-style: none;
}

/* line 266, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-f #umnhf-f-bp {
  *zoom: 1;
  margin: 10px;
}
/* line 38, ../../../../../../../../.rvm/gems/ruby-2.2.0@compass/gems/compass-core-1.0.3/stylesheets/compass/utilities/general/_clearfix.scss */
#umnhf-f #umnhf-f-bp:after {
  content: "";
  display: table;
  clear: both;
}
/* line 270, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-f #umnhf-f-bp p {
  margin: 8px 0 0 0;
}
/* line 274, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-f #umnhf-f-bp p:last-child {
  margin-top: 4px;
}
/* line 278, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-f #umnhf-f-bp ul.umnhf {
  list-style: none;
}
/* line 282, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-f #umnhf-f-bp .privacy-statement-responsive {
  display: none;
}

/* line 287, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-f #umnhf-f-cl li.umnhf {
  display: inline;
  padding-left: 10px;
}

/* line 292, ../sass/_umn_mandatory_headerfooter.scss */
#umnfooter-links li {
  padding: 0 0 0 10px;
  display: inline;
}

@media screen and (max-width: 979px) {
  /* line 299, ../sass/_umn_mandatory_headerfooter.scss */
  #umnhf-h.umnhf,
  #umnhf-f.umnhf {
    width: 100%;
    margin: 0;
  }
}
@media screen and (min-width: 660px) and (max-width: 979px) {
  /* line 309, ../sass/_umn_mandatory_headerfooter.scss */
  #umnhf-f #umnhf-f-cl {
    width: 260px;
  }

  /* line 313, ../sass/_umn_mandatory_headerfooter.scss */
  #umnhf-f h2.umnhf {
    width: 100%;
    float: right;
    margin: 0;
  }
}
@media screen and (max-width: 674px) {
  /* line 323, ../sass/_umn_mandatory_headerfooter.scss */
  #umnhf-h #umnhf-h-search {
    width: 184px;
  }

  /* line 327, ../sass/_umn_mandatory_headerfooter.scss */
  #umnhf-h #umnhf-h-search #umnhf-h-st {
    width: 135px;
  }
}
@media screen and (max-width: 659px) {
  /* line 335, ../sass/_umn_mandatory_headerfooter.scss */
  #umnhf-f #umnhf-f-cl,
  #umnhf-f #umnhf-f-bp .eeoc-responsive-hide {
    display: none;
  }

  /* line 340, ../sass/_umn_mandatory_headerfooter.scss */
  #umnhf-f #umnhf-f-bp .eeoc-responsive-upcase {
    text-transform: capitalize;
  }

  /* line 344, ../sass/_umn_mandatory_headerfooter.scss */
  #umnhf-f #umnhf-f-bp p,
  #umnhf-f #umnhf-f-bp .privacy-statement-responsive {
    display: inline;
  }
}
@media all and (max-width: 609px) {
  /* line 352, ../sass/_umn_mandatory_headerfooter.scss */
  #umnhf-h #umnhf-h-cl,
  #umnhf-h #umnhf-h-ql,
  #umnhf-h #umnhf-h-search,
  #umnhf-h #umnhf-h-sb {
    display: none;
  }

  /* line 359, ../sass/_umn_mandatory_headerfooter.scss */
  #umnhf-h #umnhf-h-mast {
    position: relative;
    background-position: left bottom;
    height: 50px;
  }

  /* line 365, ../sass/_umn_mandatory_headerfooter.scss */
  #umnhf-h #umnhf-h-logo {
    display: block;
    height: 50px;
    width: 250px;
    /* Switch wordmark to smaller version */
    background-position: 0 -62px;
  }

  /* line 373, ../sass/_umn_mandatory_headerfooter.scss */
  #umnhf-h #umnhf-h-search.mobile {
    display: block;
    width: 300px;
    /*float: right;*/
    margin: 10px 0;
    position: relative;
    /*right: 7.5%;*/
    top: 0;
    /* test for android */
    /*left: 7.5%;*/
    left: 10px;
  }

  /* line 386, ../sass/_umn_mandatory_headerfooter.scss */
  #umnhf-h button#umnhf-m-search {
    font: bold 0.925em/1.35em arial, helvetica, clean, sans-serif;
    position: absolute;
    text-align: left;
    white-space: nowrap;
    width: auto;
    height: auto;
    right: 10px;
    top: 13px;
    display: block;
    background-color: #fc3;
    color: #7a0019;
    clip: auto;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 5px 6px 4px;
    cursor: pointer;
  }

  /* line 406, ../sass/_umn_mandatory_headerfooter.scss */
  #umnhf-h button#umnhf-m-search.mobile {
    position: relative;
    top: 60px;
    left: 70px;
    height: 26px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
  }

  /* line 416, ../sass/_umn_mandatory_headerfooter.scss */
  #umnhf-h .umnhf-m-cancel {
    color: #000;
  }

  /* line 420, ../sass/_umn_mandatory_headerfooter.scss */
  #umnhf-h #umnhf-h-search #umnhf-h-st {
    display: block;
    width: 250px;
  }

  /* line 425, ../sass/_umn_mandatory_headerfooter.scss */
  #umnhf-h #umnhf-h-search.mobile #umnhf-h-sb {
    display: block;
    right: 0;
  }
}
@media all and (max-width: 380px) {
  /* line 433, ../sass/_umn_mandatory_headerfooter.scss */
  #umnhf-h button#umnhf-m-search.mobile {
    position: absolute;
    top: 13px;
    right: 10px;
    left: auto;
    height: auto;
    width: auto;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
  }
}
/* line 448, ../sass/_umn_mandatory_headerfooter.scss */
#umnhf-h-search .form-type-textfield, #umnhf-h-search .form-actions {
  margin: 0;
}

/* line 454, ../sass/_umn_mandatory_headerfooter.scss */
#campus-header-wrapper {
  display: none;
}

@media all and (min-width: 459px) {
  /* line 459, ../sass/_umn_mandatory_headerfooter.scss */
  #campus-header-wrapper {
    display: block;
    background-color: white;
  }
  /* line 463, ../sass/_umn_mandatory_headerfooter.scss */
  #campus-header-wrapper #campus-header {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 11px;
    text-align: right;
    line-height: 22px;
  }
  /* line 472, ../sass/_umn_mandatory_headerfooter.scss */
  #campus-header-wrapper #campus-header p, #campus-header-wrapper #campus-header ul, #campus-header-wrapper #campus-header li {
    padding: 0px 10px 0px 0px;
    margin: 0;
    display: inline-block;
  }
}
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* line 489, ../sass/_umn_mandatory_headerfooter.scss */
.umnhf-campus-m {
  background-color: #8c1919;
}
/* line 492, ../sass/_umn_mandatory_headerfooter.scss */
.umnhf-campus-m #umnhf-h.umnhf {
  background-color: #8c1919;
  padding: 0 0 10px 0;
}
/* line 496, ../sass/_umn_mandatory_headerfooter.scss */
.umnhf-campus-m #umnhf-h.umnhf .umn-morris-header-logo {
  background-color: #8c1919;
  background-image: url(../images/umm-nod2d-transparent.png);
  background-size: 410px 159px;
  background-repeat: no-repeat;
  float: left;
  margin-top: 10px;
  width: 374px;
  height: 62px;
}
/* line 506, ../sass/_umn_mandatory_headerfooter.scss */
.umnhf-campus-m #umnhf-h.umnhf nav {
  font-family: "Avenir LT W01 85 Heavy", arial, sans-serif;
  float: right;
}
/* line 510, ../sass/_umn_mandatory_headerfooter.scss */
.umnhf-campus-m #umnhf-h.umnhf nav ul {
  text-align: right;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* line 516, ../sass/_umn_mandatory_headerfooter.scss */
.umnhf-campus-m #umnhf-h.umnhf nav ul li {
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  display: inline-block;
  padding: 0 10px;
}
/* line 523, ../sass/_umn_mandatory_headerfooter.scss */
.umnhf-campus-m #umnhf-h.umnhf nav ul li a {
  color: #fff;
  text-decoration: none;
}
/* line 527, ../sass/_umn_mandatory_headerfooter.scss */
.umnhf-campus-m #umnhf-h.umnhf nav ul li a:hover {
  text-decoration: underline;
}
/* line 531, ../sass/_umn_mandatory_headerfooter.scss */
.umnhf-campus-m #umnhf-h.umnhf nav ul .gold-divider {
  border-left: 2px solid #e19b14;
  margin-left: 10px;
  padding-left: 20px;
}
/* line 539, ../sass/_umn_mandatory_headerfooter.scss */
.umnhf-campus-m #umnhf-m-search {
  display: none;
}
/* line 542, ../sass/_umn_mandatory_headerfooter.scss */
.umnhf-campus-m #umnhf-h #umnhf-h-search {
  top: 0;
}
/* line 545, ../sass/_umn_mandatory_headerfooter.scss */
.umnhf-campus-m .search-aria-wrapper {
  position: relative;
  top: 17px;
  float: right;
  clear: right;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.1), only screen and (min-device-pixel-ratio: 1.1) {
  /* line 554, ../sass/_umn_mandatory_headerfooter.scss */
  .umnhf-campus-m #umnhf-h.umnhf .umn-morris-header-logo {
    background-image: url(../images/umm-nod2d-transparent@2x.png);
    background-size: 410px 159px;
  }
}
@media screen and (min-width: 1200px) {
  /* line 561, ../sass/_umn_mandatory_headerfooter.scss */
  nav {
    -webkit-border-radius: 0 0 5px 0;
    -moz-border-radius: 0 0 5px 0;
    border-radius: 0 0 5px 0;
  }
}
@media screen and (max-width: 900px) {
  /* line 569, ../sass/_umn_mandatory_headerfooter.scss */
  nav {
    width: 100%;
  }
}
@media screen and (min-width: 610px) {
  /* line 575, ../sass/_umn_mandatory_headerfooter.scss */
  nav {
    background: #8c1919;
    background: -moz-linear-gradient(left, #8c1919 0%, #9c3b3b 60%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #8c1919), color-stop(60%, #9c3b3b));
    background: -webkit-linear-gradient(left, #8c1919 0%, #9c3b3b 60%);
    background: -o-linear-gradient(left, #8c1919 0%, #9c3b3b 60%);
    background: -ms-linear-gradient(left, #8c1919 0%, #9c3b3b 60%);
    background: linear-gradient(to right, #8c1919 0%, #9c3b3b 60%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8c1919', endColorstr='#9c3b3b',GradientType=1 );
  }
}
@media screen and (max-width: 609px) {
  /* line 589, ../sass/_umn_mandatory_headerfooter.scss */
  .umnhf-campus-m #umnhf-h.umnhf {
    padding: 0;
  }
  /* line 592, ../sass/_umn_mandatory_headerfooter.scss */
  .umnhf-campus-m #umnhf-h.umnhf nav {
    background-color: #9c3b3b;
  }
  /* line 596, ../sass/_umn_mandatory_headerfooter.scss */
  .umnhf-campus-m #umnhf-h.umnhf nav ul li {
    font-size: 11px;
    line-height: 22px;
    text-align: center;
    display: block;
    float: left;
    width: 33.33%;
  }
  /* line 604, ../sass/_umn_mandatory_headerfooter.scss */
  .umnhf-campus-m #umnhf-h.umnhf nav ul .gold-divider {
    border-left: none;
    margin-left: 0;
    padding-left: 10px;
  }
  /* line 611, ../sass/_umn_mandatory_headerfooter.scss */
  .umnhf-campus-m #umnhf-h.umnhf .umn-morris-header-logo {
    background-position: 0 -62px;
    margin-top: 0;
    width: 250px;
    height: 50px;
  }
  /* line 617, ../sass/_umn_mandatory_headerfooter.scss */
  .umnhf-campus-m #umnhf-h.umnhf button#umnhf-m-search {
    position: relative;
    top: 12px;
    float: right;
  }
  /* line 622, ../sass/_umn_mandatory_headerfooter.scss */
  .umnhf-campus-m #umnhf-h.umnhf button#umnhf-m-search.mobile {
    left: auto;
    margin-bottom: 24px;
    height: auto;
    width: auto;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
  }
  /* line 631, ../sass/_umn_mandatory_headerfooter.scss */
  .umnhf-campus-m #umnhf-h.umnhf .search-aria-wrapper {
    top: 0;
    right: 20px;
  }
}
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* line 1, ../sass/components/_primary_navigation.scss */
.primary_navigation_one, .primary_navigation_two {
  width: 100%;
  margin: 0;
  padding: 4px 0 8px;
}
/* line 5, ../sass/components/_primary_navigation.scss */
.primary_navigation_one ul, .primary_navigation_two ul {
  padding: 10px 5px;
}
/* line 8, ../sass/components/_primary_navigation.scss */
.primary_navigation_one li, .primary_navigation_two li {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 2px;
}
/* line 14, ../sass/components/_primary_navigation.scss */
.primary_navigation_one a, .primary_navigation_two a {
  display: block;
}
/* line 17, ../sass/components/_primary_navigation.scss */
.primary_navigation_one .responsive-menus.responsified span.toggler, .primary_navigation_two .responsive-menus.responsified span.toggler {
  background-color: transparent;
  color: #ffcc33;
  box-shadow: none;
  border-bottom: none;
}
/* line 24, ../sass/components/_primary_navigation.scss */
.primary_navigation_one .responsive-menus .responsive-menus-simple, .primary_navigation_two .responsive-menus .responsive-menus-simple {
  background-color: transparent;
  box-shadow: none;
}

/* line 32, ../sass/components/_primary_navigation.scss */
.primary_navigation_one {
  min-height: 2em;
  background-color: #710019;
  clear: both;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzdhMDAxOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzYwMDAxNCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7a0019), color-stop(100%, #600014));
  background-image: -moz-linear-gradient(top, #7a0019, #600014);
  background-image: -webkit-linear-gradient(top, #7a0019, #600014);
  background-image: linear-gradient(to bottom, #7a0019, #600014);
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF7A0019', endColorstr='#FF600014');
}
/* line 39, ../sass/components/_primary_navigation.scss */
.primary_navigation_one ul {
  margin: .2em 0;
}
/* line 42, ../sass/components/_primary_navigation.scss */
.primary_navigation_one li.is-active a, .primary_navigation_one li.active-trail a {
  text-shadow: none;
  color: #5b0013;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjMlIiByPSIxMDAlIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZmZmNjY2Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZjYzMzIi8+PC9yYWRpYWxHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -moz-radial-gradient(center 3%, ellipse farthest-side, #fff666, #ffcc33 100%);
  background-image: -webkit-radial-gradient(center 3%, ellipse farthest-side, #fff666, #ffcc33 100%);
  background-image: radial-gradient(ellipse farthest-side at center 3%, #fff666, #ffcc33 100%);
}
/* line 47, ../sass/components/_primary_navigation.scss */
.primary_navigation_one a {
  padding: 6px;
  line-height: 1.1em;
  text-align: center;
  text-shadow: 0 -2px 2px rgba(91, 0, 19, 0.5);
  text-decoration: none;
  border: 1px solid #ba5e28;
  -moz-border-radius: 5px 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px 5px;
}
/* line 56, ../sass/components/_primary_navigation.scss */
.primary_navigation_one a, .primary_navigation_one a:visited {
  color: white;
}
/* line 59, ../sass/components/_primary_navigation.scss */
.primary_navigation_one li.is-active a:hover, .primary_navigation_one li.active-trail a:hover, .primary_navigation_one a:hover,
.primary_navigation_one li.is-active a:focus, .primary_navigation_one li.active-trail a:focus, .primary_navigation_one a:focus {
  color: #ffcc33;
  border-color: #a10025;
  background-color: #a10025;
  background-image: none;
  text-shadow: none;
}

/*
 Mobile+ styling for the primary navigation option style plugin, option two.
*/
/* line 73, ../sass/components/_primary_navigation.scss */
.primary_navigation_two {
  border: 1px solid #fc3;
}
/* line 76, ../sass/components/_primary_navigation.scss */
.primary_navigation_two ul {
  margin: 0.5em 0;
}
/* line 78, ../sass/components/_primary_navigation.scss */
.primary_navigation_two ul.menu {
  border-top: 1px solid #fc3;
}
/* line 82, ../sass/components/_primary_navigation.scss */
.primary_navigation_two a.active, .primary_navigation_two a.active-trail {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjMlIiByPSIxMDAlIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZmZmNjY2Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZjYzMzIi8+PC9yYWRpYWxHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -moz-radial-gradient(center 3%, ellipse farthest-side, #fff666, #ffcc33 100%);
  background-image: -webkit-radial-gradient(center 3%, ellipse farthest-side, #fff666, #ffcc33 100%);
  background-image: radial-gradient(ellipse farthest-side at center 3%, #fff666, #ffcc33 100%);
}
/* line 85, ../sass/components/_primary_navigation.scss */
.primary_navigation_two a, .primary_navigation_two a:visited {
  color: #7a0119;
  font-size: 1.1em;
  text-decoration: none;
  line-height: 1.1em;
  text-align: center;
  padding: 6px;
  font-family: futura, Helvetica Neue, Helvetica, sans-serif;
}
/* line 94, ../sass/components/_primary_navigation.scss */
.primary_navigation_two a:hover, .primary_navigation_two a.active:hover, .primary_navigation_two a.active-trail:hover {
  color: #ffcc33;
  background: #900021;
}

/*
  Desktop breakpoint for primary navigation.
*/
@media only screen and (min-width: 520px) {
  /*
   Mobile+ styling for the primary navigation option style plugin, option one.
  */
  /* line 111, ../sass/components/_primary_navigation.scss */
  .primary_navigation_one ul, .primary_navigation_two ul, .primary_navigation_superfish ul {
    padding: 0 .5em;
  }
  /* line 113, ../sass/components/_primary_navigation.scss */
  .primary_navigation_one ul.menu, .primary_navigation_two ul.menu, .primary_navigation_superfish ul.menu {
    border-top: none;
  }
  /* line 117, ../sass/components/_primary_navigation.scss */
  .primary_navigation_one li, .primary_navigation_two li, .primary_navigation_superfish li {
    display: inline-block;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
  }

  /* Superfish menu styles for primary menu style plugin */
  /* line 136, ../sass/components/_primary_navigation.scss */
  .primary_navigation_superfish ul.menu {
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzdhMDAxOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzYwMDAxNCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7a0019), color-stop(100%, #600014));
    background-image: -moz-linear-gradient(top, #7a0019, #600014);
    background-image: -webkit-linear-gradient(top, #7a0019, #600014);
    background-image: linear-gradient(to bottom, #7a0019, #600014);
    *zoom: 1;
    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF7A0019', endColorstr='#FF600014');
  }
  /* line 140, ../sass/components/_primary_navigation.scss */
  .primary_navigation_superfish .sf-menu {
    min-height: 3.25em;
    padding-top: .5em;
  }
  /* line 143, ../sass/components/_primary_navigation.scss */
  .primary_navigation_superfish .sf-menu ul {
    border: 1px solid #ffcc33;
    background-color: #a10025;
    border-radius: 0px 6px 6px 6px;
    margin-left: 2px;
    margin-top: -.5em;
  }
  /* line 149, ../sass/components/_primary_navigation.scss */
  .primary_navigation_superfish .sf-menu ul li ul {
    text-align: left;
    margin-top: -1px;
    margin-left: -.75em;
  }
  /* line 157, ../sass/components/_primary_navigation.scss */
  .primary_navigation_superfish .sf-menu a {
    color: #ffcc33;
    padding: .5em;
    line-height: 1.1em;
    text-align: left;
    text-shadow: 0 -2px 2px rgba(91, 0, 19, 0.5);
    text-decoration: none;
    background-image: none;
    border: none;
    border-radius: 0px;
  }
  /* line 160, ../sass/components/_primary_navigation.scss */
  .primary_navigation_superfish .sf-menu a.sf-depth-1 {
    color: white;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzdhMDAxOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzYwMDAxNCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7a0019), color-stop(100%, #600014));
    background-image: -moz-linear-gradient(top, #7a0019, #600014);
    background-image: -webkit-linear-gradient(top, #7a0019, #600014);
    background-image: linear-gradient(to bottom, #7a0019, #600014);
    *zoom: 1;
    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF7A0019', endColorstr='#FF600014');
    padding: 6px;
    margin: 2px;
    border: 1px solid #ba5e28;
    -moz-border-radius: 5px 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px 5px;
  }
  /* line 168, ../sass/components/_primary_navigation.scss */
  .primary_navigation_superfish .sf-menu a.sf-depth-1.active {
    text-shadow: none;
    color: #5b0013;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjMlIiByPSIxMDAlIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZmZmNjY2Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZjYzMzIi8+PC9yYWRpYWxHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
    background-size: 100%;
    background-image: -moz-radial-gradient(center 3%, ellipse farthest-side, #fff666, #ffcc33 100%);
    background-image: -webkit-radial-gradient(center 3%, ellipse farthest-side, #fff666, #ffcc33 100%);
    background-image: radial-gradient(ellipse farthest-side at center 3%, #fff666, #ffcc33 100%);
  }
  /* line 172, ../sass/components/_primary_navigation.scss */
  .primary_navigation_superfish .sf-menu a.sf-depth-1.active:hover {
    color: white;
  }
  /* line 176, ../sass/components/_primary_navigation.scss */
  .primary_navigation_superfish .sf-menu a.sf-depth-1:hover {
    background-color: #a10025;
    background-image: none;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border: 1px solid #a10025;
  }
  /* line 193, ../sass/components/_primary_navigation.scss */
  .primary_navigation_superfish .sf-sub-indicator {
    background: none;
  }
  /* line 196, ../sass/components/_primary_navigation.scss */
  .primary_navigation_superfish .sf-menu.sf-horizontal.sf-shadow ul,
  .primary_navigation_superfish .sf-menu.sf-vertical.sf-shadow ul,
  .primary_navigation_superfish .sf-menu.sf-navbar.sf-shadow ul ul {
    background: #a10025;
    padding: 0 !important;
  }
}
/* line 2, ../sass/components/_secondary_navigation.scss */
.secondary_navigation_one ul, .secondary_navigation_two ul {
  padding-left: 0px;
}
/* line 5, ../sass/components/_secondary_navigation.scss */
.secondary_navigation_one ul li.menu__item, .secondary_navigation_two ul li.menu__item {
  list-style: none;
}
/* line 8, ../sass/components/_secondary_navigation.scss */
.secondary_navigation_one ul ul, .secondary_navigation_two ul ul {
  padding-left: 1em;
}
/* line 12, ../sass/components/_secondary_navigation.scss */
.secondary_navigation_one a, .secondary_navigation_two a {
  padding: 0.65em;
  text-decoration: none;
  display: block;
}

/* line 22, ../sass/components/_secondary_navigation.scss */
.secondary_navigation_one ul {
  background-color: #ececec;
}
/* line 26, ../sass/components/_secondary_navigation.scss */
.secondary_navigation_one a {
  border-bottom: 1px solid #fff;
  color: #333333;
}
/* line 30, ../sass/components/_secondary_navigation.scss */
.secondary_navigation_one a:hover, .secondary_navigation_one a.active, .secondary_navigation_one a.active-trail, .secondary_navigation_one a:focus {
  background-color: #f7f7f7;
}

/* line 39, ../sass/components/_secondary_navigation.scss */
.secondary_navigation_two a, .secondary_navigation_two a:hover, .secondary_navigation_two a:visited, .secondary_navigation_two a:focus {
  color: #555555;
  margin-top: 2px;
  margin-bottom: 2px;
}
/* line 48, ../sass/components/_secondary_navigation.scss */
.secondary_navigation_two a.active, .secondary_navigation_two a.active-trail {
  color: #000000;
  background-color: #ffde7a;
  background-image: url('../images/grid-positive.png?1439833065');
}
/* line 53, ../sass/components/_secondary_navigation.scss */
.secondary_navigation_two a:hover, .secondary_navigation_two a:focus {
  background-image: url('../images/grid-positive.png?1439833065');
  background-color: #cffffe;
}
/* line 58, ../sass/components/_secondary_navigation.scss */
.secondary_navigation_two .menu__item {
  border-bottom: 1px solid #333;
}
/* line 60, ../sass/components/_secondary_navigation.scss */
.secondary_navigation_two .menu__item.first {
  border-top: 1px solid #333;
}
/* line 66, ../sass/components/_secondary_navigation.scss */
.secondary_navigation_two .is-expanded .menu {
  border-top: 1px solid #333;
}
/* line 69, ../sass/components/_secondary_navigation.scss */
.secondary_navigation_two .is-expanded .is-leaf {
  border-top: 1px dotted #333;
  border-bottom: none;
}
/* line 72, ../sass/components/_secondary_navigation.scss */
.secondary_navigation_two .is-expanded .is-leaf.first {
  border-top: none;
}

/**
 * Page styles.
 * @copyright Copyright (c) 2013 Palantir.net
 */
/* line 6, ../sass/components/_page.scss */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 10, ../sass/components/_page.scss */
#sub-header, #sub-header-site-name .pane-variable-site-name, #sub-header-site-name h1, #sub-header-site-name h2, #sub-header-site-name h3, #sub-header-site-name h4, #sub-header-site-name h5, #sub-header-site-name h6, #footer-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* line 17, ../sass/components/_page.scss */
html,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  /* Basic default styling */
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: normal;
  /* Font smoothing and legibility */
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}

/* line 35, ../sass/components/_page.scss */
html {
  color: #333333;
}

/* line 39, ../sass/components/_page.scss */
ul.tabs-primary {
  clear: both;
  padding-top: .5em;
}

/* line 44, ../sass/components/_page.scss */
body {
  background-color: #EFEBE2;
}

/* line 48, ../sass/components/_page.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #535353;
}

/* line 57, ../sass/components/_page.scss */
a {
  color: #900021;
  text-decoration: underline;
}
/* line 60, ../sass/components/_page.scss */
a:hover {
  color: black;
}
/* line 63, ../sass/components/_page.scss */
a:focus {
  color: black;
  outline: thin dotted;
}

/**
 *
 * Headers
 *
 */
/* line 85, ../sass/components/_page.scss */
#header-wrapper-full-width {
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzViMDAxMyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzM5MDAwYyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #5b0013), color-stop(100%, #39000c));
  background: -moz-linear-gradient(#5b0013, #39000c);
  background: -webkit-linear-gradient(#5b0013, #39000c);
  background: linear-gradient(#5b0013, #39000c);
}

/* line 89, ../sass/components/_page.scss */
#header-wrapper-internal {
  border: 1px solid #5b0013;
  clear: both;
  -moz-box-shadow: 0 0 3px #5b0013;
  -webkit-box-shadow: 0 0 3px #5b0013;
  box-shadow: 0 0 3px #5b0013;
}

/**
 * Subheader
 */
/* line 99, ../sass/components/_page.scss */
#full-page-wrapper,
#mandatory-footer-wrapper,
#header-wrapper-internal {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* line 108, ../sass/components/_page.scss */
#header-wrapper-internal,
#page {
  position: relative;
  top: -4px;
}

/* line 114, ../sass/components/_page.scss */
#full-page-wrapper {
  position: relative;
  top: -4px;
  background-color: white;
  padding-top: 4px;
  padding-bottom: 1px;
  border-right: 1px solid #fc3;
  border-left: 1px solid #fc3;
}

/* line 124, ../sass/components/_page.scss */
#sub-header {
  border: 1px solid #5b0013;
  -moz-box-shadow: 0 0 3px #5b0013;
  -webkit-box-shadow: 0 0 3px #5b0013;
  box-shadow: 0 0 3px #5b0013;
}

/* line 130, ../sass/components/_page.scss */
#sub-header-site-name {
  background-color: #ffcc33;
}
/* line 134, ../sass/components/_page.scss */
#sub-header-site-name .pane-variable-site-name {
  padding: 1em;
  font-size: 130%;
  line-height: 1.2em;
}
/* line 140, ../sass/components/_page.scss */
#sub-header-site-name h1, #sub-header-site-name h2, #sub-header-site-name h3, #sub-header-site-name h4, #sub-header-site-name h5, #sub-header-site-name h6 {
  padding: .1em;
  margin-top: 0;
  margin-bottom: 0;
}
/* line 145, ../sass/components/_page.scss */
#sub-header-site-name h1 a, #sub-header-site-name h2 a, #sub-header-site-name h3 a, #sub-header-site-name h4 a, #sub-header-site-name h5 a, #sub-header-site-name h6 a {
  text-decoration: none;
}
/* line 147, ../sass/components/_page.scss */
#sub-header-site-name h1 a:hover, #sub-header-site-name h1 a:focus, #sub-header-site-name h1 a:active, #sub-header-site-name h2 a:hover, #sub-header-site-name h2 a:focus, #sub-header-site-name h2 a:active, #sub-header-site-name h3 a:hover, #sub-header-site-name h3 a:focus, #sub-header-site-name h3 a:active, #sub-header-site-name h4 a:hover, #sub-header-site-name h4 a:focus, #sub-header-site-name h4 a:active, #sub-header-site-name h5 a:hover, #sub-header-site-name h5 a:focus, #sub-header-site-name h5 a:active, #sub-header-site-name h6 a:hover, #sub-header-site-name h6 a:focus, #sub-header-site-name h6 a:active {
  text-decoration: underline;
}

/**
 *
 * Footers
 *
 */
/**
 * Subfooter
 */
/* line 169, ../sass/components/_page.scss */
#sub-footer {
  background-color: #ffcc33;
  padding: 10px;
}

/**
 * Footer
 */
/*
 * Department Footer
 */
/* line 182, ../sass/components/_page.scss */
#department-footer {
  padding: 10px 10px;
}

/**
 *  @copyright Copyright (c) 2013 Palantir.net
 */
/* line 5, ../sass/components/_blocks.scss */
.block_pane {
  background: #ebebeb;
  color: #535353;
  padding: 0px 1em;
}
/* line 10, ../sass/components/_blocks.scss */
.block_pane .pane-title {
  margin-bottom: -.5em;
  padding: 0px 0px .2em 0px;
}

/**
 * Styles applied by the "Block Panes Gray" region plugin
 */
/* line 19, ../sass/components/_blocks.scss */
.block_panes_gray {
  background: #ebebeb;
  color: #535353;
  padding-bottom: .2em;
}
/* line 24, ../sass/components/_blocks.scss */
.block_panes_gray .pane-title {
  border-bottom: 1px solid white;
  margin-left: -1em;
  margin-right: -1em;
  padding: .25em 1em;
}

/**
 * Styles applied by the "Block Panes White" region plugin
 */
/* line 36, ../sass/components/_blocks.scss */
.block_panes_white {
  background: white;
  color: #535353;
}
/* line 40, ../sass/components/_blocks.scss */
.block_panes_white .pane-title {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: .05em;
}

/**
 *  @copyright Copyright (c) 2013 Palantir.net
 */
/**
 * Forms
 */
/* Standardize the visual appearance of form items. */
/* line 11, ../sass/components/_forms.scss */
input[type="text"],
input[type="password"],
input[type="url"],
input[type="email"],
input[type="number"],
input.text,
input.title,
textarea,
select {
  margin: 0.5em, 0px;
  line-height: normal;
  padding: 6px 12px;
  vertical-align: middle;
  border: 1px solid #cccccc;
  border-radius: 4px;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}

/* Prevent textareas from spilling off the page. */
/* line 31, ../sass/components/_forms.scss */
.form-textarea-wrapper textarea {
  width: auto;
  max-width: 100%;
}

/* Style form buttons */
/* line 36, ../sass/components/_forms.scss */
input[type="submit"] {
  color: #333333;
  font-family: inherit;
  padding: 0 1em 0 1em;
  border: 1px solid #cccccc;
  border-radius: 6px;
  background-color: white;
  height: 3.61111em;
  margin: auto;
}
/* line 45, ../sass/components/_forms.scss */
input[type="submit"]:hover {
  background-color: #ebebeb;
}

/* line 50, ../sass/components/_forms.scss */
#content {
  /* Special behavior for large screens. */
  /* Datepickers and such should be full width on small screens. */
  /* Radio options display next to their buttons. */
  /* Display checkboxes to the right of option labels. */
  /* Resizing happens in the corner of a field. Grippie is overkill. */
  /* Get rid of weird margin Panopoly puts on tables. */
}
@media all and (min-width: 960px) {
  /* line 50, ../sass/components/_forms.scss */
  #content {
    margin-bottom: 1em;
    /* Create the appearance of columns, with form element labels on the left */
    /* Exempt option labels from the above. */
    /* Create the appearance of a right column on forms in content. */
  }
  /* line 53, ../sass/components/_forms.scss */
  #content .form-item {
    clear: both;
  }
  /* line 56, ../sass/components/_forms.scss */
  #content input[type="text"],
  #content input[type="password"],
  #content input[type="url"],
  #content input[type="email"],
  #content input[type="number"],
  #content input.text,
  #content input.title,
  #content textarea,
  #content select {
    max-width: 80%;
    margin-left: 20%;
  }
  /* line 68, ../sass/components/_forms.scss */
  #content label + input[type="text"],
  #content label + input[type="password"],
  #content label + input[type="url"],
  #content label + input[type="email"],
  #content label + input[type="number"],
  #content label + input.text,
  #content label + input.title,
  #content label + textarea,
  #content label + select {
    margin-left: 0;
  }
  /* line 81, ../sass/components/_forms.scss */
  #content input[type="submit"] {
    /* If it's in a full-width thing, line it up with the rest of the form. */
    margin-left: 36%;
  }
  /* line 86, ../sass/components/_forms.scss */
  #content div.form-item input[type="submit"] {
    margin-left: 0px;
  }
  /* line 91, ../sass/components/_forms.scss */
  #content .form-item > label {
    text-align: right;
    padding-right: 1em;
    float: left;
    display: block;
    width: 20%;
  }
  /* line 99, ../sass/components/_forms.scss */
  #content div.form-item > label.option {
    display: inline;
    float: none;
    width: 20%;
  }
  /* line 106, ../sass/components/_forms.scss */
  #content div.form-item,
  #content div.form-item div.description {
    padding-left: 20%;
  }
  /* line 109, ../sass/components/_forms.scss */
  #content div.form-item .form-item,
  #content div.form-item div.description .form-item {
    padding-left: 0px;
  }
  /* line 110, ../sass/components/_forms.scss */
  #content div.form-item .form-item.form-type-checkbox,
  #content div.form-item div.description .form-item.form-type-checkbox {
    padding-left: 20%;
  }
}
/* line 117, ../sass/components/_forms.scss */
#content div.form-item {
  padding-left: 0;
}
@media all and (max-width: 459px) {
  /* line 124, ../sass/components/_forms.scss */
  #content select {
    display: block;
    clear: both;
    width: 100%;
    margin: .25em 0 .25em 0;
  }
}
/* line 133, ../sass/components/_forms.scss */
#content div.form-type-radio {
  display: inline;
  padding-left: 0px;
}
/* line 136, ../sass/components/_forms.scss */
#content div.form-type-radio label {
  display: inline;
  width: auto;
  float: none;
  text-align: left;
  padding-right: none;
}
/* line 146, ../sass/components/_forms.scss */
#content div.form-type-checkbox {
  display: block;
}
/* line 148, ../sass/components/_forms.scss */
#content div.form-type-checkbox label {
  display: inline;
  width: auto;
  float: none;
  text-align: left;
  padding-right: none;
}
/* line 158, ../sass/components/_forms.scss */
#content div.grippie {
  display: none;
}
/* line 163, ../sass/components/_forms.scss */
#content .form-item table {
  margin: 0px;
}
/* line 167, ../sass/components/_forms.scss */
#content td.webform-grid-question {
  padding-left: .5em;
}

/**
 * Node styles.
 * @copyright Copyright (c) 2013 Palantir.net
 */
/**
 * Styles applied by the "Generic content" region plugin
 */
/* line 12, ../sass/components/_node.scss */
.content-generic a.button {
  width: 30%;
  font-size: 1.1em;
  color: white;
  line-height: 1.1em;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  padding: 1em 0px;
  margin-bottom: 2em;
  display: block;
  border: 2px solid #86001e;
  -moz-box-sizing: border-box;
  box-shadow: 0px 1px 4px #999999;
  border-radius: 8px;
  background: linear-gradient(to bottom, #9d5d6a 0%, #5c0013 40%, #80001d 100%) repeat scroll 0% 0% transparent;
}
/* line 28, ../sass/components/_node.scss */
.content-generic a.button:hover {
  color: #ffcc33;
  border: 2px solid #ffcc33;
}
/* line 35, ../sass/components/_node.scss */
.content-generic .field-name-field-pull-quote {
  display: inline;
  width: 50%;
  float: right;
  font-size: 1.5em;
  line-height: 1.2;
  font-weight: 500;
  color: #900021;
  margin: 0.5em 0px 0.5em 0.75em;
  padding: 0.5em 0px 0.5em 0.75em;
  border-left: 1px solid #dddddd;
}
/* line 49, ../sass/components/_node.scss */
.content-generic h2 {
  border-bottom: 1px solid #999999;
  border-top: 1px solid #dddddd;
}
/* line 53, ../sass/components/_node.scss */
.content-generic h3 {
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #eeeeee;
}
/* line 57, ../sass/components/_node.scss */
.content-generic h4 {
  border-bottom: 1px solid #dddddd;
}
/* line 61, ../sass/components/_node.scss */
.content-generic p {
  margin: 0px 0px 1.5em;
}
/* line 66, ../sass/components/_node.scss */
.content-generic ul {
  padding-left: 1em;
  list-style: circle outside none;
  margin-bottom: 1em;
}
/* line 71, ../sass/components/_node.scss */
.content-generic ul,
.content-generic ol {
  margin: 0px 1.5em 1.5em;
}
/* line 74, ../sass/components/_node.scss */
.content-generic ul a,
.content-generic ol a {
  text-decoration: none;
}
/* line 76, ../sass/components/_node.scss */
.content-generic ul a:hover,
.content-generic ol a:hover {
  text-decoration: underline;
}

/* line 2, ../sass/components/_hero-image.scss */
#hero-image .pane-node-field-hero-image-description, #hero-image .pane-node-field-hero-image {
  float: none;
  width: 100%;
  clear: both;
}
/* line 7, ../sass/components/_hero-image.scss */
#hero-image .pane-node-field-hero-image {
  text-align: center;
}
/* line 10, ../sass/components/_hero-image.scss */
#hero-image .pane-node-field-hero-image-description {
  padding: 10px 20px;
  background-color: #efebe2;
  max-height: 300px;
  overflow: hidden;
}

/* line 19, ../sass/components/_hero-image.scss */
#hero-image .flexslider {
  margin: 10px 10px 40px;
  border: 0;
}
/* line 24, ../sass/components/_hero-image.scss */
#hero-image .flexslider .flex-direction-nav a {
  padding-top: 10px;
  color: #ffffff;
}

@media all and (min-width: 960px) {
  /* line 32, ../sass/components/_hero-image.scss */
  #hero-image {
    background-color: #efebe2;
    width: 100%;
    float: left;
    clear: both;
  }
  /* line 37, ../sass/components/_hero-image.scss */
  #hero-image .pane-node-field-hero-image {
    float: right;
    text-align: right;
    margin-left: 10px;
    width: 70%;
  }
  /* line 43, ../sass/components/_hero-image.scss */
  #hero-image .pane-node-field-hero-image-description {
    width: 29%;
  }
  /* line 46, ../sass/components/_hero-image.scss */
  #hero-image .pane-node-field-hero-image-description, #hero-image .pane-node-field-hero-image {
    clear: none;
  }
}
/*!
 * @file
 * @copyright Copyright (c) 2013 Palantir.net
*/
/* line 5, ../sass/components/_sidebars.scss */
div[class*='-sidebar'].panel-panel-inner {
  margin: 20px;
}

/* line 2, ../sass/components/_news.scss */
.section-news .field-name-field-image {
  text-align: center;
  margin-bottom: 10px;
}

@media all and (min-width: 960px) {
  /* line 10, ../sass/components/_news.scss */
  .section-news .field-name-field-image {
    float: right;
    width: 20%;
    margin: 10px;
    padding: 5px;
  }
}
/* line 24, ../sass/components/_news.scss */
.pane-news-panel-pane-1 .pane-title,
.pane-news-panel-pane-2 .pane-title,
.pane-news-panel-pane-3 .pane-title,
.pane-news-panel-pane-4 .pane-title {
  border-top: 1px solid lightgray;
  border-bottom: 1px solid #535353;
}

/* line 31, ../sass/components/_news.scss */
.news-pane h3 {
  margin-top: 36px;
}
/* line 35, ../sass/components/_news.scss */
.news-pane h3 a {
  display: block;
  text-decoration: none;
  line-height: 1.2em;
  border-bottom: 1px solid #900021;
  border-top: 1px solid #900021;
  clear: both;
}
/* line 42, ../sass/components/_news.scss */
.news-pane h3 a:hover {
  border-color: #000;
}
/* line 47, ../sass/components/_news.scss */
.news-pane .views-field-field-publication-date {
  font-style: italic;
}
/* line 51, ../sass/components/_news.scss */
.news-pane .views-row {
  padding-bottom: 10px;
  border-bottom: 1px solid #535353;
}
/* line 56, ../sass/components/_news.scss */
.news-pane .views-row-last {
  border-bottom: none;
}

/* line 1, ../sass/components/_accordions.scss */
.ui-accordion {
  font-size: 100%;
}
/* line 3, ../sass/components/_accordions.scss */
.ui-accordion h4.ui-accordion-header {
  background-color: #ececec;
  color: #990021;
  text-decoration: underline;
  -moz-border-radius: 0 / 0;
  -webkit-border-radius: 0 0;
  border-radius: 0 / 0;
  border: none;
  font-size: 18px;
}
/* line 10, ../sass/components/_accordions.scss */
.ui-accordion h4.ui-accordion-header.ui-state-active {
  background-color: #FC3;
}
/* line 13, ../sass/components/_accordions.scss */
.ui-accordion h4.ui-accordion-header:focus {
  outline: dotted thin;
}

/**
 * @copyright Copyright (c) 2013 Palantir.net
 */
/* line 6, ../sass/components/_tabs.scss */
.ui-tabs .ui-tabs-nav {
  background: none transparent;
}
/* line 8, ../sass/components/_tabs.scss */
.ui-tabs .ui-tabs-nav li.ui-tabs-selected.ui-state-default {
  background: none #fc3;
}
/* line 10, ../sass/components/_tabs.scss */
.ui-tabs .ui-tabs-nav li.ui-tabs-selected.ui-state-default:hover {
  background: none #fc3;
}
/* line 14, ../sass/components/_tabs.scss */
.ui-tabs .ui-tabs-nav li.ui-state-default {
  background: none #ECECEC;
  padding-bottom: 0;
}
/* line 17, ../sass/components/_tabs.scss */
.ui-tabs .ui-tabs-nav li.ui-state-default:hover {
  background: none #ECECEC;
}
/* line 19, ../sass/components/_tabs.scss */
.ui-tabs .ui-tabs-nav li.ui-state-default:hover a {
  text-decoration: underline;
}
/* line 25, ../sass/components/_tabs.scss */
.ui-tabs .tabs-content {
  border-top: 3px solid #fc3;
  border-bottom: 3px solid #fc3;
}

/* line 2, ../sass/components/_faculty.scss */
.node-type-faculty .selby-content-column1,
.node-type-faculty .selby-content-column2,
.node-type-faculty .selby .col-md-6 {
  text-align: center;
}
/* line 7, ../sass/components/_faculty.scss */
.node-type-faculty .selby-content-column1,
.node-type-faculty .selby .radix-layouts-contentcolumn1 {
  margin-bottom: 10px;
}

@media all and (min-width: 460px) {
  /* line 15, ../sass/components/_faculty.scss */
  .node-type-faculty .selby-content-column1,
  .node-type-faculty .selby .radix-layouts-contentcolumn1 {
    text-align: left;
    margin-bottom: 0;
  }
}
/* line 2, ../sass/components/_staff.scss */
.node-type-staff .selby-content-column1,
.node-type-staff .selby-content-column2,
.node-type-staff .selby .col-md-6 {
  text-align: center;
}
/* line 7, ../sass/components/_staff.scss */
.node-type-staff .selby-content-column1,
.node-type-staff .selby .radix-layouts-contentcolumn1 {
  margin-bottom: 10px;
}

@media all and (min-width: 460px) {
  /* line 15, ../sass/components/_staff.scss */
  .node-type-staff .selby-content-column1,
  .node-type-staff .selby .radix-layouts-contentcolumn1 {
    text-align: left;
    margin-bottom: 0;
  }
}
/* line 2, ../sass/components/_equal-sized-blocks.scss */
#footer_links.equal-sized-pane-region .pane-title {
  margin: 0;
  color: inherit;
  font-size: 18px;
  line-height: 1.1em;
}
/* line 8, ../sass/components/_equal-sized-blocks.scss */
#footer_links.equal-sized-pane-region ul {
  margin-top: 0;
  padding-left: 1em;
}
/* line 12, ../sass/components/_equal-sized-blocks.scss */
#footer_links.equal-sized-pane-region p {
  margin-top: 0;
}

/* line 17, ../sass/components/_equal-sized-blocks.scss */
.equal-sized-pane-region {
  padding-left: 10px;
  padding-right: 10px;
}

@media all and (min-width: 460px) {
  /* line 23, ../sass/components/_equal-sized-blocks.scss */
  .equal-sized-pane {
    padding: 10px 10px 0;
    float: left;
  }

  /* line 28, ../sass/components/_equal-sized-blocks.scss */
  .equal-sized-pane {
    width: 50%;
  }

  /* line 32, ../sass/components/_equal-sized-blocks.scss */
  .equal-sized-pane-3,
  .equal-sized-pane-5,
  .equal-sized-pane-7 {
    clear: left;
  }
}
@media all and (min-width: 960px) {
  /* line 40, ../sass/components/_equal-sized-blocks.scss */
  .equal-sized-pane {
    padding-bottom: 10px;
  }

  /* line 43, ../sass/components/_equal-sized-blocks.scss */
  .equal-sized-pane-3,
  .equal-sized-pane-5,
  .equal-sized-pane-7 {
    clear: none;
  }

  /* line 49, ../sass/components/_equal-sized-blocks.scss */
  .equal-sized-pane-region-2 .equal-sized-pane {
    width: 50%;
  }

  /* line 55, ../sass/components/_equal-sized-blocks.scss */
  .equal-sized-pane-region-3 .equal-sized-pane {
    width: 33.3%;
  }

  /* line 61, ../sass/components/_equal-sized-blocks.scss */
  .equal-sized-pane-region-4 .equal-sized-pane {
    width: 25%;
  }

  /* line 67, ../sass/components/_equal-sized-blocks.scss */
  .equal-sized-pane-region-5 .equal-sized-pane {
    width: 20%;
  }

  /* line 73, ../sass/components/_equal-sized-blocks.scss */
  .equal-sized-pane-region-6 .equal-sized-pane {
    width: 16.6%;
  }

  /* line 79, ../sass/components/_equal-sized-blocks.scss */
  .equal-sized-pane-region-7 .equal-sized-pane {
    width: 14.2%;
  }

  /* line 85, ../sass/components/_equal-sized-blocks.scss */
  .equal-sized-pane-region-8 .equal-sized-pane {
    width: 12.5%;
  }
}
/* line 1, ../sass/components/_emergency_message.scss */
.emergency-message {
  padding: 3px;
  color: black;
  background-color: #FFC94F;
}

/* line 7, ../sass/components/_emergency_message.scss */
.emergency-message-title {
  margin: 10px 20px 5px;
  text-align: left;
  font-weight: bold;
  text-transform: capitalize;
  color: black;
  line-height: 1em;
}

/* line 17, ../sass/components/_emergency_message.scss */
.emergency-message-body {
  margin: 10px 10px 5px;
  font-size: 115%;
}
/* line 20, ../sass/components/_emergency_message.scss */
.emergency-message-body h1, .emergency-message-body h2, .emergency-message-body h3, .emergency-message-body h4, .emergency-message-body h5, .emergency-message-body h6 {
  margin: 0;
  color: #a10025;
  font-size: 180%;
  line-height: 1.3em;
}
/* line 26, ../sass/components/_emergency_message.scss */
.emergency-message-body p {
  padding: 10px;
  margin: 0;
}

/* line 1, ../sass/components/_groups_header.scss */
#sub-header {
  background-color: #ffffff;
  width: 100%;
}
/* line 4, ../sass/components/_groups_header.scss */
#sub-header .pane-node-og-group-ref {
  background-color: #ffffff;
  float: left;
  max-width: 70%;
}
/* line 8, ../sass/components/_groups_header.scss */
#sub-header .pane-node-og-group-ref h2 {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-left: 20px;
}

/* line 16, ../sass/components/_groups_header.scss */
.social-media-backdrop {
  width: 32px;
  height: 32px;
  overflow: hidden;
  background-repeat: none;
}

/* line 23, ../sass/components/_groups_header.scss */
.pane-node-field-group-facebook-page,
.pane-node-field-group-linkedin,
.pane-node-field-group-rss-feed,
.pane-node-field-group-youtube-channel {
  float: right;
  margin: 10px 5px 10px;
}

/* line 32, ../sass/components/_groups_header.scss */
.pane-node-field-group-facebook-page {
  margin-right: 5px;
}
/* line 34, ../sass/components/_groups_header.scss */
.pane-node-field-group-facebook-page .social-media-backdrop {
  background-image: url("../images/facebook_32.png");
}

/* line 40, ../sass/components/_groups_header.scss */
.pane-node-field-group-linkedin .social-media-backdrop {
  background-image: url("../images/linkedin_32.png");
}

/* line 46, ../sass/components/_groups_header.scss */
.pane-node-field-group-youtube-channel .social-media-backdrop {
  background-image: url("../images/youtube_32.png");
}

/* line 53, ../sass/components/_groups_header.scss */
.pane-node-field-group-rss-feed .social-media-backdrop {
  background-image: url("../images/rss_32.png");
}

@media all and (min-width: 960px) {
  /* line 61, ../sass/components/_groups_header.scss */
  #sub-header .pane-node-og-group-ref {
    max-width: 80%;
  }
}
/* line 1, ../sass/components/_quick_links.scss */
.pane-bundle-quick-links {
  -moz-border-radius: 5px / 5px;
  -webkit-border-radius: 5px 5px;
  border-radius: 5px / 5px;
  background-color: #FFCC33;
  border: 1px solid #541900;
}
/* line 2, ../sass/components/_quick_links.scss */
.pane-bundle-quick-links .pane-bundle-quick-links {
  position: relative;
  right: 0px;
  left: 0px;
  bottom: 0px;
  top: 50px;
}
/* line 12, ../sass/components/_quick_links.scss */
.pane-bundle-quick-links .pane-title {
  color: #540800;
  margin: 0;
  padding-left: 20px;
  border-bottom: 1px solid #FFE598;
}
/* line 19, ../sass/components/_quick_links.scss */
.pane-bundle-quick-links .item-list ul {
  padding-left: 0;
}
/* line 22, ../sass/components/_quick_links.scss */
.pane-bundle-quick-links .item-list li {
  list-style: none;
}
/* line 24, ../sass/components/_quick_links.scss */
.pane-bundle-quick-links .item-list li a {
  background-color: #FFE598;
  margin: 3px 10px;
  padding: 3px 5px;
  -moz-border-radius: 5px / 5px;
  -webkit-border-radius: 5px 5px;
  border-radius: 5px / 5px;
}
/* line 30, ../sass/components/_quick_links.scss */
.pane-bundle-quick-links .item-list li a:hover, .pane-bundle-quick-links .item-list li a:focus {
  color: #7a0019;
  background: white;
}
/* line 35, ../sass/components/_quick_links.scss */
.pane-bundle-quick-links .item-list a {
  text-decoration: none;
  color: #333333;
  display: block;
}

/**
 * @copyright Copyright (c) 2013 Palantir.net
 */
/* line 5, ../sass/components/_sub-sub-header.scss */
.sub-sub-header-wrapper {
  clear: both;
}

/* line 9, ../sass/components/_sub-sub-header.scss */
#sub-sub-header {
  margin: 0;
  padding: 0 20px;
}

/* line 3, ../sass/components/_tables.scss */
table {
  width: 100%;
}
/* line 5, ../sass/components/_tables.scss */
table tr:first-child {
  border-bottom: 2px solid #DDD;
  font-weight: bold;
}
/* line 9, ../sass/components/_tables.scss */
table td {
  padding-left: 8px;
  padding-right: 8px;
  border: 1px solid #DDD;
}

/**
 * @file
 * @copyright Copyright (c) 2014 Palantir.net
 */
/* line 6, ../sass/components/_views.scss */
.pane-og-faculty-og-faculty-list .pane-title, .pane-og-staff-og-staff-list .pane-title {
  clear: both;
}

/* line 11, ../sass/components/_views.scss */
.view-og-faculty .views-row, .view-og-staff .views-row {
  clear: both;
}
/* line 14, ../sass/components/_views.scss */
.view-og-faculty .views-row, .view-og-staff .views-row {
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 10px;
}
/* line 18, ../sass/components/_views.scss */
.view-og-faculty .views-field-field-portrait-picture,
.view-og-faculty .views-field-field-landscape-picture, .view-og-staff .views-field-field-portrait-picture,
.view-og-staff .views-field-field-landscape-picture {
  padding-top: 10px;
  text-align: center;
  margin-bottom: 10px;
}
/* line 24, ../sass/components/_views.scss */
.view-og-faculty h3.views-field-title, .view-og-staff h3.views-field-title {
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 460px) {
  /* line 34, ../sass/components/_views.scss */
  .view-og-faculty div.addressfield-container-inline:after, .view-og-staff div.addressfield-container-inline:after {
    display: none;
  }
  /* line 37, ../sass/components/_views.scss */
  .view-og-faculty .views-field-field-portrait-picture,
  .view-og-faculty .views-field-field-landscape-picture, .view-og-staff .views-field-field-portrait-picture,
  .view-og-staff .views-field-field-landscape-picture {
    text-align: left;
    margin-right: 10px;
    float: left;
    clear: left;
  }
  /* line 44, ../sass/components/_views.scss */
  .view-og-faculty .views-row, .view-og-staff .views-row {
    overflow: auto;
  }
  /* line 47, ../sass/components/_views.scss */
  .view-og-faculty .views-row-last, .view-og-staff .views-row-last {
    border-bottom: none;
  }
}
/* line 55, ../sass/components/_views.scss */
.umn-events-view-pane .views-field.views-field-field-umnevent-image {
  float: left;
  margin-top: .35em;
  margin-right: .7em;
}
/* line 60, ../sass/components/_views.scss */
.umn-events-view-pane .views-field-field-umnevent-loc-street-addr, .umn-events-view-pane .views-field-field-umnevent-loc-city, .umn-events-view-pane .views-field-field-umnevent-loc-state {
  display: inline;
}
/* line 63, ../sass/components/_views.scss */
.umn-events-view-pane .views-field-field-umnevent-loc-street-addr div, .umn-events-view-pane .views-field-field-umnevent-loc-city div, .umn-events-view-pane .views-field-field-umnevent-loc-state div {
  display: inline;
}
/* line 65, ../sass/components/_views.scss */
.umn-events-view-pane .views-field-field-umnevent-loc-street-addr div:after, .umn-events-view-pane .views-field-field-umnevent-loc-city div:after, .umn-events-view-pane .views-field-field-umnevent-loc-state div:after {
  content: ', ';
}
/* line 70, ../sass/components/_views.scss */
.umn-events-view-pane .views-field-field-umnevent-loc-zip {
  display: inline;
}
/* line 73, ../sass/components/_views.scss */
.umn-events-view-pane .views-field-field-umnevent-loc-zip div {
  display: inline;
}

/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
