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

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

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

/* Address styling not present in IE 8/9. */
/* line 58, ../sass/_normalize.scss */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _init.scss partial.
 */
/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
/* line 106, ../sass/_normalize.scss */
html {
  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  /* 1 */
  font-size: 93.75%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.86667em;
}

/* Remove default margin. */
/* line 126, ../sass/_normalize.scss */
body {
  margin: 0;
  padding: 0;
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
/* Address `outline` inconsistency between Chrome and other browsers. */
/* line 148, ../sass/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
/* line 154, ../sass/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
/* line 170, ../sass/_normalize.scss */
p,
pre {
  margin: 1.86667em 0;
}

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

/* line 190, ../sass/_normalize.scss */
h2 {
  font-size: 1.75em;
  line-height: 2.13333em;
  margin-top: 1.06667em;
  margin-bottom: 1.06667em;
}

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

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

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

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

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

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

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

/* Address differences between Firefox and other browsers. */
/* line 233, ../sass/_normalize.scss */
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.86667em 0;
}

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

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 253, ../sass/_normalize.scss */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
  font-size: 1em;
  line-height: 1.86667em;
}

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

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

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

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

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

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

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

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

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

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

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 341, ../sass/_normalize.scss */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */
  /* Responsive images */
  max-width: 100%;
  height: auto;
  /* Correct IE 8 not scaling image height when resized. */
}

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

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

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

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
/* line 398, ../sass/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
/* line 416, ../sass/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 433, ../sass/_normalize.scss */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 444, ../sass/_normalize.scss */
button,
select {
  text-transform: none;
}

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

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

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
/* line 483, ../sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 497, ../sass/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 507, ../sass/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Remove inner padding and border in Firefox 4+. */
/* line 513, ../sass/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 522, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

/**
 * Tables
 */
/* line 536, ../sass/_normalize.scss */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
  margin-top: 1.86667em;
  margin-bottom: 1.86667em;
}

/* 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. */
/* line 46, ../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 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:before, #header:after,
#main:before,
#main:after,
#footer:before,
#footer:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:after,
#main:after,
#footer:after {
  clear: both;
}

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

  /* line 66, ../sass/layouts/_responsive.scss */
  #navigation {
    /* Move the navbar up inside #main's padding. */
    position: absolute;
    top: 0;
    height: 3em;
    width: 100%;
  }
}
/* line 78, ../sass/layouts/_responsive.scss */
.region-sidebar-first {
  display: none;
}

/**
 * Use 3 grid columns for smaller screens.
 */
@media all and (min-width: 650px) and (max-width: 959px) {
  /* line 88, ../sass/layouts/_responsive.scss */
  .region-sidebar-first {
    display: block;
  }

  /**
   * 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: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
    padding-left: 2em;
  }
  /* line 103, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    display: block;
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }

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

  /**
   * The layout when there are two sidebars.
   */
  /* line 127, ../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 129, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
    padding-left: 1em;
  }
  /* line 135, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }
  /* line 140, ../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 146, ../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 150, ../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 155, ../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 159, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }
}
/**
 * Use 5 grid columns for larger screens.
 */
@media all and (min-width: 960px) {
  /* line 172, ../sass/layouts/_responsive.scss */
  .region-sidebar-first {
    display: block;
  }

  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 179, ../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 182, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 80%;
    margin-left: 20%;
    margin-right: -100%;
    padding-left: 2em;
  }
  /* line 188, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    display: block;
    float: left;
    width: 20%;
    margin-left: 0%;
    margin-right: -20%;
  }

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

  /**
   * The layout when there are two sidebars.
   */
  /* line 214, ../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 216, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 60%;
    margin-left: 20%;
    margin-right: -80%;
    padding-left: 4em;
  }
  /* line 222, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 20%;
    margin-left: 0%;
    margin-right: -20%;
  }
  /* line 227, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 20%;
    margin-left: 80%;
    margin-right: -100%;
    padding-left: 2em;
  }
}
/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
/* line 22, ../sass/components/_misc.scss */
.with-wireframes #header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
/* line 40, ../sass/components/_misc.scss */
.element-invisible,
.element-focusable,
#navigation .block-menu .block__title,
#navigation .block-menu-block .block__title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the element-invisible effect. */
/* line 45, ../sass/components/_misc.scss */
.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 */
/* line 62, ../sass/components/_misc.scss */
#skip-link {
  margin: 0;
}
/* line 66, ../sass/components/_misc.scss */
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/**
 * Branding header.
 */
/* Wrapping link for logo. */
/* line 81, ../sass/components/_misc.scss */
.header__logo {
  float: left;
  /* LTR */
  margin: 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.5em;
  line-height: 1.49333em;
}

/* The link around the name of the website. */
/* line 106, ../sass/components/_misc.scss */
.header__site-link:link, .header__site-link:visited {
  color: #000;
  text-decoration: none;
}
/* line 112, ../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 151, ../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 190, ../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.86667em 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 245, ../sass/components/_misc.scss */
.ok,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

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

/* line 255, ../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;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, transparent));
  background-image: -webkit-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: -moz-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: -o-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbbbbb \0/ie;
  margin: 1.86667em 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.86667em;
  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 white;
  border: 1px solid #bbbbbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

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

/* 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;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

/* line 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;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
  background-image: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -o-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  border-color: #fff;
}

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

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

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

/* line 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 #333333;
  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 457, ../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.86667em;
}

/**
 * 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 512, ../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.86667em 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.86667em 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 587, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 594, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 601, ../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 {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

/* Password confirmation. */
/* line 636, ../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 660, ../sass/components/_misc.scss */
.openid-link,
.user-link {
  margin-top: 1.86667em;
}

/* line 664, ../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.86667em 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 689, ../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 715, ../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;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
/* line 803, ../sass/components/_misc.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1476387767');
}

/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved front-end performance.
 */
@media print {
  /* Underline all links. */
  /* line 16, ../sass/_print.scss */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  /* line 20, ../sass/_print.scss */
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }

  /* line 25, ../sass/_print.scss */
  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  /* line 27, ../sass/_print.scss */
  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 15px;
  }
  /* line 35, ../sass/_print.scss */
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  /* line 40, ../sass/_print.scss */
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  /* line 46, ../sass/_print.scss */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

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

  /* Hide sidebars and nav elements. */
  /* line 77, ../sass/_print.scss */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
/* line 9, ../sass/_dof.scss */
html {
  box-sizing: border-box;
}

/* line 12, ../sass/_dof.scss */
*, *:before, *:after {
  box-sizing: inherit;
}

/* line 16, ../sass/_dof.scss */
body {
  color: #444444;
  background: #666666;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

/* line 22, ../sass/_dof.scss */
img {
  max-width: 100%;
  height: auto;
}

/* line 27, ../sass/_dof.scss */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

/* line 33, ../sass/_dof.scss */
.more-link {
  padding-top: .5em;
}

/* Basic HTML Styles */
/* line 39, ../sass/_dof.scss */
p {
  margin-top: 0;
  margin-bottom: 1em;
}

/* line 43, ../sass/_dof.scss */
hr {
  border-right: none;
  border-left: none;
  border-top: none;
  border-bottom: 1px solid #e6e6e6;
}

/* line 51, ../sass/_dof.scss */
table {
  width: 100%;
}

/* line 55, ../sass/_dof.scss */
th {
  text-align: left;
  background: #d9d9d9;
  padding: 1%;
  color: #666666;
  font-weight: normal;
}

/* line 66, ../sass/_dof.scss */
tr.odd,
tr:nth-child(odd) {
  background: #f3f3f3;
}

/* line 73, ../sass/_dof.scss */
td {
  padding: .5em;
  vertical-align: top;
}

/* line 78, ../sass/_dof.scss */
td.active {
  background: transparent;
}

/* line 82, ../sass/_dof.scss */
blockquote {
  font-style: italic;
  border-left: 3px solid #f3f3f3;
  padding-left: 1em;
}

/* line 88, ../sass/_dof.scss */
#page {
  background: white;
  max-width: 100%;
  width: 100%;
  margin: 0 auto 1.5em auto;
  padding-bottom: 5em;
}

/* line 96, ../sass/_dof.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-weight: normal;
  color: black;
}

/* line 102, ../sass/_dof.scss */
h1#page-title {
  margin-bottom: .5em;
}

/* line 110, ../sass/_dof.scss */
.header__site-link:hover, .header__site-link:focus,
.header__site-link:visited:hover,
.header__site-link:visited:focus {
  color: black;
}

/* line 118, ../sass/_dof.scss */
a:link {
  color: #c25110;
  text-decoration: none;
}
/* line 122, ../sass/_dof.scss */
a:link:hover, a:link:focus {
  color: #933d0c;
}

/* line 127, ../sass/_dof.scss */
a:visited {
  color: #c25110;
}
/* line 130, ../sass/_dof.scss */
a:visited:hover, a:visited:focus {
  color: #933d0c;
}

/* line 135, ../sass/_dof.scss */
.fa {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

/* line 140, ../sass/_dof.scss */
#navigation {
  position: relative;
}

/* line 146, ../sass/_dof.scss */
fieldset {
  border: none;
  padding: 0;
}

/* line 153, ../sass/_dof.scss */
input {
  border: 1px solid #cccccc;
  padding: .25em .5em;
}

/* line 158, ../sass/_dof.scss */
input[type="text"] {
  width: 100%;
}

/* line 162, ../sass/_dof.scss */
select {
  background: white;
  border: 1px solid #cccccc;
  padding: .15em;
}

/* line 168, ../sass/_dof.scss */
input[type="submit"] {
  /*background: $orange;
  color: $white;
  padding: .5em 2em;
  border: none;
  font-family: $roboto;
  font-size: .95em;
  letter-spacing: .5px;
  text-transform: uppercase; */
  background: #c25110;
  color: white;
  padding: 1em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  transition: color .4s ease,background-color .4s ease;
  -webkit-transition: color .4s ease,background-color .4s ease;
  -moz-transition: color .4s ease,background-color .4s ease;
  -o-transition: color .4s ease,background-color .4s ease;
  padding: .5em 2em;
  border: none;
}
/* line 181, ../sass/_dof.scss */
input[type="submit"]:hover, input[type="submit"]:focus {
  background: #18677e;
}

/* line 188, ../sass/_dof.scss */
a.btn {
  background: #c25110;
  color: white;
  padding: 1em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  transition: color .4s ease,background-color .4s ease;
  -webkit-transition: color .4s ease,background-color .4s ease;
  -moz-transition: color .4s ease,background-color .4s ease;
  -o-transition: color .4s ease,background-color .4s ease;
  display: inline-block;
}
/* line 192, ../sass/_dof.scss */
a.btn:hover, a.btn:focus {
  background: #18677e;
  color: white;
}

/* line 198, ../sass/_dof.scss */
label {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
}

/* line 203, ../sass/_dof.scss */
.views-exposed-form label {
  text-transform: uppercase;
  font-weight: normal;
  font-size: .90em;
  color: black;
}

/* line 210, ../sass/_dof.scss */
.views-exposed-form {
  padding: 0 0 1em 0;
  border-bottom: 1px solid #d9d9d9;
}

/* line 217, ../sass/_dof.scss */
.form-item-submitted-name-given,
.form-item-submitted-name-family {
  margin: 0;
}

/* line 221, ../sass/_dof.scss */
.form-item-submitted-name {
  margin-bottom: 0;
}

/* line 229, ../sass/_dof.scss */
ul.menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
/* line 234, ../sass/_dof.scss */
ul.menu li {
  list-style-type: none;
}

/* line 240, ../sass/_dof.scss */
.menu__item.is-leaf,
.menu__item.is-expanded {
  list-style-image: none;
  list-style-type: none;
}

/* line 245, ../sass/_dof.scss */
.menu__item.is-collapsed {
  list-style-image: none;
  list-style-type: none;
}

/* line 250, ../sass/_dof.scss */
dd {
  margin: 0;
  border-bottom: 1px solid #e6e6e6;
}

/* line 255, ../sass/_dof.scss */
dt {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  padding-top: .5em;
}

/* line 260, ../sass/_dof.scss */
.views-row {
  padding: 0 0 1em 0;
  overflow: hidden;
}

/* line 265, ../sass/_dof.scss */
.block {
  margin-bottom: 0;
}

/* line 269, ../sass/_dof.scss */
.callout-box {
  background: #f3f3f3;
  padding: 1em 2em;
}

/* line 274, ../sass/_dof.scss */
.field-name-body img {
  margin: 10px;
}

/* line 281, ../sass/_dof.scss */
#toolbar {
  background: black;
  padding: .5em 0;
}
/* line 285, ../sass/_dof.scss */
#toolbar .wrapper {
  position: relative;
}

/* line 290, ../sass/_dof.scss */
.toolbar-nav {
  /*  a:after {
      content: '';
      display: block;
      margin: auto;
      height: 3px;
      width: 0px;
      background: transparent;
      transition: width .5s ease, background-color .5s ease;
    }
    
    a:after:hover {
      width: 100%;
      color: $white;
    }
    */
}
/* line 291, ../sass/_dof.scss */
.toolbar-nav ul li {
  float: left;
  margin-right: 1em;
}
/* line 297, ../sass/_dof.scss */
.toolbar-nav a {
  color: white;
  font-size: 0.93333em;
  line-height: 2em;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  display: block;
  position: relative;
}
/* line 305, ../sass/_dof.scss */
.toolbar-nav a:hover, .toolbar-nav a:focus {
  text-decoration: underline;
  color: white;
}
/* line 326, ../sass/_dof.scss */
.toolbar-nav a.active {
  color: white;
  text-decoration: underline;
}

/* line 334, ../sass/_dof.scss */
a.pu-logo {
  display: block;
  width: 254px;
  height: 18px;
  text-indent: -9999em;
  vertical-align: middle;
  background: url(../images/pu_logo.png) no-repeat 0 0;
  background-size: 254px 18px;
  margin-top: 3px;
}

/* line 346, ../sass/_dof.scss */
div.pu-logo {
  float: left;
  width: 30%;
}

/* line 351, ../sass/_dof.scss */
.toolbar-nav {
  float: right;
  padding-right: 175px;
}

/*.quicklinks {
  position: absolute;
  right: 10px;
  top: -.5em;
}

#quicklinks {
  background: $orange;
  font-family: $roboto;
  font-weight: bold;
  padding: .75em 1.75em;
  text-transform: uppercase;
  color: $white;
  font-weight: normal;
  display:block;
  z-index:100;
} */
/* line 375, ../sass/_dof.scss */
.quicklinks {
  position: absolute;
  right: 0;
  margin-top: 1.75em;
}

