/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/* set the default styling for all HTML elements in this file - LG - 11/15/13 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
/* line 25, ../sass/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

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

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

/* Address styling not present in IE 8/9. */
/* line 60, ../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 108, ../sass/_normalize.scss */
html {
  font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;
  /* 1 */
  font-size: 75%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.33333em;
}

/* Remove default margin. */
/* added default text color, background color - LG - 11/15/13 */
/* line 129, ../sass/_normalize.scss */
body {
  margin: 0;
  padding: 0;
  color: #2f2f2f;
  background: #3f3f3f;
}

/**
 * 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
 */
/* line 142, ../sass/_normalize.scss */
a:link {
  color: #105e9c;
}

/* line 145, ../sass/_normalize.scss */
a:visited {
  color: #606fba;
}

/* line 148, ../sass/_normalize.scss */
a:hover,
a:focus {
  color: black;
}

/* Address `outline` inconsistency between Chrome and other browsers. */
/* line 156, ../sass/_normalize.scss */
a:focus {
  outline: thin dotted;
}

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

/* line 181, ../sass/_normalize.scss */
blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.33333em 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 190, ../sass/_normalize.scss */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.33333em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.66667em;
  margin-bottom: 0.66667em;
}

/* line 198, ../sass/_normalize.scss */
h2 {
  font-size: 1.4em;
  line-height: 1.90476em;
  margin-top: 0.95238em;
  margin-bottom: 0.95238em;
}

/* line 203, ../sass/_normalize.scss */
h3 {
  font-size: 1.4em;
  line-height: 1.90476em;
  margin-top: 0.95238em;
  margin-bottom: 0.95238em;
}

/* line 208, ../sass/_normalize.scss */
h4 {
  font-size: 1em;
  line-height: 1.33333em;
  margin-top: 1.33333em;
  margin-bottom: 1.33333em;
}

/* line 213, ../sass/_normalize.scss */
h5 {
  font-size: 0.83em;
  line-height: 1.60643em;
  margin-top: 1.60643em;
  margin-bottom: 1.60643em;
}

/* line 218, ../sass/_normalize.scss */
h6 {
  font-size: 0.67em;
  line-height: 1.99005em;
  margin-top: 1.99005em;
  margin-bottom: 1.99005em;
}

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
/* line 225, ../sass/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

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

/* Address styling not present in Safari 5 and Chrome. */
/* line 236, ../sass/_normalize.scss */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
/* line 241, ../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.33333em 0;
}

/* Address styling not present in IE 8/9. */
/* line 250, ../sass/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 256, ../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.33333em;
}

/* Improve readability of pre-formatted text in all browsers. */
/* line 270, ../sass/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/* Set consistent quote types. */
/* line 282, ../sass/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
/* line 287, ../sass/_normalize.scss */
small {
  font-size: 80%;
}

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

/* line 299, ../sass/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 302, ../sass/_normalize.scss */
sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
/* line 309, ../sass/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.33333em 0;
}

/* line 318, ../sass/_normalize.scss */
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

/* line 324, ../sass/_normalize.scss */
dd {
  margin: 0 0 0 30px;
}

/* Address paddings set differently in IE 6/7. */
/* line 329, ../sass/_normalize.scss */
menu,
ol,
ul {
  padding: 0 0 0 30px;
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 349, ../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%; - this broke home page tab images in Chrome - LG - 8/21/14 */
  height: auto;
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

/* Correct overflow displayed oddly in IE 9. */
/* line 370, ../sass/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
/* line 375, ../sass/_normalize.scss */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
/* line 391, ../sass/_normalize.scss */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-width: 0.08333em;
  border-top-style: solid;
  padding-top: 0.38333em;
  border-bottom-width: 0.08333em;
  border-bottom-style: solid;
  padding-bottom: 0.78333em;
  border-left-width: 0.08333em;
  border-left-style: solid;
  padding-left: 0.78333em;
  border-right-width: 0.08333em;
  border-right-style: solid;
  padding-right: 0.78333em;
}

/**
 * 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 406, ../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 421, ../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 440, ../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 451, ../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 465, ../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 479, ../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 490, ../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 505, ../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 514, ../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 520, ../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 530, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
/* line 536, ../sass/_normalize.scss */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
/* line 544, ../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.33333em;
  margin-bottom: 1.33333em;
  /* safe? - LG - 7/21/14 */
}
/* line 555, ../sass/_normalize.scss */
table td {
  vertical-align: top;
}

/* 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 34, ../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. */
/* no idea if these two regions need this treatment - LG - 5/19/14 */
/* line 45, ../sass/layouts/_responsive.scss */
.region-logohead,
.region-content-top,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer {
  padding-left: 0px;
  padding-right: 0px;
  -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. */
/* no idea if these two regions need this treatment - LG - 5/19/14 */
/* line 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
.region-logohead:before, .region-logohead:after,
.region-content-top:before,
.region-content-top:after,
#main:before,
#main:after,
#footer:before,
#footer:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
.region-logohead:after,
.region-content-top:after,
#main:after,
#footer:after {
  clear: both;
}

/* Navigation bar */
@media all and (min-width: 480px) {
  /* line 72, ../sass/layouts/_responsive.scss */
  #main {
    /* Move all the children of #main down to make room. */
    padding-top: 0;
    position: relative;
  }

  /* line 77, ../sass/layouts/_responsive.scss */
  #navigation {
    /* Move the navbar up inside #main's padding. */
    position: absolute;
    top: 0;
    height: 0;
    width: 100%;
  }
}
/**
 * Use 3 grid columns for smaller screens.
 */
@media all and (min-width: 480px) and (max-width: 959px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 98, ../sass/layouts/_responsive.scss */
  .sidebar-first {
    /* Span 1 column, starting in 1st column from left. */
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  /* line 100, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }
  /* line 103, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-content-top {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  /* line 108, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  /* line 113, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   * deleting this - don't need it - LG - 11/13/13
   */
  /**
   * The layout when there are two sidebars.
   */
  /* line 126, ../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 128, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  /* line 132, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-content-top {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  /* line 137, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }
  /* line 142, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    padding-left: 0;
    padding-right: 0;
    clear: left;
    /* Apply the shared properties of grid items in a single, efficient ruleset. */
    /* Span 1 column, starting in the 1st column from left. */
    /* Span 1 column, starting in the 2nd column from left. */
    /* Span 1 column, starting in the 3rd column from left. */
  }
  /* line 148, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block {
    padding-left: 0px;
    padding-right: 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  /* line 152, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
    clear: left;
  }
  /* line 157, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
    float: left;
    width: 33.33333%;
    margin-left: 33.33333%;
    margin-right: -66.66667%;
  }
  /* line 161, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }
}
/**
 * Use 5 grid columns for larger screens.
 * switched to 9 columns - LG - 11/14/13
 */
@media all and (min-width: 960px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 179, ../sass/layouts/_responsive.scss */
  .sidebar-first {
    /* Span 2 columns, starting in 1st column from left. */
    /* Span 7 columns, starting in 3rd column from left. */
  }
  /* line 182, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 22.22222%;
    margin-left: 0%;
    margin-right: -22.22222%;
  }
  /* line 186, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-content-top {
    float: left;
    width: 77.77778%;
    margin-left: 22.22222%;
    margin-right: -100%;
  }
  /* line 191, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 77.77778%;
    margin-left: 22.22222%;
    margin-right: -100%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   * deleting this - don't need it - LG - 11/13/13
   */
  /**
   * The layout when there are two sidebars.
   */
  /* line 205, ../sass/layouts/_responsive.scss */
  .two-sidebars {
    /* Span 2 columns, starting in 1st column from left. */
    /* Span 5 columns, starting in 3nd column from left. */
    /* Span 2 column, starting in 8th column from left. */
  }
  /* line 208, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 22.22222%;
    margin-left: 0%;
    margin-right: -22.22222%;
  }
  /* line 212, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-content-top {
    float: left;
    width: 77.77778%;
    margin-left: 22.22222%;
    margin-right: -100%;
  }
  /* line 217, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 55.55556%;
    margin-left: 22.22222%;
    margin-right: -77.77778%;
  }
  /* line 222, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 22.22222%;
    margin-left: 77.77778%;
    margin-right: -100%;
  }
}
/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
/* line 16, ../sass/components/_misc.scss */
.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;
}

/* line 34, ../sass/components/_misc.scss */
form {
  padding: 5px 15px 15px 15px;
}

/* line 39, ../sass/components/_misc.scss */
.node-type-colorbox-gallery #content {
  background-color: #303030;
}

/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
/* line 49, ../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 55, ../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 72, ../sass/components/_misc.scss */
#skip-link {
  margin: 0;
}
/* line 75, ../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;
}

/* line 91, ../sass/components/_misc.scss */
.field-slideshow-caption {
  padding: 10px 20px;
  background: transparent url(/sites/all/themes/ugalawzen/images/masthead_blurb_bg.png) repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #FFFFFF;
  overflow: hidden;
}

/** 
 * front page stuff 
 * in the process of becoming sassified - LG - 12/6/13
 */
@media (max-width: 30em) {
  /* line 103, ../sass/components/_misc.scss */
  #trheadline {
    display: none;
  }
}

@media (max-width: 60em) {
  /* line 108, ../sass/components/_misc.scss */
  #trbody {
    display: none;
  }
}

/* line 114, ../sass/components/_misc.scss */
#tabs_bar {
  background: #54493C;
}
/* line 119, ../sass/components/_misc.scss */
#tabs_bar .tabs-selected {
  background-color: #928372;
}
/* line 122, ../sass/components/_misc.scss */
#tabs_bar ul {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
/* line 126, ../sass/components/_misc.scss */
#tabs_bar ul li {
  float: left;
  list-style-type: none;
  white-space: nowrap;
}
/* line 130, ../sass/components/_misc.scss */
#tabs_bar ul li a {
  color: white;
  padding: 4px 10px;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
}
/* line 137, ../sass/components/_misc.scss */
#tabs_bar ul li a:hover, #tabs_bar ul li a:active {
  background-color: #928372;
  color: white;
  text-decoration: none;
}
/* line 142, ../sass/components/_misc.scss */
#tabs_bar ul li a:visited {
  color: white;
}