/* line 384, ../sass/_dof.scss */
#quicklinks {
  background: #c25110;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-weight: bold;
  padding: .5em;
  text-transform: uppercase;
  color: white;
  font-weight: normal;
  display: block;
  z-index: 100;
}

@media (max-width: 440px) and (min-width: 400px) {
  /* line 397, ../sass/_dof.scss */
  .quicklinks {
    top: -.5em;
    right: 10px;
    margin-top: 0;
  }
}
@media all and (min-width: 441px) {
  /* line 405, ../sass/_dof.scss */
  .quicklinks {
    top: -.5em;
    right: 10px;
    margin-top: 0;
  }

  /* line 411, ../sass/_dof.scss */
  #quicklinks {
    padding: .75em 1.75em;
  }
}
/* line 417, ../sass/_dof.scss */
#quicklinks .contextual-links-region {
  position: inherit;
}

/* line 421, ../sass/_dof.scss */
.quicklinks ul.menu {
  display: none;
  background: #c25110;
  position: absolute;
  right: 0;
  width: 175%;
  z-index: 1000;
  font-size: 0.93333em;
  line-height: 2em;
  line-height: 1.5em;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  text-transform: none;
  margin-top: 3px;
  padding-top: 10px;
}

/* line 436, ../sass/_dof.scss */
.quicklinks ul li {
  border-bottom: 1px solid #cd6022;
}

/* line 440, ../sass/_dof.scss */
.quicklinks ul li a {
  color: white;
  display: block;
  padding: .5em;
  font-size: 1em;
}
/* line 446, ../sass/_dof.scss */
.quicklinks ul li a:hover, .quicklinks ul li a:focus {
  background: #933d0c;
  color: white;
}

/* line 452, ../sass/_dof.scss */
.quicklinks div.contextual-links-wrapper {
  display: none !important;
}

/* line 457, ../sass/_dof.scss */
#toolbar::after,
#toolbar.wrapper::after {
  clear: both;
  content: "";
  display: block;
}

/* line 466, ../sass/_dof.scss */
#header {
  background: #f3f3f3;
  padding: 2.25em 0;
}

/* line 471, ../sass/_dof.scss */
.header__site-name {
  line-height: 1;
  font-size: 2.80em;
  letter-spacing: .5px;
}

/* line 479, ../sass/_dof.scss */
.site-slogan {
  display: block;
  font-size: .31em;
  text-transform: uppercase;
}

/* line 485, ../sass/_dof.scss */
.site-name {
  font-weight: 500;
}

/* line 490, ../sass/_dof.scss */
.header__site-link:hover, .header__site-link:focus {
  text-decoration: none;
  color: black;
}

/* line 500, ../sass/_dof.scss */
#block-search-form {
  width: 250px;
  position: relative;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

/* line 506, ../sass/_dof.scss */
#block-search-form input[type="text"] {
  width: 250px;
  padding: .5em;
}

/* line 511, ../sass/_dof.scss */
#block-search-form input[type="submit"] {
  background: url(../images/icon_search.png) no-repeat 0 0;
  text-indent: -9999em;
  position: absolute;
  top: 6px;
  right: 6px;
  border: none;
  width: 24px;
  height: 23px;
  padding: 0;
  background-size: 24px 23px;
}

@media (min-width: 700px) and (max-width: 959px) {
  /* line 525, ../sass/_dof.scss */
  .header__region {
    clear: none;
    float: right;
  }
}
@media (min-width: 960px) {
  /* line 532, ../sass/_dof.scss */
  .header__region {
    float: right;
    clear: none;
  }
}
/* line 542, ../sass/_dof.scss */
#navbar {
  background: #666666;
}
/* line 545, ../sass/_dof.scss */
#navbar ul li {
  float: left;
}
/* line 548, ../sass/_dof.scss */
#navbar ul li:hover, #navbar ul li:focus {
  background: #c25110;
}
/* line 555, ../sass/_dof.scss */
#navbar ul li ul {
  background: #c25110;
  margin-top: 1.6em;
}
/* line 560, ../sass/_dof.scss */
#navbar ul li ul li {
  border-bottom: 1px solid #cd6022;
}
/* line 565, ../sass/_dof.scss */
#navbar a {
  color: white;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  display: block;
  padding: .75em;
  font-size: 1em;
  letter-spacing: .4px;
}
/* line 574, ../sass/_dof.scss */
#navbar a:hover, #navbar a:focus {
  background: #c25110;
}
/* line 581, ../sass/_dof.scss */
#navbar ul li ul li a {
  padding: .75em .5em;
  font-size: .95em;
}
/* line 585, ../sass/_dof.scss */
#navbar ul li ul li a:hover, #navbar ul li ul li a:focus {
  background: #aa470e;
}
/* line 593, ../sass/_dof.scss */
#navbar li.active-trail a {
  background: #c25110;
  color: white;
}

/* line 602, ../sass/_dof.scss */
ul.nice-menu-right, ul.nice-menu-left, ul.nice-menu-right li, ul.nice-menu-left li {
  width: auto;
}

/* line 606, ../sass/_dof.scss */
ul.nice-menu, ul.nice-menu ul {
  border-top: none;
}

/* line 611, ../sass/_dof.scss */
ul.nice-menu-right li.menuparent, ul.nice-menu-right li li.menuparent,
ul.nice-menu-down li.menuparent {
  background: transparent;
}

/* line 615, ../sass/_dof.scss */
ul.nice-menu li {
  border: none;
  background: #666666;
}

/* line 621, ../sass/_dof.scss */
ul.nice-menu ul,
ul.nice-menu ul li {
  background: #c25110;
}

/* line 626, ../sass/_dof.scss */
ul.nice-menu ul li {
  min-width: 220px;
}

@media (min-width: 900px) {
  /* line 632, ../sass/_dof.scss */
  #navbar a {
    padding: 1em;
  }
}
@media (min-width: 1090px) {
  /* line 639, ../sass/_dof.scss */
  #navbar a {
    padding: 1em 1.5em;
    font-size: 1.1em;
  }
}
/* line 647, ../sass/_dof.scss */
#navbar.wrapper::after {
  clear: both;
  content: "";
  float: left;
}

/* line 656, ../sass/_dof.scss */
.mean-container .mean-bar {
  background: #666666;
  z-index: 10;
}

/* line 660, ../sass/_dof.scss */
.mean-container .mean-nav {
  margin-top: 20px;
}

/* line 663, ../sass/_dof.scss */
#navbar .mean-nav ul li {
  background: #666666;
  padding-right: 0;
}

/* line 668, ../sass/_dof.scss */
#navbar .mean-nav ul li ul {
  padding-left: 0;
}

/* line 674, ../sass/_dof.scss */
#navbar .mean-nav ul li a {
  color: white;
  text-transform: none;
}
/* line 678, ../sass/_dof.scss */
#navbar .mean-nav ul li a:hover, #navbar .mean-nav ul li a:focus {
  border-bottom: none;
  transition: none;
}

/* line 685, ../sass/_dof.scss */
.mean-container .mean-nav ul li a {
  width: 100%;
  padding-left: .5em;
}

/* line 689, ../sass/_dof.scss */
#navbar .mean-nav ul li a.mean-expand {
  height: 25px;
}

/* line 693, ../sass/_dof.scss */
#navbar .mean-nav ul li ul li a {
  padding-left: 1.75em;
}

/* line 697, ../sass/_dof.scss */
#navbar .mean-nav .sf-hidden {
  display: none;
}

/* line 701, ../sass/_dof.scss */
.mean-container a.meanmenu-reveal {
  padding: 0 0 0 25px;
  width: auto;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  display: block;
  top: 19px;
  left: 8px !important;
  text-align: left !important;
  text-indent: 0;
  line-height: 1;
  background: url(../images/icon_navicon.png) no-repeat 0 0;
  font-size: 18px !important;
  margin-left: 10px;
  font-weight: normal;
  background-size: 20px 15px;
}

/* line 718, ../sass/_dof.scss */
#navbar .mean-bar a.meanmenu-reveal {
  padding: 0 0 0 28px;
}
/* line 721, ../sass/_dof.scss */
#navbar .mean-bar a.meanmenu-reveal:hover, #navbar .mean-bar a.meanmenu-reveal:focus {
  background: transparent url(../images/icon_navicon.png) no-repeat 0 0;
  background-size: 20px 15px;
}

/* line 728, ../sass/_dof.scss */
#navbar .mean-bar ul li ul li {
  border: none;
}

/* line 732, ../sass/_dof.scss */
.mean-bar #search-reveal {
  background: url(../images/icon_search_white.png) no-repeat 0 0;
  background-size: 19px 19px;
  min-height: 20px;
  font-size: 18px;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  color: white;
  text-decoration: none;
  padding: 0 0 0 25px;
  position: relative;
  left: 110px;
  top: 10px;
  line-height: 1.2;
  display: inline;
}
/* line 747, ../sass/_dof.scss */
.mean-bar #search-reveal:hover, .mean-bar #search-reveal:focus {
  background: transparent url(../images/icon_search_white.png) no-repeat 0 0;
  background-size: 19px 19px;
}

/* line 753, ../sass/_dof.scss */
.mean-bar #block-search-form input[type="submit"] {
  right: 16px;
}

/* line 757, ../sass/_dof.scss */
#navbar .mean-nav a {
  padding: .65em 0 .65em .75em;
}

/* line 761, ../sass/_dof.scss */
.mean-container .mean-nav ul li li a {
  opacity: 1;
  width: 95%;
  padding-left: 1em;
}

/* line 767, ../sass/_dof.scss */
.mean-bar #block-search-form {
  margin: 0;
  padding: 0 0 10px 0;
  background: #666666;
  position: relative;
  top: 20px;
  width: 100%;
}
/* line 774, ../sass/_dof.scss */
.mean-bar #block-search-form .form-item {
  margin: 0;
}

/* line 778, ../sass/_dof.scss */
.mean-bar #search-block-form {
  background: #666666;
  padding: 0;
  margin: 0;
  margin-left: 18px;
  width: 230px;
  position: relative;
}
/* line 787, ../sass/_dof.scss */
.mean-bar #search-block-form input[type=text] {
  width: 100%;
  max-width: 200px;
}

/* line 796, ../sass/_dof.scss */
#main {
  background: white;
  padding-top: 1em;
  clear: both;
  margin-top: 2em;
}

/* line 803, ../sass/_dof.scss */
h1.page__title {
  margin-bottom: 1em;
}

/* line 807, ../sass/_dof.scss */
#content {
  padding: 0;
}

/* line 813, ../sass/_dof.scss */
.breadcrumb {
  padding: .5em 0 0 0;
  font-size: 0.86667em;
  line-height: 2.15385em;
  margin-top: .5em;
}

/* line 820, ../sass/_dof.scss */
.breadcrumb a {
  color: #666666;
  line-height: 1;
}
/* line 824, ../sass/_dof.scss */
.breadcrumb a:hover, .breadcrumb a:focus {
  text-decoration: underline;
}

/* line 829, ../sass/_dof.scss */
.breadcrumb li {
  color: #666666;
  line-height: 1;
}

/* line 836, ../sass/_dof.scss */
#title .wrapper {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 1em;
}
/* line 841, ../sass/_dof.scss */
#title .wrapper h1 {
  margin: 0 0 .5em 0;
}

/* line 847, ../sass/_dof.scss */
.region-sidebar-first {
  padding-left: 0;
}

/* line 851, ../sass/_dof.scss */
#block-menu-block-2 {
  background: #f8f8f8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
/* line 859, ../sass/_dof.scss */
#block-menu-block-2 ul li {
  border-bottom: 1px solid #e6e6e6;
}
/* line 863, ../sass/_dof.scss */
#block-menu-block-2 ul li.last {
  border-bottom: none;
}
/* line 867, ../sass/_dof.scss */
#block-menu-block-2 ul li a {
  color: #666666;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  display: block;
  padding: .75em .5em;
  font-size: 1em;
  transition: color .2s ease,background-color .2s ease;
  -webkit-transition: color .2s ease,background-color .2s ease;
  -moz-transition: color .2s ease,background-color .2s ease;
  -o-transition: color .2s ease,background-color .2s ease;
}
/* line 878, ../sass/_dof.scss */
#block-menu-block-2 ul li a:hover, #block-menu-block-2 ul li a:focus {
  background: #c25110;
  color: white;
}
/* line 886, ../sass/_dof.scss */
#block-menu-block-2 ul li.active a,
#block-menu-block-2 ul li.active-trail a {
  background: #c25110;
  color: white;
}
/* line 894, ../sass/_dof.scss */
#block-menu-block-2 ul li.active li a,
#block-menu-block-2 ul li.active-trail li a {
  background: white;
  color: #666666;
  padding: .45em .35em .45em 1em;
  font-size: .95em;
  line-height: 1.5em;
}
/* line 901, ../sass/_dof.scss */
#block-menu-block-2 ul li.active li a:focus, #block-menu-block-2 ul li.active li a:hover,
#block-menu-block-2 ul li.active-trail li a:focus,
#block-menu-block-2 ul li.active-trail li a:hover {
  color: #c25110;
  background: #f3f3f3;
}
/* line 908, ../sass/_dof.scss */
#block-menu-block-2 ul li.active li,
#block-menu-block-2 ul li.active-trail li {
  border-bottom: none;
}
/* line 914, ../sass/_dof.scss */
#block-menu-block-2 ul li.active li a.active,
#block-menu-block-2 ul li.active-trail li a.active {
  font-weight: 500;
  color: #c25110;
}
/* line 919, ../sass/_dof.scss */
#block-menu-block-2 ul li ul {
  padding-left: 0;
  margin-left: 0;
  background: white;
}

/* line 930, ../sass/_dof.scss */
#footer {
  background: #666666;
  color: white;
  padding: 0;
  margin-top: 2em;
  font-size: 0.93333em;
  line-height: 2em;
  line-height: 1.6em;
}
/* line 939, ../sass/_dof.scss */
#footer a {
  color: white;
  text-decoration: underline;
}
/* line 943, ../sass/_dof.scss */
#footer a:hover, #footer a:focus {
  text-decoration: none;
}

/* line 949, ../sass/_dof.scss */
#copyright {
  font-size: 0.93333em;
  line-height: 2em;
  padding: 1.5em 0;
}