/* line 150, ../sass/components/_misc.scss */
#tabs_contentArea {
  background-color: #928372;
  color: white;
  overflow: hidden;
  /* width: 950px; */
}
/* line 156, ../sass/components/_misc.scss */
#tabs_contentArea a {
  color: #f6edba;
}
/* line 158, ../sass/components/_misc.scss */
#tabs_contentArea a:hover {
  color: #54493c;
  text-decoration: none;
}
/* line 162, ../sass/components/_misc.scss */
#tabs_contentArea a:visited {
  color: #333;
}
/* line 166, ../sass/components/_misc.scss */
#tabs_contentArea h2 {
  font-size: 2em;
  font-weight: normal;
  line-height: 1em;
  color: #f6edba;
  /* necessary? - LG - 4/25/14 */
}

/* for home page tabs - LG - 4/26/14 */
/* line 174, ../sass/components/_misc.scss */
.left_content {
  vertical-align: top;
  float: left;
  background-color: #928372;
  width: 45%;
  padding: 15px;
}
@media (max-width: 60em) {
  /* line 174, ../sass/components/_misc.scss */
  .left_content {
    width: 90%;
  }
}
/* line 185, ../sass/components/_misc.scss */
.left_content div, .left_content p {
  margin: auto;
}
/* line 188, ../sass/components/_misc.scss */
.left_content img {
  float: left;
}

/* line 193, ../sass/components/_misc.scss */
.right-content {
  vertical-align: top;
  float: left;
  background-color: #928372;
  width: 45%;
}
@media (max-width: 60em) {
  /* line 193, ../sass/components/_misc.scss */
  .right-content {
    width: 90%;
  }
}
/* line 204, ../sass/components/_misc.scss */
.right-content div, .right-content p {
  margin: auto;
}

/* line 208, ../sass/components/_misc.scss */
#tab_shadow {
  /* width: 950px; */
  height: 14px;
  background: url(/sites/all/themes/ugalawzen/images/tab_shadow.gif);
}

/* line 213, ../sass/components/_misc.scss */
.tabs-hide {
  display: none;
}

/*
#tabs_contentArea p{color:#ffffff;}
p.hp_cal{float:right; padding-left:30px; height:18px;}
p.hp_news{float:right; padding-left:400px;}
*/
/* line 223, ../sass/components/_misc.scss */
.sidebars {
  /* float: left; */
  /* width: 100%; - this breaks login :( - LG - 4/26/14 */
}

/**
 * Branding header.
 */
/* Logo image. */
/* line 238, ../sass/components/_misc.scss */
.header__logo-image {
  display: block;
  height: auto;
  margin: 20px auto 15px auto;
}
@media (max-width: 25em) {
  /* line 238, ../sass/components/_misc.scss */
  .header__logo-image {
    width: 75%;
  }
}

/* SEARCH BOX - LG - 12/13/13 */
/* #search_glaw { */
/* updated due to Google breakage - LG - 6/23/15 */
/* line 253, ../sass/components/_misc.scss */
.gsib_a {
  width: 240px;
  border: 0;
}

/* line 259, ../sass/components/_misc.scss */
.gsc-search-box {
  width: 250px;
}
/* line 260, ../sass/components/_misc.scss */
.gsc-search-box table {
  margin-top: 0;
}

/* line 266, ../sass/components/_misc.scss */
#___gcse_0 {
  z-index: 1 !important;
  width: 250px;
  float: right;
  /* #cse-search-box { */
}
@media (max-width: 60em) {
  /* line 266, ../sass/components/_misc.scss */
  #___gcse_0 {
    margin: 0;
    padding: 0;
  }
}
/* line 277, ../sass/components/_misc.scss */
#___gcse_0 .gsc-branding, #___gcse_0 .gsc-control-searchbox-only {
  border: 0;
  margin: 0;
  padding: 0;
}
/* line 285, ../sass/components/_misc.scss */
#___gcse_0 .gsc-search-box {
  margin: 3px 0 0 0;
  /* .form-text { */
  /* .form-submit { */
}
/* line 288, ../sass/components/_misc.scss */
#___gcse_0 .gsc-search-box form {
  padding: 0;
}
@media (max-width: 60em) {
  /* line 285, ../sass/components/_misc.scss */
  #___gcse_0 .gsc-search-box {
    margin: 0;
    padding: 0;
    width: 200px;
  }
}
/* line 297, ../sass/components/_misc.scss */
#___gcse_0 .gsc-search-box .gsc-input, #___gcse_0 .gsc-search-box .gsc-input-box {
  border: 0;
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  /*
        border: 1px solid;
        border-radius: 5px;
        font-family:Arial, Helvetica, sans-serif;
        font-size: 1.0em; 
        height: 20px; 
        width: 200px; 
        @include breakpoint($breakpoint-tablet) {
          width: 150px;
        }
        //display: inline-block; ???
        vertical-align: top;
  */
}
/* line 317, ../sass/components/_misc.scss */
#___gcse_0 .gsc-search-box .gsc-search-button {
  color: white;
  background-color: #C00000;
  padding: 0;
  margin: 0;
  border: 0;
  width: 20px;
  height: 20px;
  border: none;
}

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

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

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

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

/* trying this - LG - 4/27/14 */
/* line 370, ../sass/components/_misc.scss */
.menu-block-wrapper {
  /* doesn't work here - LG - 5/30/14 */
}

/* Wrapper for any blocks placed in the header region. */
/* line 376, ../sass/components/_misc.scss */
.header__region {
  /* Clear the logo. */
}

/* line 391, ../sass/components/_misc.scss */
#content-top {
  height: 50px;
  background-image: -moz-linear-gradient(#3f3f3f, #3a3a3a);
  background-image: -webkit-linear-gradient(#3f3f3f, #3a3a3a);
  background-image: linear-gradient(#3f3f3f, #3a3a3a);
}
@media (max-width: 60em) {
  /* line 391, ../sass/components/_misc.scss */
  #content-top {
    height: 100px;
  }
}

/* line 406, ../sass/components/_misc.scss */
#block-menu-block-2 {
  background: url("/sites/all/themes/ugalawzen/images/left_nav_bg.gif") no-repeat scroll right top white;
  padding: 2px 0;
  text-transform: uppercase;
  font-weight: bold;
}
/* line 419, ../sass/components/_misc.scss */
#block-menu-block-2 ul {
  list-style-image: url("/sites/all/themes/ugalawzen/images/redangle.gif");
}
/* line 421, ../sass/components/_misc.scss */
#block-menu-block-2 ul li {
  padding: 3px;
  border-bottom: 1px dotted #ccc;
  margin: 0 12px 0 0;
}

/* line 429, ../sass/components/_misc.scss */
#navigation {
  /* Sometimes you want to prevent overlapping with main div. */
  /* Main menu and secondary menu links and menu block links. */
}
/* line 433, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 443, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 449, ../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;
}

/* line 459, ../sass/components/_misc.scss */
#block-menu-block-1, #block-menu-block-4 {
  background: url("/sites/all/themes/ugalawzen/images/left_nav_bg.gif") no-repeat scroll right top white;
}
/* line 461, ../sass/components/_misc.scss */
#block-menu-block-1 .block-title, #block-menu-block-4 .block-title {
  background: url("/sites/all/themes/ugalawzen/images/nav_on_bg320.jpg") right top no-repeat;
  background-size: 100% 100%;
  padding: 18px 5px 5px 30px;
  text-transform: uppercase;
  font-size: 1.25em;
  line-height: 1.2em;
  margin: 0;
  font-family: Arial Narrow, Arial, sans-serif;
}
/* line 472, ../sass/components/_misc.scss */
#block-menu-block-1 .block-title a, #block-menu-block-4 .block-title a {
  color: #333;
  text-decoration: none;
}
/* line 475, ../sass/components/_misc.scss */
#block-menu-block-1 .block-title a:hover, #block-menu-block-4 .block-title a:hover {
  color: #666;
  text-decoration: underline;
}
/* line 481, ../sass/components/_misc.scss */
#block-menu-block-1 .menu-name-menu-resource-navigation, #block-menu-block-4 .menu-name-menu-resource-navigation {
  background: url("/sites/all/themes/ugalawzen/images/left_nav_bg.gif") no-repeat scroll right top white;
}

/* RESOURCES MENU - Alumni - Prospective Students at the top of the page - LG - 3/27/14 */
/* line 487, ../sass/components/_misc.scss */
.menu-block-3 {
  /*
    position: relative;
    height: auto;
    min-height: 100% !important;
  */
}
/* line 497, ../sass/components/_misc.scss */
.menu-block-3 ul {
  float: left;
  margin: 10px 0;
  padding: 4px 0 10px 8px;
  text-align: center;
}
@media (max-width: 30em) {
  /* line 497, ../sass/components/_misc.scss */
  .menu-block-3 ul {
    width: 94%;
    background-image: -moz-linear-gradient(#3f3f3f, #3a3a3a);
    background-image: -webkit-linear-gradient(#3f3f3f, #3a3a3a);
    background-image: linear-gradient(#3f3f3f, #3a3a3a);
  }
}
/* line 509, ../sass/components/_misc.scss */
.menu-block-3 ul li {
  /* A simple method to get navigation links to appear in one line. */
  display: inline;
  float: left;
  list-style-type: none;
  list-style-image: none;
  padding: 0 8px;
}
/* line 517, ../sass/components/_misc.scss */
.menu-block-3 ul li a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}
/* line 527, ../sass/components/_misc.scss */
.menu-block-3 ul .last {
  background-color: #c00000;
  text-transform: uppercase;
  font-size: 85%;
  vertical-align: top;
  margin: 0 0 0 210px;
  padding: 2px 5px 2px 5px;
}
@media (max-width: 75em) {
  /* line 527, ../sass/components/_misc.scss */
  .menu-block-3 ul .last {
    margin: 0 0 0 10px;
  }
}
/* line 547, ../sass/components/_misc.scss */
.menu-block-3 ul .last a {
  color: white;
}

/* FOOTER MENU - LG - 3/26/14 */
/* line 556, ../sass/components/_misc.scss */
#footer {
  background: white;
  border-top: 15px solid #303030;
  clear: both;
  position: relative;
  text-align: center;
}

/* line 566, ../sass/components/_misc.scss */
#block-menu-menu-footer-links a, #block-block-6 a {
  text-decoration: none;
}
/* line 568, ../sass/components/_misc.scss */
#block-menu-menu-footer-links a:hover, #block-block-6 a:hover {
  text-decoration: none;
}
/* line 572, ../sass/components/_misc.scss */
/* changed below to make social media icons look nice - LG - 10/8/15 */
#block-menu-menu-footer-links ul, #block-block-6 ul {
  margin: 30px 0 -10px 0;
  padding: 0;
  text-align: center;
}
/* line 577, ../sass/components/_misc.scss */
#block-menu-menu-footer-links ul .last a, #block-block-6 ul .last a {
  background: none;
}
/* line 582, ../sass/components/_misc.scss */
#block-menu-menu-footer-links ul .first a, #block-block-6 ul .first a {
  background: url("/sites/all/themes/ugalawzen/images/footer_logo.gif") no-repeat;
  padding: 10px;
  color: transparent;
}
/* line 586, ../sass/components/_misc.scss */
#block-menu-menu-footer-links ul .first a:hover, #block-block-6 ul .first a:hover {
  text-decoration: none;
}
/* line 591, ../sass/components/_misc.scss */
#block-menu-menu-footer-links ul li, #block-block-6 ul li {
  display: inline;
}
/* line 593, ../sass/components/_misc.scss */
#block-menu-menu-footer-links ul li a, #block-block-6 ul li a {
  background: transparent url("/sites/all/themes/ugalawzen/images/pipe.gif") right no-repeat;
  color: #3e3e3e;
  font-weight: normal;
  padding: 0 10px;
}