@media (min-width: 700px) and (max-width: 959px) {
  /* line 957, ../sass/_dof.scss */
  #block-boxes-footer-contact {
    float: left;
    width: 50%;
    padding-right: 5%;
  }

  /* line 963, ../sass/_dof.scss */
  #block-menu-block-3 {
    float: left;
    width: 50%;
  }
}
@media (min-width: 960px) {
  /* line 971, ../sass/_dof.scss */
  #block-boxes-footer-contact {
    float: left;
    width: 70%;
    padding-right: 5%;
  }

  /* line 977, ../sass/_dof.scss */
  #block-menu-block-3 {
    float: right;
    width: 30%;
  }
}
/* line 986, ../sass/_dof.scss */
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  border: none;
  background: none;
}

/* line 991, ../sass/_dof.scss */
.ui-widget-content {
  border: none;
  color: #444444;
}

/* line 996, ../sass/_dof.scss */
.ui-state-default .ui-icon {
  background-image: url(../images/icon_plusminus.png);
  background-size: 20px 40px;
  width: 20px;
  height: 20px;
}

/* line 1003, ../sass/_dof.scss */
.ui-icon-triangle-1-e {
  background-position: 0 0;
}

/* line 1007, ../sass/_dof.scss */
.ui-state-active .ui-icon {
  background-image: url(../images/icon_plusminus.png);
  background-size: 20px 40px;
}

/* line 1012, ../sass/_dof.scss */
.ui-icon-triangle-1-s {
  background-position: 0 -20px;
}

/* line 1016, ../sass/_dof.scss */
.ui-accordion .ui-accordion-header {
  border-top: 1px solid #e6e6e6;
  padding: 0;
  margin-top: 0;
}
/* line 1022, ../sass/_dof.scss */
.ui-accordion .ui-accordion-header a {
  padding: .75em .5em .75em 2.25em;
  display: block;
}
/* line 1026, ../sass/_dof.scss */
.ui-accordion .ui-accordion-header a:hover, .ui-accordion .ui-accordion-header a:focus {
  background: #f3f3f3;
}

/* line 1033, ../sass/_dof.scss */
.view-faqs h3 p {
  margin: 0;
}

/* line 1037, ../sass/_dof.scss */
.ui-accordion .ui-accordion-header:first-of-type {
  border-top: none;
}

/* line 1041, ../sass/_dof.scss */
.ui-accordion .ui-accordion-content {
  padding-left: 3em !important;
  font-size: 14px !important;
  padding-top: 0 !important;
}
/* line 1046, ../sass/_dof.scss */
.ui-accordion .ui-accordion-content .views-row {
  padding-bottom: .25em;
}
/* line 1050, ../sass/_dof.scss */
.ui-accordion .ui-accordion-content a {
  display: block;
}
/* line 1054, ../sass/_dof.scss */
.ui-accordion .ui-accordion-content .views-field-body a {
  display: inline;
}

/* line 1062, ../sass/_dof.scss */
.page-about .pane-node h2.pane-title {
  margin-top: 0;
  line-height: 1;
}
/* line 1069, ../sass/_dof.scss */
.page-about .pane-node,
.page-about .pane-boxes-meet-team-box {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 1em;
}
/* line 1077, ../sass/_dof.scss */
.page-about .pane-boxes-meet-team-box h2.pane-title,
.page-about .pane-calendar-panel-pane-2 h2.pane-title,
.page-about .pane-boxes-opportunities-within-dof h2.pane-title {
  margin-bottom: .5em;
  line-height: 1em;
}
/* line 1083, ../sass/_dof.scss */
.page-about .pane-boxes-meet-team-box a {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
}
/* line 1087, ../sass/_dof.scss */
.page-about .pane-boxes-meet-team-box a::before {
  margin-right: 3px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 1em;
}
/* line 1093, ../sass/_dof.scss */
.page-about .pane-calendar-panel-pane-2 .fa-calendar::before {
  font-size: 4em;
  color: #18677e;
  float: left;
  padding-right: 10px;
  font-family: FontAwesome;
}
/* line 1101, ../sass/_dof.scss */
.page-about .pane-calendar-panel-pane-2 .fa-calendar {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
/* line 1105, ../sass/_dof.scss */
.page-about .pane-calendar-panel-pane-2 .views-field-field-start-date {
  color: black;
}
/* line 1109, ../sass/_dof.scss */
.page-about .pane-calendar-panel-pane-2 .view-calendar {
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
  position: relative;
  padding-bottom: 2em;
}
/* line 1116, ../sass/_dof.scss */
.page-about .pane-calendar-panel-pane-2 .views-field-body {
  font-size: .90em;
  line-height: 1.5em;
  padding-bottom: 0;
}
/* line 1122, ../sass/_dof.scss */
.page-about .pane-calendar-panel-pane-2 .views-field-body p {
  padding-bottom: 0;
}
/* line 1126, ../sass/_dof.scss */
.page-about .pane-calendar-panel-pane-2 .views-row {
  padding-bottom: 0;
}
/* line 1130, ../sass/_dof.scss */
.page-about .pane-calendar-panel-pane-2 .views-field {
  padding-bottom: .35em;
}
/* line 1134, ../sass/_dof.scss */
.page-about .pane-calendar-panel-pane-2 .views-field-title {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
}
/* line 1139, ../sass/_dof.scss */
.page-about .pane-node {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
}
/* line 1143, ../sass/_dof.scss */
.page-about .pane-boxes-opportunities-within-dof {
  display: none;
}

@media (min-width: 960px) {
  /* line 1151, ../sass/_dof.scss */
  .pane-calendar-panel-pane-2 .view-calendar .more-link {
    position: absolute;
    bottom: 2em;
    right: 0;
  }

  /* line 1159, ../sass/_dof.scss */
  .page-about .pane-node .field-name-field-featured-image {
    float: left;
    margin-right: 1em;
  }
}
@media (min-width: 700px) and (max-width: 959px) {
  /* line 1171, ../sass/_dof.scss */
  .node-type-basic-page .field-name-field-featured-image img {
    float: left;
    margin: 0 15px 15px 0;
  }
}
@media (min-width: 960px) {
  /* line 1178, ../sass/_dof.scss */
  .node-type-basic-page .field-name-field-featured-image img {
    float: left;
    margin: 0 15px 15px 0;
  }
}
/* line 1187, ../sass/_dof.scss */
.page-about-directory .view-directory-grid h3 {
  display: none;
}

/* line 1195, ../sass/_dof.scss */
.view-directory-grid .item-list {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
/* line 1201, ../sass/_dof.scss */
.view-directory-grid .item-list ul {
  margin: 0;
}
/* line 1206, ../sass/_dof.scss */
.view-directory-grid h2.specialty {
  margin: 0;
  line-height: 1;
}
/* line 1212, ../sass/_dof.scss */
.view-directory-grid ul {
  display: table-cell;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
}
/* line 1220, ../sass/_dof.scss */
.view-directory-grid .views-field-title h3 {
  margin: .25em 0 0 0;
  line-height: 1;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  display: block;
}
/* line 1227, ../sass/_dof.scss */
.view-directory-grid .views-field-field-title {
  margin-bottom: .5em;
  font-size: 1em;
  line-height: 1.5em;
}
/* line 1236, ../sass/_dof.scss */
.view-directory-grid .views-field-field-office-location,
.view-directory-grid .views-field-field-phone,
.view-directory-grid .views-field-field-email {
  font-size: .9em;
  line-height: 1.5;
}
/* line 1239, ../sass/_dof.scss */
.view-directory-grid .views-field-field-office-location .field-content,
.view-directory-grid .views-field-field-phone .field-content,
.view-directory-grid .views-field-field-email .field-content {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
/* line 1247, ../sass/_dof.scss */
.view-directory-grid .fa-map-marker:before,
.view-directory-grid .fa-phone:before,
.view-directory-grid .fa-envelope:before {
  padding-right: 5px;
  color: gray;
  width: 20px;
  display: inline-block;
  text-align: center;
  font-family: FontAwesome;
}

@media (min-width: 700px) and (max-width: 959px) {
  /* line 1259, ../sass/_dof.scss */
  .view-directory-grid ul li {
    width: 50%;
    padding: 1em 2em 1.5em 0;
  }
}
@media (min-width: 960px) {
  /* line 1266, ../sass/_dof.scss */
  .view-directory-grid ul li {
    width: 33%;
    padding: 1em 2em 1.5em 0;
  }
}
/* Profile Page */
/* line 1275, ../sass/_dof.scss */
.node-type-person .field-name-field-title {
  margin-bottom: .5em;
}
/* line 1281, ../sass/_dof.scss */
.node-type-person .group-left,
.node-type-person .group-middle,
.node-type-person .group-footer {
  width: 100%;
}
/* line 1285, ../sass/_dof.scss */
.node-type-person .group-footer {
  padding-top: 1em;
}
/* line 1294, ../sass/_dof.scss */
.node-type-person .field-name-field-office-location,
.node-type-person .field-name-field-phone,
.node-type-person .field-name-field-email,
.node-type-person .field-name-field-fax,
.node-type-person .field-name-field-website,
.node-type-person .field-name-field-cv-resume {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  line-height: 1.6em;
}
/* line 1304, ../sass/_dof.scss */
.node-type-person .field-name-field-office-location .fa,
.node-type-person .field-name-field-phone .fa,
.node-type-person .field-name-field-email .fa,
.node-type-person .field-name-field-fax .fa,
.node-type-person .field-name-field-website .fa,
.node-type-person .field-name-field-cv-resume .fa {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
/* line 1313, ../sass/_dof.scss */
.node-type-person .field-name-field-office-location .fa:before,
.node-type-person .field-name-field-phone .fa:before,
.node-type-person .field-name-field-email .fa:before,
.node-type-person .field-name-field-fax .fa:before,
.node-type-person .field-name-field-website .fa:before,
.node-type-person .field-name-field-cv-resume .fa:before {
  font-family: FontAwesome;
  padding-right: 9px;
  width: 22px;
  display: inline-block;
  color: gray;
}
/* line 1321, ../sass/_dof.scss */
.node-type-person .file-icon {
  display: none;
}
/* line 1326, ../sass/_dof.scss */
.node-type-person .field-name-title h2 {
  line-height: 1;
  margin: 0 0 .25em 0;
}
/* line 1331, ../sass/_dof.scss */
.node-type-person .field-name-field-title {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
}

@media (min-width: 960px) {
  /* line 1343, ../sass/_dof.scss */
  .node-type-person .group-left {
    width: 45%;
    padding-right: 1em;
  }
  /* line 1347, ../sass/_dof.scss */
  .node-type-person .group-middle {
    width: 55%;
  }
}
/* line 1356, ../sass/_dof.scss */
#views-exposed-form-directory-page-1 input[type="text"] {
  max-width: 320px;
  margin-bottom: 1em;
}

/* line 1361, ../sass/_dof.scss */
.view-directory .views-exposed-form {
  padding-bottom: 0;
}

/* line 1365, ../sass/_dof.scss */
.view-responsibility h3 {
  margin-bottom: 0;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  margin-top: .5em;
}
/* line 1371, ../sass/_dof.scss */
.view-responsibility ul {
  display: block;
  margin-top: 0;
  padding-left: 0;
  margin-bottom: .5em;
}
/* line 1378, ../sass/_dof.scss */
.view-responsibility .views-field-nothing {
  display: inline-block;
}
/* line 1382, ../sass/_dof.scss */
.view-responsibility .item-list {
  padding: .15em .5em .15em 0;
  border-bottom: 1px solid #e6e6e6;
}

@media (min-width: 960px) {
  /* line 1397, ../sass/_dof.scss */
  .view-responsibility ul li {
    width: 100%;
    padding: 0;
  }
}
/* line 1410, ../sass/_dof.scss */
#block-menu-menu-faculty-honors-tabs ul li a {
  background: #666666;
  color: white;
  padding: .5em 1em;
  display: block;
  text-align: center;
}
/* line 1420, ../sass/_dof.scss */
#block-menu-menu-faculty-honors-tabs ul li a:hover, #block-menu-menu-faculty-honors-tabs ul li a:focus {
  background: #c25110;
  color: white;
}
/* line 1425, ../sass/_dof.scss */
#block-menu-menu-faculty-honors-tabs ul li {
  margin-right: 1em;
}
/* line 1430, ../sass/_dof.scss */
#block-menu-menu-faculty-honors-tabs ul li a {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.2em;
}

@media (min-width: 496px) and (max-width: 699px) {
  /* line 1437, ../sass/_dof.scss */
  #block-menu-menu-faculty-honors-tabs ul li a {
    float: left;
    width: 100%;
  }
}
@media (min-width: 700px) and (max-width: 959px) {
  /* line 1444, ../sass/_dof.scss */
  #block-menu-menu-faculty-honors-tabs ul li a {
    float: left;
    width: 33%;
  }
}
@media (min-width: 960px) {
  /* line 1451, ../sass/_dof.scss */
  #block-menu-menu-faculty-honors-tabs ul li a {
    float: left;
    width: 33%;
  }
}
/* line 1458, ../sass/_dof.scss */
.page-about-faculty-professorships #block-menu-menu-faculty-honors-tabs ul li:first-child a {
  background: white;
  color: #c25110;
  border: 1px solid #cccccc;
  border-bottom: none;
  margin-top: -5px;
}

/* line 1466, ../sass/_dof.scss */
.page-about-faculty-preceptorships #block-menu-menu-faculty-honors-tabs ul li:nth-child(2) a {
  background: white;
  color: #c25110;
  border: 1px solid #cccccc;
  border-bottom: none;
  margin-top: -5px;
}

/* line 1474, ../sass/_dof.scss */
.page-about-faculty-fellowships #block-menu-menu-faculty-honors-tabs ul li:nth-child(3) a {
  background: white;
  color: #c25110;
  border: 1px solid #cccccc;
  border-bottom: none;
  margin-top: -5px;
}

/* line 1482, ../sass/_dof.scss */
.view-honors- {
  clear: both;
  padding: 1em;
}
/* line 1487, ../sass/_dof.scss */
.view-honors- table {
  margin-bottom: 0;
  margin-top: .5em;
}
/* line 1492, ../sass/_dof.scss */
.view-honors- .ui-accordion .ui-accordion-header a {
  padding: .5em .5em .5em 2.25em;
}
/* line 1498, ../sass/_dof.scss */
.view-honors- .views-row {
  border-bottom: 1px solid #e6e6e6;
  padding: 0;
  border-bottom: 1px solid #e6e6e6;
}
/* line 1504, ../sass/_dof.scss */
.view-honors- .views-field-title {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  color: black;
}
/* line 1516, ../sass/_dof.scss */
.view-honors- td:first-child {
  width: 20%;
}
/* line 1519, ../sass/_dof.scss */
.view-honors- td:nth-child(2) {
  width: 30%;
}
/* line 1522, ../sass/_dof.scss */
.view-honors- td:last-child {
  width: 50%;
}