/**
 * Breadcrumb navigation. - updated - LG - 4/1/14
 */
/* line 606, ../sass/components/_misc.scss */
.breadcrumb {
  padding: 8px 0;
  border-bottom: 1px dotted #999;
}
/* line 612, ../sass/components/_misc.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 616, ../sass/components/_misc.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  color: #4c4b4b;
  padding: 0 5px 0 0;
}
/* line 625, ../sass/components/_misc.scss */
.breadcrumb li a:hover {
  text-decoration: none;
}

/*
#breadcrumbs a, #breadcrumbs a:visited {color:#105e9c;padding:0 6px 10px;text-decoration:underline;}
*/
/**
 * Titles.
 */
/* line 638, ../sass/components/_misc.scss */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
}

/**
 * Messages.
 */
/* line 650, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.33333em 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 665, ../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 674, ../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 684, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

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

/* Core/module installation error messages. */
/* line 692, ../sass/components/_misc.scss */
.messages--error p.error {
  color: #333;
}

/* System status report. */
/* line 697, ../sass/components/_misc.scss */
.ok,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

/* line 702, ../sass/components/_misc.scss */
.warning,
.messages--warning {
  background-color: #fffce5;
  color: #840;
}

/* line 707, ../sass/components/_misc.scss */
.error,
.messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 718, ../sass/components/_misc.scss */
.tabs-primary, .tabs-secondary {
  overflow: hidden;
  *zoom: 1;
  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 #bbbbbb \0/ie;
  margin: 1.33333em 0;
  padding: 0 2px;
  white-space: nowrap;
}

/* line 728, ../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 732, ../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.33333em;
  text-decoration: none;
}

/* Primary tabs. */
/* line 745, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  text-shadow: 1px 1px 0 white;
  border: 1px solid #bbbbbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

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

/* line 760, ../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 770, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

/* line 774, ../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: -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 798, ../sass/components/_misc.scss */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.33333em;
}

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

/* line 811, ../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 white;
  background-color: #f2f2f2;
  color: #666;
  padding: 0 .5em;
}

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

/** 
 * styles for the "main" and "content" areas, maybe some other stuff
 * Wasn't sure where to put this stuff - LG - 11/15/13
 */