/* line 1533, ../sass/_dof.scss */
#block-menu-menu-clerk-of-the-faculty-links ul li a {
  background: #666666;
  color: white;
  padding: .5em 1em;
  display: block;
  text-align: center;
}
/* line 1543, ../sass/_dof.scss */
#block-menu-menu-clerk-of-the-faculty-links ul li a:hover, #block-menu-menu-clerk-of-the-faculty-links ul li a:focus {
  background: #c25110;
  color: white;
}
/* line 1548, ../sass/_dof.scss */
#block-menu-menu-clerk-of-the-faculty-links ul li {
  margin-right: 1em;
}
/* line 1553, ../sass/_dof.scss */
#block-menu-menu-clerk-of-the-faculty-links ul li a {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.2em;
}
/* line 1558, ../sass/_dof.scss */
#block-menu-menu-clerk-of-the-faculty-links li.is-active-trail a {
  background: white;
  color: #c25110;
  border: 1px solid #cccccc;
  border-bottom: none;
  margin-top: -5px;
}
/* line 1565, ../sass/_dof.scss */
#block-menu-menu-clerk-of-the-faculty-links li.is-active-trail a:hover, #block-menu-menu-clerk-of-the-faculty-links li.is-active-trail a:focus {
  background: white;
  color: #c25110;
}

@media (min-width: 496px) and (max-width: 699px) {
  /* line 1574, ../sass/_dof.scss */
  #block-menu-menu-clerk-of-the-faculty-links ul li a {
    float: left;
    width: 100%;
  }
}
@media (min-width: 700px) and (max-width: 959px) {
  /* line 1581, ../sass/_dof.scss */
  #block-menu-menu-clerk-of-the-faculty-links ul li a {
    float: left;
    width: 33%;
  }
}
@media (min-width: 960px) {
  /* line 1588, ../sass/_dof.scss */
  #block-menu-menu-clerk-of-the-faculty-links ul li a {
    float: left;
    width: 33%;
  }
}
/* line 1595, ../sass/_dof.scss */
.view-clerk-of-faculty,
.page-about-clerk-faculty-emeritus .view-directory {
  clear: both;
  padding-top: 1em;
}

/* line 1601, ../sass/_dof.scss */
.view-clerk-of-faculty {
  padding: 1em;
}
/* line 1603, ../sass/_dof.scss */
.view-clerk-of-faculty .date {
  border: 1px solid #d9d9d9;
  float: left;
  font-size: .85em;
  margin-right: 1em;
}
/* line 1609, ../sass/_dof.scss */
.view-clerk-of-faculty .month {
  background: #18677e;
  color: white;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  padding: 0;
  text-align: center;
  width: 55px;
  font-size: 1.2em;
}
/* line 1619, ../sass/_dof.scss */
.view-clerk-of-faculty .day {
  background: white;
  color: black;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  padding: 0;
  text-align: center;
  font-size: 1.5em;
}
/* line 1628, ../sass/_dof.scss */
.view-clerk-of-faculty .views-row {
  padding: 1em 0;
  border-bottom: 1px solid #e6e6e6;
}
/* line 1633, ../sass/_dof.scss */
.view-clerk-of-faculty .title {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  line-height: 1;
}
/* line 1638, ../sass/_dof.scss */
.view-clerk-of-faculty .info {
  font-size: .90em;
}
/* line 1641, ../sass/_dof.scss */
.view-clerk-of-faculty .info p {
  margin-bottom: 0;
}

@media (min-width: 700px) and (max-width: 959px) {
  /* line 1648, ../sass/_dof.scss */
  .view-clerk-of-faculty .event-info {
    float: left;
    width: 80%;
  }
}
@media (min-width: 960px) {
  /* line 1655, ../sass/_dof.scss */
  .view-clerk-of-faculty .event-info {
    float: left;
    width: 80%;
  }
}
/* line 1668, ../sass/_dof.scss */
.page-about-faculty-emeritus .attachment a {
  padding-right: .25em;
}
/* line 1673, ../sass/_dof.scss */
.page-about-faculty-emeritus td:first-child {
  width: 30%;
}
/* line 1676, ../sass/_dof.scss */
.page-about-faculty-emeritus td:nth-child(2) {
  width: 10%;
}
/* line 1679, ../sass/_dof.scss */
.page-about-faculty-emeritus td:last-child {
  width: 30%;
}

/* line 1686, ../sass/_dof.scss */
.page-about-clerk-faculty-emeritus th.views-field-title,
.page-about-clerk-faculty-emeritus td.views-field-title {
  width: 30%;
}
/* line 1691, ../sass/_dof.scss */
.page-about-clerk-faculty-emeritus th.views-field-field-emeritus-status-date,
.page-about-clerk-faculty-emeritus td.views-field-field-emeritus-status-date {
  width: 10%;
}

/* line 1703, ../sass/_dof.scss */
.ui-accordion h3:nth-child(even) {
  background: white;
}

/* line 1708, ../sass/_dof.scss */
.ui-accordion .ui-accordion-content {
  padding: 1em;
  font-size: 0.93333em;
  line-height: 2em;
}
/* line 1716, ../sass/_dof.scss */
.ui-accordion .ui-accordion-content li {
  margin-bottom: .25em;
}

@media (min-width: 960px) {
  /* line 1725, ../sass/_dof.scss */
  .views-field-field-department-faculty-info ul {
    padding-left: 0;
    width: 100%;
    margin: 0;
  }
  /* line 1731, ../sass/_dof.scss */
  .views-field-field-department-faculty-info li {
    margin-bottom: .15em;
    width: 100%;
    list-style-type: none;
    border-bottom: 1px solid #e6e6e6;
  }
  /* line 1740, ../sass/_dof.scss */
  .views-field-field-department-faculty-info li.last {
    border-bottom: none;
  }
  /* line 1747, ../sass/_dof.scss */
  .views-field-field-department-faculty-info .field-name-field-role-title,
  .views-field-field-department-faculty-info .field-name-field-dept-staff-name,
  .views-field-field-department-faculty-info .field-name-field-office,
  .views-field-field-department-faculty-info .field-name-field-dept-staff-phone,
  .views-field-field-department-faculty-info .field-name-field-dept-staff-email {
    padding: .5%;
    float: left;
  }
  /* line 1752, ../sass/_dof.scss */
  .views-field-field-department-faculty-info .field-name-field-role-title {
    width: 20%;
  }
  /* line 1756, ../sass/_dof.scss */
  .views-field-field-department-faculty-info .field-name-field-dept-staff-name {
    width: 20%;
  }
  /* line 1760, ../sass/_dof.scss */
  .views-field-field-department-faculty-info .field-name-field-office {
    width: 20%;
  }
  /* line 1764, ../sass/_dof.scss */
  .views-field-field-department-faculty-info .field-name-field-dept-staff-phone {
    width: 15%;
  }
  /* line 1768, ../sass/_dof.scss */
  .views-field-field-department-faculty-info .field-name-field-dept-staff-email {
    width: 25%;
  }
}
/* line 1776, ../sass/_dof.scss */
.ui-widget {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

/* line 1783, ../sass/_dof.scss */
.book-navigation .menu {
  border-top: none;
  list-style-type: disc;
}

/* line 1789, ../sass/_dof.scss */
.book-navigation .menu li {
  list-style-type: disc;
}

/* line 1793, ../sass/_dof.scss */
.book-navigation .page-links {
  border-top: none;
  border-bottom: none;
  padding: 1em 0;
  margin-top: 2em;
}

/* line 1803, ../sass/_dof.scss */
.top-book-nav {
  margin-bottom: 2em;
}
/* line 1806, ../sass/_dof.scss */
.top-book-nav ul.menu {
  display: none;
}
/* line 1810, ../sass/_dof.scss */
.top-book-nav .page-links {
  border-bottom: 1px solid #e6e6e6;
  margin-top: 0;
}

/* line 1817, ../sass/_dof.scss */
.bottom-book-nav .page-links {
  border-top: 1px solid #e6e6e6;
}

/* line 1824, ../sass/_dof.scss */
.book-navigation .page-previous,
.book-navigation .page-next,
.book-navigation .page-up {
  float: none;
  width: 100%;
  text-align: left;
  margin: 0;
  font-family: Roboto, Helvetica, Arial, sans-serif;
}

/* line 1832, ../sass/_dof.scss */
.book-navigation .page-up {
  text-transform: uppercase;
  color: #888;
}

@media (min-width: 700px) and (max-width: 959px) {
  /* line 1839, ../sass/_dof.scss */
  .book-navigation .page-previous {
    text-align: left;
    width: 42%;
    display: block;
    float: left;
  }

  /* line 1846, ../sass/_dof.scss */
  .book-navigation .page-up {
    float: left;
    width: 16%;
    text-align: center;
  }

  /* line 1851, ../sass/_dof.scss */
  .book-navigation .page-next {
    text-align: left;
    display: block;
    float: left;
    text-align: right;
  }

  /* line 1858, ../sass/_dof.scss */
  .book-navigation .page-up + .page-next {
    width: 42%;
  }
}
@media (min-width: 960px) {
  /* line 1864, ../sass/_dof.scss */
  .book-navigation .page-previous {
    text-align: left;
    width: 42%;
    display: block;
    float: left;
  }

  /* line 1871, ../sass/_dof.scss */
  .book-navigation .page-up {
    float: left;
    width: 16%;
    text-align: center;
  }

  /* line 1876, ../sass/_dof.scss */
  .book-navigation .page-next {
    text-align: left;
    display: block;
    float: left;
    text-align: right;
  }

  /* line 1883, ../sass/_dof.scss */
  .book-navigation .page-up + .page-next {
    width: 42%;
  }
}
/* line 1893, ../sass/_dof.scss */
.search-results,
.search-results .search-snippet-info {
  padding-left: 0;
}

/* line 1897, ../sass/_dof.scss */
.search-results li {
  margin: 0;
  padding: .5em 0 .25em 0;
  border-bottom: 1px solid #e6e6e6;
}

/* line 1903, ../sass/_dof.scss */
.page-search input#edit-keys {
  max-width: 200px;
}

/* line 1907, ../sass/_dof.scss */
.page-search .form-item-keys label {
  display: block;
}

/* line 1915, ../sass/_dof.scss */
.lexicon-description {
  display: none;
}

/* line 1919, ../sass/_dof.scss */
.lexicon-links a {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  font-size: 1.3em;
}

/* line 1924, ../sass/_dof.scss */
.lexicon-links {
  background: #f3f3f3;
  padding: 1em 2em;
  color: #f3f3f3;
}

/* line 1930, ../sass/_dof.scss */
.lexicon-alphabar-instructions {
  display: none;
}

/* line 1939, ../sass/_dof.scss */
.page-memos-datestoremember .view-calendar .view-content {
  display: table-cell;
  display: flex;
  flex-wrap: wrap;
}

/* line 1945, ../sass/_dof.scss */
.page-memos-datestoremember .pane-calendar-panel-pane-1 h2.pane-title {
  margin: 0;
}

/* line 1948, ../sass/_dof.scss */
.page-memos-datestoremember .pane-calendar-panel-pane-1 .view-calendar .view-content .views-row {
  margin: 2% 2% 0 0;
  padding: 1em;
  width: 100%;
  background: #18677e;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
/* line 1957, ../sass/_dof.scss */
.page-memos-datestoremember .pane-calendar-panel-pane-1 .view-calendar .view-content .views-row .views-field-title {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
}
/* line 1960, ../sass/_dof.scss */
.page-memos-datestoremember .pane-calendar-panel-pane-1 .view-calendar .view-content .views-row .views-field-title a {
  color: white;
  font-size: .9em;
  line-height: 1.3em;
}
/* line 1965, ../sass/_dof.scss */
.page-memos-datestoremember .pane-calendar-panel-pane-1 .view-calendar .view-content .views-row .views-field-title a:hover, .page-memos-datestoremember .pane-calendar-panel-pane-1 .view-calendar .view-content .views-row .views-field-title a:focus {
  text-decoration: underline;
}
/* line 1971, ../sass/_dof.scss */
.page-memos-datestoremember .pane-calendar-panel-pane-1 .view-calendar .view-content .views-row .views-field-field-start-date {
  color: white;
}

/* line 1976, ../sass/_dof.scss */
.pane-memos-panel-pane-3 h2.pane-title {
  margin: .25em 0;
}

/* line 1982, ../sass/_dof.scss */
.page-memos-datestoremember .views-field-field-start-date {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.86667em;
  line-height: 2.15385em;
}

/* line 1989, ../sass/_dof.scss */
.page-memos-datestoremember .view-calendar .view-content .views-row a {
  display: block;
}

/* line 1993, ../sass/_dof.scss */
.page-memos-datestoremember .view-calendar .view-content .views-row .views-field-body a {
  display: inline;
}

@media (min-width: 700px) and (max-width: 959px) {
  /* line 1999, ../sass/_dof.scss */
  .page-memos-datestoremember .pane-calendar-panel-pane-1 .view-calendar .view-content .views-row {
    width: 31%;
    margin-top: 0;
  }

  /* line 2004, ../sass/_dof.scss */
  .page-memos-datestoremember .pane-calendar-panel-pane-1 .view-calendar .view-content .views-row-last {
    margin-right: 0;
  }
}
@media (min-width: 960px) {
  /* line 2010, ../sass/_dof.scss */
  .page-memos-datestoremember .pane-calendar-panel-pane-1 .view-calendar .view-content .views-row {
    margin-top: 0;
    width: 32%;
  }

  /* line 2015, ../sass/_dof.scss */
  .page-memos-datestoremember .pane-calendar-panel-pane-1 .view-calendar .view-content .views-row-last {
    margin-right: 0;
  }
}
/* line 2022, ../sass/_dof.scss */
.page-memos-datestoremember-dates .view-display-id-page_2 .view-content .views-row {
  width: 100%;
}

/* line 2031, ../sass/_dof.scss */
.node-type-memo .field-name-body {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid #e6e6e6;
}

@media (min-width: 700px) and (max-width: 959px) {
  /* line 2040, ../sass/_dof.scss */
  .node-type-memo .field-label {
    width: 20%;
  }
  /* line 2043, ../sass/_dof.scss */
  .node-type-memo .field-label-inline .field-items {
    width: 80%;
  }
}
@media (min-width: 960px) {
  /* line 2051, ../sass/_dof.scss */
  .node-type-memo .field-label {
    width: 14%;
  }
  /* line 2054, ../sass/_dof.scss */
  .node-type-memo .field-label-inline .field-items {
    width: 86%;
  }
}
/* line 2061, ../sass/_dof.scss */
.login a {
  background: #c25110;
  color: white;
  padding: 1em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  transition: color .4s ease,background-color .4s ease;
  -webkit-transition: color .4s ease,background-color .4s ease;
  -moz-transition: color .4s ease,background-color .4s ease;
  -o-transition: color .4s ease,background-color .4s ease;
  padding: .5em;
  display: inline-block;
}
/* line 2066, ../sass/_dof.scss */
.login a:hover, .login a:focus {
  background: #18677e;
  color: white;
}
/* line 2071, ../sass/_dof.scss */
.login a .ext {
  display: none;
}

/* line 2081, ../sass/_dof.scss */
#block-menu-menu-dates-to-remember-tabs ul {
  margin-bottom: 1.5em;
}
/* line 2084, ../sass/_dof.scss */
#block-menu-menu-dates-to-remember-tabs ul:after {
  clear: both;
  content: "";
  display: block;
}
/* line 2090, ../sass/_dof.scss */
#block-menu-menu-dates-to-remember-tabs a {
  display: block;
  padding: .75em 1em;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  border-bottom: none;
  text-align: center;
  color: white;
  background: #666666;
}
/* line 2099, ../sass/_dof.scss */
#block-menu-menu-dates-to-remember-tabs a:hover, #block-menu-menu-dates-to-remember-tabs a:focus {
  background: #c25110;
}
/* line 2104, ../sass/_dof.scss */
#block-menu-menu-dates-to-remember-tabs a:before {
  font-family: FontAwesome;
  padding-right: 4px;
}

/* line 2112, ../sass/_dof.scss */
.page-memos-datestoremember-dates-calendar #block-menu-menu-dates-to-remember-tabs ul li.first a {
  background: white;
  border: 1px solid #d9d9d9;
  border-bottom: none;
  margin-top: -5px;
  color: #c25110;
}

/*.page-memos-datestoremember-dates #block-menu-menu-dates-to-remember-tabs li.last a {
   background: $white;
  border: 1px solid darken($highlight, 10%);
  border-bottom: none;
  margin-top: -5px;
  color: $orange;
}*/
@media (min-width: 700px) and (max-width: 959px) {
  /* line 2130, ../sass/_dof.scss */
  #block-menu-menu-dates-to-remember-tabs ul li a {
    float: left;
    width: 50%;
  }
}
@media (min-width: 960px) {
  /* line 2139, ../sass/_dof.scss */
  #block-menu-menu-dates-to-remember-tabs ul li a {
    float: left;
    width: 50%;
  }
}
/* line 2147, ../sass/_dof.scss */
.view-calendar ul.pager {
  list-style: none;
}

/* line 2151, ../sass/_dof.scss */
.view-id-timeline {
  position: relative;
  padding: 0 0 1em 0;
  margin-top: 0;
  margin-bottom: 2em;
  overflow: hidden;
}
/* line 2158, ../sass/_dof.scss */
.view-id-timeline .views-row {
  position: relative;
  padding-bottom: 1em;
}
/* line 2164, ../sass/_dof.scss */
.view-id-timeline h3 {
  background: white;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding: .5em;
  text-align: center;
  color: #18677e;
  clear: both;
  position: relative;
  font-size: 3em;
  margin: 0 0 1em 0;
}
/* line 2178, ../sass/_dof.scss */
.view-id-timeline .views-field-field-memo-date {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  background: #c25110;
  color: white;
  padding: .5em;
  background: #cccccc;
}
/* line 2189, ../sass/_dof.scss */
.view-id-timeline .views-field-title {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  position: relative;
  overflow: visible;
  left: 20px;
}
/* line 2200, ../sass/_dof.scss */
.view-id-timeline .views-row-odd::before,
.view-id-timeline .views-row-even::before {
  content: '';
  display: block;
  background: #18677e;
  width: 30px;
  height: 30px;
  margin-top: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
/* line 2211, ../sass/_dof.scss */
.view-id-timeline .views-row .views-field-title::before {
  border-top: 24px solid rgba(194, 81, 16, 0);
  border-bottom: 24px solid rgba(194, 81, 16, 0);
  border-right: 24px solid #c25110;
  left: -24px;
  content: "";
  display: block;
  right: auto;
  margin-left: 0;
  top: 0;
  position: absolute;
}
/* line 2225, ../sass/_dof.scss */
.view-id-timeline .date {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  padding: .5em;
  background: #c25110;
}
/* line 2230, ../sass/_dof.scss */
.view-id-timeline .date span.date-display-single {
  color: white;
}
/* line 2235, ../sass/_dof.scss */
.view-id-timeline .title {
  padding: 1em;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  transition: color .4s ease,background-color .4s ease;
  -webkit-transition: color .4s ease,background-color .4s ease;
  -moz-transition: color .4s ease,background-color .4s ease;
  -o-transition: color .4s ease,background-color .4s ease;
}
/* line 2245, ../sass/_dof.scss */
.view-id-timeline .title:hover, .view-id-timeline .title:focus {
  background: #f3f3f3;
}

/* line 2252, ../sass/_dof.scss */
.view-id-timeline .views-row-even .views-field-title {
  float: left;
  width: 80%;
}

/* line 2256, ../sass/_dof.scss */
.view-id-timeline .views-row-odd .views-field-title {
  float: left;
  width: 80%;
}

/* line 2260, ../sass/_dof.scss */
.view-id-timeline .views-row-odd {
  width: 100%;
  float: left;
}

/* line 2264, ../sass/_dof.scss */
.view-id-timeline .views-row-even {
  width: 100%;
  float: left;
}

/* line 2268, ../sass/_dof.scss */
.view-id-timeline .views-row-odd::before {
  float: left;
}

/* line 2271, ../sass/_dof.scss */
.view-id-timeline .views-row-even::before {
  float: left;
}

/* line 2275, ../sass/_dof.scss */
.view-id-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  border-left: 3px dashed #cccccc;
  margin-left: 10px;
}

@media (min-width: 960px) {
  /* line 2289, ../sass/_dof.scss */
  .view-id-timeline::before {
    left: 50%;
    margin-left: 0;
  }

  /* line 2294, ../sass/_dof.scss */
  .view-id-timeline .views-row-even .views-field-title {
    float: right;
    width: 90%;
  }

  /* line 2298, ../sass/_dof.scss */
  .view-id-timeline .views-row-odd .views-field-title {
    float: left;
    width: 90%;
  }

  /* line 2302, ../sass/_dof.scss */
  .view-id-timeline .views-row-odd {
    width: 51.5%;
    float: left;
  }

  /* line 2306, ../sass/_dof.scss */
  .view-id-timeline .views-row-even {
    width: 51%;
    float: right;
  }

  /* line 2310, ../sass/_dof.scss */
  .view-id-timeline .views-row-odd::before {
    float: right;
  }

  /* line 2313, ../sass/_dof.scss */
  .view-id-timeline .views-row-even::before {
    float: left;
  }

  /* line 2317, ../sass/_dof.scss */
  .view-id-timeline .views-row .views-field-title::before {
    border: none;
  }

  /* line 2321, ../sass/_dof.scss */
  .view-id-timeline .views-field-title {
    left: 0;
  }

  /* line 2325, ../sass/_dof.scss */
  .view-id-timeline .views-row-even .views-field-title::before {
    border-top: 24px solid rgba(194, 81, 16, 0);
    border-bottom: 24px solid rgba(194, 81, 16, 0);
    border-right: 24px solid #c25110;
    left: -24px;
    content: "";
    display: block;
    right: auto;
    margin-left: 0;
    top: 0;
    position: absolute;
  }

  /* line 2340, ../sass/_dof.scss */
  .view-id-timeline .views-row-odd .views-field-title::before {
    border-top: 24px solid rgba(194, 81, 16, 0);
    border-bottom: 24px solid rgba(194, 81, 16, 0);
    border-left: 24px solid #c25110;
    right: -24px;
    content: "";
    display: block;
    left: auto;
    top: 0;
    margin-left: 0;
    position: absolute;
  }
}
/* line 2357, ../sass/_dof.scss */
.calendar-calendar tr {
  background: white;
}
/* line 2361, ../sass/_dof.scss */
.calendar-calendar th.days {
  background: #e6e6e6;
  color: white;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  font-size: 1em;
  font-weight: normal;
  padding: .25em .5em;
  border: none;
  color: #666666;
  border: 1px solid #ccc;
}
/* line 2372, ../sass/_dof.scss */
.calendar-calendar .views-field-field-start-date {
  font-weight: normal;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-transform: none;
  font-size: 12px;
  line-height: 1.2em;
  color: #666666;
}

/* line 2383, ../sass/_dof.scss */
.calendar-calendar .month-view .full td.single-day div.monthview, .calendar-calendar .week-view .full td.single-day div.weekview, .calendar-calendar .day-view .full td.single-day div.dayview {
  background: #f3f3f3;
  padding: .5em;
  margin-bottom: .25em;
}

/* line 2389, ../sass/_dof.scss */
.calendar-calendar div.calendar {
  font-size: .8em;
  line-height: 1.5em;
}

/* line 2394, ../sass/_dof.scss */
.calendar-calendar .month-view .full td.single-day .calendar-empty, .calendar-calendar .month-view .full td.single-day.empty, .calendar-calendar .month-view .full td.date-box.empty {
  background: white;
}

/* line 2398, ../sass/_dof.scss */
.calendar-calendar td span.date-display-single, .calendar-calendar td span.date-display-start, .calendar-calendar td span.date-display-end, .calendar-calendar td span.date-display-separator {
  font-weight: normal;
}

/* line 2402, ../sass/_dof.scss */
.calendar-calendar div.day {
  padding: 1%;
}

/* line 2407, ../sass/_dof.scss */
.calendar-calendar .month-view .full td.multi-day div.monthview, .calendar-calendar .week-view .full td.multi-day div.weekview, .calendar-calendar .day-view .full td.multi-day div.dayview,
.calendar-calendar .month-view .full td.multi-day .inner .monthview .continues, .calendar-calendar .month-view .full td.multi-day .inner .monthview .cutoff, .calendar-calendar .week-view .full td.multi-day .inner .weekview .continues, .calendar-calendar .week-view .full td.multi-day .inner .weekview .cutoff {
  background: #f3f3f3;
  color: #666666;
  margin-bottom: .25em;
}

/* line 2413, ../sass/_dof.scss */
.calendar-calendar .page-memos-datestoremember-dates .views-field-title {
  font-weight: normal;
}

/* line 2417, ../sass/_dof.scss */
.calendar-calendar .month-view .full td.single-day .inner div, .calendar-calendar .month-view .full td.single-day .inner div a, .calendar-calendar .month-view .full td.multi-day .inner div, .calendar-calendar .month-view .full td.multi-day .inner div a, .calendar-calendar .month-view .full td .inner div.calendar.monthview div, .calendar-calendar .month-view .full td .inner div.calendar.monthview div a, .calendar-calendar .week-view .full td.single-day .inner div, .calendar-calendar .week-view .full td.single-day .inner div a, .calendar-calendar .week-view .full td.multi-day .inner div, .calendar-calendar .week-view .full td.multi-day .inner div a, .calendar-calendar .week-view .full td .inner div.calendar.weekview div, .calendar-calendar .week-view .full td .inner div.calendar.weekview div a, .calendar-calendar .day-view .full td .inner div.view-item, .calendar-calendar .day-view .full td .inner div.calendar div, .calendar-calendar .day-view .full td .inner div.calendar div a {
  font-weight: normal;
}

/* line 2421, ../sass/_dof.scss */
.calendar-calendar .views-field-title {
  font-size: 1em;
}

/* line 2425, ../sass/_dof.scss */
.calendar-calendar .item {
  margin-bottom: .25em;
}

/* line 2429, ../sass/_dof.scss */
.calendar-calendar td .inner div.calendar div, .calendar-calendar td .inner div.calendar div a {
  font-family: Roboto, Helvetica, Arial, sans-serif;
}

/* line 2433, ../sass/_dof.scss */
.view .date-nav-wrapper .date-prev {
  right: auto;
}

/* line 2438, ../sass/_dof.scss */
.view .date-nav-wrapper .date-next,
.view .date-nav-wrapper .date-prev {
  background: transparent;
  font-family: Roboto, Helvetica, Arial, sans-serif;
}

/* line 2443, ../sass/_dof.scss */
.view .date-nav-wrapper .date-prev a, .view .date-nav-wrapper .date-next a {
  font-size: 0;
  display: block;
  width: 24px;
  height: 24px;
  text-indent: -9999em;
  text-align: initial;
  margin: 0;
  overflow: hidden;
}

/* line 2454, ../sass/_dof.scss */
.view .date-nav-wrapper .date-nav {
  min-height: auto;
  margin: 0;
  padding: 0;
}

/* line 2460, ../sass/_dof.scss */
.view .date-nav-wrapper .date-prev a {
  background: url(../images/icon_prev.png) no-repeat 0 0;
  background-size: 24px 24px;
}

/* line 2465, ../sass/_dof.scss */
.view .date-nav-wrapper .date-next a {
  background: url(../images/icon_next.png) no-repeat 0 0;
  background-size: 24px 24px;
}

/* line 2474, ../sass/_dof.scss */
.page-memos-datestoremember-dates .views-field-title {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
}
/* line 2478, ../sass/_dof.scss */
.page-memos-datestoremember-dates .views-row {
  padding: .75em 0;
  border-bottom: 1px solid #e6e6e6;
}
/* line 2483, ../sass/_dof.scss */
.page-memos-datestoremember-dates .views-row-first {
  padding-top: 0;
}

/* line 2497, ../sass/_dof.scss */
.page-node-9277 .field-name-field-featured-image {
  display: none;
}

/* line 2503, ../sass/_dof.scss */
.page-memos-datestoremember-annoucements .view-memos .views-field-field-memo-date {
  margin-bottom: 1em;
  line-height: 1;
}

/* line 2509, ../sass/_dof.scss */
.view-memos .views-field-field-memo-date {
  margin-bottom: 0;
}
/* line 2513, ../sass/_dof.scss */
.view-memos .views-field-title {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
}
/* line 2517, ../sass/_dof.scss */
.view-memos .views-row {
  padding: .5em 0;
  border-bottom: 1px solid #e6e6e6;
}
/* line 2522, ../sass/_dof.scss */
.view-memos .views-row-first {
  padding-top: 0;
}
/* line 2526, ../sass/_dof.scss */
.view-memos .views-field-field-sender {
  margin-bottom: 1em;
  font-family: Roboto;
  font-weight: 500;
}
/* line 2531, ../sass/_dof.scss */
.view-memos .views-field-field-sender .label {
  display: inline;
}