/* line 852, ../sass/components/_misc.scss */
#main {
  position: relative;
  background: #3f3f3f;
  background-image: -moz-linear-gradient(#2f2f2f, #3f3f3f);
  background-image: -webkit-linear-gradient(#2f2f2f, #3f3f3f);
  background-image: linear-gradient(#2f2f2f, #3f3f3f);
}
/* line 857, ../sass/components/_misc.scss */
#main .form-submit {
  color: white;
  background-color: #CC0000;
  padding: 4px;
  font-weight: bold;
  border: medium;
  border-radius: 5px;
}

/* line 867, ../sass/components/_misc.scss */
h2, h3 {
  line-height: 1.2em;
}

/* line 871, ../sass/components/_misc.scss */
.amann-special-container {
  width: 100%;
  margin: auto;
  overflow: auto;
}

/* line 877, ../sass/components/_misc.scss */
.amann-special-clear {
  clear: both;
}

/* line 880, ../sass/components/_misc.scss */
.amann-special-left {
  float: left;
  width: 40%;
}
/* line 882, ../sass/components/_misc.scss */
.amann-special-left p {
  align: right;
}
/* line 884, ../sass/components/_misc.scss */
.amann-special-left p img {
  float: right;
}
@media (max-width: 40em) {
  /* line 880, ../sass/components/_misc.scss */
  .amann-special-left {
    width: 100%;
  }
  /* line 891, ../sass/components/_misc.scss */
  .amann-special-left p {
    align: left;
  }
  /* line 893, ../sass/components/_misc.scss */
  .amann-special-left p img {
    float: left;
  }
}

/* line 901, ../sass/components/_misc.scss */
.amann-special-right {
  float: right;
  width: 55%;
}
/* line 903, ../sass/components/_misc.scss */
.amann-special-right p {
  align: left;
}
@media (max-width: 40em) {
  /* line 901, ../sass/components/_misc.scss */
  .amann-special-right {
    width: 100%;
  }
}

/* line 914, ../sass/components/_misc.scss */
.field-slideshow-caption {
  padding: 10px 20px;
  border: #f87a17;
  /* orange to test */
}

/* line 920, ../sass/components/_misc.scss */
#content {
  /* PHOTO GALLERY STUFF */
}
/* line 922, ../sass/components/_misc.scss */
#content .node-colorbox-gallery {
  background: #303030;
  color: white;
}
/* line 925, ../sass/components/_misc.scss */
#content .node-colorbox-gallery .breadcrumb {
  color: white;
}
/* line 928, ../sass/components/_misc.scss */
#content .node-colorbox-gallery img, #content .node-colorbox-gallery a {
  margin: 0;
  border: 0;
  padding: 0;
}
/* line 933, ../sass/components/_misc.scss */
#content .node-colorbox-gallery table, #content .node-colorbox-gallery tbody, #content .node-colorbox-gallery tr, #content .node-colorbox-gallery td {
  background-color: #303030;
  margin: 0;
  padding: 0;
  border: 0;
}
/* line 941, ../sass/components/_misc.scss */
#content .node-colorbox-gallery .grid-field-col img {
  margin: 2px 4px;
  width: 220px;
}
/* line 947, ../sass/components/_misc.scss */
#content .masthead {
  width: 100%;
}
/* line 951, ../sass/components/_misc.scss */
#content .news_masthead {
  width: 667px;
  margin: -31px 15px 0 -15px;
}
/* line 962, ../sass/components/_misc.scss */
#content .node .field-name-field-header-image, #content .node .field-name-field-slider-image-test,
#content .node .field-slideshow-wrapper, #content .node .field-slideshow, #content .node .masthead, #content .node .news_masthead {
  margin: 0 !important;
  padding: 0 !important;
}
/* line 975, ../sass/components/_misc.scss */
#content .node .field, #content .node .breadcrumb, #content .node #page-title, #content .node #accordian {
  margin: 20px;
}
/* line 980, ../sass/components/_misc.scss */
#content .node-home-page {
  padding: 0;
  margin: 0;
}
/* line 984, ../sass/components/_misc.scss */
#content th {
  background-color: #c00000;
  color: white;
  font-weight: bold;
  padding: 6px;
  text-transform: uppercase;
}
/* line 995, ../sass/components/_misc.scss */
#content td {
  margin: 5px;
}
/* line 999, ../sass/components/_misc.scss */
#content td ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
/* line 1004, ../sass/components/_misc.scss */
#content td li {
  margin-left: 5px;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 16px;
}
/* line 1012, ../sass/components/_misc.scss */
#content td li h4 {
  display: inline;
}
/* line 1016, ../sass/components/_misc.scss */
#content td li:before {
  content: ">";
  padding-right: 5px;
  color: #105e9c;
}

/* line 1025, ../sass/components/_misc.scss */
.date-prev, .date-next {
  list-style-type: none;
}

/* line 1030, ../sass/components/_misc.scss */
.column {
  background-color: white;
}

/*
img {
  // need to put space around images that are inside content - LG - 6/5/14
}
*/
/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
/* line 1045, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 1049, ../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 1057, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

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

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

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

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

/**
 * Blocks.
 */
/* Block wrapper. */
/* line 1117, ../sass/components/_misc.scss */
.block {
  margin-bottom: 0;
  /* background-color: $white; // trying this - LG - 11/14/13 */
}

/* LEFT SIDEBAR - LG - 3/28/14 */
/* line 1124, ../sass/components/_misc.scss */
.region-sidebar-first {
  background-color: #303030;
  float: left;
  margin: 0;
  padding: 0;
}
@media (max-width: 60em) {
  /* line 1124, ../sass/components/_misc.scss */
  .region-sidebar-first {
    width: 100%;
  }
}

/* VIEWS - LG - 5/30/14 */
/* needs padding */
/* line 1142, ../sass/components/_misc.scss */
.view {
  padding: 15px;
}

/* except for these */
/* line 1146, ../sass/components/_misc.scss */
.view-callout-by-page, .view-slide-show-front-page {
  padding: 0px;
}

/* line 1151, ../sass/components/_misc.scss */
.view-callout-by-page .sidebar-middle {
  border-bottom: 1px dotted #777;
  margin: 0 15px 0 0;
}
@media (max-width: 60em) {
  /* line 1151, ../sass/components/_misc.scss */
  .view-callout-by-page .sidebar-middle {
    border-top: 1px dotted #777;
  }
}

/* for the housing & roommate results - LG - 1/29/15 */
/* line 1163, ../sass/components/_misc.scss */
.view-housing-opportunities table, .view-roommates-view-3 table {
  width: 100%;
}
/* line 1166, ../sass/components/_misc.scss */
.view-housing-opportunities td, .view-housing-opportunities tr, .view-roommates-view-3 td, .view-roommates-view-3 tr {
  border: 1px solid black;
  padding: 3px;
  max-width: 300px;
}

/* line 1173, ../sass/components/_misc.scss */
#block-views-library-hours-calendar-block-2 {
  border-bottom: 1px dotted #777;
  margin: 0 15px 0 0;
  background: url("/sites/all/themes/ugalawzen/images/right_shadow.gif") no-repeat scroll left top white;
  padding: 0 8px 8px 15px;
}
@media (max-width: 60em) {
  /* line 1173, ../sass/components/_misc.scss */
  #block-views-library-hours-calendar-block-2 {
    border-top: 1px dotted #777;
  }
}

/* line 1185, ../sass/components/_misc.scss */
.block-views .block-title {
  margin: 0 0 0 20px;
}

/* line 1190, ../sass/components/_misc.scss */
.sidebar_cal {
  background: url(/sites/all/themes/ugalawzen/images/calendar_icon.png) left 0.01em no-repeat;
  padding-left: 30px;
  height: 18px;
}

/* STAFF PROFILE PAGE - LG - 5/9/14 */
/* line 1197, ../sass/components/_misc.scss */
#block-views-staff-contact-info-block-block {
  background-color: white;
  background: url("/sites/all/themes/ugalawzen/images/right_shadow.gif") no-repeat scroll left top white;
  padding: 8px 8px 8px 15px;
}
/* line 1201, ../sass/components/_misc.scss */
#block-views-staff-contact-info-block-block .block-title {
  margin: 0;
  padding: 0 0 0 15px;
}

/* line 1208, ../sass/components/_misc.scss */
.view-staff-photo-block {
  background-color: #303030;
  margin: 0 !important;
  padding: 0 !important;
}
/* line 1213, ../sass/components/_misc.scss */
.view-staff-photo-block img, .view-staff-photo-block div {
  margin: 0 !important;
  padding: 0 !important;
  width: 266px;
}

/* line 1222, ../sass/components/_misc.scss */
.field-name-field-biography, .field-name-field-fp-courses, .views-field-field-related-links,
.views-field-field-admin-name {
  padding: 8px 0 0 0;
  border-top: 1px dotted #ccc;
}

/* line 1227, ../sass/components/_misc.scss */
.views-label-field-admin-name, .views-label-field-related-links {
  font-size: 1.4em;
  font-weight: normal;
  line-height: 1.2em;
}

/* line 1233, ../sass/components/_misc.scss */
.field-name-field-fp-courses .field-label, .field-name-field-biography .field-label {
  font-size: 1.4em;
  font-weight: normal;
  line-height: 1.2em;
}

/* line 1241, ../sass/components/_misc.scss */
.views-field-field-phone .field-content, .views-field-field-fax .field-content, .views-field-field-email .field-content,
.views-field-field-admin-phone .field-content, .views-field-field-admin-email .field-content {
  display: inline;
}

/* line 1247, ../sass/components/_misc.scss */
.field-items .show_hide {
  /*
      background: url("/sites/all/themes/ugalawzen/images/bullet_content.gif") no-repeat;
      margin: 2px 0 0 5px;
      padding: 0 0 0 10px;
  */
  cursor: pointer;
  color: #105e9c;
  text-decoration: underline;
}

/* line 1260, ../sass/components/_misc.scss */
#nav_flash {
  background-color: #303030;
  color: white;
  font-weight: bold;
  /* height:295px; width:249px; */
  /* float: left; - gone - LG - 4/26/14 */
}
@media (max-width: 60em) {
  /* line 1260, ../sass/components/_misc.scss */
  #nav_flash {
    margin: 0;
    width: 100%;
  }
}
/* line 1270, ../sass/components/_misc.scss */
#nav_flash a {
  color: white;
  text-decoration: none;
  margin: 0 0 0 10px;
}
/* line 1275, ../sass/components/_misc.scss */
#nav_flash .hp_show_hide {
  cursor: pointer;
  background-image: -moz-linear-gradient(#3f3f3f, #303030);
  background-image: -webkit-linear-gradient(#3f3f3f, #303030);
  background-image: linear-gradient(#3f3f3f, #303030);
  padding: 1px 0;
}
/* line 1282, ../sass/components/_misc.scss */
#nav_flash .hp_show_hide ul {
  list-style-type: none;
}
@media (max-width: 30em) {
  /* line 1282, ../sass/components/_misc.scss */
  #nav_flash .hp_show_hide ul {
    margin: 4px;
  }
}
@media (max-width: 60em) {
  /* line 1282, ../sass/components/_misc.scss */
  #nav_flash .hp_show_hide ul {
    margin: 8px;
  }
}
/* line 1290, ../sass/components/_misc.scss */
#nav_flash .hp_show_hide ul li {
  color: white;
  background: url("/sites/all/themes/ugalawzen/images/redplus.gif") no-repeat right;
  margin: 0 18px 0 -18px;
}
/* line 1298, ../sass/components/_misc.scss */
#nav_flash .sliding ul {
  list-style-image: url("/sites/all/themes/ugalawzen/images/redbox.jpg");
}
/* line 1300, ../sass/components/_misc.scss */
#nav_flash .sliding ul li {
  text-transform: uppercase;
}
/* line 1305, ../sass/components/_misc.scss */
#nav_flash img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 1314, ../sass/components/_misc.scss */
.neatly {
  margin: 8px 8px 0 8px;
}