@media (min-width: 700px) and (max-width: 959px) {
  /* line 2539, ../sass/_dof.scss */
  .view-memos .views-field-field-sender .label {
    display: inline-block;
    width: 10%;
  }
}
@media (min-width: 960px) {
  /* line 2546, ../sass/_dof.scss */
  .view-memos .views-field-field-sender .label {
    display: inline-block;
    width: 7%;
  }
}
/* line 2552, ../sass/_dof.scss */
#block-views-memos-block-1 {
  border: 1px solid #cccccc;
}
/* line 2555, ../sass/_dof.scss */
#block-views-memos-block-1 .block-title {
  text-transform: uppercase;
  font-size: .85em;
  background: #f3f3f3;
  padding: .5em;
}
/* line 2562, ../sass/_dof.scss */
#block-views-memos-block-1 ul {
  font-size: .90em;
  margin: .5em 0;
}
/* line 2567, ../sass/_dof.scss */
#block-views-memos-block-1 ul li a {
  display: block;
}

/* line 2577, ../sass/_dof.scss */
.page-working-princeton .panel-3col-stacked .panel-col-first,
.page-working-princeton .panel-3col-stacked .panel-col,
.page-working-princeton .panel-3col-stacked .panel-col-last {
  width: 100%;
}
/* line 2581, ../sass/_dof.scss */
.page-working-princeton .panel-3col-stacked h2 {
  margin-bottom: .15em;
  line-height: 1;
}
/* line 2587, ../sass/_dof.scss */
.page-working-princeton .panel-3col-stacked .panel-col-first h2.pane-title {
  margin-top: 0;
}
/* line 2591, ../sass/_dof.scss */
.page-working-princeton .top-book-nav {
  display: none;
}
/* line 2595, ../sass/_dof.scss */
.page-working-princeton .pane-benefits-audiences-panel-pane-1 h2.pane-title {
  display: none;
}
/* line 2600, ../sass/_dof.scss */
.page-working-princeton .panel-3col-stacked .view-benefits-audiences .views-row a {
  display: inline-block;
  background: #c25110;
  color: white;
  padding: 1em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  transition: color .4s ease,background-color .4s ease;
  -webkit-transition: color .4s ease,background-color .4s ease;
  -moz-transition: color .4s ease,background-color .4s ease;
  -o-transition: color .4s ease,background-color .4s ease;
  background: #18677e;
  padding: .25em .5em;
  margin: .15em;
}
/* line 2608, ../sass/_dof.scss */
.page-working-princeton .panel-3col-stacked .view-benefits-audiences .views-row a:hover, .page-working-princeton .panel-3col-stacked .view-benefits-audiences .views-row a:focus {
  background: #c25110;
  color: white;
}
/* line 2615, ../sass/_dof.scss */
.page-working-princeton .panel-3col-stacked .view-benefits-audiences .views-row,
.page-working-princeton .panel-3col-stacked .view-benefits-audiences .views-row div {
  display: inline;
}
/* line 2627, ../sass/_dof.scss */
.page-working-princeton .panel-3col-stacked .panel-col-first,
.page-working-princeton .panel-3col-stacked .panel-col,
.page-working-princeton .panel-3col-stacked .panel-col-last {
  border-bottom: 1px solid #e6e6e6;
}

/* line 2666, ../sass/_dof.scss */
.page-working-princeton-benefits .view-benefits-audiences .view-content {
  display: flex;
  flex-wrap: wrap;
}
/* line 2671, ../sass/_dof.scss */
.page-working-princeton-benefits .view-benefits-audiences .view-content .views-row {
  display: block;
  width: 100%;
  display: block;
  border-bottom: 1px solid #e6e6e6;
  padding: .5em;
  margin: 0 0 1em 0;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border-bottom: 0;
}
/* line 2684, ../sass/_dof.scss */
.page-working-princeton-benefits .view-benefits-audiences .view-content img {
  display: block;
}
/* line 2688, ../sass/_dof.scss */
.page-working-princeton-benefits .view-benefits-audiences .view-content a {
  display: block;
  font-size: 1.2em;
  padding: 0;
  margin: 0;
  position: relative;
}
/* line 2697, ../sass/_dof.scss */
.page-working-princeton-benefits .view-benefits-audiences .view-content a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(24, 103, 126, 0.8);
  transition: all .3s linear;
}
/* line 2710, ../sass/_dof.scss */
.page-working-princeton-benefits .view-benefits-audiences .view-content a:hover::before {
  background: rgba(194, 81, 16, 0.8);
}
/* line 2715, ../sass/_dof.scss */
.page-working-princeton-benefits .view-benefits-audiences .view-content .views-field-description {
  font-size: .9em;
  line-height: 1.5em;
}
/* line 2720, ../sass/_dof.scss */
.page-working-princeton-benefits .view-benefits-audiences .view-content .name {
  position: absolute;
  top: 18%;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  padding: .5em;
  color: white;
}
/* line 2729, ../sass/_dof.scss */
.page-working-princeton-benefits .view-benefits-audiences .view-content .description {
  font-size: .62em;
  line-height: 1.35;
}

@media (min-width: 496px) and (max-width: 699px) {
  /* line 2738, ../sass/_dof.scss */
  .page-working-princeton-benefits .view-benefits-audiences .view-content .views-row {
    width: 100%;
  }
}
@media (min-width: 700px) and (max-width: 959px) {
  /* line 2745, ../sass/_dof.scss */
  .page-working-princeton-benefits .view-benefits-audiences .view-content .views-row {
    width: 100%;
  }
}
@media (min-width: 960px) {
  /* line 2752, ../sass/_dof.scss */
  .page-working-princeton-benefits .view-benefits-audiences .view-content .views-row {
    width: 33.333%;
  }
}
/* line 2764, ../sass/_dof.scss */
.section-working-princeton .panel-2col .panel-2col .panel-col-first,
.section-working-princeton .panel-2col .panel-2col .panel-col-last {
  width: 100%;
}
/* line 2768, ../sass/_dof.scss */
.section-working-princeton .panel-2col .ui-accordion h3.ui-accordion-header:first-of-type {
  border-top: none;
}
/* line 2772, ../sass/_dof.scss */
.section-working-princeton .panel-2col .panel-col-first .views-row {
  padding-bottom: 0;
}
/* line 2779, ../sass/_dof.scss */
.section-working-princeton .panel-2col .view-filters {
  margin-bottom: 1em;
}
/* line 2783, ../sass/_dof.scss */
.section-working-princeton .panel-2col .panel-col-first .views-row a {
  display: block;
  padding: .25em;
  font-family: Roboto, Helvetica, Arial, sans-serif;
}
/* line 2789, ../sass/_dof.scss */
.section-working-princeton .panel-2col .panel-col-first .views-row a:hover, .section-working-princeton .panel-2col .panel-col-first .views-row a:focus {
  background: #f3f3f3;
}
/* line 2794, ../sass/_dof.scss */
.section-working-princeton .panel-2col .panel-col-last {
  font-size: 0.93333em;
  line-height: 2em;
  line-height: 1.5;
}
/* line 2799, ../sass/_dof.scss */
.section-working-princeton .panel-2col .panel-col-last .inside {
  border: 1px solid #cccccc;
}
/* line 2807, ../sass/_dof.scss */
.section-working-princeton .panel-2col .panel-col-last .view-benefits h3 {
  text-transform: uppercase;
  font-size: 1em;
  background: #f3f3f3;
  padding: 1em;
  margin: 0;
  line-height: 2em;
}
/* line 2816, ../sass/_dof.scss */
.section-working-princeton .panel-2col .panel-col-last .view-benefits .views-row {
  padding: 0;
}
/* line 2820, ../sass/_dof.scss */
.section-working-princeton .panel-2col .panel-col-last .view-benefits .views-row a {
  display: block;
  font-size: .93em;
  line-height: 1.5em;
  padding: .25em 1em;
}
/* line 2825, ../sass/_dof.scss */
.section-working-princeton .panel-2col .panel-col-last .view-benefits .views-row a:focus, .section-working-princeton .panel-2col .panel-col-last .view-benefits .views-row a:hover {
  background: #f3f3f3;
}

/* line 2833, ../sass/_dof.scss */
.section-working-princeton .panel-2col .panel-col-first {
  width: 100%;
}
/* line 2837, ../sass/_dof.scss */
.section-working-princeton .panel-2col .panel-col-last {
  width: 100%;
}

@media (min-width: 700px) and (max-width: 959px) {
  /* line 2844, ../sass/_dof.scss */
  .section-working-princeton .panel-2col .panel-col-first {
    width: 70%;
  }
  /* line 2848, ../sass/_dof.scss */
  .section-working-princeton .panel-2col .panel-col-last {
    width: 30%;
  }
}
@media (min-width: 960px) {
  /* line 2856, ../sass/_dof.scss */
  .section-working-princeton .panel-2col .panel-col-first {
    width: 70%;
    padding: 0 2em 0 0;
  }
  /* line 2861, ../sass/_dof.scss */
  .section-working-princeton .panel-2col .panel-col-last {
    width: 30%;
  }
}
/* line 2871, ../sass/_dof.scss */
.node-type-benefits-and-compensation .field-name-body {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 1em;
  margin-bottom: 2em;
  clear: both;
}
/* line 2878, ../sass/_dof.scss */
.node-type-benefits-and-compensation .field-label {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: .95em;
  font-weight: normal;
}
/* line 2885, ../sass/_dof.scss */
.node-type-benefits-and-compensation .group-relinfo legend {
  background: url(../images/icon_info.png) no-repeat 0 0;
  padding-left: 60px;
  height: 50px;
  display: inline-block;
  background-size: 48px 48px;
}
/* line 2892, ../sass/_dof.scss */
.node-type-benefits-and-compensation .group-relinfo legend .fieldset-legend {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.75em;
  color: black;
  font-weight: normal;
  margin-bottom: 1em;
}
/* line 2904, ../sass/_dof.scss */
.node-type-benefits-and-compensation .field-name-field-related-links .field-item {
  line-height: 1.4em;
  margin-bottom: .5em;
}
/* line 2909, ../sass/_dof.scss */
.node-type-benefits-and-compensation .group-relinfo .fieldset-wrapper {
  padding-left: 65px;
}

@media (min-width: 700px) and (max-width: 959px) {
  /* line 2918, ../sass/_dof.scss */
  .node-type-benefits-and-compensation .field-name-field-contacts .field-item {
    float: left;
    width: 33%;
  }
  /* line 2923, ../sass/_dof.scss */
  .node-type-benefits-and-compensation .field-name-field-contacts .field-item .node-person .field-item {
    float: none;
    width: 100%;
  }
  /* line 2928, ../sass/_dof.scss */
  .node-type-benefits-and-compensation .field-name-field-related-links {
    float: left;
    width: 50%;
  }
  /* line 2933, ../sass/_dof.scss */
  .node-type-benefits-and-compensation .field-name-field-contacts {
    float: left;
    width: 50%;
  }
}
@media (min-width: 960px) {
  /* line 2943, ../sass/_dof.scss */
  .node-type-benefits-and-compensation .field-name-field-contacts .field-item {
    float: left;
    width: 50%;
    padding-right: .5em;
  }
  /* line 2949, ../sass/_dof.scss */
  .node-type-benefits-and-compensation .field-name-field-contacts .field-item .node-person .field-item {
    float: none;
    width: 100%;
  }
  /* line 2954, ../sass/_dof.scss */
  .node-type-benefits-and-compensation .field-name-field-related-links {
    float: left;
    width: 40%;
    padding-right: 1em;
  }
  /* line 2960, ../sass/_dof.scss */
  .node-type-benefits-and-compensation .field-name-field-contacts {
    float: left;
    width: 60%;
  }
}
/* line 2972, ../sass/_dof.scss */
.view-forms-audience .view-content {
  display: flex;
  flex-wrap: wrap;
}
/* line 2977, ../sass/_dof.scss */
.view-forms-audience .view-content .views-row {
  display: block;
  width: 100%;
  display: block;
  padding: 1em;
  margin: 0 0 1em 0;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border-bottom: 0;
}
/* line 2988, ../sass/_dof.scss */
.view-forms-audience .view-content img {
  display: block;
}
/* line 2992, ../sass/_dof.scss */
.view-forms-audience .view-content a {
  display: block;
  font-size: 1.2em;
  padding: 0;
  margin: 0;
  position: relative;
  max-width: 600px;
}
/* line 3002, ../sass/_dof.scss */
.view-forms-audience .view-content a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(24, 103, 126, 0.8);
  transition: all .3s linear;
}
/* line 3015, ../sass/_dof.scss */
.view-forms-audience .view-content a:hover::before {
  background: rgba(194, 81, 16, 0.8);
}
/* line 3020, ../sass/_dof.scss */
.view-forms-audience .view-content .views-field-description {
  font-size: .9em;
  line-height: 1.5em;
}
/* line 3025, ../sass/_dof.scss */
.view-forms-audience .view-content .name {
  position: absolute;
  top: 25%;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  font-size: 1.8em;
  line-height: 1.2;
  padding: 0 1em 1em 1em;
  color: white;
}
/* line 3036, ../sass/_dof.scss */
.view-forms-audience .view-content .views-field-description {
  font-size: .9em;
  line-height: 1.5em;
}

/* line 3042, ../sass/_dof.scss */
.panel-col-last .view-forms {
  font-size: 0.93333em;
  line-height: 2em;
  line-height: 1.5;
}
/* line 3047, ../sass/_dof.scss */
.panel-col-last .view-forms .views-row {
  padding: 0;
}
/* line 3051, ../sass/_dof.scss */
.panel-col-last .view-forms ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
/* line 3056, ../sass/_dof.scss */
.panel-col-last .view-forms li {
  list-style-type: none;
}
/* line 3061, ../sass/_dof.scss */
.panel-col-last .view-forms a {
  display: block;
  padding: .35em 1em;
  font-size: .9em;
  line-height: 1.3em;
}
/* line 3067, ../sass/_dof.scss */
.panel-col-last .view-forms a:hover, .panel-col-last .view-forms a:focus {
  background: #f3f3f3;
}

/* line 3081, ../sass/_dof.scss */
.section-forms-submission .panel-col-last h2.pane-title {
  text-transform: uppercase;
  background: #f3f3f3;
  padding: 1em;
  margin-top: 0;
  font-size: 0.93333em;
  line-height: 2em;
}
/* line 3089, ../sass/_dof.scss */
.section-forms-submission .panel-col-last .inside {
  border: 1px solid #cccccc;
}

@media (min-width: 700px) and (max-width: 959px) {
  /* line 3097, ../sass/_dof.scss */
  .view-forms-audience .view-content .views-row {
    width: 100%;
  }
}
@media (min-width: 960px) {
  /* line 3105, ../sass/_dof.scss */
  .view-forms-audience .view-content .views-row-first {
    width: 50%;
    padding: 0 4em 0 2em;
  }

  /* line 3109, ../sass/_dof.scss */
  .view-forms-audience .view-content .views-row-2 {
    width: 50%;
    padding: 0 2em 0 4em;
  }

  /* line 3114, ../sass/_dof.scss */
  .view-forms-audience .view-content .name {
    padding: .75em 1.75em;
  }
}
/* line 3122, ../sass/_dof.scss */
.section-forms-submission .panel-2col .panel-col-first,
.section-forms-submission .panel-2col .panel-col-last {
  width: 100%;
}

@media (min-width: 700px) and (max-width: 959px) {
  /* line 3129, ../sass/_dof.scss */
  .section-forms-submission .panel-2col .panel-col-first {
    width: 65%;
    padding-right: 3em;
  }
  /* line 3133, ../sass/_dof.scss */
  .section-forms-submission .panel-2col .panel-col-last {
    width: 35%;
  }
}
@media (min-width: 960px) {
  /* line 3141, ../sass/_dof.scss */
  .section-forms-submission .panel-2col .panel-col-first {
    width: 65%;
    padding-right: 3em;
  }
  /* line 3145, ../sass/_dof.scss */
  .section-forms-submission .panel-2col .panel-col-last {
    width: 35%;
  }
}
/* line 3152, ../sass/_dof.scss */
.node-type-forms-actions legend {
  display: inline;
  font-size: 1.75em;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  color: black;
}
/* line 3162, ../sass/_dof.scss */
.node-type-forms-actions .field-label,
.node-type-forms-actions .label-above {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.75em;
  color: black;
  font-weight: normal;
  margin-bottom: 1em;
}
/* line 3170, ../sass/_dof.scss */
.node-type-forms-actions .field-name-field-quick-summary-of-action {
  background: #f3f3f3;
  padding: 1em 2em;
  margin-bottom: 2em;
}
/* line 3175, ../sass/_dof.scss */
.node-type-forms-actions .field-name-field-quick-summary-of-action .field-label {
  font-size: .95em;
  text-transform: uppercase;
  margin-bottom: 0;
}
/* line 3184, ../sass/_dof.scss */
.node-type-forms-actions .field-name-field-forms-related-links .field-label,
.node-type-forms-actions .field-name-field-contacts .field-label {
  font-size: .9em;
  text-transform: uppercase;
  margin-bottom: 0;
}
/* line 3193, ../sass/_dof.scss */
.node-type-forms-actions .group-relinfo .fieldset-wrapper {
  padding-bottom: 1em;
  overflow: hidden;
}
/* line 3203, ../sass/_dof.scss */
.node-type-forms-actions .group-chklist legend {
  background: url(../images/icon_checkmark.png) no-repeat 0 0;
  padding-left: 60px;
  display: block;
  height: 50px;
  background-size: 48px 48px;
  height: 78px;
}
/* line 3212, ../sass/_dof.scss */
.node-type-forms-actions .group-relinfo legend {
  background: url(../images/icon_info.png) no-repeat 0 1em;
  padding-left: 60px;
  height: 78px;
  background-size: 48px 48px;
  display: block;
  width: 100%;
  border-top: 1px solid #d9d9d9;
}
/* line 3223, ../sass/_dof.scss */
.node-type-forms-actions .group-relinfo span.fieldset-legend {
  display: block;
  margin-top: 1em;
}
/* line 3229, ../sass/_dof.scss */
.node-type-forms-actions .group-relinfo .fieldset-wrapper,
.node-type-forms-actions .group-chklist .fieldset-wrapper {
  padding-left: 4.05em;
  margin-top: -2em;
}
/* line 3234, ../sass/_dof.scss */
.node-type-forms-actions .field-name-body {
  background: url(../images/icon_instructions.png) no-repeat 0 0;
  background-size: 48px 48px;
  padding-left: 62px;
  padding-bottom: 1em;
}
/* line 3240, ../sass/_dof.scss */
.node-type-forms-actions .field-name-body .field-label {
  margin-bottom: 0;
}
/* line 3247, ../sass/_dof.scss */
.node-type-forms-actions .group-chklist ol, .node-type-forms-actions .group-chklist ul {
  padding-left: 15px;
  margin-top: 10px;
}
/* line 3252, ../sass/_dof.scss */
.node-type-forms-actions .group-chklist ol li,
.node-type-forms-actions .group-chklist ul li {
  padding: .5em;
}
/* line 3264, ../sass/_dof.scss */
.node-type-forms-actions .group-chklist {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 2em;
}
/* line 3269, ../sass/_dof.scss */
.node-type-forms-actions .group-relinfo {
  padding-top: 2em;
  clear: both;
  border-top: 1px solid #d9d9d9;
}
/* line 3274, ../sass/_dof.scss */
.node-type-forms-actions .group-relinfo .field-item {
  line-height: 1.3;
  margin-bottom: .5em;
}
/* line 3280, ../sass/_dof.scss */
.node-type-forms-actions .field-name-field-associated-form-links {
  padding-left: 62px;
}
/* line 3283, ../sass/_dof.scss */
.node-type-forms-actions .field-name-field-associated-form-links .field-label {
  display: none;
}
/* line 3287, ../sass/_dof.scss */
.node-type-forms-actions .field-name-field-associated-form-links .field-item {
  margin: 0 2em 2em 0;
  float: left;
}
/* line 3294, ../sass/_dof.scss */
.node-type-forms-actions .field-name-field-associated-form-links a {
  background: #c25110;
  color: white;
  padding: 1em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  transition: color .4s ease,background-color .4s ease;
  -webkit-transition: color .4s ease,background-color .4s ease;
  -moz-transition: color .4s ease,background-color .4s ease;
  -o-transition: color .4s ease,background-color .4s ease;
  display: inline-block;
}
/* line 3298, ../sass/_dof.scss */
.node-type-forms-actions .field-name-field-associated-form-links a:hover, .node-type-forms-actions .field-name-field-associated-form-links a:focus {
  background: #18677e;
}
/* line 3303, ../sass/_dof.scss */
.node-type-forms-actions .field-name-field-email a {
  display: inline-block;
}

@media (min-width: 960px) {
  /* line 3312, ../sass/_dof.scss */
  .node-type-forms-actions .field-name-field-forms-related-links {
    float: left;
    width: 40%;
    padding-right: 1em;
  }
  /* line 3318, ../sass/_dof.scss */
  .node-type-forms-actions .field-name-field-contacts {
    float: left;
    width: 60%;
  }
  /* line 3323, ../sass/_dof.scss */
  .node-type-forms-actions .field-name-field-contacts .field-item {
    float: left;
    width: 33.333%;
    padding-right: .5em;
  }
  /* line 3328, ../sass/_dof.scss */
  .node-type-forms-actions .field-name-field-contacts .ds-1col .field-item {
    width: 100%;
  }
}
/* line 3343, ../sass/_dof.scss */
.front h1.page__title {
  display: none;
}
/* line 3347, ../sass/_dof.scss */
.front #main {
  margin-top: 3em;
}
/* line 3351, ../sass/_dof.scss */
.front h2.pane-title {
  line-height: 1;
  margin: 0 0 .75em 0;
}
/* line 3357, ../sass/_dof.scss */
.front .pane-memos-panel-pane-2,
.front .pane-policies-panel-pane-4 {
  margin-top: 3em;
}
/* line 3361, ../sass/_dof.scss */
.front .view-memos .views-field-field-memo-date {
  line-height: 1.5;
}
/* line 3365, ../sass/_dof.scss */
.front .view-memos .views-row {
  border: none;
}
/* line 3373, ../sass/_dof.scss */
.front .view-policies .views-row {
  padding: 0 0 .75em 0;
  border: none;
}
/* line 3385, ../sass/_dof.scss */
.front .pane-memos-panel-pane-1 .caption {
  background: #18677e;
  background-color: rgba(24, 103, 126, 0.8);
  padding: 1em;
}
/* line 3393, ../sass/_dof.scss */
.front .pane-memos-panel-pane-1 .title a,
.front .pane-memos-panel-pane-1 .summary {
  color: white;
}
/* line 3397, ../sass/_dof.scss */
.front .pane-memos-panel-pane-1 .summary {
  font-size: .85em;
  line-height: 1.5em;
}
/* line 3402, ../sass/_dof.scss */
.front .pane-memos-panel-pane-1 .views-row {
  border-bottom: none;
  padding: 0;
}
/* line 3408, ../sass/_dof.scss */
.front .pane-memos-panel-pane-1 .views-field-body {
  width: 100%;
  max-width: 900px;
}
/* line 3415, ../sass/_dof.scss */
.front .pane-memos-panel-pane-1 .views-field-field-featured-image a,
.front .pane-memos-panel-pane-1 .views-field-field-featured-image img {
  display: block;
}
/* line 3419, ../sass/_dof.scss */
.front .pane-memos-panel-pane-1 .title h3 {
  margin-bottom: 0;
  margin-top: .3em;
  color: white;
}
/* line 3427, ../sass/_dof.scss */
.front .pane-policies-panel-pane-4 .more-link {
  font-style: italic;
}
/* line 3431, ../sass/_dof.scss */
.front .pane-memos-panel-pane-2 .views-row {
  padding: .75em 0;
  border: none;
}
/* line 3436, ../sass/_dof.scss */
.front .pane-memos-panel-pane-2 .views-row-first {
  padding-top: 0;
}
/* line 3440, ../sass/_dof.scss */
.front .fa-arrow-circle-right::before {
  padding-right: 2px;
}
/* line 3444, ../sass/_dof.scss */
.front .view-calendar {
  padding: .75em 1.5em 0 1em;
}
/* line 3449, ../sass/_dof.scss */
.front .view-calendar .view-header a {
  color: black;
  vertical-align: top;
}
/* line 3453, ../sass/_dof.scss */
.front .view-calendar .view-header a:hover, .front .view-calendar .view-header a:focus {
  color: #c25110;
}
/* line 3458, ../sass/_dof.scss */
.front .view-calendar .view-header h3 {
  margin-top: .5em;
  font-size: 1.3em;
}
/* line 3463, ../sass/_dof.scss */
.front .view-calendar .view-header .fa {
  color: #18677e;
  font-size: 59px;
  padding-right: .35em;
  float: left;
}
/* line 3471, ../sass/_dof.scss */
.front .view-calendar .views-row {
  float: left;
  padding-right: 1em;
  padding-bottom: 0;
  border: none;
}
/* line 3479, ../sass/_dof.scss */
.front .view-calendar .event-date {
  border: 1px solid #d9d9d9;
  float: left;
  font-size: .85em;
}
/* line 3484, ../sass/_dof.scss */
.front .view-calendar .month {
  background: #18677e;
  color: white;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  padding: 0;
  text-align: center;
  width: 55px;
  font-size: 1.1em;
}
/* line 3494, ../sass/_dof.scss */
.front .view-calendar .day {
  background: white;
  color: black;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  padding: 0;
  text-align: center;
  font-size: 1.5em;
}
/* line 3503, ../sass/_dof.scss */
.front .view-calendar .view-footer {
  clear: both;
  text-align: right;
}
/* line 3508, ../sass/_dof.scss */
.front .view-calendar .view-footer a {
  font-family: Roboto, Helvetica, Arial, sans-serif;
}
/* line 3512, ../sass/_dof.scss */
.front .view-calendar .view-footer a:before {
  font-family: FontAwesome;
}
/* line 3523, ../sass/_dof.scss */
.front #boxes-box-home_page_links h3 {
  font-size: 1.3em;
  margin-bottom: 0;
  margin-top: 1em;
}
/* line 3529, ../sass/_dof.scss */
.front #boxes-box-home_page_links p {
  font-size: .85em;
  line-height: 1.5em;
}
/* line 3534, ../sass/_dof.scss */
.front #boxes-box-home_page_links h3 a {
  color: black;
}
/* line 3537, ../sass/_dof.scss */
.front #boxes-box-home_page_links h3 a:hover, .front #boxes-box-home_page_links h3 a:focus {
  color: #c25110;
}
/* line 3542, ../sass/_dof.scss */
.front #boxes-box-home_page_links hr {
  border-bottom: 1px solid #d9d9d9;
  margin: .5em 0;
  clear: both;
}
/* line 3548, ../sass/_dof.scss */
.front #boxes-box-home_page_links hr:first-of-type {
  margin-top: 0;
}
/* line 3552, ../sass/_dof.scss */
.front #boxes-box-home_page_links img {
  float: left;
  margin: 0 1em 1em 0;
  width: 55px;
  height: 65px;
}
/* line 3559, ../sass/_dof.scss */
.front #boxes-box-home_page_links .boxes-box-content {
  padding: 0 1em 1em 1em;
}
/* line 3567, ../sass/_dof.scss */
.front .pane-calendar .view-calendar,
.front .pane-boxes-home-page-links .boxes-box {
  background: #f3f3f3;
  max-width: 900px;
}

 /*@media (max-width: 1000px) and (min-width: 900px) {
    .front .pane-memos-panel-pane-1 {
      float: left;
      width: 100%;
      
      .view-id-memos {
        position: relative;
      }
      
      .views-field-body {
        position: absolute;
        bottom: 0;
      }
    }
    
    .front .pane-calendar,
    .front .pane-boxes-home-page-links {
      float: right;
      width: 100%;
      padding-left: 0;
    }
    
    .front #boxes-box-home_page_links h3{
      font-size: 1.2em;
      margin-top: .25em;
    }

    .front #boxes-box-home_page_links img {
      float: left;
      margin: 0 1em 1em 0;
      width: 40px;
      height: auto;
    }
  }*/