/* CALLOUTS - LG - 11/14/13 */
/* line 1320, ../sass/components/_misc.scss */
.sidebar-top, .sidebar-bottom {
  background-color: #303030;
  color: white;
  padding: 8px 8px 8px 18px;
}
/* line 1325, ../sass/components/_misc.scss */
.sidebar-top a, .sidebar-bottom a {
  color: white;
  text-decoration: underline;
}
/* line 1328, ../sass/components/_misc.scss */
.sidebar-top a:hover, .sidebar-bottom a:hover {
  text-decoration: none;
}

/* line 1333, ../sass/components/_misc.scss */
.sidebar-middle {
  background: url("/sites/all/themes/ugalawzen/images/right_shadow.gif") no-repeat scroll left top white;
  padding: 8px 8px 8px 18px;
}

/* line 1340, ../sass/components/_misc.scss */
#block-views-event-rss-feed-blocks-block,
#block-views-event-rss-feed-blocks-block-1,
#block-views-event-rss-feed-blocks-block-2,
#block-views-event-rss-feed-blocks-block-3,
#block-views-event-rss-feed-blocks-block-4,
#block-views-event-rss-feed-blocks-block-5,
#block-views-event-rss-feed-blocks-block-6,
#block-views-event-rss-feed-blocks-block-7 {
  background: url("/sites/all/themes/ugalawzen/images/right_shadow.gif") no-repeat scroll left top white;
  /* not sure what's up here - LG - 7/21/14 */
  padding: 15px 0 0 0;
  margin: 0;
}

/*
#block-views-library-hours-calendar-block-2 {
  // added this here, though not sure why it's necessary - LG - 8/15/14
  background: url("/sites/all/themes/ugalawzen/images/right_shadow.gif") no-repeat scroll left top #FFFFFF;
  padding: 0 8px 8px 18px; // tweaked - LG - 6/10/14
  border-bottom: 1px dotted #777;
}
*/
/* list items in callouts - LG - 4/1/14 */
/* line 1376, ../sass/components/_misc.scss */
.more {
  background: url("/sites/all/themes/ugalawzen/images/more_square.gif") left 0.2em no-repeat;
  padding-left: 16px;
  margin-left: 5px;
  margin-bottom: 10px;
}
/* line 1381, ../sass/components/_misc.scss */
.more a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}
/* line 1385, ../sass/components/_misc.scss */
.more a:hover {
  text-decoration: underline;
}

/**
 * Menus.
 * deleted a bunch of list-style-types below - LG - 2/24/14
 */
/* line 1396, ../sass/components/_misc.scss */
.menu__item {
  list-style-type: none;
}
/* line 1398, ../sass/components/_misc.scss */
.menu__item a {
  color: #404040;
  text-decoration: none;
}
/* line 1401, ../sass/components/_misc.scss */
.menu__item a:hover {
  text-decoration: underline;
}
/* line 1406, ../sass/components/_misc.scss */
.menu__item a.active {
  text-decoration: none;
  color: #c00000;
}
/* line 1410, ../sass/components/_misc.scss */
.menu__item a.active:hover {
  text-decoration: underline;
}

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
/* line 1421, ../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 1433, ../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 1461, ../sass/components/_misc.scss */
.comments {
  margin: 1.33333em 0;
}

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

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

/* Nested comments are indented. */
/* line 1482, ../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 1492, ../sass/components/_misc.scss */
.form-item {
  margin: 1.33333em 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 1496, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 1503, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 1509, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 1516, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

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

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

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

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

/* Drupal's default login form block. */
/* line 1551, ../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 1563, ../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 1569, ../sass/components/_misc.scss */
.openid-link,
.user-link {
  margin-top: 1.33333em;
}

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

/**
 * Drupal admin tables.
 */
/* line 1586, ../sass/components/_misc.scss */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
/* line 1591, ../sass/components/_misc.scss */
form tbody {
  border-top: 1px solid #ccc;
}
/* line 1594, ../sass/components/_misc.scss */
form table ul {
  margin: 0;
}

/* line 1598, ../sass/components/_misc.scss */
tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

/* line 1604, ../sass/components/_misc.scss */
tr.even {
  background-color: #fff;
}

/* Markup generated by theme_tablesort_indicator(). */
/* line 1619, ../sass/components/_misc.scss */
td.active {
  background-color: #ddd;
}

/* Center checkboxes inside table cell. */
/* line 1624, ../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 1630, ../sass/components/_misc.scss */
td.menu-disabled {
  background: #ccc;
}

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

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

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

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

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

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

/**
 * Progress bar.
 *
 * @see progress.js
 */
/* line 1704, ../sass/components/_misc.scss */
.progress {
  font-weight: bold;
}
/* line 1707, ../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 1713, ../sass/components/_misc.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1383239036');
}

/**
 * @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: 12px;
  }
  /* 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;
  }
}
/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