@media (max-width: 1199px) and (min-width: 1050px) {
  /* line 3611, ../sass/_dof.scss */
  .front .pane-memos-panel-pane-1 {
    float: left;
    width: 55%;
  }
  /* line 3615, ../sass/_dof.scss */
  .front .pane-memos-panel-pane-1 .view-id-memos {
    position: relative;
  }
  /* line 3619, ../sass/_dof.scss */
  .front .pane-memos-panel-pane-1 .views-field-body {
    position: absolute;
    bottom: 0;
  }

  /* line 3626, ../sass/_dof.scss */
  .front .pane-calendar,
  .front .pane-boxes-home-page-links {
    float: right;
    width: 45%;
    padding-left: 1em;
  }

  /* line 3633, ../sass/_dof.scss */
  .front #boxes-box-home_page_links h3 {
    font-size: 1.1em;
    margin-top: .15em;
  }

  /* line 3638, ../sass/_dof.scss */
  .front #boxes-box-home_page_links img {
    float: left;
    margin: 0 1em 1em 0;
    width: 40px;
    height: auto;
  }

  /* line 3645, ../sass/_dof.scss */
  .view-calendar {
    position: relative;
    overflow: hidden;
    padding-bottom: 1em;
  }
  /* line 3650, ../sass/_dof.scss */
  .view-calendar .view-content {
    margin-top: -1em;
  }

  /* line 3655, ../sass/_dof.scss */
  .pane-memos-panel-pane-2 {
    clear: left;
    float: left;
    width: 50%;
    padding-right: 3em;
  }

  /* line 3664, ../sass/_dof.scss */
  .pane-policies-panel-pane-4 {
    float: right;
    width: 50%;
    padding-left: 3em;
    border-left: 1px solid #d9d9d9;
  }
}
@media (min-width: 1200px) {
  /* line 3681, ../sass/_dof.scss */
  .front .pane-memos-panel-pane-1 {
    float: left;
    width: 63%;
  }
  /* line 3686, ../sass/_dof.scss */
  .front .pane-memos-panel-pane-1 .view-id-memos {
    position: relative;
  }
  /* line 3690, ../sass/_dof.scss */
  .front .pane-memos-panel-pane-1 .views-field-body {
    position: absolute;
    bottom: 0;
  }
  /* line 3697, ../sass/_dof.scss */
  .front .pane-calendar,
  .front .pane-boxes-home-page-links {
    float: right;
    width: 37%;
    padding-left: 2em;
  }
  /* line 3703, ../sass/_dof.scss */
  .front .view-calendar {
    position: relative;
    overflow: hidden;
    padding-bottom: 1em;
  }
  /* line 3708, ../sass/_dof.scss */
  .front .view-calendar .view-content {
    margin-top: -1em;
  }
  /* line 3712, ../sass/_dof.scss */
  .front .view-calendar .view-footer {
    position: absolute;
    right: 20px;
    bottom: 25px;
  }
  /* line 3721, ../sass/_dof.scss */
  .front .pane-memos-panel-pane-2 {
    clear: left;
    float: left;
    width: 50%;
    padding-right: 3em;
  }
  /* line 3730, ../sass/_dof.scss */
  .front .pane-policies-panel-pane-4 {
    float: right;
    width: 50%;
    padding-left: 3em;
    border-left: 1px solid #d9d9d9;
  }
  /* line 3737, ../sass/_dof.scss */
  .front .view-policies .views-field-timestamp {
    float: left;
    width: 20%;
  }
  /* line 3742, ../sass/_dof.scss */
  .front .view-policies .views-field-nothing {
    float: left;
    width: 80%;
  }
  /* line 3747, ../sass/_dof.scss */
  .front #boxes-box-home_page_links {
    min-height: 365px;
  }
}
/* line 3758, ../sass/_dof.scss */
.pane-policies-panel-pane-3 h2.pane-title {
  margin-top: 0;
  line-height: 1;
}

/* line 3762, ../sass/_dof.scss */
.view-policies .views-field-timestamp {
  font-family: Roboto, Helvetica, Arial, sans-serif;
}

@media (min-width: 960px) {
  /* line 3775, ../sass/_dof.scss */
  .view-policies .views-field-timestamp {
    float: left;
    width: 15%;
  }

  /* line 3780, ../sass/_dof.scss */
  .view-policies .views-field-nothing {
    float: left;
    width: 85%;
  }
}
/* line 3786, ../sass/_dof.scss */
.view-policies .title {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
}

/* line 3790, ../sass/_dof.scss */
.view-policies .views-row {
  border-bottom: 1px solid #e6e6e6;
  padding: .5em 0;
}

/* line 3795, ../sass/_dof.scss */
.view-policies .views-row-first {
  padding-top: 0;
}

/* line 3799, ../sass/_dof.scss */
.view-policies table .views-field-timestamp {
  float: none;
}

/* line 3803, ../sass/_dof.scss */
.view-policies table .views-field-title {
  font-family: Roboto, Helvetica, Arial, sans-serif;
}

/* line 3810, ../sass/_dof.scss */
.view-policies table tr.odd,
.view-policies table tr:nth-child(odd) {
  background: white;
}

/* line 3814, ../sass/_dof.scss */
.view-policies table {
  margin-top: 0;
  padding-top: 0;
}

/* line 3819, ../sass/_dof.scss */
.view-policies table tr {
  border-bottom: 1px solid #e6e6e6;
  padding: 0;
}

/* line 3824, ../sass/_dof.scss */
.view-policies table td {
  padding: 0;
}

/* line 3828, ../sass/_dof.scss */
.view-policies table td.views-field-timestamp {
  padding: .5em;
}

/* line 3832, ../sass/_dof.scss */
.view-policies table a {
  padding: .5em;
  display: block;
}
/* line 3836, ../sass/_dof.scss */
.view-policies table a:hover, .view-policies table a:focus {
  background: #f3f3f3;
}

/* line 3844, ../sass/_dof.scss */
.pane-boxes-view-policy-lib {
  margin-top: 2em;
  background: url(../images/icon_document_large.png) no-repeat 15px 0;
  background-size: 71px 82px;
  padding-left: 100px;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 2em;
}
/* line 3852, ../sass/_dof.scss */
.pane-boxes-view-policy-lib h2 {
  margin-bottom: 0;
  line-height: 1.35em;
}
/* line 3861, ../sass/_dof.scss */
.pane-boxes-view-policy-lib p:last-of-type a {
  background: #c25110;
  color: white;
  padding: 1em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  transition: color .4s ease,background-color .4s ease;
  -webkit-transition: color .4s ease,background-color .4s ease;
  -moz-transition: color .4s ease,background-color .4s ease;
  -o-transition: color .4s ease,background-color .4s ease;
  padding: .5em 1em;
}
/* line 3865, ../sass/_dof.scss */
.pane-boxes-view-policy-lib p:last-of-type a:hover, .pane-boxes-view-policy-lib p:last-of-type a:focus {
  background: #18677e;
}

/* line 3873, ../sass/_dof.scss */
.pane-boxes-rules-procedure-box h2 {
  margin-bottom: 0;
  line-height: 1.35em;
}

/* line 3880, ../sass/_dof.scss */
.view-rules-and-procedure .view-content {
  display: flex;
  flex-wrap: wrap;
}
/* line 3884, ../sass/_dof.scss */
.view-rules-and-procedure .view-content .views-field-body p {
  margin-bottom: 0;
}
/* line 3888, ../sass/_dof.scss */
.view-rules-and-procedure .view-content .views-row {
  display: block;
  width: 100%;
  display: block;
  border-bottom: 1px solid #e6e6e6;
  padding: .5em;
  margin: 0 0 1em 0;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border-bottom: 0;
}
/* line 3901, ../sass/_dof.scss */
.view-rules-and-procedure .view-content img {
  display: block;
}
/* line 3905, ../sass/_dof.scss */
.view-rules-and-procedure .view-content a {
  display: block;
  font-size: 1.2em;
  padding: 0;
  margin: 0;
  position: relative;
}
/* line 3914, ../sass/_dof.scss */
.view-rules-and-procedure .view-content a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(24, 103, 126, 0.8);
  transition: all .3s linear;
}
/* line 3927, ../sass/_dof.scss */
.view-rules-and-procedure .view-content a:hover::before {
  background: rgba(194, 81, 16, 0.8);
}
/* line 3932, ../sass/_dof.scss */
.view-rules-and-procedure .view-content .views-field-description {
  font-size: .9em;
  line-height: 1.5em;
}
/* line 3937, ../sass/_dof.scss */
.view-rules-and-procedure .view-content .name {
  position: absolute;
  top: 40%;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  padding: .5em;
  color: white;
}

@media (min-width: 960px) {
  /* line 3952, ../sass/_dof.scss */
  .view-rules-and-procedure .view-content .views-row {
    width: 33.333%;
  }
}
/* line 3961, ../sass/_dof.scss */
.node-type-policy .horizontal-tab-button {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  font-weight: normal;
}
/* line 3965, ../sass/_dof.scss */
.node-type-policy .horizontal-tab-button strong {
  font-weight: normal;
}
/* line 3970, ../sass/_dof.scss */
.node-type-policy .horizontal-tabs ul.horizontal-tabs-list {
  border: none;
  background: none;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1em;
}
/* line 3978, ../sass/_dof.scss */
.node-type-policy div.horizontal-tabs {
  border: none;
}
/* line 3982, ../sass/_dof.scss */
.node-type-policy .fieldset-description {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  margin: 1em 0 .5em 0;
  background: url(../images/icon_person_small.png) no-repeat 0 0;
  background-size: 20px 21px;
  padding-left: 28px;
}
/* line 3991, ../sass/_dof.scss */
.node-type-policy .horizontal-tabs ul.horizontal-tabs-list li {
  border: 1px solid #cccccc;
  border-bottom: 1px solid white;
  background: #666666;
  color: white;
  padding: 0;
}
/* line 4003, ../sass/_dof.scss */
.node-type-policy .horizontal-tabs ul.horizontal-tabs-list li.selected {
  background: white;
  margin-top: -5px;
}
/* line 4011, ../sass/_dof.scss */
.node-type-policy .horizontal-tabs ul.horizontal-tabs-list li a:hover {
  background-color: #c25110;
  color: white;
}
/* line 4020, ../sass/_dof.scss */
.node-type-policy .horizontal-tabs ul.horizontal-tabs-list li a {
  color: white;
  padding: .5em 1em;
}
/* line 4025, ../sass/_dof.scss */
.node-type-policy .horizontal-tabs ul.horizontal-tabs-list li.selected a {
  margin-top: 5px;
}
/* line 4029, ../sass/_dof.scss */
.node-type-policy .horizontal-tabs ul.horizontal-tabs-list li.selected a:hover, .node-type-policy .horizontal-tabs ul.horizontal-tabs-list li.selected a:focus {
  background: white;
  color: black !important;
}
/* line 4041, ../sass/_dof.scss */
.node-type-policy .field-name-field-fac-contacts .field-label,
.node-type-policy .field-name-field-facrules-and-procedure .field-label,
.node-type-policy .field-name-field-fac-related-links- .field-label,
.node-type-policy .field-name-field-profrules-and-procedure .field-label,
.node-type-policy .field-name-field-acad-prof-contacts .field-label,
.node-type-policy .field-name-field-acad-prof-related-links .field-label {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  color: black;
  font-weight: normal;
  text-transform: uppercase;
}
/* line 4049, ../sass/_dof.scss */
.node-type-policy .field-name-field-faculty-policy-details,
.node-type-policy .field-name-field-acad-prof-policy-det {
  margin: .5em 0 2em 0;
  padding: 1em 0;
  border-bottom: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
}
/* line 4056, ../sass/_dof.scss */
.node-type-policy .field-name-subtitle-prof {
  display: none;
}
/* line 4061, ../sass/_dof.scss */
.node-type-policy .group-related_fac legend,
.node-type-policy .group-related_prof legend {
  background: url(../images/icon_info.png) no-repeat 0 0;
  padding-left: 60px;
  height: 50px;
  display: inline-block;
  background-size: 48px 48px;
}
/* line 4068, ../sass/_dof.scss */
.node-type-policy .group-related_fac legend .fieldset-legend,
.node-type-policy .group-related_prof legend .fieldset-legend {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.75em;
  color: black;
  font-weight: normal;
  margin-bottom: 1em;
}
/* line 4080, ../sass/_dof.scss */
.node-type-policy .group-related_fac .fieldset-wrapper,
.node-type-policy .group-related_prof .fieldset-wrapper {
  padding-left: 65px;
}
/* line 4087, ../sass/_dof.scss */
.node-type-policy .field-name-field-facrules-and-procedure .field-item,
.node-type-policy .field-name-field-fac-related-links- .field-item,
.node-type-policy .field-name-field-profrules-and-procedure .field-item,
.node-type-policy .field-name-field-acad-prof-related-links .field-item {
  line-height: 1.4em;
  margin-bottom: .5em;
}

@media (min-width: 960px) {
  /* line 4097, ../sass/_dof.scss */
  .horizontal-tabs ul.horizontal-tabs-list li {
    width: 50%;
    float: left;
  }

  /* line 4107, ../sass/_dof.scss */
  .field-name-field-facrules-and-procedure,
  .field-name-field-fac-related-links-,
  .field-name-field-profrules-and-procedure,
  .field-name-field-acad-prof-related-links {
    float: left;
    width: 40%;
    padding-right: 1em;
  }

  /* line 4114, ../sass/_dof.scss */
  .field-name-field-fac-contacts,
  .field-name-field-acad-prof-contacts {
    float: left;
    width: 60%;
  }
  /* line 4118, ../sass/_dof.scss */
  .field-name-field-fac-contacts .field-item,
  .field-name-field-acad-prof-contacts .field-item {
    float: left;
    width: 50%;
    padding-right: 1em;
  }
  /* line 4125, ../sass/_dof.scss */
  .field-name-field-fac-contacts .view-mode-contacts_for_policy .field-item,
  .field-name-field-acad-prof-contacts .view-mode-contacts_for_policy .field-item {
    width: 100%;
  }
}
/* line 4133, ../sass/_dof.scss */
.page-policies-procedure-rules-procedures .view-rules-and-procedure .view-content .views-row {
  width: 100%;
}

/* line 4137, ../sass/_dof.scss */
.page-policies-procedure-rules-procedures #block-boxes-rules-procedure-box h2.block__title {
  display: none;
}

@media (min-width: 960px) {
  /* line 4144, ../sass/_dof.scss */
  .page-policies-procedure-rules-procedures .view-rules-and-procedure .view-content .views-field-title {
    float: left;
    width: 35%;
  }

  /* line 4149, ../sass/_dof.scss */
  .page-policies-procedure-rules-procedures .view-rules-and-procedure .view-content .views-field-body {
    width: 65%;
    float: left;
    padding-left: 1em;
  }
}
/* line 4158, ../sass/_dof.scss */
.page-custom404 h2.pane-title {
  margin-bottom: 0;
  line-height: 1;
}

/* line 4163, ../sass/_dof.scss */
.page-custom404 input[type="text"] {
  width: 200px;
}

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