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

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

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

/* Address styling not present in IE 8/9. */
[hidden] {
  display: none;
}

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

/* Remove default margin. */
body {
  margin: 0;
  padding: 0;
}

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

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

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

blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.41176em 30px;
}

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

h2 {
  font-size: 1.5em;
  line-height: 1.88235em;
  margin-top: 0.94118em;
  margin-bottom: 0.94118em;
}

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

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

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

h6 {
  font-size: 0.67em;
  line-height: 2.10711em;
  margin-top: 2.10711em;
  margin-bottom: 2.10711em;
}

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

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

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

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

/* Address styling not present in IE 8/9. */
mark {
  background: #ff0;
  color: #000;
}

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

/* Improve readability of pre-formatted text in all browsers. */
pre {
  white-space: pre-wrap;
}

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

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

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

/* Correct overflow displayed oddly in IE 9. */
svg:not(:root) {
  overflow: hidden;
}

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

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-width: 0.05882em;
  border-top-style: solid;
  padding-top: 0.43529em;
  border-bottom-width: 0.05882em;
  border-bottom-style: solid;
  padding-bottom: 0.85882em;
  border-left-width: 0.05882em;
  border-left-style: solid;
  padding-left: 0.85882em;
  border-right-width: 0.05882em;
  border-right-style: solid;
  padding-right: 0.85882em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Apply the shared properties of grid items in a single, efficient ruleset. */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer {
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}

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

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

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

  /**
   * The layout when there is only one sidebar, the right one.
   */
  .sidebar-second {
    /* Span 2 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 3rd column from left. */
  }
  .sidebar-second #content {
    float: left;
    width: 200%;
    margin-left: 0%;
    margin-right: -200%;
  }
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 200%;
    margin-right: -300%;
  }

  /**
   * The layout when there are two sidebars.
   */
  .two-sidebars {
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Start a new row and span all 3 columns. */
  }
  .two-sidebars #content {
    float: left;
    width: 200%;
    margin-left: 100%;
    margin-right: -300%;
  }
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 300%;
    margin-left: 0%;
    margin-right: -300%;
    padding-left: 0;
    padding-right: 0;
    clear: left;
    /* Apply the shared properties of grid items in a single, efficient ruleset. */
    /* Span 1 column, starting in the 1st column from left. */
    /* Span 1 column, starting in the 2nd column from left. */
    /* Span 1 column, starting in the 3rd column from left. */
  }
  .two-sidebars .region-sidebar-second .block {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
  }
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
    float: left;
    width: 100%;
    margin-left: 100%;
    margin-right: -200%;
  }
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
    float: left;
    width: 100%;
    margin-left: 200%;
    margin-right: -300%;
  }
}
/**
 * Use 5 grid columns for larger screens.
 */
@media all and (min-width: 960px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  .sidebar-first {
    /* Span 4 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  .sidebar-first #content {
    float: left;
    width: 400%;
    margin-left: 100%;
    margin-right: -500%;
  }
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  .sidebar-second {
    /* Span 4 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  .sidebar-second #content {
    float: left;
    width: 400%;
    margin-left: 0%;
    margin-right: -400%;
  }
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 400%;
    margin-right: -500%;
  }

  /**
   * The layout when there are two sidebars.
   */
  .two-sidebars {
    /* Span 3 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  .two-sidebars #content {
    float: left;
    width: 300%;
    margin-left: 100%;
    margin-right: -400%;
  }
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 400%;
    margin-right: -500%;
  }
}
/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
.with-wireframes #header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

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

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

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

/**
 * Branding header.
 */
/* Wrapping link for logo. */
.header__logo {
  float: left;
  /* LTR */
  margin: 0;
  padding: 0;
}

/* Logo image. */
.header__logo-image {
  vertical-align: bottom;
}

/* Wrapper for website name and slogan. */
.header__name-and-slogan {
  float: left;
}

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

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

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

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

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

/**
 * Navigation bar.
 */
#navigation {
  /* Sometimes you want to prevent overlapping with main div. */
  /* overflow: hidden; */
  /* Main menu and secondary menu links and menu block links. */
}
#navigation .block {
  margin-bottom: 0;
}
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
#navigation .links li,
#navigation .menu li {
  /* A simple method to get navigation links to appear in one line. */
  float: left;
  /* LTR */
  padding: 0 10px 0 0;
  /* LTR */
  list-style-type: none;
  list-style-image: none;
}

/**
 * Breadcrumb navigation.
 */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

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

/**
 * Messages.
 */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.41176em 0;
  padding: 10px 10px 10px 50px;
  /* LTR */
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAD6UlEQVR42s2WX0xbVRzH3YwmC4k+GF/0ZS/S267/bmnX9nL7bwstZlnbjTDYyoC5GCbB0ZW5pdJCe6swbLFA6bpWIGuRMWVjKGP+21QW3SZBSAjGh4XEaTZTH82Cm/3ztS2xs7mw4KLRk3xyzj33/H6fe5Pz7zEA/yr/vUDukj9FH6drqTaqT8EoPs/UV+nX6TD1BlUh9AqLHlmgPKLcRHmoCOWmElK/FOKTYpS8UwLJkASiUyLI3pKhlClN0g46qj+qL/pbArlbrlO1q25JeiSgR2iYJ8ywXLSg/qP6LNl2ro8+Q4MMkKCd9K2t3q3KdQnkXXIF5aISkgEJzONm1F2qW52pDJN1MI2bUBIuAdVOJWSMTPNQgX6/vkjVpvpREpag6oMqWCYta1IzbsHh9ga0RJtzY8URMdRO9U/KSuWmNQUqh2pY3CtG+fvlqJyofMAFNrZAE+7e/RWR4X4cD9tgOGsA2U2CdtMDqwqyMyIzQ5KKqAKmcyaYxkzYd3YvjGNGFtXRPRj58DT+LOemRrFnrBLyITmUDmUyO/NYgu2d26ukHVJo3tXAMGpAs+cQmh0NeClan30uwN7TgnQ6nRd4r3thOGOAJqYB2UVC79AfZAnKHGUxQa8A2tNaNLW/jKvXv8Dyb8s4yryKA4O10A3roIvpUB+swTdz1/LJZ27PQBvT5lBH1RD4BChzlQ2wBNtc22aE/ULQgzRCl4P5BPcT93GMOYz9wb2QhCRgAq35d8u/L2PXe7tADVGgBlcQ+AXQtmlvsP/gzbJZvp8PMkJCFBYh8m0knyiVSsHe0YIGZz1+/uVOvt8z7QGvnwf+ST5EIRHIUyR4fh50rbp5lsDcYR4ReAXgBrng9q/Qfa0bfy035r7Ot2dvz4IX4IEIEAXwvDzscOw4zxJUd1YfEXlE4Aa4BQHMlwzSSBeI7iXvoTxWDqKPYCFsFaKmr+YVliB0JfS89DVpiuhlB9k/tSOZTuYFvq98yI7L0/MAsVWcGp0bfW61hbahwltxSeARsIKyWKesSKQSWIwvYkvvllwfx88pgOvhwthu/AzAxlVX8vz385tLbaVxwpcLZtEw0QDjsBGctzksiE4CimZFfHp++oWHbnbuUfdB0komMgHsRN1r0MWBsEmYODF5onY92/UTwcvBxuzXcN1ccHycVSn2FaPYWwzCQUDWKIt7z3utAJ5c74Hz+OLSomynY+cVfiM/xW3JiDyZpB3FuZrj4oCwE+Ad4qWMjPHjpTtL0mzMoxyZz9yM39Q7Y85Ok930icqm+k59TL2wm9l90dZv8y/8sPAigGf/iUN/Q4anM2zOsdLe+L+4VfwBVVjDs2rTYx0AAAAASUVORK5CYII=');
  background-position: 8px 8px;
  /* LTR */
  background-repeat: no-repeat;
  border: 1px solid #be7;
}

.messages--warning {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACuElEQVRIiWP4//8/Ay0xSYqntTpnT252zqeJBf0Njhsykrz/pyd6/e9vcNpGVQv6q2wlm0qc/r0+IPD/3UG+/61l9v9mdrjIUc2C7hqHUzc3S///eZwBjO9tF/vfWe1wjioWTKixVm8otPn38wQT3IKfxxn/t5Va/utpsNSg2ILWcttrNzdJgQ3+dpQRjEHs+9tE/zeXWt+gyILOamuTqlxrsOtPLub+7+emBsSq/88v5wL7oqHQ9H9nmbkF2RbUF1rev7lJEuziuU3i/90ddcB4UZsoJC62ifyvK7R4QJYFrcUGrmUZ5v9hYb9hosh/bzcDMN42VRgeF9W5hv8bi/XdSbagKtfs2c1NEvCIPbaQ/7+/pwkYn17Ki0hR24T/l2eZPCfJgsZ83dCiNOP/yCnn7iau/8G+5mD8aBsHSoqqyNL9X5erHUm0BcVpRm9ubhZHMoTh/4eDzP/DA23+RwTZ/P96hAlF7t5Wof8FyfpvibKgNk8noyDZ4D9quofg1Bjr/1kJlhjiIF+Upmn/r83RzCJoQXaC3qcbm8SwGMLwvybP/H8jMGlik7u7VeB/Zqz2J7wWVGdr1uTG62J1PQgfWST1/+hiCaxyIF8UJqv9r8hQrcVpQVqkzrcbG0WwGvB2H/P/lnx5MAaxsam5vYn3f2KY+jesFpSlqfZnxWjidP2OGWL/g/0swBjExu4Lhv958Ur/i5KU+lEsCA1lYI4JUv95bZ0gTo2Pt3P+z0myBmMQG5e6mxu4/kf4Kf8EmQm3oCRNebKrvSawIGPBqRG9sMOp5hjjfwdrlf/58bKT4RaUpWvtcLZV/39iscD/H0AFP46jYwYiMeP/44u4/9tbKQODSXUH3II9G7v18hI0n8YGKv+IDVT6joxj/BVx4mgcOCde/SnITPRUJAHEGlTCEkQV19TAAN8FC67hZdFXAAAAAElFTkSuQmCC');
  border-color: #ed5;
}

.messages--error {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACpElEQVR42rWWTUgbQRiGQ0Tx4MWDeFM8eBA9iKAoggiCoCiiIiL4L3oQV1CJB0UEf6iRYFpK7UniTw9VSqL2kvQsVDBpSZrtRo35czVNW3oprRf17exSl4yzu1ikAy9h59vvedhkMrMGAGoxknAk2w8MJ/WosXThiZkZt9jdLeglPjn5ATc3mhJNuNjbK0QbG3ExMICL/n6IfX0gcxB7ekDAELu6IHZ2IlJbi1hLS1BLogmPtbUhMTv7oMSamzUlqnByMxLT0/8STQkDj9TV4ZLj5OysrODl8jIu5Gs68dFR7JG6dWkJ0fFx+TpSX89IDMnwcHU1yKec12Yz3rlc4HkeLwjkXJpPip3U3+7vIx6P4ymph4eG5PlwTQ0lMdytlmBxMWKtrXLeT0zA5XTibvj9fjxfXETkb/3N/Dz2dneVuiTZtliU/rPSUsQ5ziuxZYG03IIlJdKKUPJjdRUAKMmzuTnskB/VYbdTtd9HR4g2NCi9Z2VliDY1BSnBaUEBzsrLqXyzWCiQ9HU5HA4afniIUFWV0hOqqMBpURErOM7NxWlhIZOvCwvA7S3Uxq+DA5AnZ3pO8vJYQSArC8c5Oeqx2Rj4udeLQH6+6v2B7GxW8DkjA0JmJpONwUHY7XZGIAgCzCYTeJUewmIFfqMRfEoKlQ2yJbza2oLWcLvdeDI2hk/3+iQWKzAYkJzNjg5srq9TwJ9OJ76YTNScx+ORJT66X1/grKyEbW2NgfPp6XKd/JMZySrHaQsSU1Oe+0/w3WpVgyu5HBlR6lc+H8gioevDwz6JrWwV5+3txyoSFk5DcOX1MnCyJ4Vwfb1zt1UY9SR8aioDpuppaVpwZbPTl+hHF04dOKzk8XBF8DgJC3/woU/W/EciOtELOWi8DDwp//215Q+p7kiKh2lQSAAAAABJRU5ErkJggg==');
  border-color: #ed541d;
}

.messages__list {
  margin: 0;
}

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

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

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

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

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

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
.tabs-primary, .tabs-secondary {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYmJiYmJiIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: -webkit-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: linear-gradient(to top, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbb \0/ie;
  margin: 1.41176em 0;
  padding: 0 2px;
  white-space: nowrap;
}

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

a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.41176em;
  text-decoration: none;
}

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

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

a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

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

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

/* Secondary tabs. */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.41176em;
}

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

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

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

a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
.inline {
  display: inline;
  padding: 0;
}
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

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

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

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

.more-help-link a {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC');
  background-position: 0 50%;
  /* LTR */
  background-repeat: no-repeat;
  padding: 1px 0 1px 20px;
  /* LTR */
}

/**
 * Pager.
 */
/* A list of page numbers when more than 1 page of content is available. */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis, .pager-current {
  display: inline;
  padding: 0 0.5em;
  list-style-type: none;
  background-image: none;
}

.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis {
  /* A concatenation of several list items using an ellipsis. */
}

/* The current page's list item. */
.pager-current {
  font-weight: bold;
}

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

/* The active item in a Drupal menu. */
.menu a.active {
  color: #000;
}

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

/**
 * Unpublished note.
 */
/* The word "Unpublished" displayed underneath the content. */
.unpublished {
  height: 0;
  overflow: visible;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  /* A very nice CSS3 property. */
  word-wrap: break-word;
}

/**
 * Comments.
 */
/* Wrapper for the list of comments and its title. */
.comments {
  margin: 1.41176em 0;
}

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

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

/* Nested comments are indented. */
.indented {
  /* Drupal core uses a 25px left margin. */
  margin-left: 30px;
  /* LTR */
}

/**
 * Forms.
 */
/* Wrapper for a form element (or group of form elements) and its label. */
.form-item {
  margin: 1.41176em 0;
  /* Pack groups of checkboxes and radio buttons closer together. */
  /* Form items in a table. */
  /* Highlight the form elements that caused a form submission error. */
  /* The descriptive help text (separate from the label). */
}
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
.form-item .description {
  font-size: 0.85em;
}

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

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

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

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

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

/* Drupal's default login form block. */
#user-login-form {
  text-align: left;
  /* LTR */
}

/**
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */
/* OpenID creates a new ul above the login form's links. */
.openid-links {
  /* Position OpenID's ul next to the rest of the links. */
  margin-bottom: 0;
}

/* The "Log in using OpenID" and "Cancel OpenID login" links. */
.openid-link,
.user-link {
  margin-top: 1.41176em;
}

html.js #user-login-form li.openid-link,
#user-login-form li.openid-link {
  /* Un-do some of the padding on the ul list. */
  margin-left: -20px;
  /* LTR */
}

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

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

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

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

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

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

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

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

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
html.js .collapsible .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  background-position: 5px 65%;
  /* LTR */
  background-repeat: no-repeat;
  padding-left: 15px;
  /* LTR */
}
html.js .collapsed .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  background-position: 5px 50%;
  /* LTR */
}
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

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

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

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

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

/**
 * Progress bar.
 *
 * @see progress.js
 */
.progress {
  font-weight: bold;
}
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1499350219');
}

/**
 * EU Compliance Popup
 *
 */
#sliding-popup {
  border-top: 1px solid #000;
}
#sliding-popup .eu-cookie-withdraw-tab {
  text-transform: uppercase;
}
#sliding-popup .popup-content #popup-text {
  margin: 1em 40px;
}
#sliding-popup .popup-content #popup-text,
#sliding-popup .popup-content #popup-buttons {
  float: none;
  max-width: none;
  text-align: center;
}
#sliding-popup .popup-content #popup-text p {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #444 !important;
}
#sliding-popup .popup-content .eu-cookie-compliance-more-button {
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px dashed #444;
  color: #444 !important;
}
#sliding-popup .popup-content .eu-cookie-compliance-more-button:hover {
  color: #f47d20 !important;
  border-bottom: 1px dashed #f47d20;
}
#sliding-popup .popup-content #popup-buttons button {
  text-transform: uppercase;
  box-shadow: none;
  border-radius: 2px;
  background-color: #a7d233;
  background-image: none !important;
  text-shadow: none;
  border: 1px solid #a7d233;
  padding: 0.5em 2em;
  margin: 1em 1em;
  font-weight: bold;
}
#sliding-popup .popup-content #popup-buttons button:hover {
  background-color: #668600;
  border-color: #668600;
  color: #fff !important;
}
#sliding-popup .popup-content #popup-buttons .decline-button {
  color: #fff !important;
  background-color: #72777c;
  border-color: #72777c;
}
#sliding-popup .popup-content #popup-buttons .decline-button:hover {
  background-color: #262B30;
  border-color: #262B30;
}

@media screen and (min-width: 999px) {
  #sliding-popup .popup-content #popup-text {
    margin: 1em 10% 0;
  }
}
/**
 * @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 {
  #page {
    font-size: 17px !important;
  }

  /* Underline all links. */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }

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

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

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

  /* Hide sidebars and nav elements. */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  #minifooter,
  #header,
  .region-subnav,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }

  .menu_container {
    display: none !important;
  }

  .js .anchor-link:before {
    content: "" !important;
  }

  #main {
    border: 0 !important;
  }

  img {
    position: relative;
    z-index: 50;
  }

  /* hide top images and videos on overview pages */
  .toprow .pane-news, .toprow video, .toprow embed, .toprow object, .toprow .overviewimage {
    display: none;
  }

  /* from old template */
  body {
    color: black;
    background: white;
  }

  #content a {
    text-decoration: underline !important;
  }

  a:link, a:visited {
    background: white;
    color: #666;
    text-decoration: underline !important;
    font-weight: bold;
  }

  h1 {
    clear: both !important;
    width: 100%;
  }

  #content {
    font-size: 10px;
  }
  #content p, #content li, #content a {
    font-size: 10px;
  }
  #content h1, #content h3, #content h4, #content h5, #content h6 {
    background: white;
    color: black !important;
    font-size: 12px !important;
  }

  #main h1#page-title {
    font-size: 12px !important;
  }

  #content .intro {
    font-size: 11px;
  }

  h3 {
    font-size: larger;
    font-family: Georgia, serif;
  }

  #skip, #topnav, #bannermenu, #local, #uvmcustomnav, #uvmsocialmedia, footer {
    display: none;
  }

  #main a#logo {
    /* overflow:hidden; */
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin: 0 0 14px !important;
    padding: 0 0 10px 0 !important;
  }

  #main img.header__logo-image {
    width: 280px !important;
    height: inherit;
  }

  #content {
    border: 0;
    margin-left: 0;
    padding: 0;
  }

  #page {
    border: 0;
    width: auto !important;
  }

  header h1 img {
    float: left;
  }

  header h1 a:link, header h1 a:visited {
    font-size: 0pt;
  }

  /** news **/
  #storyShare, #storyMore {
    display: none;
  }

  #storyInfo ul {
    padding: 0;
  }

  #storyInfo li {
    list-style: none;
    display: inline;
    padding-right: .25in;
  }

  .storyCaption {
    font-size: smaller;
    color: #787878;
    font-style: italic;
  }

  #storyPrimaryMedia {
    float: left;
    width: 3in;
    margin: 0 .25in .25in 0;
  }

  #storyPrimaryMedia img {
    max-width: 3in;
  }

  #storyExtras img {
    max-width: 2.5in;
  }

  #storyExtras {
    clear: left;
    float: right;
    width: 2.5in;
    margin: .25in 0 .25in .25in;
  }

  #storyQuote {
    overflow: hidden;
    border-top: 1px #ccc solid;
    border-bottom: 1px #ccc solid;
    padding: .25in 0;
    font-size: larger;
    font-family: Georgia, serif;
    line-height: 150%;
    color: #787878;
    margin-bottom: .125in;
  }

  #storyQuote:before {
    display: block;
    float: left;
    margin: .25in .125in 0 0;
    font-size: 500%;
    content: open-quote;
    color: #ababab;
  }

  /** custom calls **/
  /* .rightcolumn_float, .rightcol {float:right;width:2in;margin:.25in 0 .25in .25in;border-left:1px #ccc solid;padding-left:.125in;}
  .rightcolumn_float img, .rightcol img {max-width:2in;} */
  .uvmtable {
    border: 1px #ccc solid;
    border-collapse: collapse;
  }

  .uvmtable th {
    border: 1px #666 solid;
    padding: .125in;
  }

  .uvmtable td {
    border: 1px #ccc solid;
    padding: .125in;
  }

  #box {
    border-top: 1px #ccc solid;
    border-bottom: 1px #ccc solid;
  }

  .imageleft {
    float: left;
    margin-right: .125in;
  }

  .imageright {
    float: right;
    margin-left: .125in;
  }

  ul.with_img {
    padding: 0;
  }

  ul.with_img li {
    list-style: none;
    overflow: hidden;
    margin-bottom: .125in;
  }

  ul.with_img li img {
    float: left;
    margin-right: .125in;
  }
}
/* SMACSS theme rules */
/*  Partials for uvmbase theme */
/**** Colors for Colleges ****/
/* start legacy, should not be in use */
/* end legacy, should not be in use */
/* 
	
.icon-slider-left:before {
  content: "\e299";
}

.icon-slider-right:before {
  content: "\e297";
}
*/
#main:before, #main:after {
  content: "";
  display: table;
}
#main:after {
  clear: both;
}

.singlecol, .centercol, .centercol_small, .rightcol, .leftcol, .bottomrow, .toprow, .two_equalcol_1, .two_equalcol_2 {
  padding-left: 20px;
  padding-right: 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  clear: left;
}

.toprow, .bottomrow {
  padding-right: 0;
  padding-left: 0;
}

@media only screen and (min-width: 800px) {
  #main:before, #main:after {
    content: "";
    display: table;
  }
  #main:after {
    clear: both;
  }

  .centercol, .centercol_small, .rightcol, .leftcol, .toprow, .bottomrow, .two_equalcol_1, .two_equalcol_2 {
    padding-left: 20px;
    padding-right: 20px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }

  .wrap_l {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }

  .wrap_r {
    float: left;
    width: 16.66667%;
    margin-left: 33.33333%;
    margin-right: -50%;
  }

  .toprow, .bottomrow {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    padding-right: 0;
    padding-left: 0;
  }

  .bottomrow {
    clear: both;
  }

  .leftcol {
    float: left;
    width: 16.66667%;
    margin-left: 0%;
    margin-right: -16.66667%;
  }

  .centercol {
    float: left;
    width: 75%;
    margin-left: 0%;
    margin-right: -75%;
    clear: left;
  }

  .centercol_small {
    float: left;
    width: 58.33333%;
    margin-left: 16.66667%;
    margin-right: -75%;
    clear: none;
  }

  .rightcol {
    float: left;
    width: 25%;
    margin-left: 75%;
    margin-right: -100%;
    clear: right;
  }

  .two_equalcol_1 {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
    padding-left: 0;
  }

  .two_equalcol_2 {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
    clear: right;
    padding-right: 0;
  }

  .singlecol {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .singlecol div.imageleft {
    margin-left: -80px !important;
  }
  .singlecol .pane-node-field-image.imageleft + .pane-node-field-caption {
    margin-left: -80px !important;
  }

  #footer, #header {
    clear: left;
    float: left;
    width: 75%;
    margin-left: 0%;
    margin-right: -75%;
    float: none;
  }
}
/* admin interface issue in FF */
ul.tabs-primary {
  overflow: visible;
  clear: both;
  float: none;
  width: 100% !important;
  height: 30px;
  margin-top: 8px;
}

ul.tabs-primary li:before {
  content: "" !important;
}

body {
  font-weight: 200;
  color: #444444;
  width: 100%;
  padding: 0;
  margin: 0;
  background: #ececec;
  /* background:#fff; */
}

#page {
  overflow: hidden !important;
}

#page, #main {
  margin: 0 auto;
  width: 100%;
  padding: 0;
}

#main {
  margin: 0;
  width: calc(100% - 1px);
  background: transparent;
  background: #fff;
  border-left: 1px solid #ccc;
}

#header {
  background: #ececec;
  margin: 0;
  padding: 0;
}

#name-and-slogan {
  display: none;
}

a#logo {
  width: 100%;
  height: inherit;
  background: transparent;
  margin: 0 auto;
  margin-top: -25px;
  margin-top: -51px;
  padding-top: 0;
  padding-bottom: 1.2em;
  float: left;
  margin-left: 50px;
}

img.header__logo-image {
  width: 250px;
  height: inherit;
  background: transparent;
  float: left;
}

#content {
  margin: 0 auto;
  padding: 0;
  background: #fff;
}

/* ==============================================================
   TOP BAR 
   =============================================================*/
#topbar_wrapper {
  width: 100%;
  clear: both;
}

/***** MAIN MENU ******/
div.region-navigation {
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  /* background:#ccc; */
}

/*  --- Action ----  */
.js .menu_container, .js .anchor-link {
  background: none;
  padding: 0;
  display: block;
  margin: 0;
  float: left;
}

.js .menu_container {
  width: 100%;
  height: 60px;
  clear: both;
  background: #fff;
  overflow: hidden;
}

.js .anchor-link {
  background: transparent;
  background: #007155;
  padding: 10px 5px;
  margin-left: 0;
  height: 41px;
  width: 32px;
  color: transparent;
  float: left;
  overflow: hidden;
}

.js .anchor-link:before {
  font-family: 'socialmedia';
  content: "\e92c";
  padding: 10px 0;
  height: 40px;
  float: left;
  font-size: 1.8em;
  color: #fff;
  margin-left: 0;
}

#main, #header, .anchor-link {
  float: left;
}

#header {
  padding: 0;
}

.js #header {
  margin-left: -200% !important;
}

.js .activatesidemenu #header {
  margin-left: -100% !important;
  min-width: 200px;
  width: 70%;
  margin-right: -70%;
  /* makes menu work for Safari, chrome */
}

.js .activatesidemenu #main {
  margin-right: -70%;
  margin-left: 71%;
  /* makes menu work for firefox */
}

.js .activatesidemenu .anchor-link {
  margin-left: 70%;
}

.js .menu-name-main-menu ul ul {
  display: none;
}

.js #toolswrapper {
  display: none;
}

.js .activatesidemenu .menuactive + div#toolswrapper {
  display: block;
}

.js .menu-name-main-menu .itemactive ul {
  display: block;
}

.js .menu-name-main-menu .itemactive span:after {
  content: "";
}

/* --- APPEARANCE --- */
.menu-name-main-menu {
  background: #ececec;
  padding-top: 4em;
}

.menu-name-main-menu ul {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

.menu-name-main-menu ul li {
  display: block;
  font-size: 0.88888888888889em;
  letter-spacing: .02em;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  padding: 0;
  float: left;
  width: 100%;
  clear: both;
}

.menu-name-main-menu ul li.itemactive {
  border-bottom: 0;
}

.menu-name-main-menu li span {
  padding: 1.9em 4%;
  float: left;
}

.menu-name-main-menu li span:after {
  font-family: 'socialmedia';
  content: "";
  speak: none;
  font-style: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: 5px;
  font-size: 1.25em;
  position: absolute;
  text-indent: 0;
}

.menu-name-main-menu ul li.itemactive span:after {
  content: "";
}

.menu-name-main-menu ul li ul {
  margin-top: .8em;
  clear: left;
}

.menu-name-main-menu ul li ul li {
  font-size: .85em;
  font-weight: 200;
  line-height: 1.9em;
  text-transform: none;
  margin: 0;
  padding: .8em 8%;
  width: 84%;
}

/* THIS IS SUPPOSED TO EXTEND THE DRAWER BACKGROUND COLOR THE FULL HEIGHT 
body.activatesidemenu #main:before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; width: 100%; height: 100%;	background-color: #4e4e4e; }  */
/***** TOOLS and SEARCH ********/
#mobiletools {
  float: left;
  width: 100%;
  clear: both;
  background: #fff;
}

#topnav {
  background: #007155;
  position: relative;
  z-index: 44;
  font-weight: 500;
  display: inline;
  width: 100%;
  margin: 0;
  float: left;
  overflow: visible;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  height: 40px;
  padding: 10px 0;
}

#topnav li, #topnav li a {
  color: #fff;
}

#topnav li {
  cursor: pointer;
  float: none;
  display: inline;
  overflow: visible;
  margin: 0;
  width: 29%;
  padding: .2em 0;
}
#topnav li:after {
  content: "|";
  padding: 0 2px;
}

#topnav li.myuvm:after {
  content: "";
}

#topnav a {
  display: inline-block;
  text-decoration: none;
  padding: 1.25em 2% .75em;
  color: #fff;
  font-size: .7em;
}

#topnav li span {
  width: 100%;
  display: inline;
  text-decoration: none;
  cursor: pointer;
  width: 96%;
  padding-right: 2%;
  padding-left: 2%;
  font-size: .7em;
}

#topnav li.apply a {
  padding-left: 4%;
}

#topnav li span:after {
  font-family: 'socialmedia';
  content: "";
  speak: none;
  font-style: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.25em;
  text-indent: 0;
}

ul#topnav.menuactive li span:after {
  content: "" !important;
}

#toolswrapper {
  float: left;
  clear: both;
  overflow: visible;
  display: block;
  position: relative;
  z-index: 44;
  padding: 1em 4%;
  background: #f5f5f5;
}

#toolswrapper a {
  display: inline-block;
  text-decoration: none;
  padding: 1em 1em .75em;
  color: #666;
}

#search {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  float: left;
  display: block;
}

#search h2 {
  font-size: 1em;
  font-weight: 400;
  color: #444;
  text-transform: none;
  margin-bottom: -.2em;
}

#gcsepeople, #az {
  padding: 1em 2%;
  width: 45%;
  float: left;
  width: 96%;
}

#az ul, #az li {
  background: #e2e2e2;
  padding: 0;
  margin: 0;
}

#az #azlist {
  margin-top: 8px;
}

#az li {
  text-align: center;
  background: transparent;
}

#toolswrapper #az a {
  text-decoration: none;
  color: #666;
  padding: 0;
  width: 2.5em;
  padding: 1em 1em;
  font-weight: 500;
  width: 2em;
}

/* Search boxes */
#search tbody, #search tr, #search td {
  border: 0 !important;
}

table.gsc-search-box td.gsc-input, table.people-search-box td.people-input {
  padding: 0px !important;
}

input.people-search-button, input.gsc-search-button {
  background-color: #007155 !important;
  border: 1px solid #007155 !important;
  border-bottom-left-radius: 0 !important;
  border-radius: 2px;
  border-top-left-radius: 0 !important;
  font-family: inherit;
  font-size: 0.8rem !important;
  font-weight: 300 !important;
  letter-spacing: .1em;
  color: #FFFFFF;
  height: 27.5px !important;
  min-width: 54px !important;
  padding: 0 8px !important;
  margin-left: 0px !important;
  text-transform: uppercase;
}

div.gsc-input-box table td {
  padding: 0px !important;
  padding-left: 5px !important;
  /*  margin: -1.25em 0 !important; */
}

button.gsc-search-button {
  /* min-width:50px !important; */
  box-shadow: 0px 0px 0px #ccc !important;
}

/* GOOGLE SEARCH */
table.gsc-search-box {
  background: 0 !important;
  border: 0 !important;
  width: 99.5% !important;
}

.pac-item {
  font-family: "Roboto", sans-serif !important;
}

table.gsc-search-box .gsc-input-box {
  float: left;
  width: 100%;
  height: 32px;
}

table.gsc-search-box input.gsc-input {
  float: left;
  font-family: "Roboto", sans-serif !important;
  /*	background-image:none !important; */
  border-right: 0 !important;
  width: 100% !important;
  padding: 3.5px 6px;
  font-size: 21px !important;
  background-color: transparent !important;
}

table.gsc-search-box td.gsc-search-button {
  padding: 0;
}

header .gsc-search-box-tools .gsc-search-box td.gsc-input {
  padding-right: 0 !important;
}

div#___gcse_0 div {
  border: 0;
}

.cse form.gsc-search-box, form.gsc-search-box {
  padding: 0 0 1em 0 !important;
  background: none !important;
  border: 0 !important;
  padding-left: 0;
}

/* DIRECTORY SEARCH */
#people-input-suggestions {
  margin-top: -10px;
}

#people-input-suggestions ul li {
  border-bottom: 0;
}

table.gsc-completion-container {
  background: #f93;
  border: 0;
  background: #fff;
  margin-top: -4px;
}
table.gsc-completion-container td.gssb_a {
  border: 0;
}

.gsc-completion-title {
  color: #f25;
}

table.people-search-box {
  border-spacing: 0;
  border-style: none;
  border-width: 0;
  margin-bottom: 2px;
  width: 100%;
  padding-top: 8px;
}

table.people-search-box td.people-input {
  padding: 0 2px 0 0;
}

table.people-search-box td {
  vertical-align: middle;
  border: 0;
}

input.people-input {
  border: 1px solid #ccc;
  border-right: 0;
  font-family: inherit;
  font-size: 16px;
  padding: 3px 6px;
  width: 100%;
}

td.people-search-button {
  width: 1%;
  padding: 0;
}

td.people-clear-button {
  width: 14px;
}

div.people-clear-button {
  background: url("//www.google.com/uds/css/clear.gif") no-repeat center center;
  cursor: pointer;
  display: inline;
  margin-left: 4px;
  margin-right: 4px;
  padding-left: 10px;
  text-align: right;
}

/* =================================================================
   Base Layout
   ============================================================== */
.intro {
  font-size: 1.13333333333333em;
  line-height: 1.8888888em;
  padding: 1em 20px;
}

div.fullpage_line {
  clear: both;
  border-bottom: 1px solid #ccc;
  width: 100%;
}

.rightcol {
  border: 1px solid #ccc;
  background: #f5f5f5;
  font-size: 0.88888888888889em;
}

.rightcol .pane-views, .rightcol .pane-block, .rightcol .pane-entity-field, .rightcol .pane-views-panes {
  border-top: 1px solid #ccc;
  clear: both;
  margin-left: -20px;
  width: 100%;
  padding: 1em 20px;
  float: left;
}

div.ui-accordion-content .rightcol .pane-block {
  padding: 0em 20px;
}

.rightcol > .panel-pane:first-child {
  border: 0;
}

.rightcol .pane-views .pane-entity-field {
  border-top: 0;
}

.centercol h2 {
  margin: 1em 0 .6em;
}

#content .leftcol {
  font-size: 0.88888888888889em;
  /* width:92%; 
  padding:1.4em 4%; */
  line-height: 1em;
  padding-bottom: 1.4em;
  padding-top: 1.4em;
}

.leftcol .box {
  outline: 1px #ccc solid;
  background: #f5f5f5;
  padding: 1em;
  margin-bottom: 1em;
}

.leftcol h2 {
  color: #275e95;
  font-size: 1.11111111111111em;
}

.leftcol ul, .rightcol ul {
  margin-left: 0;
  padding-left: 0;
}

.leftcol ul li, .rightcol ul li {
  margin-bottom: .8em;
}

#content .centercol, #content .centercol_small {
  /* width:92%; 
  padding:1.4em 4%; */
  padding-top: 1.4em;
  padding-bottom: 1.4em;
}

.video-container, .player {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 2em;
  height: 0;
  overflow: hidden;
}

.topbanner1200x390 .player {
  padding-bottom: 26%;
}

.video-container iframe,
.video-container object,
.video-container embed,
.player iframe,
.player object,
.player embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pane-node-field-embedded-video {
  width: 51%;
  width: 100%;
  height: inherit;
  float: left;
  margin-right: 5%;
  margin: 0;
  margin-bottom: 1.4em;
  padding: 0;
}
.pane-node-field-embedded-video iframe {
  width: 100%;
  margin: 0 auto;
}
.pane-node-field-embedded-video .video-embed-description {
  padding: .6em 4% 0;
  font-style: italic;
}

.tint_iframe {
  height: 300px;
  width: 80%;
  margin: 0 10%;
}

#content .pane-uvm-story-view .uvm_stories_page ul, #content .pane-faculty-stories-panel-pane-1 .faculity-only ul {
  list-style: none !important;
  width: 100%;
  padding: 0;
  margin: 0;
}
#content .pane-uvm-story-view .uvm_stories_page li, #content .pane-faculty-stories-panel-pane-1 .faculity-only li {
  padding: 1em 4%;
  margin: 0;
  float: left;
}
#content .pane-uvm-story-view .uvm_stories_page img, #content .pane-faculty-stories-panel-pane-1 .faculity-only img {
  width: 100%;
  padding-bottom: 0;
}

.storifyscroll {
  height: 380px;
  overflow: scroll;
  width: 80%;
  float: left;
  border: 1px solid #ccc;
}

@media (min-width: 200px) and (max-width: 650px) {
  .imageleft, .imageright {
    float: left;
    margin: 0 0 .8em;
    width: 100% !important;
    height: inherit !important;
  }
}
@media only screen and (min-width: 500px) {
  a#logo {
    margin-top: -57px;
  }

  img.header__logo-image {
    width: 280px;
  }

  .js .activatesidemenu #header {
    width: 54%;
    margin-right: -54%;
  }

  .js .activatesidemenu #main {
    margin-right: -54%;
    margin-left: 55%;
  }

  .js .activatesidemenu .anchor-link {
    margin-left: 54%;
  }

  #topnav a {
    padding: 1.25em 5% .75em;
  }

  #topnav a, #topnav li span {
    font-size: .8em;
  }
}
@media only screen and (min-width: 650px) {
  img.header__logo-image {
    width: 400px;
    height: inherit;
    background: transparent;
  }

  .js .activatesidemenu #header {
    width: 40%;
    margin-right: -40%;
  }

  .js .activatesidemenu #main {
    margin-right: -40%;
    margin-left: 41%;
  }

  .js .activatesidemenu .anchor-link {
    margin-left: 40%;
  }

  .menu-name-main-menu ul span, .menu-name-main-menu ul li ul li {
    font-size: .95em;
  }

  #content .uvm_stories_page li {
    width: 42%;
    padding: 1.5em 4% 1em;
  }
  #content .uvm_stories_page .views-row-odd {
    clear: left;
  }

  .imageleft {
    float: left;
    width: 50% !important;
    height: inherit;
    margin: 0 20px .6em 0;
  }

  .imageright {
    float: right;
    width: 50% !important;
    height: inherit;
    margin: 0 0px .6em 20px;
  }
}
@media only screen and (min-width: 800px) {
  body {
    background: #fff;
  }

  #main {
    margin: 0 20px;
    width: calc(100% - 40px);
    background: transparent;
    border-left: 0;
  }

  .js .menu_container, .js .active-link {
    display: none;
  }

  .js .menu-name-main-menu ul.menuactive li ul {
    display: block;
  }

  .js .menuactive + div#toolswrapper {
    display: block;
  }

  .menu-name-main-menu ul.menuactive li span:after {
    content: "";
  }

  body#theme-uvmbase #header {
    background: #f5f5f5;
    border-top: 60px solid #a7d233;
    padding-bottom: 0;
    margin-left: 0 !important;
    width: 100%;
  }

  body#theme-uvmsubsites #header, body#theme-ugadmissions #header {
    background: #f5f5f5;
    border-top: 60px solid #66ac47;
    padding-bottom: 0;
    margin-left: 0 !important;
    width: 100%;
  }

  #page {
    width: 100%;
    margin: 0 auto;
    max-width: none;
  }

  #main {
    margin: 0 auto !important;
    float: none;
    max-width: 1200px;
  }

  a#logo {
    width: 100%;
    margin-top: -25px;
    margin-left: 0;
    padding-bottom: 1.7em;
    float: left;
    height: inherit;
  }

  img.header__logo-image {
    margin-left: 0;
  }

  #content {
    max-width: 1200px;
    /* background:#fff; */
  }

  #mobiletools {
    display: none;
  }

  #topbar_wrapper {
    display: block;
    margin-left: 0;
    padding: 0;
    margin: 0 auto;
    margin-top: -60px;
    max-width: 1200px;
    background: transparent;
    position: relative;
    z-index: 44;
  }

  div.region-navigation {
    width: 72%;
    width: calc(80% - 90px);
    float: left;
    margin: 0;
    margin-left: 90px;
    padding: 0;
    /* background:transparent; */
  }

  .anchor-link {
    display: none;
  }

  .menu-name-main-menu {
    background: none;
    width: 100%;
    padding: 0;
    margin: 1.5em 0 -1.5em 0;
    float: left;
    clear: none;
  }

  .menu-name-main-menu ul {
    list-style: none;
  }

  .menu-name-main-menu ul li {
    width: 18%;
    overflow: hidden;
    background: transparent;
    display: inline-block;
    text-align: left;
    padding: 0 2% 0 0;
    margin: 0;
    border: 0;
    clear: none;
  }

  .menu-name-main-menu ul li span {
    height: 3em;
    width: calc(100% - 10px);
    display: block;
    padding: .2em 1%;
    padding-left: 10px;
    text-decoration: none;
    font-size: .85em;
    cursor: pointer;
  }

  .menu-name-main-menu ul span, .menu-name-main-menu ul li ul li {
    font-size: .85em;
  }

  .menu-name-main-menu ul li ul {
    float: left;
    background: transparent;
    padding-bottom: 0em;
    width: 100%;
    margin-top: .3em;
    border-left: 1px #DDD solid;
    padding-left: 10px;
    margin-bottom: 2em;
  }

  .menu-name-main-menu ul li ul li {
    display: block;
    float: left;
    clear: left;
    padding: .5em 0;
    width: 100%;
    margin-bottom: 1.1em;
  }

  /* overwrites _responsive */
  #navigation {
    /* Move the navbar up inside #main's padding. */
    position: relative;
    top: 0;
    height: inherit;
    width: 100%;
  }

  #topnav #cse-search-form {
    display: table-cell;
    vertical-align: middle;
  }

  /***** TOOLS and SEARCH ********/
  ul#topnav {
    width: 17%;
    width: calc(20% - 2px);
    margin-top: 0;
    float: right;
    overflow: visible;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline;
    background: transparent;
    float: right;
    clear: none;
    padding-right: 0;
    padding: 0;
    margin: 0;
  }

  #topnav li {
    font-size: .85em;
    cursor: pointer;
    float: left;
    display: inline;
    overflow: hidden;
    margin: 0 !important;
    width: 39%;
    width: calc(40% - 1px);
    padding: 26px 0 14px 0;
    height: 20px;
    text-align: center;
  }
  #topnav li:after {
    content: "";
    padding: 0;
  }

  body#theme-uvmbase #topnav li {
    background: #007155;
  }

  body#theme-uvmsubsites #topnav li, body#theme-ugadmissions #topnav li {
    background: #007155;
  }

  body#theme-uvmbase #topnav li.apply {
    background: #007155;
  }

  body#theme-uvmbase #uvm-search, body#theme-uvmsubsites #uvm-search, body#theme-ugadmissions #uvm-search {
    border-left: #92bd3f 1px solid;
  }

  #topnav li.myuvm {
    border-left: #92bd3f 1px solid;
    width: 29%;
  }

  #topnav a, #topnav li span {
    text-align: center;
    display: inline-block;
    text-decoration: none;
    padding: 0;
    float: left;
    color: #fff;
    vertical-align: middle;
    margin: 0 auto;
    width: 100%;
    cursor: pointer;
    font-size: .8em;
  }

  #topnav li.apply {
    width: 30%;
    width: 29%;
    width: 29.5%;
  }

  #uvm-search {
    padding: 1.5em 0em .75em;
    color: #fff;
  }

  #topnav li span {
    width: 100%;
    margin-top: -2px !important;
    padding-right: 5%;
    padding-left: 5%;
    padding-left: 2px;
  }

  #topnav li span:after {
    font-family: 'socialmedia';
    content: "";
    padding-left: 2px;
  }

  #toolswrapper {
    padding: 1.2em 20px 2em 20px;
    background: none;
  }

  #gcsepeople, #az {
    padding: 1em 2% 1em 0;
    width: 48%;
  }

  #az {
    padding: 1em 0 1em 2%;
  }

  #toolswrapper a {
    display: inline-block;
    text-decoration: none;
    padding: 1em 1em .75em;
    color: #666;
  }

  #toolswrapper #az a {
    padding: 1em .8em;
    width: 1em;
    font-weight: 500;
    font-size: .9em;
  }

  #search {
    margin: 0 auto;
    padding: 0;
    float: left;
    display: block;
  }

  /* =================================================================
     Base Layout
     ============================================================== */
  /* For generic templates */
  /* this could be integrated with the above top tier style - testing is needed */
  body.node-type-basic-interior-page-1 .rightcol {
    background: #fff;
  }

  .intro {
    padding: 0 0 1em;
  }

  #content .centercol {
    padding-left: 0;
  }

  #content .centercol_small {
    padding-top: 1.2em;
  }

  .centercol_small ul li {
    margin-bottom: .8em;
  }

  .half-size {
    width: 55%;
    float: left;
  }

  #content div.leftcol {
    font-size: 0.88888888888889em;
    padding-left: 0;
  }
  #content div.leftcol h4 {
    line-height: 1.2em;
  }
  #content div.leftcol h3 {
    text-transform: none !important;
    color: #7799bb;
    line-height: 1.2em;
    margin-bottom: 1em;
  }
  #content div.leftcol p {
    font-size: .95m;
    line-height: 1.7em;
    /*  1.4 */
    margin-bottom: .7em;
  }

  .leftcol .box {
    padding: 0;
    background: none;
    outline: none;
  }

  .imageleft {
    width: auto !important;
    margin: 0 20px 1em 0;
  }

  .imageright {
    width: auto !important;
    margin: 0 0 1em 20px;
  }

  /* Burlington Page to be MOVED */
  #burlington_wrapper {
    padding-top: 1em;
  }
  #burlington_wrapper img {
    width: 68%;
    float: left;
    padding: 0 4% 1em 0;
  }

  #content ul.sm_column {
    list-style: none !important;
    width: 28%;
    padding: 0 0 .6em;
    margin: 0;
    float: right;
  }
  #content ul.sm_column li {
    margin: 0;
    padding: 0;
  }
  #content ul.sm_column li ul li {
    margin-left: 20px;
    padding: 0;
    font-size: .85em;
  }

  .storifyscroll {
    height: 480px;
    overflow: scroll;
    width: 100%;
    float: right;
    border: 0;
  }

  .video-container, .player {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 2em;
    height: 0;
    overflow: hidden;
    /*	float:left;  explore deleting this */
    /* margin-right:2%; */
    margin-bottom: .4em;
  }

  .topbanner1200x390 .player {
    padding-bottom: 38%;
  }

  .pane-node-field-embedded-video {
    width: 51%;
    margin-right: 4%;
    margin-bottom: 1.4em;
  }
  .pane-node-field-embedded-video .video-embed-description {
    padding: .6em 0 0;
  }

  .tint_iframe {
    height: 300px;
    width: 100%;
    margin: 0;
  }
}
@media only screen and (min-width: 960px) {
  .menu-name-main-menu ul li span, #topnav a, #topnav li span {
    font-size: .9em;
  }

  .topbanner1200x390 .player {
    padding-bottom: 30%;
  }
}
@media only screen and (min-width: 1200px) {
  #toolswrapper {
    padding: 1.2em 0 2em 0;
  }

  .topbanner1200x390 .player {
    padding-bottom: 56.25%;
  }
}
#theme-uvmsubsites.section-cas .rightcol div.pane-node-field-interior-open-sidebar:first-child, #theme-uvmsubsites.section-cas .rightcol div.newslist_with_images, #theme-uvmsubsites.section-cals .rightcol div.pane-node-field-interior-open-sidebar:first-child, #theme-uvmsubsites.section-cals .rightcol div.newslist_with_images, #theme-uvmsubsites.section-business .rightcol div.pane-node-field-interior-open-sidebar:first-child, #theme-uvmsubsites.section-business .rightcol div.newslist_with_images, #theme-uvmsubsites.section-cess .rightcol div.pane-node-field-interior-open-sidebar:first-child, #theme-uvmsubsites.section-cess .rightcol div.newslist_with_images, #theme-uvmsubsites.section-cems .rightcol div.pane-node-field-interior-open-sidebar:first-child, #theme-uvmsubsites.section-cems .rightcol div.newslist_with_images, #theme-uvmsubsites.section-rsenr .rightcol div.pane-node-field-interior-open-sidebar:first-child, #theme-uvmsubsites.section-rsenr .rightcol div.newslist_with_images, #theme-uvmsubsites.section-cnshs .rightcol div.pane-node-field-interior-open-sidebar:first-child, #theme-uvmsubsites.section-cnshs .rightcol div.newslist_with_images, #theme-uvmsubsites.section-honorscollege .rightcol div.pane-node-field-interior-open-sidebar:first-child, #theme-uvmsubsites.section-honorscollege .rightcol div.newslist_with_images, #theme-uvmsubsites.section-graduate .rightcol div.pane-node-field-interior-open-sidebar:first-child, #theme-uvmsubsites.section-graduate .rightcol div.newslist_with_images, #theme-uvmsubsites.section-extension .rightcol div.pane-node-field-interior-open-sidebar:first-child, #theme-uvmsubsites.section-extension .rightcol div.newslist_with_images {
  padding-top: 80px !important;
  background: #fff url(/sites/default/files/generic-graphicbar-300.jpg) !important;
  background-repeat: no-repeat !important;
}

#theme-uvmsubsites .rightcol {
  border-top: 12px solid #007155;
}

html {
  font-size: 17px;
  font-family: "Roboto", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  line-height: 24px;
  font-weight: 400;
}

html * html {
  font-size: 112.5%;
}

html html {
  line-height: 0.33333em;
}

@media (min-width: 601px) {
  html {
    font-size: 100%;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 106.25%;
  }
}
@media (max-width: 800px) {
  h1, .field-subhead {
    padding: 1.3em 0 1.3em 16px;
  }
}
/* list links */
a:hover, a:active {
  -webkit-transition: all .15s ease-in-out;
  -moz-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

body h1:first-of-type, h4, h5, h6, #unitwebsitename h1 em, h3 {
  font-family: "Roboto", sans-serif;
}

h2, h1:nth-child(even) {
  font-family: "Oswald", sans-serif;
}

h1:nth-child(even) {
  font-size: 1.6em !important;
  font-weight: 200;
}

h2, h4, h5, h6 {
  font-weight: 400;
}

h1 {
  color: #01533f;
  font-size: 1.30769230769231em;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.3em;
  margin: 1em auto 0.54545em;
  margin: 1.3em auto 1em;
  text-transform: uppercase;
}

h2, .views-accordion-header {
  color: #007155;
  font-size: 1.3em;
  line-height: 1.5em;
  margin: 0 auto 0.42857em;
  letter-spacing: 0.03em;
}
h2 a:link, h2 a:visited, .views-accordion-header a:link, .views-accordion-header a:visited {
  color: #007155;
  border-bottom: 1px dashed #007155;
}

h3 {
  font-size: 1.11111111111111em;
  line-height: 1.5em;
  margin: 0 auto 0.54545em;
  color: #66ac47;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
h3 a:link, h3 a:visited {
  color: #66ac47;
  border-bottom: 1px dashed #66ac47;
}

h4 {
  color: #444444;
  font-size: 1.05555555555556em;
  line-height: 1.4em;
  margin: 0 auto 0.54545em;
  letter-spacing: 0.04em;
}
h4 a:link, h4 a:visited {
  color: #444444;
  border-bottom: 1px dashed #444444;
}

h5 {
  font-size: 0.9em;
  line-height: 1.7em;
  margin: 0 auto 0.66667em;
  color: #888;
  text-transform: uppercase;
}
h5 a:link, h5 a:visited {
  color: #888;
  border-bottom: 1px dashed #888;
}

h6 {
  font-size: 0.8em;
  line-height: 1.5em;
  margin: 0 auto 0.66667em;
  color: #444444;
  text-transform: uppercase;
}
h6 a:link, h6 a:visited {
  color: #444444;
  border-bottom: 1px dashed #444444;
}

.middle_wrapper h3.pane-title {
  background: none;
}

#footer_3 h4 {
  color: #fff;
  text-transform: uppercase;
}

/* .pane-arts-events h3.pane-title, div .node-sidebar h3, .pane-views-uvm-story-view-block h3.pane-title, .pane-uvm-news-page-list h3.pane-title, .pane-special-slideshows h3.pane-title{
	*/
.node-uvm-news-story .field-featured-photo-caption {
  font-size: 0.9em;
}

/*
h3.pane-title, .contextual-links-region h3, div.pane-node-field-research h3,  div.node-uvm-news-story .field-label, .node-uvmweb-group h3.field-label{
	color:$uvm16090-deepblue;

}
*/
.bleed_blue h3.pane-title {
  color: #1375af;
  background-color: #fff;
}

.centercol h3.field-label, .accordion_wrapper .rightcol h3 {
  background-color: #a7d233;
}

h3.field-label, .node-219114 .centercol h3.field-label, .node-222959 .centercol h3.field-label, div.pane-node-field-research h3.field-label {
  background-color: transparent;
}

ul {
  list-style-type: none;
  list-style: none outside url("../images/bullet3x.png");
  padding-left: 0px;
}

ul.no-bullet {
  list-style-image: none !important;
}
ul.no-bullet li {
  padding-left: 0;
  margin-left: 0 !important;
}
ul.no-bullet ul {
  margin-left: 30px !important;
}

/* Abbreviations */
abbr[title] {
  border-bottom: 0;
}

/* hacky exclusion of border on linked images */
a img {
  margin-bottom: -6px;
}

body.node-type-uvmadmissions-landing-page #content .topbanner .field-caption p a, body.node-type-uvm-admissions-marketing #content .topbanner .field-caption p a, .top_wrapper {
  border-bottom: 0;
}

#content p, #content ul, #content ol {
  font-size: 1em;
  line-height: 1.66667em;
  margin: 0 auto 1.33333em;
  font-weight: auto;
  color: auto;
}
#content .rightcol ol {
  padding-left: 15px;
}
#content li {
  margin: .25em 0 .8em 1.6em;
  line-height: 1.6em;
}
#content ol li {
  margin: 0 auto 0.66667em;
  font-weight: auto;
  color: auto;
  margin-left: .6em;
}
#content li ul li {
  margin-top: 0.33333em;
  margin-bottom: 0.33333em;
}
#content address {
  font-style: normal;
}
#content figcaption {
  font-size: 0.77778em;
  line-height: 1.71429em;
  margin: 0 auto 1.71429em;
  font-weight: auto;
  color: #888;
}
#content strong {
  font-weight: 500;
}

#content p.small_text {
  font-size: .85em;
}

p.semi_bold, .semi_bold {
  font-weight: 400;
}

p.pullquote1,
p.pullquote1_c,
p.pullquote1_l {
  font-family: Oswald, sans-serif;
  font-weight: 400;
  font-size: 24px !important;
  margin-bottom: 40px;
  letter-spacing: .04px !important;
  line-height: 32px !important;
  color: #01533f;
}

p.pullquote2,
p.pullquote2_c,
p.pullquote2_l {
  font-family: Oswald, sans-serif;
  font-weight: 400;
  font-size: 24px !important;
  margin-bottom: 40px;
  letter-spacing: .04px;
  line-height: 32px !important;
  color: #444;
}

p.pullquote2_c,
p.pullquote1_c {
  margin: 0 auto;
  text-align: center;
}

p.pullquote1:before,
p.greenBar,
p.pullquote1_c:before {
  content: "";
  /* This is necessary for the pseudo element to work. */
  display: block;
  /* This will put the pseudo element on its own line. */
  margin: 0 auto;
  /* This will center the border. */
  margin-bottom: 24px;
  width: 48px;
  /* Change this to whatever width you want. */
  padding-top: 32px;
  /* This creates some space between the element and the border. */
  border-bottom: 8px solid #b2d23e;
  /* This creates the border. Replace black with whatever color you want. */
}

p.pullquote1_l:before {
  content: "";
  /* This is necessary for the pseudo element to work. */
  display: block;
  /* This will put the pseudo element on its own line. */
  margin-bottom: 24px;
  width: 48px;
  /* Change this to whatever width you want. */
  padding-top: 32px;
  /* This creates some space between the element and the border. */
  border-bottom: 8px solid #b2d23e;
  /* This creates the border. Replace black with whatever color you want. */
}

#content blockquote {
  padding: .6em 0px;
}
#content .rightcol .pull_quote {
  padding: 1.4em 20px;
}
#content h4.pull_quote {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 24px !important;
  letter-spacing: .04px;
  line-height: 32px !important;
  color: #66ac47;
}
#content h4.pull_quote a:link, #content h4.pull_quote a:visited {
  color: #66ac47;
  border-bottom: 1px dashed #66ac47;
}
#content h5.pull_quote {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 24px !important;
  letter-spacing: .04px;
  line-height: 32px !important;
  text-transform: uppercase;
}

#content p.dashed_line {
  margin: 0;
  padding: 0;
  border-top: 1px dashed #ccc;
}

#content p.solid_line {
  margin: 0;
  padding: 0;
  border-top: 1px solid #ccc;
}

#content a.readmore {
  /* float:left; */
  font-size: .8em;
  font-weight: 500;
  text-transform: uppercase;
  padding-top: 1.6em;
}

/* Hides the ugly pdf icon on pdf links */
img.file-icon {
  display: none;
}

.cke_combopanel {
  border: 1px solid #8f8f73;
  border-top-left-radius: 0;
  width: 400px !important;
  height: 170px;
}

div.pane-uvm-news-page-list h3.pane-title, div.newslist_with_images h3.pane-title {
  color: #007155;
}

body.front h1#page-title {
  position: absolute;
  left: -999em;
}

/* Links *
body.front #content{

a:link, a:visited {
  color: #444;
}

}

/*   */
#four_square_wrapper {
  width: 100%;
  float: left;
  clear: both;
}
#four_square_wrapper .view-display-id-block_3 {
  padding: 0;
}
#four_square_wrapper .view-content {
  width: 100%;
  float: left;
}
#four_square_wrapper table.views-view-grid {
  background: #fff;
  margin: 0;
  border: 0;
  padding: 0;
  width: inherit;
  float: left;
  height: 100%;
}
#four_square_wrapper .view-display-id-block_3 {
  border-right: 0;
  width: 100% !important;
  float: left;
}
#four_square_wrapper .view-display-id-block_3 td.col-2, #four_square_wrapper .view-display-id-block_3 td.col-1 {
  background: #f5f5f5;
  width: 50%;
  height: 50% !important;
  border-right: 10px solid #fff;
  border-left: 10px solid #fff;
  vertical-align: top;
  padding: 0;
}
#four_square_wrapper .view-display-id-block_3 td.col-2 img, #four_square_wrapper .view-display-id-block_3 td.col-1 img {
  width: 100%;
  margin: 0;
  height: inherit;
}
#four_square_wrapper .view-display-id-block_3 td.col-1 {
  border-left: 0;
}
#four_square_wrapper .view-display-id-block_3 td.col-2 {
  border-right: 0;
}
#four_square_wrapper tr.row-2 {
  border-top: 8px solid #fff;
  border-bottom: 8px solid #fff;
}
#four_square_wrapper td div.views-field-field-short-title {
  height: 60px;
  overflow: hidden;
}
#four_square_wrapper td div.views-field-field-short-title div.field-content {
  line-height: 1.1em;
  padding: .4em 4%;
  width: 92%;
  font-size: .9em;
}

#featured_image_wrapper {
  width: 100%;
  margin: 0 0 1.2em 0;
  margin: 0;
  padding: 0;
  float: left;
  clear: both;
}
#featured_image_wrapper h4 {
  height: 19px;
  background: #444;
  font-size: 0.75em;
  font-weight: 600;
  color: #FFF;
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: -26px;
  float: left;
  padding: 3px 8px 0px;
  border: 1px solid #444;
  border-radius: 0px 0px 5px 5px;
  margin-left: 6%;
}
#featured_image_wrapper img {
  padding: 0;
  margin: 0;
  position: relative;
  z-index: -10;
  width: 100%;
  height: inherit;
}

/*  CTA LINKS */
.cta-arrow li {
  background-image: url(../images/whitearrow_brightgreen.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  font-family: "Oswald", sans-serif, serif;
  font-size: 1.125em;
  font-weight: 400;
  /* faux bold */
  letter-spacing: .05em;
  margin-bottom: .25em;
  margin-top: 1em;
  max-height: 2.75em;
  overflow: hidden;
  padding: .625em 1.4em .625em 1.5em;
  text-transform: uppercase;
}

.cta-arrow li a {
  padding-right: 1.6em;
}

.pane-node-field-cta-links {
  width: 100%;
  background: #a7d233;
  padding: 0;
  margin: 0;
  float: left;
  clear: both;
}
.pane-node-field-cta-links ul.field-cta-links {
  clear: both;
  color: #fff;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
}
.pane-node-field-cta-links ul.field-cta-links li {
  display: inline-block;
  padding: .5em 1.4em .5em 0;
  padding: .5em 0;
  border-bottom: 2px solid #66ac47;
  float: left;
  width: 70%;
  margin: 0em 20% 0 10% !important;
  text-align: right;
}
.pane-node-field-cta-links ul.field-cta-links li a {
  padding: .5em  3.8em .5em 0;
}

/* FACTBAR */
.bottom_wrapper #factbar, #factbar.colorfactbar_3x3 {
  /*   *
  .views-field-field-factoid-sub-highlight, .views-field-field-factoid-sub-highlight a{
  	color:#444;
  }
  /*     */
}
.bottom_wrapper #factbar li .views-field-field-highlight-factoid a, #factbar.colorfactbar_3x3 li .views-field-field-highlight-factoid a {
  font-size: 1.8em;
}
.bottom_wrapper #factbar li .views-field-field-description-factoid a, #factbar.colorfactbar_3x3 li .views-field-field-description-factoid a {
  font-size: 1.0em;
  margin-top: .5em;
}
.bottom_wrapper #factbar ul.pager, #factbar.colorfactbar_3x3 ul.pager {
  /*        margin-top:-42em;
         margin-bottom:42em; */
  background: #ccc;
}

@media only screen and (min-width: 500px) {
  #four_square_wrapper {
    width: 100% !important;
  }
  #four_square_wrapper table.views-view-grid td {
    float: left;
    clear: none;
    width: 200%;
    border-bottom: 8px solid #fff;
  }
  #four_square_wrapper tbody {
    background: #f5f5f5;
  }
  #four_square_wrapper tr.row-1, #four_square_wrapper tr.row-2 {
    float: left;
    width: 50%;
    padding: 0;
    margin: 0;
    clear: none;
    border: 0;
    background: #f5f5f5;
  }
  #four_square_wrapper .view-display-id-block_3 td.col-2, #four_square_wrapper .view-display-id-block_3 td.col-1 {
    background: #f5f5f5;
    width: 47%;
    width: calc(48% - 1px);
    border: 0;
    border-right: 1px solid #fff;
    vertical-align: top;
    padding: 1%;
    background: #f5f5f5;
    overflow: hidden;
  }
  #four_square_wrapper .view-display-id-block_3 tr.row-2 td.col-2 {
    border-right: 0;
  }

  #featured_image_wrapper {
    width: 100%;
    clear: both;
    /* 
    .views-slideshow-controls-bottom{
    	margin-top:-190px;
    	margin-bottom:150px;
    }
    */
  }
  #featured_image_wrapper h3 {
    font-size: 2em;
    bottom: 3.95rem;
  }
}
@media only screen and (min-width: 800px) {
  div.top_wrapper {
    overflow: hidden;
    background: #fff url("/sites/default/files/speckle600-566.jpg") repeat 0 0;
    border-top: 1px #e4e4e4 solid;
    border-bottom: 1px #e4e4e4 solid;
    width: 100%;
    padding: 0;
    margin: 0 0 2em 0;
    float: left;
    padding-left: 800px;
    padding-right: 800px;
    margin-left: -800px;
    margin-right: -800px;
    -moz-box-flex: 1.0;
    /* Firefox */
    -webkit-box-flex: 1.0;
    /* Safari and Chrome */
    -ms-flex: 1.0;
    /* Internet Explorer 10 */
    /* display:-webkit-box; */
    display: box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  #four_square_wrapper {
    width: 34% !important;
    margin-left: -10px;
    background: #ccc;
    background: #fdfdfd;
    overflow: hidden;
    flex-grow: 1;
    display: flex;
    clear: left;
  }
  #four_square_wrapper table.views-view-grid {
    background: #fff;
    margin: 0;
    border: 0;
    padding: 0;
    width: inherit;
    float: left;
    height: 100%;
    width: 100%;
  }
  #four_square_wrapper table.views-view-grid td {
    float: left;
    clear: none;
  }
  #four_square_wrapper .view-display-id-block_3 {
    border-right: 0;
    width: 100% !important;
    float: left;
  }
  #four_square_wrapper .view-display-id-block_3 tr.row-1, #four_square_wrapper .view-display-id-block_3 tr.row-2 {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    clear: left;
    border: 0;
    background: #f5f5f5;
    background: #fff;
  }
  #four_square_wrapper .view-display-id-block_3 td.col-2, #four_square_wrapper .view-display-id-block_3 td.col-1 {
    background: #f5f5f5;
    padding: 0;
    width: 44%;
    width: calc(50% - 15px);
    border-right: 10px solid #fff;
    border-left: 10px solid #fff;
    vertical-align: top;
  }
  #four_square_wrapper .view-display-id-block_3 td.col-2 img, #four_square_wrapper .view-display-id-block_3 td.col-1 img {
    width: 100%;
    margin: 0;
    height: inherit;
  }
  #four_square_wrapper .view-display-id-block_3 table.views-view-grid td.col-2 {
    float: right;
  }
  #four_square_wrapper .view-display-id-block_3 td.col-1 {
    border-right: 0;
  }
  #four_square_wrapper .view-display-id-block_3 tr.row-2 {
    border-top: 8px solid #fff;
  }
  #four_square_wrapper .view-display-id-block_3 tr.row-2 td.col-2 {
    border-right: 10px solid #fff;
  }
  #four_square_wrapper .view-display-id-block_3 td div.views-field-field-short-title {
    height: 40px;
    font-size: .9em;
  }

  /***** FEATURED IMAGE ******/
  #featured_image_wrapper {
    background: #fdfdfd;
    padding-bottom: 0;
    flex-grow: 2;
    clear: none;
  }
  #featured_image_wrapper .field-image-featured {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #featured_image_wrapper h3 {
    bottom: 34px;
    font-size: 2.9em;
  }
  #featured_image_wrapper img {
    padding: 0;
    margin: 0;
    z-index: -10;
  }
}
/***** News *  Spotlight * Events *****/
#homepage_news_list, .pane-frontpage-events-frontpage-events, div.pane-node-field-campus-spotlight {
  font-size: .9em;
  line-height: 1em;
  padding: 1em 4%;
  width: 92%;
}

#content .view-footer p, #content p.field-link-spotlight, #content .pane-frontpage-events-frontpage-events p {
  text-transform: uppercase;
  text-align: right;
  line-height: .95em;
}

body.front #content .view-footer p a, body.front #content p.field-link-spotlight a, body.front #content .pane-frontpage-events-frontpage-events p a {
  font-size: .8em;
  font-weight: 500;
}

#content #homepage_news_list {
  clear: both;
  float: left;
  background: #ececec;
  font-size: .9em;
  line-height: 1em;
}
#content #homepage_news_list ul {
  margin: 1.2em 0;
  padding: 0;
  list-style: none !important;
}
#content #homepage_news_list li {
  margin: 0 0 1em;
  padding: 0;
  line-height: 1.7em;
  /* 1.4 */
}

div.pane-node-field-campus-spotlight {
  overflow: hidden;
  float: left;
  background: #f5f5f5;
}
div.pane-node-field-campus-spotlight .field-collection-container {
  border-bottom: 0;
  margin-bottom: 0;
}
div.pane-node-field-campus-spotlight article.field-campus-spotlight {
  margin: 0;
  padding: 0;
}
div.pane-node-field-campus-spotlight img {
  float: left;
  width: 30%;
  max-width: 169px;
  height: inherit;
  margin: 0 6% .4em 0;
  padding: 0;
}
div.pane-node-field-campus-spotlight p {
  margin-top: 0;
  padding-top: 0;
  font-size: .9em;
}

#content div.pane-frontpage-events-frontpage-events {
  float: left;
  background: #f5f5f5;
  border-top: 1px solid #ccc;
}
#content div.pane-frontpage-events-frontpage-events ul {
  margin: 1.2em 0;
  padding: 0;
  list-style: none !important;
}
#content div.pane-frontpage-events-frontpage-events li {
  margin: 0 0 1em !important;
  padding: 0;
  line-height: 1.7em;
  /* 1.4 */
  text-indent: 0 !important;
}

div.middle_wrapper h3 {
  color: #007155;
}
div.middle_wrapper h4 {
  color: #66ac47;
}

@media only screen and (min-width: 600px) {
  div.middle_wrapper {
    float: left;
    background: #f5f5f5;
    margin-bottom: 10px;
  }

  #homepage_news_list, .pane-frontpage-events-frontpage-events, div.pane-node-field-campus-spotlight {
    padding: 1em 2%;
  }

  #content #homepage_news_list {
    border-bottom: 14px solid #fff;
    width: 96%;
  }

  div.pane-node-field-campus-spotlight {
    width: 46%;
  }

  #content div.pane-frontpage-events-frontpage-events {
    width: 45%;
    width: calc(46% - 1px);
    border-left: 1px solid #ddd;
    border-top: 0;
  }

  /****** CTA LINKS ******/
  .pane-node-field-cta-links {
    width: 100%;
    margin-left: -800px;
    padding-left: 800px;
    padding-right: 800px;
    max-width: 1200px;
  }
  .pane-node-field-cta-links ul.field-cta-links {
    margin: 0;
  }
  .pane-node-field-cta-links ul.field-cta-links li {
    border-bottom: none;
    display: inline;
    height: 40px;
    margin: 0 2% 0 0 !important;
    max-height: none;
    overflow: hidden;
    padding: 0 5% 0 0;
    text-align: left;
    width: 25%;
  }
  .pane-node-field-cta-links ul.field-cta-links li a {
    float: right;
    margin-right: 0;
    padding: .3em 10% .3em 0;
  }

  .bottom_wrapper #factbar li, #factbar.colorfactbar_3x3 li {
    width: 27%;
    width: calc(28% - 2px);
  }
  .bottom_wrapper #factbar ul.pager, #factbar.colorfactbar_3x3 ul.pager {
    margin-top: -1em;
    margin-bottom: 1em;
    background: transparent;
  }
  .bottom_wrapper #factbar ul.pager li:first-child, #factbar.colorfactbar_3x3 ul.pager li:first-child {
    /* width: 3.2em; */
    margin-left: 0em;
  }
}
@media only screen and (min-width: 800px) {
  div.middle_wrapper {
    -moz-box-flex: 1.0;
    /* Firefox */
    -webkit-box-flex: 1.0;
    /* Safari and Chrome */
    -ms-flex: 1.0;
    /* Internet Explorer 10 */
    /* display:-webkit-box; */
    display: box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    float: left;
    margin-bottom: 2em;
    /* background:none; */
    width: 100%;
  }

  /**** Bar to clear top banner ***/
  #homepage_banner_clear {
    height: 10px;
    width: 100%;
    clear: both;
    float: left;
  }

  /***** News *  Spotlight * Events *****/
  #content #homepage_news_list {
    clear: left;
    float: left;
    width: 26%;
    width: calc(29% - 1px);
    border-bottom: 0;
    border-right: 10px solid #fff;
    margin-bottom: 0;
  }

  div.pane-node-field-campus-spotlight {
    width: 27%;
    width: calc(33.3333% - 10px);
    margin-left: 0px !important;
  }

  #content div.pane-frontpage-events-frontpage-events {
    width: 29.33333%;
    width: calc(29.33333% - 0px);
    padding: 1em 2%;
    border-left: 1px solid #ddd;
    border-top: 0;
  }

  .pane-node-field-cta-links {
    margin-left: -800px;
    padding-left: 800px;
    padding-right: 800px;
    max-width: 1200px;
  }

  /* 
  #featured_image_wrapper .views-slideshow-controls-bottom{
  	margin-top:-140px;
  	margin-bottom:110px;
  }
  */
}
@media only screen and (min-width: 371px) {
  #featured_image_wrapper h3 {
    bottom: 5.2rem;
  }

  .cta-arrow li {
    font-size: 1.27em;
  }
}
@media only screen and (min-width: 500px) {
  #featured_image_wrapper h3 {
    bottom: 4rem;
  }
}
@media only screen and (min-width: 601px) {
  #featured_image_wrapper h3 {
    bottom: 34px;
  }
}
@media only screen and (min-width: 900px) {
  #four_square_wrapper .view-display-id-block_3 td div.views-field-field-short-title {
    height: 60px;
  }
  #four_square_wrapper .view-display-id-block_3 td div.views-field-field-short-title div.field-content {
    line-height: 1.3em;
    padding: .4em 4%;
    width: 92%;
    font-size: 1em;
  }
  #four_square_wrapper .view-display-id-block_3 td.col-2, #four_square_wrapper .view-display-id-block_3 td.col-1 {
    width: 45%;
    width: calc(50% - 15px);
  }

  .pane-node-field-cta-links ul.field-cta-links li {
    border-bottom: none;
    display: inline;
    line-height: 1.1 !important;
    margin-right: 8% !important;
    max-height: none;
    padding: .25em 1.4em .25em 0;
    margin: 0 8% 0 0 !important;
    text-align: left;
    width: 22%;
  }
  .pane-node-field-cta-links ul.field-cta-links li a {
    float: right;
    margin-right: 0;
    padding: .3em 22% .3em 0;
  }
}
@media only screen and (min-width: 1100px) {
  #four_square_wrapper .view-display-id-block_3 td div.views-field-field-short-title {
    height: 64px;
  }
}
@media only screen and (min-width: 1200px) {
  #four_square_wrapper .view-display-id-block_3 td div.views-field-field-short-title {
    height: 68px;
  }

  #content #homepage_news_list {
    width: 28%;
    width: calc(29.888% - 0px);
  }

  div.pane-node-field-campus-spotlight {
    width: 29%;
    width: calc(32.888% - 10px);
  }

  ul.field-cta-links li {
    font-size: 1.5em;
  }
}
#links {
  margin-top: -45px;
}

.stripes {
  border: 0 !important;
}
.stripes:not(first-of-type):not(last-of-type) {
  padding-top: 2em;
  padding-bottom: 1.4em;
}

body.node-type-uvm-college-homepage .topbanner {
  margin-top: -24px !important;
}

body.node-type-uvm-college-homepage h1#page-title {
  display: none !important;
}

.three_equalcol_2, .three_equalcol_3 {
  border: 0;
}

#content .field-introduction p h3 {
  text-transform: initial;
}

#content .stripes .band_title {
  padding-left: 20px;
}

#content .stripes .band_title + .pane-views.pane-news.band_views {
  padding-top: 0 !important;
}

.pane-node-field-sidebar-body.three_equalcol_3 {
  padding-top: 0;
}

#content .three_equalcol_3 .field-sidebar-body h3, #content .three_equalcol_3 .field-sidebar-body h4 {
  text-transform: uppercase;
}
#content .three_equalcol_3 .field-sidebar-body ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style: none !important;
}
#content .three_equalcol_3 .field-sidebar-body ul li {
  border-bottom: 1px solid #ebebeb;
  margin: 0;
  padding: .5em 0;
}
#content .three_equalcol_3 .field-sidebar-body ul li:first-of-type {
  border-top: 1px solid #ebebeb;
}

/* Special arrow headings */
.arrow_headings h3 {
  width: 95%;
  padding: 15px 8px 12px 8px;
  margin: .6em 0;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  margin-bottom: 31px;
}

@media only screen and (min-width: 800px) {
  #content .stripes .band_title {
    padding-left: 0px;
  }

  .field-sidebar-body .accordionButtonBar {
    clear: left;
  }
}
/* OIR Specific Styles */
.og-context-node-253958 .field-accordion-content img {
  width: auto;
  padding: 0;
  float: none;
  vertical-align: baseline;
}
.og-context-node-253958 .field-accordion-content td {
  line-height: 24px;
}

/* Partials for objects of base theme  */
/*
 * uvm_directory_find_people.css
 * Dillon Beliveau
 */
/* Jan 6 2015 - Megan Hack makes this a partial as part of the uvmbase theme  */
#people-input-suggestions {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  z-index: 100;
}

#people-input-suggestions ul {
  padding-left: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
}

#people-input-suggestions ul li {
  list-style-type: none;
  /* border-bottom:1px solid gray; */
}

#people-input-suggestions ul li:hover {
  cursor: pointer;
}

#people-input-suggestions ul li.selected {
  background-color: lightgray;
}

#people-input-suggestions ul li a {
  text-decoration: none;
  color: black;
  display: block;
}

.field-info-band, .field-interior-infoband-field-co, .field-infoband-with-quote {
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: dashed 2px #ccc;
  margin-bottom: .5em;
  float: left;
  width: 96%;
  padding: 1em 2% .2em;
  overflow: hidden;
}

div.field-info-band:first-of-type, div.field-interior-infoband-field-co:first-of-type, div.field-infoband-with-quote:first-of-type {
  margin-top: 0;
}

div.field-info-band:last-of-type, div.field-interior-infoband-field-co:last-of-type, div.field-infoband-with-quote:last-of-type {
  border-bottom: 0;
}

.field-info-band h3.field-label {
  color: #fff;
  font-size: 0.94444444444444em;
  font-weight: 500;
  padding: 5px 2% 3px 0 !important;
  margin: 0 0 1em 0;
  line-height: 1;
  clear: both;
  width: 98%;
}

.accordion_wrapper .rightcol h3 {
  color: #fff;
  font-size: 0.94444444444444em;
  font-weight: 500;
  padding: 5px 2% 4px 0 !important;
  margin: 0 0 1em -1.5em;
  line-height: 1;
  clear: both;
  width: 130%;
}

.field-info-band h3.field-label:before, .accordion_wrapper .rightcol h3:before {
  font-family: 'socialmedia';
  speak: none;
  font-style: normal;
  /* font-weight: bold; */
  font-variant: normal;
  text-transform: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  padding: 5px;
  width: 10px;
  margin: 0;
  margin-right: 10px;
  line-height: 1;
  background: #007155;
  font-size: 0.94444444444444em;
}

.field-info-band-title {
  font-weight: 400;
}

.field-info-band h2, .field-interior-infoband-field-co h2 {
  margin-top: 0;
}

.field-info-band img, .field-interior-infoband-field-co img, .accordion_wrapper img, .field-infoband-with-quote img {
  float: left;
  width: 30%;
  padding: 0 4% .8em 0;
}

.field-info-band-description {
  float: left;
  width: 61%;
  padding: 0 5% 1em 0;
  line-height: 1.6em;
}

.field-info-band-links ul {
  clear: both;
}

.field-info-band-links li {
  line-height: 1.2em;
  margin-top: 6px;
  font-size: 0.88888888888889em;
  margin-bottom: .3em !important;
}

/* .field-info-band-links li:before{
margin-left: -1.2em !important;
} */
.field-info-band-links li a {
  border: 0;
}

/*  infobands and campus tour accordion  */
.accordion_wrapper {
  clear: both;
  margin: 0;
  margin-top: 1em;
  padding: 0;
}

.centercol .accordion_wrapper {
  margin-top: 0;
}

.accordion_wrapper h2 {
  clear: left;
  font-size: 1.25em;
}

.accordion_wrapper .ui-accordion-content {
  padding: .4em 0 0;
}

.accordion_wrapper .ui-accordion-content .body p {
  line-height: 1.66667;
  font-size: .8em;
  font-style: normal;
}

.accordion_wrapper .views-accordion-header {
  background: #fff;
  border-left: 0;
  border-bottom: 0;
  border-right: 0;
  border-radius: 0;
  padding-left: 4%;
}

.accordion_wrapper span.ui-icon-triangle-1-e, .accordion_wrapper .ui-icon-triangle-1-s {
  display: none;
}

.ui-accordion-content-active {
  border: 0;
  border-radius: 0;
}

.accordion_wrapper .ui-accordion-header a {
  padding-left: 0;
}

.accordion_wrapper h2:after, .accordion_wrapper .views-accordion-header span:after, .pane-node-field-courses-taught.accordion_wrapper h3.pane-title:after {
  font-family: 'socialmedia';
  content: "";
  speak: none;
  font-style: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: 5px;
  font-size: 1.25em;
  position: absolute;
  text-indent: 0;
}

.accordion_wrapper h2.activelink:after, .pane-node-field-courses-taught.accordion_wrapper h3.pane-title.activelink:after {
  font-family: 'socialmedia';
  content: "";
}

.accordion_wrapper .ui-state-active span:after {
  font-family: 'socialmedia';
  content: "";
}

.accordion_wrapper .field-info-band, .accordion_wrapper .field-interior-infoband-field-co {
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 0;
  margin-bottom: 10px;
  overflow: hidden;
}

/* for nested h2 - removes accordion look */
.accordion_wrapper h2.no_accordion {
  border: 0;
  padding: 0 0 .4em !important;
  margin: 0;
  cursor: default;
}
.accordion_wrapper h2.no_accordion:after {
  content: "";
}

@media only screen and (min-width: 800px) {
  .pane-node-field-info-band, .pane-node-field-interior-infoband-field-co, .pane-node-field-infoband-with-quote {
    padding: 0;
  }

  .field-info-band, .field-interior-infoband-field-co, .field-infoband-with-quote {
    margin-bottom: 0;
    clear: none;
    width: 100%;
    padding: .5em 0;
  }
  .field-info-band img, .field-interior-infoband-field-co img, .field-infoband-with-quote img {
    width: 25%;
    max-width: 155px;
    height: inherit;
    padding-right: 3%;
  }

  .field-info-band-description, .field-info-band h2 {
    width: 42%;
    float: left;
    margin-left: 0;
    padding-left: 0;
    padding-right: 2%;
    margin-top: 0;
  }

  .field-interior-infoband-field-co .field-info-band-description {
    width: 70%;
  }

  .field-info-band h3.field-label {
    float: right;
    width: 23%;
    clear: none;
    margin-top: -2em;
    margin-right: 0;
  }

  .field-info-band-links {
    float: right;
    width: 25%;
    clear: none;
    padding: 0;
    padding-right: 0;
  }

  .field-info-band-links ul {
    clear: none;
    background: #000;
  }

  .accordion_wrapper .field-interior-infoband-field-co {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
  }

  .accordion_wrapper .views-accordion-header {
    padding-left: 0;
  }

  .accordion_wrapper .ui-accordion-content {
    padding-bottom: 1.4em;
  }
}
@media only screen and (min-width: 1000px) {
  .field-info-band-description, .field-info-band h2 {
    width: 46%;
  }
}
@media screen and (max-width: 799px) {
  div.addaztop {
    display: none;
    float: right;
  }

  div.addazbottom {
    display: block;
    padding: 20px;
  }
}
@media screen and (min-width: 800px) {
  div.addaztop {
    display: block;
    float: right;
  }

  div.addazbottom {
    display: none;
  }
}
.alpha {
  margin-left: 0;
}

.alpha ul {
  list-style: none;
}

.alpha li {
  display: inline-block;
  text-indent: 0;
  font-weight: 400;
  text-align: center;
}

.alpha li .highlight {
  font-weight: 700;
}

.alpha li a {
  border: 0;
  display: table-cell;
  width: 3em;
  content: none;
}

.alphabet {
  overflow: hidden;
}

.alphabet h2 {
  float: left;
  border: 1px #ccc solid;
  background: #f5f5f5;
  color: #444;
  padding: 0.11111111111111em 0.22727272727273em;
  line-height: 1;
}

.alphabet .rule {
  border-top: 1px #ccc solid;
  margin-top: 0.94444444444444em;
  margin-left: 1.72222222222222em;
}

.programname {
  font-weight: 400;
}

@media screen and (min-width: 800px) {
  .alpha li a {
    width: 1em;
    padding: 0;
  }

  #content .alpha li {
    margin: 0;
    padding: 0;
  }
}
/* Slider-like functionality, uses ajax, arrows at the bottom */
.four_across ul.pager, .fc_slider ul.pager, .band_views ul.pager, #factbar ul.pager, .rightcol ul.pager {
  /*         margin-top:-47em;
          margin-bottom:47em;
          background:#ccc;  */
}
.four_across ul.pager li, .fc_slider ul.pager li, .band_views ul.pager li, #factbar ul.pager li, .rightcol ul.pager li {
  border: 0;
  min-height: 0;
  padding: 0;
  margin: 0;
  height: 3em;
}
.four_across ul.pager li a, .fc_slider ul.pager li a, .band_views ul.pager li a, #factbar ul.pager li a, .rightcol ul.pager li a {
  color: transparent !important;
  font-family: 'socialmedia';
  font-size: 1.4em;
  color: #999;
  speak: none;
  font-style: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-indent: 0;
  display: inline;
  vertical-align: middle;
  padding: .3em 0 .6em;
  border-bottom: 0 !important;
}
.four_across ul.pager li.pager-next a:before, .fc_slider ul.pager li.pager-next a:before, .band_views ul.pager li.pager-next a:before, #factbar ul.pager li.pager-next a:before, .rightcol ul.pager li.pager-next a:before {
  content: "";
  color: #666;
}
.four_across ul.pager li.pager-previous a:after, .fc_slider ul.pager li.pager-previous a:after, .band_views ul.pager li.pager-previous a:after, #factbar ul.pager li.pager-previous a:after, .rightcol ul.pager li.pager-previous a:after {
  content: "";
  color: #666;
}
.four_across ul.pager a, .fc_slider ul.pager a, .band_views ul.pager a, #factbar ul.pager a, .rightcol ul.pager a {
  padding: 1.2em;
}
.four_across ul.pager li.pager-current, .fc_slider ul.pager li.pager-current, .band_views ul.pager li.pager-current, #factbar ul.pager li.pager-current, .rightcol ul.pager li.pager-current {
  display: none;
}

/* slideshow arrows, vertically centered in slider window */
.view {
  width: 100%;
  position: relative;
}

span.views_slideshow_controls_text_pause {
  display: none;
}

.views_slideshow_slide {
  position: relative;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: inherit;
  float: left;
}

.views-slideshow-controls-bottom {
  margin: .2em auto .2em;
  position: initial;
  background: none;
  position: relative;
  z-index: 66;
  width: 100%;
  position: absolute;
  top: 23%;
  transform: translate(0, -50%);
}

.views_slideshow_controls_text {
  float: left;
  width: 100%;
}
.views_slideshow_controls_text a {
  color: transparent !important;
  font-family: 'socialmedia';
  speak: none;
  font-style: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* position:absolute; */
  text-indent: 0;
  /* 	float:left; */
  display: inline;
  width: 20px;
}
.views_slideshow_controls_text span:hover {
  border: 0;
  text-decoration: none;
}
.views_slideshow_controls_text .views_slideshow_controls_text_next {
  padding: 0;
  float: right;
}
.views_slideshow_controls_text .views_slideshow_controls_text_next a:after {
  content: "";
  color: #444;
  background: #fff;
  opacity: .6;
  padding: 5px 10px 5px 10px;
  font-size: 1.5em;
}
.views_slideshow_controls_text span.views_slideshow_controls_text_previous {
  padding: 0;
  float: left;
}
.views_slideshow_controls_text span.views_slideshow_controls_text_previous a:before {
  content: "";
  font-size: 1.5em;
  color: #444;
  background: #fff;
  opacity: .6;
  padding: 5px 10px 5px 10px;
}

.rightcol .bleed .views-slideshow-controls-bottom {
  position: relative;
  top: 0;
  transform: none;
  padding-top: .8em;
}

#content .rightcol ul.pager {
  float: none;
}
#content .rightcol ul.pager li {
  margin: 1em 0;
}
#content .rightcol ul.pager li:first-child {
  width: 50%;
}

@media only screen and (min-width: 600px) {
  .fc_slider ul.pager, .band_views ul.pager, .four_across ul.pager, .two_across ul.pager, #factbar ul.pager, .rightcol ul.pager {
    margin-top: -1em;
    margin-bottom: 1em;
    float: right;
    background: transparent;
    padding-top: 0;
  }
  .fc_slider ul.pager li, .band_views ul.pager li, .four_across ul.pager li, .two_across ul.pager li, #factbar ul.pager li, .rightcol ul.pager li {
    height: 2em;
    width: 3.2em;
    display: inline;
    float: left;
  }
  .fc_slider ul.pager li:first-child, .band_views ul.pager li:first-child, .four_across ul.pager li:first-child, .two_across ul.pager li:first-child, #factbar ul.pager li:first-child, .rightcol ul.pager li:first-child {
    margin-right: 8px;
    width: 6.6em;
    margin-left: -3em;
  }
  .fc_slider ul.pager li a, .band_views ul.pager li a, .four_across ul.pager li a, .two_across ul.pager li a, #factbar ul.pager li a, .rightcol ul.pager li a {
    display: inline;
    padding: .3em 0;
    color: transparent;
  }
  .fc_slider ul.pager li.pager-next a:before, .band_views ul.pager li.pager-next a:before, .four_across ul.pager li.pager-next a:before, .two_across ul.pager li.pager-next a:before, #factbar ul.pager li.pager-next a:before, .rightcol ul.pager li.pager-next a:before {
    color: #999 !important;
  }
  .fc_slider ul.pager li.pager-previous a:after, .band_views ul.pager li.pager-previous a:after, .four_across ul.pager li.pager-previous a:after, .two_across ul.pager li.pager-previous a:after, #factbar ul.pager li.pager-previous a:after, .rightcol ul.pager li.pager-previous a:after {
    color: #999 !important;
  }

  .views-slideshow-controls-bottom {
    display: block;
    top: 40%;
  }

  .rightcol ul.pager li {
    width: 50%;
  }
}
@media only screen and (min-width: 800px) {
  .topbanner .views_slideshow_controls_text_next {
    margin-right: -40px;
    margin-right: 0px;
  }

  .views-slideshow-controls-bottom {
    display: block;
    top: 50%;
  }
}
@media only screen and (min-width: 1200px) {
  .topbanner .views_slideshow_controls_text_next {
    margin-right: 0px;
  }
}
#footer {
  background: #007155;
  float: left;
  width: 100%;
  padding: 0 0 0 20px;
}
#footer a, #footer ul li {
  color: #aedc55;
  text-decoration: none;
}
#footer ul li {
  list-style-type: none;
}

#footer_1, #footer_2, #footer_3, #footer_4 {
  width: 96%;
  padding: 1em 2%;
  float: left;
}

#footer_1 a, #footer_1 address {
  color: #fff;
  font-style: normal;
  font-size: .9em;
}
#footer_1 div.street_address {
  font-size: .9em;
}
#footer_1 a#contactus {
  padding: 0 .3em;
}
#footer_1 a#contactus:after {
  content: "|";
  padding-left: .5em;
}
#footer_1 a#contactus:before {
  content: "|";
  padding-right: .5em;
}
#footer_1 span.copyright {
  font-size: .85em !important;
}
#footer_1 ul.socialmedia {
  padding: 0;
  margin: 0;
}
#footer_1 ul.socialmedia a {
  color: #a7d233;
  margin-left: 0;
  font-size: .8em;
}
#footer_1 ul.socialmedia li {
  padding-left: 0;
  margin-left: 0;
  margin-right: 1%;
}

#footer_2 ul {
  list-style: none !important;
}
#footer_2 ul li:before {
  content: "\00b7 \00a0";
}
#footer_2 h2 {
  color: #a7d233;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 1em;
  text-transform: uppercase;
}
#footer_2 h2:after {
  font-family: 'socialmedia';
  content: "";
}
#footer_2 h2.activelink:after {
  font-family: 'socialmedia';
  content: "";
}
#footer_2 ul {
  margin-top: 0;
}
#footer_2 ul li {
  margin-bottom: .5em;
}

#footer_3, #footer_4 {
  background: #a7d233;
  margin-left: -80px;
  margin-right: -80px;
  padding-left: 90px;
  padding-right: 80px;
  width: 100%;
}
#footer_3 ul li, #footer_3 a, #footer_4 ul li, #footer_4 a {
  color: #426139;
  color: #283c0a;
}

ul {
  margin-left: 0;
  padding-left: 0;
}

li {
  margin-bottom: .4em;
  margin-left: 0px;
  padding-left: 0;
}

#footer_3 h4 {
  margin-top: 1.5em;
}

#footer_4 ul {
  width: 100%;
  float: left;
}
#footer_4 ul li {
  margin-bottom: .6em;
}
#footer_4 .menu__item.is-expanded {
  list-style: none;
}
#footer_4 .menu__item.is-leaf {
  margin-left: 1em;
}
#footer_4 span.nolink {
  color: #fff;
  border-bottom: 1px dashed #426139;
  text-transform: uppercase;
  width: 90%;
  float: left;
  font-size: .9em !important;
}

@media only screen and (min-width: 599px) {
  #footer_1 {
    border-top: 1px solid #63865e;
  }

  #footer_2 {
    width: 40%;
    float: left;
    margin-left: 0%;
    /* order:2; */
  }

  #footer_3 {
    padding-right: 0;
    margin: 0;
    padding-left: 4%;
    float: right;
    margin-top: -24px;
    width: 40%;
    /* order:3; */
  }
  #footer_3 ul {
    margin-left: 20px;
  }

  ul.socialmedia li {
    margin-right: 2%;
  }

  #footer_4 li.menu__item {
    width: 50%;
    float: left;
  }
  #footer_4 li.menu__item ul {
    width: 90%;
    float: left;
    padding-top: .4em;
  }
  #footer_4 li.menu__item ul li.menu__item {
    clear: left;
    width: 100%;
    font-size: .85em;
    line-height: 1.2em;
  }
  #footer_4 li.menu__item:nth-of-type(3) {
    clear: left;
  }
}
@media only screen and (min-width: 800px) {
  #footer_wrapper {
    width: 100%;
    max-width: 1200px;
    position: relative;
    padding: 0;
    margin: 0 auto;
    /* display:flex;
    justify-content:space-between; */
  }

  #footer_1, #footer_2, #footer_3, #footer_4 {
    padding-top: 1em;
    padding-bottom: 1em;
    /* flex-basis:30%;*/
  }

  #footer_1 {
    width: 28%;
    padding: 1em 0 30px;
    margin-right: 0;
    float: left;
    clear: left;
    position: absolute;
    top: 0;
    border-top: 0;
  }

  #footer_2 {
    width: 30%;
    float: left;
    margin-left: 37%;
    /* order:2; */
  }

  #footer_3 {
    padding-right: 4%;
    float: right;
    width: 20%;
    /* order:3; */
  }

  #footer_4 {
    padding-top: 0;
    padding-right: 2%;
    padding-left: 2%;
    float: left;
    margin-left: 40%;
    width: 55%;
  }

  #footer_1 ul.socialmedia {
    padding-left: 0;
    margin-top: 2.4em;
    margin-left: 0;
    padding-right: 0;
  }
  #footer_1 ul.socialmedia a {
    font-size: 1em;
  }
  #footer_1 ul.socialmedia li {
    margin-right: 2%;
  }
}
#minifooter {
  textrendering: optimizelegibility;
  line-height: 1.3;
  clear: both;
  background: #007155;
  color: #fff;
  padding: .6125em 0 .5em;
  margin-top: 1em;
  text-align: center;
}
#minifooter a {
  color: #fff;
}
#minifooter a:link, #minifooter a:visited {
  color: #fff;
}
#minifooter .logo {
  text-transform: none;
  width: 228.5px;
  height: 25.5px;
  background: url(/sites/all/themes/uvmbase/images/universityofvermont-footer.svg) no-repeat;
  background-size: 100%;
  text-indent: -99999px;
  padding-bottom: .3125em;
}
#minifooter address {
  font-style: normal;
  display: inline-block;
  margin: 0 auto;
  font-size: .6875em;
  letter-spacing: .05em;
  text-align: center;
}

@media only screen and (min-width: 780px) {
  #minifooter {
    padding-bottom: .3em;
    margin-top: 1.6em;
  }
  #minifooter address .telephone a {
    text-decoration: none;
  }
  #minifooter div.logo, #minifooter div.address_phone, #minifooter div.link {
    display: inline-block;
    margin-bottom: 0;
  }
  #minifooter div.logo {
    line-height: 2.5;
    padding-bottom: 0;
    float: left;
  }
  #minifooter div.address_phone {
    padding-left: .3em;
    float: left;
    margin-top: .5em;
  }
  #minifooter div.link {
    margin-top: .5em;
  }
  #minifooter span.telephone, #minifooter div.link {
    padding-left: .3em;
  }
  #minifooter div.address_phone:before, #minifooter span.telephone:before, #minifooter div.link:before {
    content: "|";
    padding-right: .3em;
  }
  #minifooter span.telephone:before, #minifooter div.link:before {
    padding-right: .7em;
  }
}
div.burlington_6 #factbar {
  background: #fff;
}

div.burlington_7, div.burlington_8, .hidethis {
  display: none;
}

#factbar {
  clear: both;
  background: #f5f5f5;
  overflow: hidden;
  margin-top: 0;
  padding: 3em 0 0;
  float: left;
  width: 100%;
}
#factbar h4 {
  color: #555;
  margin: 0;
  padding: 0;
  line-height: 1.2em;
}
#factbar ul {
  padding: 0;
  list-style-image: none !important;
}
#factbar li, #factbar .group img {
  text-align: center;
  width: 96%;
  margin: 0;
  padding: 2em 2%;
  border-top: 1px solid #ccc;
}
#factbar ul.pager {
  background: #ccc;
}
#factbar .views-field-field-highlight-factoid h4 {
  width: 100%;
  display: block;
  clear: both;
  font-size: 2.4em;
  /* margin-bottom:-.4em; */
}
#factbar .views-field-field-factoid-sub-highlight h4 {
  display: block;
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: .4em;
  line-height: 1.2em;
  letter-spacing: .02em;
}
#factbar .views-field-field-description-factoid {
  margin-top: 0;
  font-family: "Roboto", sans-serif;
  line-height: 1.2em;
}

#content div.pane-instagram ul, #content div.pane-instagram-block-instagram-block ul {
  padding: 0;
  list-style-image: none !important;
}
#content div.pane-instagram ul li, #content div.pane-instagram ul a, #content div.pane-instagram-block-instagram-block ul li, #content div.pane-instagram-block-instagram-block ul a {
  text-align: center;
  width: 96% !important;
  margin: 0;
  padding: 2em 2%;
  border-top: 1px solid #ccc;
  height: auto;
}

#factbar_custom_title {
  clear: both;
  float: left;
  background: #f5f5f5;
  /* white-space:nowrap; */
  padding: 1.4em 15% 0;
  padding: 1.4em 4% 0;
  width: 100%;
}
#factbar_custom_title h3 {
  text-transform: uppercase;
  font-size: 1.3em;
  font-weight: 200;
  color: #444;
  margin-bottom: 0;
  text-align: center;
  /* padding-left:4%; */
}
#factbar_custom_title h3.linetwo {
  font-size: 1.1em;
  display: block;
  color: #159fda;
  margin-top: .3em;
}

/**** STRIPES FOR BANDS *******/
div.stripes {
  margin-right: -800px;
  padding-right: 800px;
  margin-left: -800px;
  padding-left: 800px;
}

#rowswrapper div.stripes:nth-child(odd) {
  background: #efefef;
}

#rowswrapper div.stripes:last-of-type, .bottomrow {
  background: #f5f5f5 !important;
}

/* just for burlington page  */
body.section-about-uvm #rowswrapper div.stripes:nth-child(odd) {
  background: #efefef url("/sites/default/files/pw_pattern.png") repeat 0 0;
}
body.section-about-uvm #rowswrapper div.stripes:nth-child(even) {
  background: #fff;
}
body.section-about-uvm #rowswrapper div.stripes:nth-child(1) {
  background-image: none !important;
}
body.section-about-uvm .stripes .band_title h2:first-child, body.section-about-uvm .stripes #factbar_custom_title.band_title h3, body.section-about-uvm .stripes .band_title h2:first-child strong, body.section-about-uvm .stripes #factbar_custom_title.band_title h3 strong {
  color: #1375af;
}
body.section-about-uvm .stripes .band_title h2:first-child strong, body.section-about-uvm .stripes #factbar_custom_title.band_title h3 strong {
  font-weight: 500 !important;
}
body.section-about-uvm h4.pull_quote {
  padding: .4em 0;
}
body.section-about-uvm h4.pull_quote span {
  color: #444444;
  font-size: .8em !important;
  font-family: "Roboto", sans-serif;
}

/* end of burlington styles */
.stripes {
  padding-bottom: .8em;
  padding-top: 1em;
  border-top: 16px solid #bababa;
}

.stripes:first-of-type {
  border-top: 1px solid #ddd;
}

.stripes:first-of-type, .stripes:last-of-type {
  padding-bottom: 0;
  padding-top: 0;
}

.stripes:nth-of-type(1) {
  /* 	margin-top:-25px;  this is only needed in uvmsubsites */
}
.stripes:nth-of-type(1) .topbanner {
  margin-top: 0;
}

#rowswrapper div.stripes:first-of-type .pane-node-field-image img.adaptive-image {
  vertical-align: bottom;
}

.stripes .band_title h2:first-child, .stripes #factbar_custom_title.band_title h3, .pane-node-field-horiz-bar .field-horiz-bar h2 {
  font-size: 1.4em !important;
  color: #7f7e7e !important;
  text-transform: uppercase;
  margin-bottom: 0em;
  padding: 0 20px;
  line-height: .9em;
  text-align: left;
  font-weight: 200;
}
.stripes .band_title h2:first-child p, .stripes #factbar_custom_title.band_title h3 p, .pane-node-field-horiz-bar .field-horiz-bar h2 p {
  line-height: 1em !important;
  padding: 0;
  margin: .5em 0 1.1em !important;
}
.stripes .band_title h2:first-child span, .stripes .band_title h2:first-child strong, .stripes #factbar_custom_title.band_title h3 span, .stripes #factbar_custom_title.band_title h3 strong, .pane-node-field-horiz-bar .field-horiz-bar h2 span, .pane-node-field-horiz-bar .field-horiz-bar h2 strong {
  color: #444444 !important;
  font-weight: 400;
}

.stripes h2.field-band-1-title {
  margin-top: 1em !important;
}

#content .stripes .two_equalcol_1 p:first-child, #content .stripes .two_equalcol_2 p:first-child {
  margin-bottom: 0 !important;
}
#content .stripes .two_equalcol_1 img, #content .stripes .two_equalcol_2 img {
  width: 100%;
  height: inherit;
}

#content .stripes {
  float: left;
  width: 100%;
  clear: both;
}
#content .stripes .fyf_extra_links, #content .stripes .band_extra_links {
  margin: 1em 10px 0 0;
  float: right;
  clear: both;
}
#content .stripes .fyf_extra_links ul, #content .stripes .band_extra_links ul {
  text-align: right !important;
  margin-bottom: .4em !important;
  list-style: none;
}
#content .stripes .fyf_extra_links ul li, #content .stripes .band_extra_links ul li {
  font-weight: 500;
  font-size: .8em !important;
  line-height: 1em !important;
  text-transform: uppercase;
}
#content .stripes .fyf_extra_links ul li a:after, #content .stripes .band_extra_links ul li a:after {
  content: " >>";
}
#content .stripes .band_views ul {
  padding: 0;
  margin: 0;
}
#content .stripes .band_views ul.individual-item {
  list-style-image: none !important;
}
#content .stripes .band_views ul.individual-item > li {
  margin: 0;
  padding: 0;
  min-height: 0;
  height: 12em;
}
#content .stripes .band_views ul.two_across {
  margin-bottom: 1em;
}
#content .stripes .band_views ul.two_across li {
  padding: .2em 0 .8em;
  width: 47%;
  margin: 0 1% !important;
  float: left;
  display: inline;
}
#content .stripes .band_views ul.four_across li, #content .stripes .band_views ul.three_across li {
  width: 47%;
  padding: 0;
  margin: .6em 1%;
  float: left;
  display: inline;
}
#content .stripes .band_views ul.four_across li.views-row-3, #content .stripes .band_views ul.three_across li.views-row-3 {
  clear: left;
}
#content .stripes .band_views ul.three_across li {
  width: 92%;
  width: calc(100% - 40px);
  margin: 0;
  padding: .6em 20px;
  display: block;
  float: none;
}
#content .stripes .band_views ul.three_across li .views-field-title {
  padding-top: .6em;
}
#content .stripes .band_views ul.three_across li a {
  line-height: 1.4em;
  font-size: 0.95em;
  font-weight: 500;
}

#content .stripes .band_views.acclaim_blue ul.two_across li, #content .stripes .band_views.acclaim_blue ul.four_across li {
  float: left;
  border: 1px solid #ccc !important;
  background: #1375af;
  color: #fff;
  height: 16em;
}
#content .stripes .band_views.acclaim_blue ul.two_across li div.views-field-title, #content .stripes .band_views.acclaim_blue ul.four_across li div.views-field-title {
  padding: .6em 4% !important;
}
#content .stripes .band_views.acclaim_blue ul.two_across li div.views-field-title a:link, #content .stripes .band_views.acclaim_blue ul.two_across li div.views-field-title a:visited, #content .stripes .band_views.acclaim_blue ul.four_across li div.views-field-title a:link, #content .stripes .band_views.acclaim_blue ul.four_across li div.views-field-title a:visited {
  color: #fff !important;
}

#content .stripes .two_equalcol_2.band_views.acclaim_blue ul.two_across li {
  width: 96%;
  height: initial;
  margin-bottom: 1.3em !important;
}

@media only screen and (min-width: 500px) {
  .stripes .band_title h2:first-child, .pane-node-field-horiz-bar div.field-horiz-bar h2 {
    font-size: 1.7em !important;
  }
}
@media screen and (min-width: 600px) {
  #factbar {
    white-space: nowrap;
    width: 100%;
    padding-bottom: 1.33333em;
    padding-right: 800px;
    padding-left: 800px;
    padding-top: .6em;
    margin-left: -800px;
    margin-right: -800px;
    margin-top: 0;
    /*  dont need this still 
    ul.pager {
    	margin-top:-1em;
    	margin-bottom:1em;
    	float:right;
            background:transparent;
    	border-top:1px dashed #ddd;
    	padding-top:.3em;
    
    li{
            border:0;
            padding:0;
    	margin:0;
            min-height:0em;
            height:2em;
    	width:3.2em;
    	display:inline;
    	float:left;
    &:first-child{
     	margin-right:8px; 
    	width: 6.6em;
    	margin-left: -3em;
    }
    a{
    	display:inline;
    	padding:.3em 0;
    }
    }
    li.pager-next a{
    &:before{
    	color:#999;
    }}
    li.pager-previous a{
    &:after{
    	color:#999;
    }}
    
    
    }
    */
  }
  #factbar li {
    display: inline-block;
    width: calc(19.5% - 2px);
    border-top: none;
    border-right: solid #ccc 1px;
    white-space: normal;
    vertical-align: top;
    min-height: 12em;
    padding: 1em 2.5%;
  }
  #factbar li.views-row-last {
    border-right: 0;
  }
  #factbar ul.pager {
    padding-top: .3em !important;
    background: transparent;
  }

  #factbar_custom_title {
    clear: both;
    float: left;
    white-space: nowrap;
    padding-right: 800px;
    padding-left: 800px;
    margin-left: -800px;
    margin-right: -800px;
  }
  #factbar_custom_title h3 {
    padding-left: 4%;
    text-align: left;
  }

  #content div.pane-instagram ul li, #content div.pane-instagram-block-instagram-block .group img {
    display: inline-block;
    width: 13%;
    width: calc(15.46667% - 12px);
    border: solid #ccc 1px;
    white-space: normal;
    vertical-align: top;
    min-height: 0;
    margin-right: 1.2% !important;
    margin-left: 0;
    padding: 5px;
  }

  /**** STRIPES and BANDS ****/
  /* Views in Bands */
  #content .stripes .band_views {
    padding-top: 1em;
    margin-top: 0;
  }
  #content .stripes .band_views ul.individual-item > li {
    display: inline-block;
    border-top: 0;
    white-space: normal;
    vertical-align: top;
    min-height: 12em;
    margin: 0 !important;
    height: inherit;
  }
  #content .stripes .band_views ul.individual-item > li img {
    width: 100%;
    height: inherit;
  }
  #content .stripes .band_views ul.two_across li {
    width: 43%;
    padding: 1em 2.5%;
  }
  #content .stripes .band_views ul.four_across, #content .stripes .band_views ul.three_across {
    padding: 0;
  }
  #content .stripes .band_views ul.four_across li, #content .stripes .band_views ul.three_across li {
    padding: .3em 0;
    width: 24%;
    margin: 0 1.3333% 0 0;
    min-height: 10em;
    clear: none !important;
  }
  #content .stripes .band_views ul.three_across li {
    display: inline;
    float: left;
    width: 31%;
    width: 31.54%;
    margin: 0 2.666% 0 0;
  }
  #content .stripes .band_views ul.four_across li:last-child, #content .stripes .band_views ul.three_across li:last-child {
    margin-right: 0;
  }
  #content .stripes .band_views li.views-row-last {
    border-right: 0;
  }

  #content .stripes .band_views.acclaim_blue {
    padding-top: 0;
    margin-top: 0;
  }
  #content .stripes .band_views.acclaim_blue ul.four_across {
    clear: both;
    padding: 0;
    margin: 0;
  }
  #content .stripes .band_views.acclaim_blue ul.four_across li {
    height: 300px !important;
    padding: 0 0 .5em !important;
    width: 22.5% !important;
    width: calc(22.75% - 2px) !important;
  }
  #content .stripes .band_views.acclaim_blue ul.two_across {
    clear: both;
    padding: 0;
    margin: 0;
  }
  #content .stripes .band_views.acclaim_blue ul.two_across li {
    height: 300px !important;
    padding: 0 0 .5em !important;
    width: 43% !important;
    width: calc(43.9% - 2px) !important;
    margin: 0 3% !important;
  }
}
@media only screen and (min-width: 800px) {
  #factbar_custom_title h3 {
    padding-left: 0;
  }

  body.section-about-uvm h4.pull_quote {
    font-size: 1.7em;
  }

  .stripes .band_title h2:first-child {
    padding: 0;
    margin-top: 1em;
  }

  .stripes .band_title h2:first-child p, .pane-node-field-horiz-bar .field-horiz-bar h2 p {
    line-height: 1em !important;
    padding: 0;
    margin: .5em 0 1.1em !important;
  }

  #content .stripes .fyf_extra_links, #content .stripes .band_extra_links {
    margin: 1em 10px 0 0;
    float: right;
    clear: both;
  }
  #content .stripes .fyf_extra_links ul, #content .stripes .band_extra_links ul {
    margin-bottom: .4em !important;
    list-style: none;
  }

  /* views in bands */
  #content .stripes .band_views ul.four_across li {
    width: 23%;
    margin-right: 2.66666%;
    margin-left: 0;
    padding-top: .3em;
    padding-bottom: .3em;
  }
  #content .stripes .band_views ul.four_across li:last-child {
    margin-right: 0;
  }
  #content .stripes .band_views .stripes .band_views ul.two_across li {
    margin: 0px !important;
  }
}
/* Banner images */
.video-banner .topbanner.pane-node-field-embedded-video {
  display: none;
}
.video-banner .topbanner.pane-node-field-image {
  display: block;
}

.node-type-page .topbanner.pane-node-field-embedded-video {
  background: #000;
  margin-bottom: 0;
}

.topbanner {
  width: 100%;
  height: inherit;
  float: left;
  overflow: hidden;
  border: 0;
}
.topbanner img {
  display: block;
  height: auto;
  width: calc(100% + 8px);
  position: relative;
  z-index: 1;
}

.js .activatesidemenu #content #rowswrapper div.stripes {
  padding-left: 0;
  margin-right: 0;
  margin-left: 0;
}

#views_slideshow_cycle_main_infobands-block_3 {
  height: inherit;
}

/* Overlay boxes */
.banneroverlay, .field-overlay-box-text {
  width: 100%;
  width: calc(100% - 40px);
  padding: .8em 20px;
  float: left;
  clear: both;
  background: none repeat scroll 0% 0% #FFF;
  background: rgba(255, 255, 255, 0.9);
  background: #dfdfdf;
  overflow: auto;
  z-index: 4 !important;
}

.banneroverlay.burlington_overlay {
  background: #a7d233;
  padding: 0;
  padding: 10px 20px;
}

.burlington_page_topbanner_overlay {
  background: #a7d233;
}
.burlington_page_topbanner_overlay h2 {
  color: #1375af;
  font-size: 2.5em;
  font-weight: 200;
  text-transform: uppercase;
  text-align: center;
  margin: 0 -20px;
  font-weight: 200;
}
.burlington_page_topbanner_overlay h2 span.biggernumber {
  font-size: 2.1em;
  color: #fff;
  clear: both;
  display: block;
  background: #1375af;
  width: 100%;
  padding: 18px 0px;
  font-weight: 400;
}
.burlington_page_topbanner_overlay h2 span.biggernumber sup {
  font-size: .6em;
  font-weight: 200;
}
.burlington_page_topbanner_overlay h2 span.smallertext {
  font-size: .7em;
  font-weight: 400;
}
.burlington_page_topbanner_overlay p {
  color: #fff;
  margin-bottom: 0 !important;
  margin: .4em 5% !important;
  line-height: 1.55em !important;
}
.burlington_page_topbanner_overlay p.quote_attribution {
  font-style: italic;
  text-align: right;
  padding: 0 0 1em;
  text-transform: uppercase;
  font-size: .8em !important;
}

@media only screen and (min-width: 800px) {
  .topbanner {
    width: 100%;
    float: left;
    overflow: hidden;
    border: 0;
  }
  .topbanner img {
    display: block;
    max-width: inherit;
    width: 1200px;
    height: inherit;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .topbanner1200x260 {
    height: 260px;
  }

  .topbanner1200x300 {
    height: 300px;
  }

  .topbanner1200x390 {
    height: 390px;
  }

  .banneroverlay, .field-overlay-box-text {
    width: 17.5%;
    padding: 10px 4.5% 10px 2.5%;
    float: right;
    background: none repeat scroll 0% 0% #FFF;
    background: rgba(255, 255, 255, 0.9);
    overflow: auto;
    position: relative;
    z-index: 4;
    margin-right: 0px;
    margin-top: 0;
  }

  .overlay1200x260 {
    height: 240px;
    margin-top: -261px;
  }

  .overlay1200x300 {
    height: 281px;
    margin-top: -301px;
  }

  .overlay1200x390 {
    height: 371px;
    margin-top: -391px;
  }

  .video-banner .topbanner.pane-node-field-embedded-video {
    margin: 0;
    display: block;
  }
  .video-banner .topbanner.pane-node-field-image {
    display: none;
  }

  .banneroverlay.burlington_overlay {
    background: #a7d233;
    width: 30%;
    width: calc(30% - 40px);
  }

  .burlington_page_topbanner_overlay h2 {
    font-size: 2em;
  }
  .burlington_page_topbanner_overlay h2 span.biggernumber {
    font-size: 0.1 0.8em;
  }
  .burlington_page_topbanner_overlay h2 span.biggernumber sup {
    font-size: .6em;
  }
  .burlington_page_topbanner_overlay h2 span.smallertext {
    font-size: .6em;
  }
  .burlington_page_topbanner_overlay p {
    font-size: .8em !important;
    font-weight: 400;
    margin-bottom: 0 !important;
    margin: 0 !important;
    line-height: 1.55em !important;
  }
  .burlington_page_topbanner_overlay p.quote_attribution {
    padding: 0;
    margin: 0 0 2em !important;
    font-size: .6em !important;
  }
}
@media only screen and (min-width: 1200px) {
  .banneroverlay, .field-overlay-box-text {
    margin-right: 0px !important;
  }

  .topbanner .field-embedded-video .player iframe {
    height: 55%;
  }

  .banneroverlay.burlington_overlay {
    background: #a7d233;
    width: 25%;
    width: calc(25% - 40px);
  }

  .burlington_page_topbanner_overlay h2 {
    font-size: 2.5em;
  }
  .burlington_page_topbanner_overlay h2 span.biggernumber {
    font-size: 2.1em;
  }
  .burlington_page_topbanner_overlay h2 span.biggernumber sup {
    font-size: .6em;
  }
  .burlington_page_topbanner_overlay h2 span.smallertext {
    font-size: .7em;
    font-weight: 400;
  }
}
.node-type-uvm-course .rightcol .pane-entity-field {
  padding: 1em 20px;
}
.node-type-uvm-course .bottomrow {
  background: none !important;
}
.node-type-uvm-course table {
  margin-bottom: 3em;
}
.node-type-uvm-course #directorylink {
  border-bottom: 1px #ccc solid;
  padding: 14px 10px;
  margin-bottom: 0;
}
.node-type-uvm-course .pane-node-field-course-number h3, .node-type-uvm-course .pane-node-field-course-number p, .node-type-uvm-course .pane-node-field-subject h3, .node-type-uvm-course .pane-node-field-subject p, .node-type-uvm-course .pane-node-field-credit-high h3, .node-type-uvm-course .pane-node-field-credit-high p {
  font-size: .9em;
  line-height: 1.2em !important;
  padding: 0 !important;
  margin: 0 !important;
}
.node-type-uvm-course .pane-node-field-course-number h3, .node-type-uvm-course .pane-node-field-subject h3, .node-type-uvm-course .pane-node-field-credit-high h3 {
  color: #333;
  text-transform: none;
  float: left;
  font-weight: 500;
  clear: left;
  margin-right: 20px !important;
}
.node-type-uvm-course .pane-node-field-course-number h3:after, .node-type-uvm-course .pane-node-field-subject h3:after, .node-type-uvm-course .pane-node-field-credit-high h3:after {
  content: ":";
}

.node-type-course-listings-page form, .node-type-uvm_course form {
  padding: 12px;
  margin-top: 0;
  margin-bottom: 20px;
}
.node-type-course-listings-page form #edit-term-wrapper, .node-type-uvm_course form #edit-term-wrapper {
  width: 100%;
}
.node-type-course-listings-page form .views-exposed-widgets, .node-type-uvm_course form .views-exposed-widgets {
  margin: 0;
}
.node-type-course-listings-page form label, .node-type-uvm_course form label {
  float: left;
  margin: .2em 20px .3em 0;
  text-transform: uppercase;
}
.node-type-course-listings-page .pane-remote-course-sections-by-subject-with-term-select, .node-type-uvm_course .pane-remote-course-sections-by-subject-with-term-select {
  margin-bottom: 2em;
}
.node-type-course-listings-page .pane-remote-course-sections-by-subject-with-term-select h3, .node-type-uvm_course .pane-remote-course-sections-by-subject-with-term-select h3 {
  margin-top: 2em;
  margin-bottom: 1em;
  border-top: 1px solid #ccc;
  padding-top: .8em;
}

@font-face {
  font-family: 'socialmedia';
  src: url("/sites/default/files/fontyourface/local_fonts/socialmedia-normal-normal/socialmedia.eot");
  src: url("/sites/default/files/fontyourface/local_fonts/socialmedia-normal-normal/socialmedia.eot") format("embedded-opentype"), url("/sites/default/files/fontyourface/local_fonts/socialmedia-normal-normal/socialmedia.woff") format("woff"), url("/sites/default/files/fontyourface/local_fonts/socialmedia-normal-normal/socialmedia.ttf") format("truetype"), url("/sites/default/files/fontyourface/local_fonts/socialmedia-normal-normal/socialmedia.svg#socialmedia") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"], [class*=" icon-"], .bolt {
  font-family: 'socialmedia';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.socialmedia {
  overflow: hidden;
  margin: 0;
}

.socialmedia li {
  list-style: none;
  font-size: 1.77777777777778em;
  float: left;
  margin: 0;
  padding: 0.3em;
  text-indent: 0;
}

.socialmedia li a {
  color: #666;
  border: 0;
}

.icon-arrow-down:before {
  content: "";
}

.icon-arrow-left:before {
  content: "";
}

.icon-arrow-right:before {
  content: "";
}

.icon-arrow-up:before {
  content: "";
}

.icon-three-bars:before {
  content: "";
}

.icon-bolt:before {
  content: "";
}

.icon-power:before {
  content: "";
}

.icon-lightning:before {
  content: "";
}

.icon-cog:before {
  content: "";
}

.icon-gear:before {
  content: "";
}

.icon-settings:before {
  content: "";
}

.icon-options:before {
  content: "";
}

.icon-generate:before {
  content: "";
}

.icon-home:before {
  content: "";
}

.icon-quill:before {
  content: "";
}

.icon-clock:before {
  content: "";
}

.icon-quotes-left:before {
  content: "";
}

.icon-quotes-right:before {
  content: "";
}

.icon-search:before {
  content: "";
}

.icon-leaf:before {
  content: "";
}

.icon-earth:before {
  content: "";
}

.icon-share:before {
  content: "";
}

.icon-wordpress:before {
  content: "";
}

.icon-megaphone:before {
  content: "";
}

.icon-advertise:before {
  content: "";
}

.icon-notify:before {
  content: "";
}

.icon-announce:before {
  content: "";
}

.icon-calendar:before {
  content: "";
}

.icon-date:before {
  content: "";
}

.icon-schedule:before {
  content: "";
}

.icon-chevron-down:before {
  content: "";
}

.icon-chevron-left:before {
  content: "";
}

.icon-chevron-right:before {
  content: "";
}

.icon-chevron-small-down:before {
  content: "";
}

.icon-chevron-small-left:before {
  content: "";
}

.icon-chevron-small-right:before {
  content: "";
}

.icon-chevron-small-up:before {
  content: "";
}

.icon-chevron-thin-down:before {
  content: "";
}

.icon-chevron-thin-left:before {
  content: "";
}

.icon-chevron-thin-right:before {
  content: "";
}

.icon-chevron-thin-up:before {
  content: "";
}

.icon-chevron-up:before {
  content: "";
}

.icon-dots-three-horizontal:before {
  content: "";
}

.icon-magnifying-glass:before {
  content: "";
}

.icon-facebook:before {
  content: "";
}

.icon-flickr:before {
  content: "";
}

.icon-github:before {
  content: "";
}

.icon-google:before {
  content: "";
}

.icon-instagram:before {
  content: "";
}

.icon-linkedin:before {
  content: "";
}

.icon-pinterest:before {
  content: "";
}

.icon-tumblr:before {
  content: "";
}

.icon-twitter:before {
  content: "";
}

.icon-vimeo:before {
  content: "";
}

.icon-youtube:before {
  content: "";
}

.icon-youtube-square:before {
  content: "";
}

.icon-angle-double-down:before {
  content: "";
}

.icon-angle-double-up:before {
  content: "";
}

.icon-angle-double-right:before {
  content: "";
}

.icon-angle-double-left:before {
  content: "";
}

.icon-rss-square:before {
  content: "";
}

.icon-dot-circle-o:before {
  content: "";
}

.icon-video-camera:before {
  content: "";
}

.icon-snapchat-ghost:before {
  content: "";
}

.icon-snapchat:before {
  content: "";
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.rightcol p, .rightcol ul, .rightcol ol {
  line-height: 1.5;
  word-wrap: inherit;
}
.rightcol img {
  /* 	float:left; off for grids */
  width: 100%;
  height: inherit;
}
.rightcol h3 {
  /* color:$uvm16090-deepblue; */
}
.rightcol h4 {
  margin-top: 1em;
}
.rightcol ul {
  margin-left: 0;
}
.rightcol ul li {
  /* padding-left:20px; */
}

.four_equalcol_4 .band_extra_links ul, .two_col_2 .band_extra_links ul, .rightcol .band_extra_links ul {
  text-align: right !important;
  margin-bottom: .4em !important;
  list-style: none;
}
.four_equalcol_4 .band_extra_links ul li, .two_col_2 .band_extra_links ul li, .rightcol .band_extra_links ul li {
  font-weight: 500;
  font-size: .8em !important;
  line-height: 1em !important;
  text-transform: uppercase;
}
.four_equalcol_4 .band_extra_links ul li a:after, .two_col_2 .band_extra_links ul li a:after, .rightcol .band_extra_links ul li a:after {
  content: " >>";
}

.four_equalcol_4 .band_extra_links, .two_col_2 .band_extra_links {
  margin: 0 10px 2em 0;
  float: right;
  clear: both;
}

/* UVM STORIES and the slideshow with same format - needs work */
#content .pane-views-uvm-story-view-block img, #content .pane-uvm-story-view img, #content .vertical_slider_nobleed img, #content .pane-special-slideshows img, #content .pane-faculty-stories-panel-pane-1 img, #content .faculity-only img {
  padding-bottom: 1em;
}
#content .pane-views-uvm-story-view-block .view-footer, #content .pane-uvm-story-view .view-footer, #content .vertical_slider_nobleed .view-footer, #content .pane-special-slideshows .view-footer, #content .pane-faculty-stories-panel-pane-1 .view-footer, #content .faculity-only .view-footer {
  float: left;
  border-top: 2px dashed #ccc !important;
  width: 100%;
  padding-top: 0px;
  margin-top: 4px;
}
#content .pane-views-uvm-story-view-block .view-footer .field-link a, #content .pane-uvm-story-view .view-footer .field-link a, #content .vertical_slider_nobleed .view-footer .field-link a, #content .pane-special-slideshows .view-footer .field-link a, #content .pane-faculty-stories-panel-pane-1 .view-footer .field-link a, #content .faculity-only .view-footer .field-link a {
  padding-top: 5px;
}
#content .pane-views-uvm-story-view-block h3.pane-title, #content .pane-uvm-story-view h3.pane-title, #content .vertical_slider_nobleed h3.pane-title, #content .pane-special-slideshows h3.pane-title, #content .pane-faculty-stories-panel-pane-1 h3.pane-title, #content .faculity-only h3.pane-title {
  margin-bottom: .6em;
  padding-bottom: 0;
  line-height: 1.2em;
}
#content .pane-views-uvm-story-view-block .views-field-title, #content .pane-uvm-story-view .views-field-title, #content .vertical_slider_nobleed .views-field-title, #content .pane-special-slideshows .views-field-title, #content .pane-faculty-stories-panel-pane-1 .views-field-title, #content .faculity-only .views-field-title {
  font-size: 1.1em;
  font-weight: 500;
  margin-top: .6em;
  margin-bottom: .4em;
}
#content .pane-views-uvm-story-view-block div.field-link a, #content .pane-views-uvm-story-view-block div.field-content a, #content .pane-uvm-story-view div.field-link a, #content .pane-uvm-story-view div.field-content a, #content .vertical_slider_nobleed div.field-link a, #content .vertical_slider_nobleed div.field-content a, #content .pane-special-slideshows div.field-link a, #content .pane-special-slideshows div.field-content a, #content .pane-faculty-stories-panel-pane-1 div.field-link a, #content .pane-faculty-stories-panel-pane-1 div.field-content a, #content .faculity-only div.field-link a, #content .faculity-only div.field-content a {
  float: left;
  font-size: .8em;
  font-weight: 600;
  text-transform: uppercase;
  padding-top: 1.6em;
  border-bottom: 0px dashed #444;
}

/* VERTICAL SLIDERS BLEED  */
.rightcol ~ .bleed {
  padding: 0 !important;
}

.rightcol .bleed {
  margin-left: -20px;
  width: calc(100% + 40px);
  padding-top: 0em !important;
}
.rightcol .bleed p {
  padding-top: 1em;
  padding-bottom: 1em;
}
.rightcol .bleed img {
  width: 100%;
  margin-left: -20px;
}

#vertical_slider, .rightcol .bleed {
  padding: 0 !important;
}
#vertical_slider h3, .rightcol .bleed h3 {
  margin: 0;
  padding-left: 20px;
  padding-top: 1.3em;
}
#vertical_slider .views-field-field-media-override .field-content, #vertical_slider .views-field-field-image .field-content, .rightcol .bleed .views-field-field-media-override .field-content, .rightcol .bleed .views-field-field-image .field-content {
  background: #fff;
  padding: 0;
  float: left;
}
#vertical_slider .views-field-field-media-override .field-content img, #vertical_slider .views-field-field-image .field-content img, .rightcol .bleed .views-field-field-media-override .field-content img, .rightcol .bleed .views-field-field-image .field-content img {
  padding: 0;
  margin-left: 0;
  width: 100%;
  height: inherit;
}
#vertical_slider .views-field-title, #vertical_slider .views-field-field-sidebar-body, .rightcol .bleed .views-field-title, .rightcol .bleed .views-field-field-sidebar-body {
  margin: 0;
  font-size: .955em;
  float: left;
  margin-top: 1.4em;
  margin: 1.4em 20px .6em;
}
#vertical_slider .views-field-field-sidebar-body, .rightcol .bleed .views-field-field-sidebar-body {
  padding-top: 0;
  margin-top: 1em;
}
#vertical_slider .views-field-counter, .rightcol .bleed .views-field-counter {
  margin-left: 4%;
}

/* BLEED Transparent images with shadows */
.bleed_dropshadow p.field-content {
  padding-top: 0 !important;
}

/* BLEED COLORS */
.bleed_blue {
  background: #159fda !important;
}
.bleed_blue h3 {
  background: #fff;
}
.bleed_blue .views-field-title, .bleed_blue .views-field-field-sidebar-body {
  background: #159fda;
  color: #fff;
}
.bleed_blue .views-field-title a {
  color: #fff;
}

.vs_white, .bleed_white {
  background: #fff !important;
  float: left;
}
.vs_white h3.pane-title, .bleed_white h3.pane-title {
  margin-bottom: 1.6em;
  padding-bottom: 0;
  line-height: 1.2em;
}
.vs_white .views-field-title, .bleed_white .views-field-title {
  margin-top: 1em;
  float: left;
}
.vs_white .views-field-title, .vs_white .views-field-field-sidebar-body, .bleed_white .views-field-title, .bleed_white .views-field-field-sidebar-body {
  background: #fff !important;
}
.vs_white .views-field-title a, .vs_white .views-field-field-sidebar-body, .bleed_white .views-field-title a, .bleed_white .views-field-field-sidebar-body {
  color: #159fda;
}
.vs_white .views-field-counter, .bleed_white .views-field-counter {
  background: transparent url("../images/ltgrey.png") no-repeat 0 0;
}

/* SIDEBAR CALENDARS */
#content div.events_list ul {
  list-style: none !important;
  margin-left: 0;
}
#content div.events_list li {
  line-height: 1.5;
  margin-left: 0;
  margin-bottom: 1em;
  font-size: .9em;
}
#content div.events_list li div.field-title {
  text-transform: uppercase;
}
#content div.events_list div.views-field-field-event-link a:visited,
#content div.events_list div.views-field-field-event-link a:link {
  font-size: 1em;
  text-transform: uppercase;
  font-style: normal;
  color: #159fda;
  border-bottom: 1px dashed #ccc;
  font-weight: 400;
  margin-bottom: 5px;
}
#content div.events_list div.views-field-field-event-link a:hover {
  color: #f47d20;
  border-bottom: 1px dashed #f47d20;
}

.pane-bored-events table {
  background: #fff;
  padding: 4px;
  line-height: 1.3em;
  margin-bottom: 1.4em;
}
.pane-bored-events table .field-date {
  border-bottom: 1px dashed #ccc;
  font-weight: 400;
  text-transform: uppercase;
}
.pane-bored-events table .views-field-title, .pane-bored-events table .field-date {
  margin: auto 6px;
  padding: .6em 0  .2em;
  float: left;
}
.pane-bored-events .view-footer a {
  float: left;
  font-size: .8em;
  font-weight: 600;
  text-transform: uppercase;
  padding-top: 1.6em;
}
.pane-bored-events .view-footer a:link, .pane-bored-events .view-footer a:visited {
  color: #444;
}

@media only screen and (min-width: 800px) {
  #vertical_slider {
    /* 	width:calc(22% - 2px)  removed for zen grids implementation */
  }

  /* UVM STORIES */
  .pane-views-uvm-story-view-block, #content .vertical_slider_nobleed {
    padding-bottom: 1.6em;
  }
  .pane-views-uvm-story-view-block #views_slideshow_cycle_teaser_section_uvm_story_view-block, #content .vertical_slider_nobleed #views_slideshow_cycle_teaser_section_uvm_story_view-block {
    float: left;
    width: 100%;
  }
  .pane-views-uvm-story-view-block #views_slideshow_cycle_teaser_section_uvm_story_view-block img, #content .vertical_slider_nobleed #views_slideshow_cycle_teaser_section_uvm_story_view-block img {
    width: 100%;
    height: inherit;
  }

  .views_slideshow_cycle_main_move_mountains-block {
    float: left;
    width: 100%;
  }

  .views_slideshow_cycle_main_move_mountains-block img {
    width: 100%;
    height: inherit;
  }
}
.node-uvm-news-story .singlecol p > br {
  margin-bottom: 1em;
  width: 100%;
  content: "arrrrrgh";
  display: block;
}

.node-uvm-news-story .singlecol {
  margin-top: 1em;
}

/* #views_slideshow_cycle_main_news-block_2_1 .field-image a {
	float:left;
} */
#views_slideshow_cycle_main_news-block_2_1 img {
  position: relative;
  z-index: -10;
  width: 100% !important;
}

#views_slideshow_cycle_main_news-block_2_1 h4 {
  background: #666;
  background: rgba(80, 80, 80, 0.7);
  color: #fff;
  height: 1em;
  padding: .2em 2% .5em;
  margin-top: -2.2em;
  margin-bottom: -1.4em;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75em !important;
  font-weight: 300;
  float: left;
}

#views_slideshow_cycle_main_news-block_2_1 h2 {
  background: #f5f5f5;
  padding: .3em 2% 1.6em;
  font-weight: 400;
  font-size: .85em;
  width: 96%;
  margin-top: -4px;
  margin-bottom: 0;
  border-bottom: 1px solid #ccc;
}

#content h2.horiz_news_slider a:after {
  color: #f47d20;
  text-transform: uppercase;
  font-size: .75em;
  font-weight: 500;
  content: " -- read story ";
}
#content h2.horiz_news_slider a:before {
  content: "  -- ";
}

.views-field-counter {
  float: left;
  width: 20px;
  height: 20px;
  background: transparent url("../images/white.png") no-repeat 0 0;
  margin-right: 6px;
  color: transparent;
  cursor: pointer;
}
.views-field-counter a {
  color: transparent !important;
  border-bottom: 0px !important;
}

.views-field-counter:hover {
  background: transparent;
}

.active .views-field-counter {
  background: transparent;
}

@media (min-width: 600px) {
  #views_slideshow_cycle_main_news-block_2_1 h4 {
    bottom: 4.7em;
    bottom: 4.3em;
    margin: 0;
    float: none;
    position: absolute;
  }

  #views_slideshow_cycle_main_news-block_2_1 h2 {
    background: rgba(245, 245, 245, 0.8);
    padding: .6em 2%  1.6em;
    font-size: .9em;
    position: absolute;
    bottom: 5px;
    bottom: .4em;
    bottom: 0px;
    width: 96%;
    height: 1.4em;
    border-bottom: 0;
    margin: 0;
    overflow: hidden;
  }
}
@media (min-width: 700px) and (max-width: 800px) {
  #views_slideshow_cycle_main_news-block_2_1 img {
    width: 800px !important;
  }
}
@media (min-width: 400px) {
  #content .node-uvm-news-page .news-subfeature-pane .news-subfeature img, #content .node-uvm-news-page .news-subfeature-pane .news-subfeature .field-featured-video {
    float: left;
    width: 45%;
    padding-right: 1em;
    overflow: hidden;
  }
}
@media (min-width: 480px) {
  #content .node-uvm-news-story .undersizeImage, #content .node-uvm-news-page .news-feature .undersizeImage {
    float: left;
    width: 60%;
    margin-right: 20px;
  }

  #content .node-uvm-news-page .news-feature .undersizeImage {
    width: 62.5%;
  }
}
@media (min-width: 800px) {
  .pane-news .view-display-id-block_2, .overviewimage {
    width: 51%;
    margin-right: 4%;
    /* changed to accomodate new grids proportions */
    float: left;
  }

  .overviewimage {
    padding-bottom: 1.2em;
  }

  #views_slideshow_cycle_main_news-block_2_1 {
    margin-bottom: 0;
  }

  .panel-pane.pane-entity-field.pane-node-field-body {
    padding-left: 80px;
  }
}
.node-type-uvm-news-story h1 {
  padding-bottom: 0.29411764705882em;
  margin-bottom: 0;
}

#content .node-uvm-news-story .toprow {
  margin-bottom: 1em;
  padding-bottom: .5em;
  border-bottom: 1px #ccc solid;
}
#content .node-uvm-news-story .toprow .field-subhead {
  font-weight: 400;
  color: #555;
}
#content .node-uvm-news-story .toprow .field-socialmedia {
  margin-top: 1.17647058823529em;
}
#content .node-uvm-news-story .centercol {
  padding-top: 0;
}
#content .node-uvm-news-story .rightcol .pane-entity-field {
  border: none;
}
#content .node-uvm-news-story .rightcol .pane-node-field-publish-date {
  padding-bottom: 0;
}
#content .node-uvm-news-story .rightcol .pane-node-field-author {
  padding-bottom: 0;
}
#content .node-uvm-news-story .rightcol .field-author {
  text-transform: uppercase;
}
#content .node-uvm-news-story .rightcol .field-author:before {
  content: "by ";
}
#content .node-uvm-news-story .rightcol .pane-node-field-related-links, #content .node-uvm-news-story .rightcol .pane-node-field-additional-photo-1, #content .node-uvm-news-story .rightcol .pane-node-field-additional-photo-2, #content .node-uvm-news-story .rightcol .pane-node-field-additional-video-1, #content .node-uvm-news-story .rightcol .pane-node-field-additional-video-2, #content .node-uvm-news-story .rightcol .pane-node-field-featured-quote {
  border-top: 1px dashed #ccc;
}
#content .node-uvm-news-story .rightcol .pane-node-field-additional-video-title {
  padding-bottom: 0;
  border-top: 1px dashed #ccc;
}
#content .node-uvm-news-story .rightcol .pane-node-field-additional-video-transcrip {
  padding-top: 0;
}
#content .node-uvm-news-story .content > img:first-of-type {
  max-width: none;
  width: 100%;
}
#content .node-uvm-news-story .field-body > p:first-of-type {
  font-size: 1.1333em;
}
#content .node-uvm-news-story .field-featured-quote {
  border-right: none;
  color: #007155;
  font-family: "Oswald", sans-serif;
  font-size: 1.2em;
  letter-spacing: .03em;
}
#content .node-uvm-news-story .field-featured-photo-caption, #content .node-uvm-news-story .video-embed-description, #content .node-uvm-news-story .field-additional-photo-1-caption, #content .node-uvm-news-story .field-additional-photo-2-caption {
  font-style: italic;
  margin-bottom: 1.58823em;
}
#content .node-uvm-news-story .pane-node-field-image + .pane-node-field-body {
  margin-top: 1em;
}
#content .node-uvm-news-story .field-related-links a {
  display: list-item;
  margin-left: 1.2em;
}
#content .node-uvm-news-story .pane-node-field-publish-date h3, #content .node-uvm-news-story .pane-node-field-publish-date div {
  margin-top: 1.5em;
  border-top: 1px solid #cecece;
  float: left;
  padding-left: 80px;
  font-size: .9em;
  color: #7f7e7e;
  font-weight: 400;
  line-height: 1.5em;
}
#content .node-uvm-news-story .pane-node-field-publish-date div {
  padding: 0 1em 0 0.5em;
}
#content .node-uvm-news-story .pane-node-field-publish-date > span {
  display: none;
}

#content .node-uvm-news-page .rightcol .item-list li {
  list-style: none;
  margin-left: 0;
  margin-bottom: 1.5em;
}
#content .node-uvm-news-page .news-subfeature-pane {
  border-top: 1px #ccc solid;
}
#content .node-uvm-news-page .news-feature {
  padding-bottom: 2em;
  overflow: hidden;
}
#content .node-uvm-news-page .news-feature .news-feature-image-wrapper {
  margin-top: 1em;
}
#content .node-uvm-news-page .news-feature .news-feature-image-wrapper img {
  max-width: none;
  width: 100%;
}
#content .node-uvm-news-page .news-feature p {
  font-size: 1.1333em;
  margin-top: 1em;
}
#content .node-uvm-news-page .news-feature h2 {
  margin-bottom: 0;
  margin-top: 0;
  padding-bottom: .29411764705882em;
}
#content .node-uvm-news-page .full-story-link {
  text-align: right;
  text-transform: uppercase;
  font-size: .764705em;
  font-weight: 700;
}
#content .node-uvm-news-page .news-subfeature {
  margin-top: 2em;
  overflow: hidden;
}
#content .node-uvm-news-page .news-subfeature .news-subfeature {
  padding-bottom: 1em;
}
#content .node-uvm-news-page .field-subhead {
  font-size: .94117647058824em;
  font-weight: 400;
}
#content .node-uvm-news-page .pager {
  text-transform: uppercase;
  font-size: .764705em;
  font-weight: 700;
}

@media (min-width: 800px) {
  #views_slideshow_cycle_main_news-block_2_1 .field-image a {
    float: left;
  }

  #content .node-uvm-news-page .news-feature {
    padding-left: 80px;
  }
  #content .node-uvm-news-page .news-feature h2, #content .node-uvm-news-page .news-feature .field-subhead, #content .node-uvm-news-page .news-feature .news-feature-image-wrapper {
    margin-left: -80px;
    width: calc(100% + 80px);
  }
  #content .node-uvm-news-page .news-feature .undersizeImage {
    width: 62.5%;
  }
  #content .node-uvm-news-page .news-subfeature-pane {
    margin-left: 80px;
    padding-top: 1em;
    padding-bottom: 2em;
  }

  .node-uvm-news-story .singlecol .pane-node-field-body {
    padding-top: 0;
    margin-top: 0 !important;
  }
}
/* GENERAL BUTTON STYLES */
/* below is from old magicscript stylesheet but with a new name - button  */
.button {
  background-color: #66ac47;
  border-radius: .625em;
  box-shadow: 1px 1px 8px #666;
  color: #fff;
  font-family: "Oswald", sans-serif, serif;
  font-size: .9375em;
  font-weight: 300;
  letter-spacing: .06em;
  margin-bottom: .25em;
  margin-top: 1em;
  max-height: 4.75em;
  overflow: hidden;
  padding: .625em 1em .625em 1.5em;
  text-shadow: 1px 1px 4px #666;
  text-transform: uppercase;
}

#content p.button, #content p.button-arrow, #content p.button-green {
  margin: 0 0 1.33333em;
}
#content .button a, #content .button-arrow a, #content .button-green a {
  border-bottom: 0;
}

.button a, .button-arrow a, .button-green a {
  text-decoration: none;
  display: inline-block;
  line-height: 1.3em;
}
.button a:link, .button a:visited, .button-arrow a:link, .button-arrow a:visited, .button-green a:link, .button-green a:visited {
  color: #ffffff;
}

.button-arrow {
  background-color: #66ac47;
  border-radius: .625em;
  box-shadow: 1px 1px 8px #666;
  color: #fff;
  font-family: "Oswald", sans-serif, serif;
  font-size: .9375em;
  font-weight: 300;
  letter-spacing: .06em;
  margin-bottom: .25em;
  margin-top: 1em;
  max-height: 4.75em;
  overflow: hidden;
  padding: .625em 1em .625em 1.5em;
  text-shadow: 1px 1px 4px #666;
  text-transform: uppercase;
  background-image: url("/sites/default/files/arrow-rule-left1.png");
  background-repeat: no-repeat;
  background-size: 45px 45px;
  background-position: right;
}

.button-green {
  background-color: #66ac47;
  border-radius: .625em;
  box-shadow: 1px 1px 8px #666;
  color: #fff;
  font-family: "Oswald", sans-serif, serif;
  font-size: .9375em;
  font-weight: 300;
  letter-spacing: .06em;
  margin-bottom: .25em;
  margin-top: 1em;
  max-height: 4.75em;
  overflow: hidden;
  padding: .625em 1em .625em 1.5em;
  text-shadow: 1px 1px 4px #666;
  text-transform: uppercase;
  background-position: right;
  background-color: #007155;
  background-image: url("/sites/default/files/arrow-rule-left1.png");
  background-repeat: no-repeat;
  background-size: 45px 45px;
}

.button-arrow a, .button-green a {
  padding-right: 20%;
}

.field-band-4-flexible .button-arrow {
  background-color: #007155;
}

/* on hover this is orange and square - useful? */
.btn {
  display: inline-block;
  font-size: 0.77778em;
  line-height: 0.42857em;
  font-weight: 700;
  padding: 17px 12px 16px;
  text-align: center;
  text-decoration: none;
}

.btn:link,
.btn:visited {
  border: 1px solid #666;
  border-radius: 3px;
  color: #666;
  background-color: #fff;
}

.btn:hover,
.btn:active {
  border: 1px solid #c75d2c;
  color: #fff;
  background-color: #c75d2c;
}

.inline {
  margin-bottom: 24px;
}

.accordionButtonBar {
  border-top: 1px solid #ccc;
  cursor: pointer;
}
.accordionButtonBar:after {
  font-family: 'socialmedia';
  content: "";
  speak: none;
  font-style: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.25em;
  text-indent: 0;
  padding-left: 5px;
}

.accordionButtonBar.activebutton:after {
  content: "" !important;
}

@media only screen and (min-width: 600px) {
  .button, .button-arrow, .button-green {
    max-width: 400px;
  }
}
/* button20 class from admissions */
p.button20 {
  margin: 0 0 1.33333em;
  background-color: #66ac47;
  border-radius: 0.625em;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.28);
  font-family: Oswald, sans-serif, serif;
  font-size: 0.9375em;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 0.25em;
  margin-top: 48px !important;
  max-height: 4.75em;
  overflow: hidden;
  text-shadow: 1px 1px 4px #00200c;
  text-transform: uppercase;
  text-align: center;
  box-sizing: border-box;
  display: inline-block;
  margin-right: 16px !important;
  font-size: 17px !important;
  color: #fff;
  padding: 8px 0px;
}

@media screen and (min-width: 900px) {
  p.button20 {
    width: 18%;
  }
}
p.button20:hover {
  background-color: #337914;
}

p.button20 a:hover {
  color: #fff !important;
}
p.button20 a:focus {
  color: #fff !important;
}

p.button20 a {
  color: #fff !important;
  border-bottom: 0px !important;
}

/* ==========================================================================
   Tables
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  /* Prevent cramped-looking tables */
  /* Add vertical rhythm margins. */
  margin: 0.33333em 0;
  font-size: 0.88888888888889em;
}

table caption {
  color: #464646;
  letter-spacing: .3125em;
  padding-bottom: 1em;
  text-transform: uppercase;
  /* width:100%; */
}

table th {
  color: #66ac47;
  background: #f9f9f9;
  padding: .5em;
  text-align: center;
  vertical-align: top;
  font-weight: 400;
}

table td {
  padding: .3125em;
  padding: .5em;
}

table th, table td {
  border: 1px solid #e2e2e2;
}

/* ==========================================================================
   Responsive Tables
   ========================================================================== */
table.responsive1, table.responsive2, table.responsive3 {
  width: 100%;
}

table.responsive1 th, table.responsive2 th, table.responsive3 th {
  text-align: left;
}

table.responsive1 td, table.responsive2 td, table.responsive3 td {
  min-height: 1.625em;
  word-wrap: break-word;
}

@media only screen and (max-width: 760px) {
  table.responsive1, table.responsive1 thead, table.responsive1 tbody, table.responsive1 th, table.responsive1 td, table.responsive1 tr {
    display: block;
  }

  table.responsive1 thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  table.responsive1 td, table.responsive1 th {
    padding: .25em;
  }

  table.responsive1 tr {
    border: 1px solid #ccc;
  }

  table.responsive1 tr:nth-of-type(even) {
    background: #f3f3f3;
  }

  table.responsive1 td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }

  table.responsive1 td:before {
    position: absolute;
    top: .375em;
    left: .375em;
    width: 45%;
    padding-right: .625em;
    white-space: nowrap;
    font-weight: 700;
    content: attr(data-label);
  }

  table.responsive2 {
    border-bottom: 1px solid #ccc;
  }

  table.responsive2 thead {
    display: none;
  }

  table.responsive2 td {
    display: block;
  }

  table.responsive2 tbody > tr:first-child > th + td {
    border-top: 1px solid #e2e2e2;
  }

  table.responsive2 td:first-child {
    border-top: 3px solid #ccc;
    text-align: left;
  }

  table.responsive3 .cf:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
  }

  table.responsive3 * html .cf {
    zoom: 1;
  }

  table.responsive3 *:first-child + html .cf {
    zoom: 1;
  }

  table.responsive3 table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
  }

  table.responsive3 th, table.responsive3 td {
    margin: 0;
    vertical-align: top;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
  }

  table.responsive3 th {
    text-align: left;
    min-height: 1.625em;
  }

  table.responsive3 table {
    display: block;
    position: relative;
    width: 100%;
  }

  table.responsive3 thead {
    display: block;
    float: left;
  }

  table.responsive3 tbody {
    display: block;
    width: auto;
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
  }

  table.responsive3 thead tr {
    display: block;
    border-right: 1px solid #e2e2e2;
  }

  table.responsive3 th {
    display: block;
    text-align: right;
  }

  table.responsive3 tbody tr {
    display: inline-block;
    vertical-align: top;
  }

  table.responsive3 td {
    display: block;
    text-align: left;
    margin-right: -.25em;
  }

  table.responsive3 tbody tr {
    border-left: 1px solid #e2e2e2;
  }

  table.responsive3 tbody tr:first-child {
    border-left: 0;
  }

  table.responsive3 th:last-child {
    border-bottom: 1px solid #e2e2e2;
  }
}
/* More styles are found in _infobands.scss */
.accordion_wrapper ul li {
  margin-bottom: 0;
  margin-left: 20px;
}

.ui-widget {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
}

#locationarea h3.pane-title {
  display: none;
}

#content .accordion_wrapper div.field-link {
  background: #ccc;
}
#content .accordion_wrapper div.field-link a {
  float: left;
  font-size: .8em;
  font-weight: 500;
  text-transform: uppercase;
  padding-top: 1.6em;
}
#content .accordion_wrapper div.field-link a:link, #content .accordion_wrapper div.field-link a:visited {
  color: #888;
}
#content .accordion_wrapper div.field-link a:first-child:before {
  font-family: 'socialmedia';
  content: "";
  font-size: 2em;
  padding: 5px 8px 5px 0;
  vertical-align: middle;
  color: #a7d233;
}

.accordion_wrapper p a {
  clear: left;
  font-size: .8em;
}

/* =============================================================================
   Form Inline styles
   ========================================================================== */
#content form {
  display: block;
  margin-top: 48px;
  margin-bottom: 48px;
  padding: 24px;
  background-color: #f4f4f4;
  border-radius: 3px;
}
#content form ul {
  padding: 0;
  list-style: none;
}
#content label, #content legend {
  margin: 0 auto 0.85714em;
  color: auto;
}
#content legend {
  float: left;
  width: 100%;
  text-transform: uppercase;
  color: #999;
  font-weight: 400;
  font-size: 90%;
  margin-bottom: 1.5em;
}
#content label {
  font-weight: 400;
  margin-bottom: .25em;
}
#content label.option {
  font-weight: 300;
}
#content ul label {
  font-size: 0.94444444444444em;
  line-height: 1.28571em;
  margin: 0 auto 0.25em;
  color: auto;
  text-transform: none;
  text-shadow: none;
}
#content .input-text,
#content textarea,
#content select {
  border: 1px solid #d7d2d2;
  padding: 9px 12px;
  border-radius: 3px;
}
#content fieldset {
  outline: 0;
  border: 0;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  margin-bottom: 2em;
  padding: 0;
  padding-top: .325em;
}
#content fieldset li {
  margin-left: 0;
}
#content .input-text {
  width: 90%;
}
#content textarea {
  width: 100%;
  height: 6em;
}
#content button, #content input, #content select, #content textarea {
  font: inherit;
}
#content select {
  width: auto;
  font-size: 90%;
  background: #fff;
}
#content button, #content html input[type="button"], #content input[type="reset"], #content input[type="submit"] {
  background: #fff;
  -webkit-border-radius: 5;
  -moz-border-radius: 5;
  border-radius: 5px;
  padding: 5px 20px 5px 20px;
  border: solid #ccc 1px;
  text-decoration: none;
  box-shadow: 3px 3px 12px #ccc;
}
#content form table th {
  font-size: 90%;
  text-transform: uppercase;
}
#content input[type="text"], #content input[type="email"] {
  width: 100%;
}
#content input[type="file"] {
  border: 1px solid #ccc;
  padding: 5px;
  background: #fff;
}
#content input#edit-submitted-upload-example-upload.form-file {
  margin-right: 10px;
}
#content .form-managed-file input[value="Upload"] {
  display: none;
  visibility: hidden;
}

.ui-datepicker th, .ui-datepicker-title {
  font: inherit;
  font-weight: normal;
}

.flex-field div.form-item {
  display: inline-flex;
  padding: 0px 5px 0 5px;
}
.flex-field div.form-item label {
  padding: 0px 10px 10px 3px;
  margin-top: -2px !important;
}

/* ==========================================================================
   Search
   ========================================================================== */
.cse .gs-result .gs-snippet, .gs-result .gs-snippet, .cse .gs-spelling-original, .gs-spelling-original {
  font-size: 16px !important;
  line-height: 1.6 !important;
}

.gsc-results a:link, .gsc-results a:visited, .gsc-input a:link, .gsc-input a:visited {
  border-bottom: 0;
  /* turn off underlines on all link results */
}

.inacgsc-control-cse .gs-result .gs-title, .gsc-control-cse .gs-result .gs-title * {
  font-size: 20px !important;
}

.gsc-results {
  border: 0;
}

.gsc-control-cse, .gs-title, .gs-snippet, .gs-result-info, .gs-visibleUrl, .gsc-tabHeader {
  font-weight: 400;
}

div.gsc-above-wrapper-area {
  border-bottom: 0;
}

div.gs-webResult.gs-result {
  padding: 2em 5px;
}

div.gsc-webResult.gsc-result {
  border-top: 1px #ccc solid;
}

div.gs-spelling {
  color: #676767;
  font-style: italic;
}

div.gsc-webResult.gsc-result:hover {
  border-top: 1px #ccc solid;
}

div.gsc-webResult.gsc-result .gs-image {
  margin-bottom: 8px;
}

#gsc-iw-id1 {
  width: 100%;
}

.gsc-search-button, .gsc-search-button-v2 {
  background-color: #007155 !important;
  border: 1px solid #007155 !important;
  border-bottom-left-radius: 0 !important;
  border-radius: 2px;
  border-top-left-radius: 0 !important;
  font-family: inherit;
  font-size: 0.8rem !important;
  font-weight: 300 !important;
  letter-spacing: .1em;
  color: #FFF;
  height: 27.5px !important;
  min-width: 54px !important;
  padding: 0 8px !important;
  margin-left: 0px !important;
  text-transform: uppercase;
}

.gsc-tabsArea .gsc-tabHeader {
  padding: .5em 1em;
  color: #ccc;
}

.gsc-results-wrapper-visible .gsc-refinementsArea {
  border-bottom: none;
}

.gsc-tabsArea .gsc-tabHeader {
  text-transform: capitalize;
}

.gsc-option-menu-container .gsc-selected-option-container {
  box-shadow: none;
  font-size: 10px;
}

.gsc-result .gs-title {
  color: #818181 !important;
  font-weight: normal;
}

a.gs-title:hover, .gcsc-more-maybe-branding-root a:hover {
  border-bottom: dashed 1px #000;
}

.gsc-tabsArea .gsc-tabHeader.gsc-tabhInactive:hover {
  color: #000;
}

.gsc-tabsArea .gsc-tabHeader.gsc-tabhActive {
  border-bottom: 2px solid #007155;
}

.gs-title b, .gs-snippet b {
  font-weight: 700;
}

.gsc-results .gsc-cursor-box .gsc-cursor-page {
  color: #444;
  text-decoration: none !important;
  background-color: #f5f5f5;
  padding: 2px 5px 2px 5px;
}

.gsc-results .gsc-cursor-box .gsc-cursor-current-page {
  text-shadow: none !important;
  padding: 4px 7px !important;
}

.gsc-results .gsc-cursor-box .gsc-cursor-current-page {
  background-color: #007155 !important;
  border-radius: 50%;
  color: #fff !important;
  padding: 4px;
}

.gsc-results .gsc-cursor-box .gsc-cursor-page:hover {
  color: #000;
  font-weight: 600;
}

.gsc-control-wrapper-cse form {
  background: none;
}

.gsc-control-wrapper-cse td {
  border: none;
}

.gsst_a .gscb_a {
  color: #72777c !important;
  cursor: pointer;
  font-size: 16px;
}

.gsst_a .gscb_a:hover {
  color: #000 !important;
  cursor: pointer;
}

.gsc-control-cse .gs-spelling, .gsc-control-cse .gs-result .gs-title, .gsc-control-cse .gs-result .gs-title * {
  text-decoration: none;
}

.gsc-search-box table th, .gsc-search-box table td, .gsc-search-box table tbody {
  border: none;
}

.totop {
  display: none;
}
.totop a {
  position: fixed;
  bottom: 1.5em;
  right: 1.5em;
  background: #92bd3f;
  color: #fff;
  display: block;
  padding: .5em;
  box-shadow: -4px 4px 15px #999;
  border: 2px #fff solid;
  border-radius: 8px;
  font-size: 150%;
}

.screen-reader-text {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.singlecol input.gsc-search-button, .singlecol table.gsc-search-box input.gsc-input {
  height: 100% !important;
  display: inline;
  padding: 0 10px;
}

@media screen and (min-width: 800px) {
  .totop a {
    display: none;
  }
}
.search-em {
  font-size: 24px !important;
}

.region-emergency {
  background: #fff;
  /* Links */
}
.region-emergency a:link,
.region-emergency a:visited {
  color: #191E23;
  text-decoration: none;
  /*  border-bottom:1px dashed #ccc; */
}
.region-emergency a:hover {
  color: #d45b00;
  border-bottom: #d45b00 dashed 1px;
}
.region-emergency a:active {
  color: #000;
}
.region-emergency ul {
  list-style: none outside url("../images/bullet3x.png");
  padding-left: 0px;
  margin-left: 20px;
}
.region-emergency #block-alert-details {
  margin-bottom: 0em;
}
.region-emergency #block-alert-details * {
  max-width: 1200px;
  margin: auto;
}
.region-emergency #block-alert-details h2 {
  max-width: none;
  font-size: 1.65em;
  font-weight: 700;
  padding: 2em 2.5em .25em;
  color: #225c4c;
  background: #d2e97c;
  margin-bottom: 1em;
}
.region-emergency #block-emergency-details {
  margin-bottom: 0em;
}
.region-emergency #block-emergency-details * {
  max-width: 1200px;
  margin: auto;
}
.region-emergency #block-emergency-details h2 {
  max-width: none;
  font-size: 1.65em;
  font-weight: 700;
  padding: 2em 2.5em .25em;
  color: #fff;
  background: #d45b00;
  margin-bottom: 1em;
}
.region-emergency #block-emergency-summary, .region-emergency #block-alert-summary {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0 24px 0;
}
.region-emergency #block-emergency-summary a:after, .region-emergency #block-alert-summary a:after {
  transition-timing-function: ease;
  transition: 0.2s;
  content: url("../images/button_arrow.svg");
  vertical-align: top;
}
.region-emergency #block-emergency-summary a:link, .region-emergency #block-emergency-summary a:visited, .region-emergency #block-alert-summary a:link, .region-emergency #block-alert-summary a:visited {
  font-weight: 700;
  font-size: .8em;
  color: #000;
  text-transform: uppercase;
  border-bottom: 0px solid #BEC3C8;
  text-decoration: underline;
  text-decoration-color: #BEC3C8;
}
.region-emergency #block-emergency-summary a:hover, .region-emergency #block-alert-summary a:hover {
  color: #d45b00;
  font-weight: 700;
  border-bottom: 0px solid #BEC3C8;
  text-decoration: underline;
  text-decoration-color: #d45b00;
}
.region-emergency #block-emergency-summary a:hover:after, .region-emergency #block-alert-summary a:hover:after {
  transition-timing-function: ease;
  transition: 0.2s;
  content: url("../images/button_arrow.svg");
  vertical-align: top;
  margin-left: 8px;
}
.region-emergency #block-emergency-summary a:active, .region-emergency #block-alert-summary a:active {
  border-bottom: 0px solid #BEC3C8;
  text-decoration: underline;
  text-decoration-color: #BEC3C8;
  color: #000;
}
.region-emergency #block-emergency-additional, .region-emergency #block-alert-additional {
  max-width: 1200px;
  padding: 0;
  margin: 0 auto;
  color: #666;
  font-size: .9em;
  border-top: 1px solid #ccc;
  width: 100%;
  margin-top: 1.4em;
  padding: .6em 0 1em;
}
@media only screen and (max-width: 1200px) {
  .region-emergency #block-emergency-details *, .region-emergency #block-alert-details * {
    padding-left: 10px;
    padding-right: 10px;
  }
  .region-emergency #block-emergency-details h2, .region-emergency #block-alert-details h2 {
    padding-left: 10px;
  }
  .region-emergency #block-emergency-summary, .region-emergency #block-emergency-additional, .region-emergency #block-alert-summary, .region-emergency #block-alert-additional {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media only screen and (max-width: 716px) {
  div.region-emergency {
    background: #f2f2f2;
    border-bottom: 1px solid #e7e7e7;
  }
}
.node-type-profile .fullpage_line {
  margin: 1em 0px;
}
.node-type-profile h3 {
  margin-top: 1.4em !important;
}
.node-type-profile .toprow {
  padding-left: 20px;
  margin-top: -.6em;
  margin-bottom: 1em;
}
.node-type-profile .two_col_1 {
  border: 0 !important;
  padding-top: 0 !important;
}
.node-type-profile .two_col_2 {
  border: 1px solid #ccc !important;
}
.node-type-profile .two_col_1 div.panel-pane:first-of-type h3 {
  padding-top: 0;
  margin-top: 0 !important;
}
.node-type-profile .pane-node-field-position.subhead h4 {
  /* color:$uvm-green-lime !important; */
}
.node-type-profile span.field-label {
  font-weight: 400;
  padding-right: .5em;
}
.node-type-profile #content .pane-node-field-phone ul.field-phone li {
  margin-left: 0;
  padding-left: 0;
}
.node-type-profile #content .field-profile-website li {
  margin-left: 0;
  padding: 0 .6em;
  border-left: 1px #ccc solid;
}
.node-type-profile #content .field-profile-website li:first-child {
  padding-left: 0;
  border-left: none;
}
.node-type-profile .profile-singlecol-image-wrapper {
  width: 100%;
}
.node-type-profile .pane-node-field-photo {
  margin-bottom: 1.4em;
  float: left;
  width: 100%;
}
.node-type-profile .field-photo {
  display: block;
  margin: auto;
}
.node-type-profile .field-photo img {
  padding: 0;
  margin: 0;
  width: 100% !important;
  max-width: none;
}
.node-type-profile .smallImage, .node-type-profile .verticalImage {
  background: #f9f8f6;
  width: 100%;
  float: left;
  padding: 10px 0;
}
.node-type-profile .smallImage .field-photo, .node-type-profile .verticalImage .field-photo {
  width: 50%;
  max-width: 300px;
  display: block;
  margin: auto;
}
.node-type-profile .smallImage img, .node-type-profile .verticalImage img {
  padding: 0;
  margin: 0;
  width: 100%;
}
.node-type-profile .accordion_wrapper {
  border-bottom: 1px solid #ccc;
  padding-bottom: .4em;
  margin-bottom: 2.2em;
}
.node-type-profile .accordion_wrapper h3 {
  border-top: 1px solid #ccc;
  padding-top: .8em;
}

.node-type-profile-listings table a {
  border-bottom: 1px dashed #ddd;
}
.node-type-profile-listings table h2 {
  color: #444 !important;
  font-size: 1em;
  font-family: "Roboto", sans-serif;
}

@media only screen and (min-width: 800px) {
  .node-type-profile {
    /* gives the contact us portion the left margin in the single column layout */
  }
  .node-type-profile .fullpage_line {
    margin: 1.4em -80px;
    padding: 0 80px;
  }
  .node-type-profile .toprow {
    padding-left: 0;
  }
  .node-type-profile .profile-singlecol-image-wrapper {
    width: 50%;
  }
  .node-type-profile .smallimage .field-photo, .node-type-profile .verticalImage .field-photo {
    width: 30%;
    max-width: 200px;
  }
  .node-type-profile .profile-singlecol-image-wrapper {
    width: 50%;
    max-width: 800px;
    margin-right: 20px;
  }
  .node-type-profile .profile-singlecol-image-wrapper.smallImage {
    max-width: 800px;
    margin-right: 20px;
  }
  .node-type-profile .verticalImageSinglecol .field-photo {
    margin-right: 20px;
  }
  .node-type-profile .verticalImageSinglecol .field-photo img {
    max-height: 300px;
    width: inherit !important;
  }
  .node-type-profile .big_left {
    margin-left: calc(50% + 20px);
  }
}
@media only screen and (min-width: 1200px) {
  .node-type-profile .profile-singlecol-image-wrapper {
    max-width: 400px;
  }
  .node-type-profile .big_left {
    margin-left: 420px;
  }
}
/* NEW profiles */
@media only screen and (min-width: 800px) {
  div.view-profile-lists div.profile-row, .topHeading {
    clear: both;
    border: 1px solid #ddd;
    padding-top: 19px;
    padding-right: 19px;
    padding-bottom: 11px;
    padding-left: 11px;
    overflow: auto;
    margin-top: -1px;
  }
  div.view-profile-lists div.profile-row h3, .topHeading h3 {
    color: #007155;
    font-size: 1.1em;
    line-height: .3em;
    text-transform: none;
  }

  #content div.view-profile-lists p {
    font-size: .84em;
  }

  #content div.profile-row div.field-areas-of-expertice p, #content div.profile-row div.field-areas-of-expertice li {
    font-size: .9em;
  }
  #content div.profile-row div.field-areas-of-expertice li {
    line-height: 1.1em;
  }

  div.view-profile-lists div.profile-row {
    height: auto;
  }

  div.photoblock, .photoblockTop {
    width: 22%;
    float: left;
    padding-right: 11px;
    box-sizing: border-box;
  }

  div.titleExpertise, .titleExpertiseTop {
    width: 53%;
    float: left;
    padding-left: 14px;
    box-sizing: border-box;
    min-height: 80%;
  }

  div.profileEmails, .profileEmailsTop {
    width: 25%;
    float: left;
    padding-left: 14px;
    box-sizing: border-box;
  }

  div.titleExpertise h2 {
    color: #444 !important;
    font-size: 1em;
    font-family: "Roboto", sans-serif;
  }

  .titleHead, .emailHead, .photoHead {
    display: none;
  }

  div.profile-row .field-photo {
    background-color: #f9f8f6;
    max-width: 175px;
  }
}
@media only screen and (max-width: 799px) {
  .views-row {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }

  .views-row-even {
    background-color: #f3f3f3;
  }

  div.view-profile-lists div.profile-row {
    clear: both;
    padding-top: 19px;
    padding-right: 19px;
    padding-bottom: 11px;
    padding-left: 11px;
    overflow: auto;
    margin-top: -1px;
    width: 90%;
  }
  div.view-profile-lists div.profile-row h3 {
    color: #007155;
    font-size: 1.1em;
    text-transform: none;
  }

  #content div.view-profile-lists p {
    font-size: 1em;
    font-weight: 400;
  }

  #content div.field-areas-of-expertice p, #content div.field-areas-of-expertice li {
    font-size: .9em;
  }
  #content div.field-areas-of-expertice li {
    line-height: 1.1em;
  }

  div.view-profile-lists div.profile-row {
    height: auto;
  }

  div.photoblock, .photoblockTop {
    width: 100%;
    float: left;
    padding-right: 11px;
    box-sizing: border-box;
  }
  div.photoblock img, .photoblockTop img {
    float: right;
  }

  div.titleExpertise {
    width: 100%;
    float: left;
    box-sizing: border-box;
    min-height: 80%;
  }

  div.profileEmails, .profileEmailsTop {
    width: 100%;
    float: left;
    box-sizing: border-box;
  }

  div.titleExpertise h2 {
    color: #444 !important;
    font-size: 1em;
    font-family: "Roboto", sans-serif;
  }

  .titleHead, .emailHead, .photoHead {
    display: block;
  }

  .topHeading {
    display: none;
  }

  div.profile-row .field-photo {
    background-color: #ddd;
    max-width: 175px;
    float: right;
    width: 175px;
    overflow: auto;
    height: 88px;
    margin-top: -30px;
  }
}
@media only screen and (max-width: 500px) {
  div.profile-row .field-photo {
    display: none;
  }
}
/* optimized for CESS */
#page #content .node-uvm-major .toprow {
  background: #e2e2e2 url("/sites/default/files/speckle600-566.jpg");
  margin-right: -800px;
  padding-right: 800px;
  margin-left: -800px;
  padding-left: 800px;
  width: calc(1600px + 100%);
  font-family: "Oswald", sans-serif, serif;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
#page #content .node-uvm-major .toprow .panel-pane {
  display: block;
  position: relative;
  /* everything in here is floated or positioned, so we need to
   * set an aspect ratio to give it height so the positioning
   * works right */
  padding-bottom: 26.6667%;
}
#page #content .node-uvm-major .toprow .field-primary-visual img {
  display: inline-block;
  float: left;
  width: 20%;
}
#page #content .node-uvm-major .toprow .pane-node-field-primary-visual div:nth-of-type(8) img {
  margin-left: 20%;
}
#page #content .node-uvm-major .toprow h3.pane-title {
  position: absolute;
  left: 40%;
  right: 40%;
  bottom: 0;
  height: 50%;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #007155;
  color: #fff;
  font-size: 1.8em;
  font-weight: 300;
  line-height: 1.1;
  padding: 0 20px;
  text-transform: none;
}
#page #content .node-uvm-major .accordion_wrapper h3.field-label:after {
  content: "";
  font-family: 'socialmedia';
  font-size: 1.25em;
  font-style: normal;
  font-variant: normal;
  font-weight: bold;
  padding-left: 5px;
  position: absolute;
  speak: none;
  text-indent: 0;
  text-transform: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#page #content .node-uvm-major .field-body p:first-child {
  font-size: 1.13333333333333em;
  line-height: 1.8888888em;
}
#page #content .node-uvm-major .centercol .accordion_wrapper, #page #content .node-uvm-major .pane-node-field-major-requirements {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}
#page #content .node-uvm-major .pane-node-field-major-requirements {
  border-top: 1px solid #ccc;
}
#page #content .node-uvm-major .rightcol {
  background: #c5e64f;
  border: 0;
}
#page #content .node-uvm-major .rightcol h2 {
  background: #007155;
  color: #fff !important;
  font-size: 1.41176470588235em !important;
  font-weight: 300;
  margin: 0 -20px;
  padding: 2px 20px;
}
#page #content .node-uvm-major .rightcol h3 {
  font-size: 1.05882352941176em;
  color: #007155;
}
#page #content .node-uvm-major .rightcol .pane-entity-field {
  margin-top: 0;
  border-top-color: #fff;
}
#page #content .node-uvm-major .rightcol .four_yr_plan {
  background: #fff;
  margin-left: -20px;
  margin-right: -20px;
}
#page #content .node-uvm-major .rightcol .pane-node-field-4-year-plan {
  background: #007155;
  color: #fff;
}
#page #content .node-uvm-major .rightcol .pane-node-field-4-year-plan h3 {
  color: #a7d233 !important;
}
#page #content .node-uvm-major .rightcol .field-graduate-employment-rate, #page #content .node-uvm-major .rightcol .field-median-salary {
  color: #007155;
  font-weight: 600;
}
#page #content .node-uvm-major .rightcol .pane-node-field-graduate-employment-rate, #page #content .node-uvm-major .rightcol .pane-node-field-median-salary {
  padding-bottom: 0;
}
#page #content .node-uvm-major .rightcol div.note {
  border-top: none;
  padding-top: 0;
  padding-bottom: 0;
}
#page #content .node-uvm-major .field-graduate-employment-rate, #page #content .node-uvm-major .field-median-salary {
  font-size: 3.2em;
  font-weight: 400;
  margin: 10px auto 5px;
  text-align: center;
  line-height: 1;
}
#page #content .node-uvm-major .bottomrow .pane-custom {
  float: none;
  background: #999;
}
#page #content .node-uvm-major .bottomrow h2 {
  color: #fff !important;
  text-transform: uppercase;
  float: none;
  font-weight: 300;
  margin: 0;
  padding: 5px 0px;
}
#page #content .node-uvm-major .bottomrow .pane-title {
  margin-top: 20px;
  text-transform: lowercase;
}
#page #content .node-uvm-major .bottomrow .pane-entity-field {
  padding: 20px;
  border-top: 1px dashed #ccc;
}
#page #content .node-uvm-major .bottomrow .pane-entity-field:nth-of-type(2) {
  border-top: none;
}
@media (min-width: 800px) {
  #page #content .node-uvm-major .bottomrow .field-similar-majors, #page #content .node-uvm-major .bottomrow .field-minors, #page #content .node-uvm-major .bottomrow .field-certificates {
    -webkit-column-count: 2;
    /* Chrome, Safari, Opera */
    -moz-column-count: 2;
    /* Firefox */
    column-count: 2;
  }
}
@media (min-width: 421px) and (max-width: 800px) {
  #page #content .node-uvm-major .toprow .pane-node-field-primary-visual div:nth-of-type(1) img, #page #content .node-uvm-major .toprow .pane-node-field-primary-visual div:nth-of-type(5) img, #page #content .node-uvm-major .toprow .pane-node-field-primary-visual div:nth-of-type(6) img, #page #content .node-uvm-major .toprow .pane-node-field-primary-visual div:nth-of-type(9) img {
    display: none;
  }
  #page #content .node-uvm-major .toprow .field-primary-visual img {
    width: 33.33333%;
  }
  #page #content .node-uvm-major .toprow .pane-node-field-primary-visual div:nth-of-type(8) img {
    margin-left: 33.33333%;
  }
  #page #content .node-uvm-major .toprow h3.pane-title {
    left: 33.33333%;
    right: 33.3333%;
    font-size: 1.6em;
  }
  #page #content .node-uvm-major .toprow .panel-pane {
    padding-bottom: 44.44444%;
  }
}
@media (max-width: 420px) {
  #page #content .node-uvm-major .toprow .pane-node-field-primary-visual div:nth-of-type(1) img, #page #content .node-uvm-major .toprow .pane-node-field-primary-visual div:nth-of-type(2) img, #page #content .node-uvm-major .toprow .pane-node-field-primary-visual div:nth-of-type(5) img, #page #content .node-uvm-major .toprow .pane-node-field-primary-visual div:nth-of-type(6) img, #page #content .node-uvm-major .toprow .pane-node-field-primary-visual div:nth-of-type(7) img, #page #content .node-uvm-major .toprow .pane-node-field-primary-visual div:nth-of-type(9) img {
    display: none;
  }
  #page #content .node-uvm-major .toprow .field-primary-visual img {
    width: 50%;
  }
  #page #content .node-uvm-major .toprow .pane-node-field-primary-visual div:nth-of-type(8) img {
    margin-left: 50%;
  }
  #page #content .node-uvm-major .toprow h3.pane-title {
    left: 0;
    right: 50%;
    font-size: 1.2em;
  }
  #page #content .node-uvm-major .toprow .panel-pane {
    padding-bottom: 66.67777%;
  }
}

@media (max-width: 799px) {
  #page #content .node-uvm-major .bottomrow h2 {
    padding: 5px 18px !important;
  }
}
/* Default link behavior  */
a:link, a:visited {
  color: #444;
  text-decoration: none;
  border-bottom: 1px dashed #444;
}
a:hover, a:focus {
  border-bottom: 1px dashed #f47d20;
  color: #f47d20;
}

/* exceptsion for menus -- orange with no line */
.menu-name-main-menu ul li a {
  padding: .3em 0;
  text-decoration: none;
}
.menu-name-main-menu ul li a:link, .menu-name-main-menu ul li a:visited, .menu-name-main-menu ul li a:active {
  color: #292929;
}
.menu-name-main-menu ul li a:hover, .menu-name-main-menu ul li a:focus {
  color: #f47d20;
}

.menu__item a:link,
.menu__item a:visited,
.menu__item a:hover,
.menu__item a:focus,
.tabs-primary__tab a:link,
.tabs-primary__tab a:visited,
.tabs-primary__tab a:hover,
.tabs-primary__tab a:focus,
#logo_container a:link,
#logo_container a:visited,
#logo_container a:hover,
#logo_container a:focus,
.addthis_toolbox a:link,
.addthis_toolbox a:visited,
.addthis_toolbox a:hover,
.addthis_toolbox a:focus {
  border: 0;
}

/* sets a defualt no-border for serveral elements */
.quicktabs-tabs li a,
p a img,
ul.socialmedia li a,
.bottom_cta_links li a,
.field-quicklinks li a,
.button a,
.field-homepage-feature-caption p a,
ul.field-cta-links li a,
.middle_wrapper p a,
.middle_wrapper li a,
.events_list a,
.azlist li a,
#azlist li a,
ul.list_sm li a,
#admissions_mm ul#azlist li a,
.buttonlist .ugrad_cta,
.buttonlist .ugrad_cta.four_cta,
.horiz_nav ul li a,
.ug_why_buttons li a,
.admitted.buttons li a,
#directorylink a {
  border-bottom: 1px dashed transparent;
}

.stripes:last-of-type .bottom_cta_links,
.field-band-6-links li,
.field-band-1-links li {
  text-decoration: none;
  display: inline-block;
  line-height: 1.3em;
}
.stripes:last-of-type .bottom_cta_links a:link,
.stripes:last-of-type .bottom_cta_links a:visited,
.field-band-6-links li a:link,
.field-band-6-links li a:visited,
.field-band-1-links li a:link,
.field-band-1-links li a:visited {
  color: #fff;
}
.stripes:last-of-type .bottom_cta_links a:hover,
.stripes:last-of-type .bottom_cta_links a:focus,
.field-band-6-links li a:hover,
.field-band-6-links li a:focus,
.field-band-1-links li a:hover,
.field-band-1-links li a:focus {
  color: #f47d20;
}

/* header link styles */
h2 a:link,
h2 a:visited {
  color: #007155;
  border-bottom: 1px dashed #007155;
}

/* hover effects  orange with underline no visited/link  effects */
h1 a:hover,
h1 a:focus,
h2 a:hover,
h2 a:focus,
h3 a:hover,
h3 a:focus,
h4 a:hover,
h4 a:focus,
h5 a:hover,
h5 a:focus,
h6 a:hover,
h6 a:focus,
.field-info-band-links li a:hover,
.field-info-band-links li a:focus,
.field-content a:hover,
.field-content a:focus,
tr a:hover,
tr a:focus,
.field-info-band-description a:hover,
.field-info-band-description a:focus,
.views-field-field-description-factoid a:hover,
.views-field-field-description-factoid a:focus,
.middle_wrapper a:hover,
.middle_wrapper a:focus,
.menu-name-main-menu a:hover,
.menu-name-main-menu a:focus {
  border-bottom: 1px dashed #f47d20;
  color: #f47d20;
}

/* title case link */
h3 .right-title a:link,
h3 .right-title a:visited {
  text-transform: none;
}

/* Gray link -- no line -- orange with dashed line */
.field-link a:link,
.field-link a:visited,
.views-field-title a:link,
.views-field-title a:visited,
.horiz_news_slider a:link,
.horiz_news_slider a:visited,
.views-field-field-description-factoid a:link,
.views-field-field-description-factoid a:visited,
ul.field-more-news-link li a:link,
ul.field-more-news-link li a:visited,
#theme-ugadmissions .field-info-band-description a:link,
#theme-ugadmissions .field-info-band-description a:visited,
.node-uvm-news-story .field-related-links a:link,
.node-uvm-news-story .field-related-links a:visited {
  color: #444;
  text-decoration: none;
  border-bottom: 0px dashed #444;
}
.field-link a:hover,
.field-link a:focus,
.views-field-title a:hover,
.views-field-title a:focus,
.horiz_news_slider a:hover,
.horiz_news_slider a:focus,
.views-field-field-description-factoid a:hover,
.views-field-field-description-factoid a:focus,
ul.field-more-news-link li a:hover,
ul.field-more-news-link li a:focus,
#theme-ugadmissions .field-info-band-description a:hover,
#theme-ugadmissions .field-info-band-description a:focus,
.node-uvm-news-story .field-related-links a:hover,
.node-uvm-news-story .field-related-links a:focus {
  color: #f47d20;
  border-bottom: 1px dashed #f47d20;
}

div.views-accordion-header a:link,
div.views-accordion-header a:visited {
  color: #007155;
}

/* Front page Dates are not underlined -- underlines them but not well -- needs more thought*/
.middle_wrapper a:hover,
a:focus span {
  color: #f47d20;
  border-bottom: 1px dashed #f47d20;
}

/*   */
/* dark blue link with no border orange roll over with bottom border */
.horiz_news_slider a:link,
.horiz_news_slider a:visited,
.field-left-side-interior-sidebar a:link,
.field-left-side-interior-sidebar a:visited {
  border-bottom: 0px dashed #159fda;
}
.horiz_news_slider a:hover,
.horiz_news_slider a:focus,
.field-left-side-interior-sidebar a:hover,
.field-left-side-interior-sidebar a:focus {
  color: #f47d20;
  border-bottom: 1px dashed #f47d20;
}

/* white links  with default hover behavior */
ul.field-cta-links a:link,
ul.field-cta-links a:visited {
  color: #fff;
}

/* grey sytle for vistied and links  with default hover behavior */
.views-field-field-factoid-sub-highlight a:visited,
.views-field-field-factoid-sub-highlight a:link {
  color: #444;
}

/* H4 Blue Link  without Orange roll over */
.views-field-field-highlight-factoid h4 a {
  color: #159fda;
}

/* white link with blue border and white hover border */
.bleed_blue .field-content a:link,
.bleed_blue .field-content a:visited {
  color: #fff;
  border-bottom: 1px dashed #159fda;
}
.bleed_blue .field-content a:hover,
.bleed_blue .field-content a:focus {
  border-bottom: 1px dashed #fff;
  color: #fff;
}

/* white hover text */
#footer_1 ul.socialmedia a:hover,
#footer_1 ul.socialmedia a:focus {
  color: #fff;
}

/* dark grey text with white hover text */
#footer_3 a:visited,
#footer_3 a:link,
#footer_4 li a:visited,
#footer_4 li a:link {
  color: #444;
  border-bottom: 0px dashed #fff;
}
#footer_3 a:hover,
#footer_3 a:focus,
#footer_4 li a:hover,
#footer_4 li a:focus {
  border-bottom: 1px dashed #fff;
  color: #fff;
}

/* white dashed hover text, no border for visited */
#links a:link,
#links a:visited,
.telephone_contact a:link,
.telephone_contact a:visited,
#minifooter a:link,
#minifooter a:visited,
.pane-node-field-4-year-plan a:link,
.pane-node-field-4-year-plan a:visited,
.horiz_nav a:link,
.horiz_nav a:visited,
.caption h3 a:link,
.caption h3 a:visited,
.field-homepage-feature-caption p a:link,
.field-homepage-feature-caption p a:visited {
  border: 0;
  color: #fff;
}
#links a:hover,
#links a:focus,
.telephone_contact a:hover,
.telephone_contact a:focus,
#minifooter a:hover,
#minifooter a:focus,
.pane-node-field-4-year-plan a:hover,
.pane-node-field-4-year-plan a:focus,
.horiz_nav a:hover,
.horiz_nav a:focus,
.caption h3 a:hover,
.caption h3 a:focus,
.field-homepage-feature-caption p a:hover,
.field-homepage-feature-caption p a:focus {
  color: #fff;
  border-bottom: 1px dashed #fff;
}
#links a:hover h3,
#links a:focus h3,
.telephone_contact a:hover h3,
.telephone_contact a:focus h3,
#minifooter a:hover h3,
#minifooter a:focus h3,
.pane-node-field-4-year-plan a:hover h3,
.pane-node-field-4-year-plan a:focus h3,
.horiz_nav a:hover h3,
.horiz_nav a:focus h3,
.caption h3 a:hover h3,
.caption h3 a:focus h3,
.field-homepage-feature-caption p a:hover h3,
.field-homepage-feature-caption p a:focus h3 {
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  color: #fff;
  border-bottom: 1px dashed #fff;
}

.horiz_nav a:link,
.horiz_nav a:visited {
  border: 0;
  color: #007155;
}
.horiz_nav a:hover,
.horiz_nav a:focus {
  color: #fff;
  border-bottom: 1px dashed #fff;
}

/* White text no border, white hover with border */
.field-top-banner-block-overlay p a.ugrad_cta,
.field-homepage-feature-title-ove p a.ugrad_cta {
  font-size: 1.4em;
  line-height: 1.7em;
}
.field-top-banner-block-overlay p a.ugrad_cta:link, .field-top-banner-block-overlay p a.ugrad_cta:visited,
.field-homepage-feature-title-ove p a.ugrad_cta:link,
.field-homepage-feature-title-ove p a.ugrad_cta:visited {
  border: 0;
  color: #fff;
}
.field-top-banner-block-overlay p a.ugrad_cta:hover, .field-top-banner-block-overlay p a.ugrad_cta:focus,
.field-homepage-feature-title-ove p a.ugrad_cta:hover,
.field-homepage-feature-title-ove p a.ugrad_cta:focus {
  color: #fff;
  border-bottom: 1px dashed #fff;
}

a.ugrad_cta_sm {
  font-size: 1.4em;
  line-height: 1.7em;
}
a.ugrad_cta_sm:link, a.ugrad_cta_sm:visited {
  border: 0;
  color: #007155 !important;
}
a.ugrad_cta_sm:hover, a.ugrad_cta_sm:focus {
  color: #fff !important;
  border-bottom: 1px dashed #fff;
}

/* remove bottom border  for link and visited */
.views-slideshow-controls-text-next a:link,
.views-slideshow-controls-text-next a:visited,
views-slideshow-controls-text-prev a:link,
views-slideshow-controls-text-prev a:visited,
.views_slideshow_controls_text_previous a:link,
.views_slideshow_controls_text_previous a:visited,
#footer_1 h2 a:link,
#footer_1 h2 a:visited,
#topnav a:link,
#topnav a:visited,
.pager-next a:link,
.pager-next a:visited,
.pager-previous a:link,
.pager-previous a:visited {
  border: none;
  border-bottom: 1px dashed transparent;
}

a.header__logo:visited,
a.header__logo:link {
  border: none;
}

/* white links with special orange hover  and no bottom border */
.button-green a:link,
.button-green a:visited,
.button-arrow a:link,
.button-arrow a:visited,
.button a:link,
.button a:visited,
bottomrow li a:link,
bottomrow li a:visited,
.field-band-6-links li a:link,
.field-band-6-links li a:visited {
  color: #fff;
}
.button-green a:hover,
.button-green a:focus,
.button-arrow a:hover,
.button-arrow a:focus,
.button a:hover,
.button a:focus,
bottomrow li a:hover,
bottomrow li a:focus,
.field-band-6-links li a:hover,
.field-band-6-links li a:focus {
  color: #fca420;
}

/*  */
/* orange with no border  and default hover */
.views-field-field-factoid-sub-highlight a:visited,
.views-field-field-factoid-sub-highlight a:link,
ul.field-cta-links a:visited,
ul.field-cta-links a:link,
.myuvm a:visited,
.myuvm a:link,
.views-accordion-header a:visited,
.views-accordion-header a:link,
#theme-cess .field-related-links a:visited,
#theme-cess .field-related-links a:link,
.full-story-link a:visited,
.full-story-link a:link,
ul.field-band-6-links li a:visited,
ul.field-band-6-links li a:link {
  border-bottom: 0px;
}
.views-field-field-factoid-sub-highlight a:hover,
.views-field-field-factoid-sub-highlight a:focus,
ul.field-cta-links a:hover,
ul.field-cta-links a:focus,
.myuvm a:hover,
.myuvm a:focus,
.views-accordion-header a:hover,
.views-accordion-header a:focus,
#theme-cess .field-related-links a:hover,
#theme-cess .field-related-links a:focus,
.full-story-link a:hover,
.full-story-link a:focus,
ul.field-band-6-links li a:hover,
ul.field-band-6-links li a:focus {
  border-bottom: 1px dashed transparent;
  color: #f47d20;
}

/* No bottom border */
.views-field-field-factoid-sub-highlight h4 a:link,
.views-field-field-factoid-sub-highlight h4 a:visited {
  border-bottom: 1px dashed #fff;
}
.views-field-field-factoid-sub-highlight h4 a:hover,
.views-field-field-factoid-sub-highlight h4 a:focus {
  border-bottom: 1px dashed #f47d20;
  color: #f47d20;
}

/* off white bottom border for factoid */
.views-field-field-highlight-factoid h4 a:link,
.views-field-field-highlight-factoid h4 a:visited,
#factbar .field-content a:link,
#factbar .field-content a:visited {
  border-bottom: 1px dashed #f5f5f5;
}

/* H4 Blue Link  without Orange roll over */
.views-field-field-highlight-factoid h4 a:link,
.views-field-field-highlight-factoid h4 a:visited {
  color: #159fda;
}
.views-field-field-highlight-factoid h4 a:hover,
.views-field-field-highlight-factoid h4 a:focus {
  color: #159fda;
}

/* green link with borner and orange hover */
.uvmtable th a:visited,
.uvmtable th a:link {
  color: #66ac47;
  border-bottom: 1px dashed #66ac47;
}
.uvmtable th a:hover,
.uvmtable th a:focus {
  border-bottom: 1px dashed #f47d20;
  color: #f47d20;
}

/* no background color */
.newslist_with_images .pane-title {
  background: none;
}

/* color grey dashed with grey text *
.field-caption{
	a:link, a:visited{
	color:#666;
	border-bottom: 1px dashed #b2b2b2;
	}
	a:hover, a:focus{
	border-bottom: 1px dashed $uvm16090-orange; 
	color:$uvm16090-orange; 	
	}
}
/*   */
div.field-link a {
  float: left;
  font-size: .8em;
  font-weight: 500;
  padding-top: 1.6em;
}

.field-top-homepage-banner a:visited,
.field-top-homepage-banner a:link {
  color: #666;
  border-bottom: 1px dashed #b2b2b2;
}

/* LINK DECORATIONS  AFTER -- EFFECTS */
.view-id-news p ::after,
.field-link-spotlight ::after,
.pane-frontpage-events-frontpage-events p ::after {
  content: " >>";
}

/* hide dashed borders on images */
a.imglink,
a.imglink {
  border-bottom: 1px dashed transparent !important;
}

/* Toggle menu items */
.block-og-menu .new-collapsed .menu {
  display: none;
}

.block-og-menu ul.menu li span,
.block-og-menu ul.menu li a {
  padding: 0.5em 0;
  display: block;
}

.block-og-menu ul.menu ul li span,
.block-og-menu ul.menu ul li a {
  padding: 0.5em 2%;
}

td.views-field-title a:visited,
td.views-field-title a:link {
  color: #444;
  border-bottom: 1px dashed #ddd;
}
td.views-field-title a:hover,
td.views-field-title a:focus {
  border-bottom: 1px dashed #f47d20;
  color: #f47d20;
}

.circleBrBlue, .circleLtGreen, .circleOrange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 5px Solid #fff;
  color: #fff !important;
  min-width: 1em;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  vertical-align: middle;
  padding: 20px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  margin: 10px !important;
}

.circleBrBlue:before, .circleLtGreen:before, .circleOrange:before {
  content: '';
  float: left;
  width: auto;
  padding-bottom: 100%;
}

.circleBrBlue {
  background-color: #159fda;
  box-shadow: 0px 0px 0px 7px #159fda;
  -webkit-box-shadow: 0px 0px 0px 7px #159fda;
  -moz-box-shadow: 0px 0px 0px 7px #159fda;
}

.circleLtGreen {
  background-color: #66ac47;
  box-shadow: 0px 0px 0px 7px #66ac47;
  -webkit-box-shadow: 0px 0px 0px 7px #66ac47;
  -moz-box-shadow: 0px 0px 0px 7px #66ac47;
}

.circleOrange {
  background-color: #f47d20;
  box-shadow: 0px 0px 0px 7px #f47d20;
  -webkit-box-shadow: 0px 0px 0px 7px #f47d20;
  -moz-box-shadow: 0px 0px 0px 7px #f47d20;
}

.boxbutton {
  display: block;
  float: left;
  background-color: #A7D4EE;
  padding: 1%;
  box-sizing: border-box;
  vertical-align: middle;
  height: 100%;
  font-size: 14pt;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  font: "Roboto", sans-serif;
  position: relative;
  border-radius: 2px;
  line-height: 1em;
  border: 1px solid #aacde0;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.15);
}

#page div.boxbutton p {
  line-height: 1.2em;
  font-size: 16px;
}

div.boxbutton span.boxButtonUnderLine {
  border-bottom: 1px dashed #444;
}

.boxbuttonText {
  padding-top: 16px;
}

h3.boxbuttonHeader, h3.boxbuttonHeader a {
  display: inline;
  border-bottom: 1px dashed #444;
}

div.boxbuttonActive h3.boxbuttonHeader, div.boxbuttonActive h3.boxbuttonHeader a {
  display: inline;
  border-bottom: 0px dashed transparent;
}

div.boxbutton div.boxbuttonInnerBox::before {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 0px 24px 24px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  bottom: 1px;
  right: 1px;
  z-index: 1000;
}

div.boxbutton:not(.boxbuttonActive):hover div.boxbuttonInnerBox::before, div.boxbuttonActive div.boxbuttonInnerBox:before {
  border-color: transparent transparent transparent transparent;
}

.boxbuttonInnerBox {
  position: relative;
  background-color: transparent;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  display: inline-block;
  text-align: left;
  box-sizing: border-box;
  padding: 1%;
  display: table;
  border: 1px solid #fff;
}
.boxbuttonInnerBox a:link, .boxbuttonInnerBox a:visited {
  color: #444;
  text-decoration: none;
  border-bottom: 0px dashed transparent;
}

.boxbuttonContent {
  top: 30%;
  display: table-cell;
  /* vertical-align: middle; */
  padding: 24px 25px 0px 35px;
  line-height: 130%;
}

div.boxbuttonContent h3.boxbuttonHeader {
  font-size: 18px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #444;
  text-align: left;
  padding-top: 24px;
}

div.boxbutton:not(.boxbuttonActive):hover {
  color: #fff;
  box-shadow: 6px 3px 12px -2px rgba(0, 0, 0, 0.28);
  background-color: #195E84;
}
div.boxbutton:not(.boxbuttonActive):hover span.boxButtonUnderLine {
  border-bottom: 1px dashed #fff;
}

div.boxbutton:not(.boxbuttonActive):hover h3.boxbuttonHeader {
  color: #fff;
  padding-top: 24px;
  border-bottom: 1px dashed #fff;
}
div.boxbutton:not(.boxbuttonActive):hover h3.boxbuttonHeader a {
  color: #fff;
  padding-top: 24px;
  border-bottom: 1px dashed #fff;
}

div.boxbutton .boxbuttonText {
  background-color: transparent;
  color: #39464b;
  font: "Roboto", sans-serif;
}

div.boxbutton:not(.boxbuttonActive):hover .boxbuttonText {
  color: #fff;
  background-color: transparent;
}

div.boxbutton:not(.boxbuttonActive):hover .boxbuttonInnerBox {
  vertical-align: top;
}

div.boxbutton:not(.boxbuttonActive):hover .boxbuttonContent {
  vertical-align: top;
}

.boxbuttonContainer {
  height: auto;
  display: block;
}

.boxbuttonActive {
  background-color: #FFD416 !important;
}
.boxbuttonActive .boxbuttonInnerBox, .boxbuttonActive .boxbuttonContent {
  vertical-align: top;
}
.boxbuttonActive .boxbuttonText, .boxbuttonActive h3.boxbuttonHeader {
  color: #39464b !important;
}
.boxbuttonActive .boxbuttonInnerBox {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

div.boxbuttonActive h3.boxbuttonHeader {
  padding-top: 24px;
}

@media only screen and (max-width: 599px) {
  .boxbutton {
    width: 100%;
    margin-top: 5%;
    margin-right: 0;
  }
}
@media only screen and (min-width: 600px) and (max-width: 899px) {
  .boxbutton {
    width: 45%;
    margin-top: 5%;
    margin-right: 3%;
    padding: 2%;
  }

  .boxbuttonContainer {
    margin: 0 -50px 0 0px;
    padding: 0;
    clear: both;
  }
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
  .boxbutton {
    width: 32%;
    margin-top: 3%;
    margin-right: 1%;
    padding: 1.5%;
  }

  .boxbuttonContainer {
    padding: 0;
    clear: both;
  }
}
@media only screen and (min-width: 1200px) {
  .boxbutton {
    width: 24%;
    margin-top: 1%;
    margin-right: 1%;
  }

  .boxbuttonContainer {
    padding: 0;
    clear: both;
  }
}
/* Responsive slide implementation */
.rslides {
  display: block;
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0 !important;
}

.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
  margin-bottom: 0px !important;
}

.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
}

.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
  margin-left: -26px;
}

.caption .field-homepage-feature-caption a:visited, .caption .field-homepage-feature-caption a:link, .caption .field-homepage-feature-caption a:active, .caption .field-homepage-feature-caption a:hover {
  letter-spacing: .01em;
  margin-top: -15px;
  line-height: 1.3em;
}

.aligner {
  padding: 0;
  margin: 0;
  border: 0;
  padding-left: 15px;
  padding-right: 15px;
}

#homePageFeature {
  margin-top: -4px;
  margin-bottom: -50px;
}

.rslides_container {
  position: relative;
  float: left;
  width: 100%;
  margin-left: -2px;
}

.centered-btns_nav {
  z-index: 3;
  position: absolute;
  -webkit-tap-highlight-color: transparent;
  top: 50%;
  left: 0;
  opacity: 0.4;
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
  height: 61px;
  width: 38px;
  background: transparent url("themes.gif") no-repeat left top;
  margin-top: -60px;
}

a.centered-btns_nav {
  border-bottom: 0px;
}

.centered-btns_nav:active {
  opacity: 1.0;
}

.centered-btns_nav.next {
  left: auto;
  background-position: right top;
  right: 0;
}

.caption h3 {
  bottom: 6.25em;
  color: #FFF;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1em;
  padding-top: 15px;
  text-shadow: 1px 1px 7px #777;
  border-spacing: 3px 3px;
}

.field-homepage-feature-caption {
  color: #fff;
  margin-top: -0.8em;
  min-height: 2.6em;
  margin-right: 0;
  width: 100%;
}

.field-homepage-feature-caption p {
  line-height: 1.3em !important;
}

/* Larger than mobile */
@media (min-width: 100px) {
  .field-homepage-feature-caption {
    width: 90%;
  }
  .field-homepage-feature-caption a:visited, .field-homepage-feature-caption a:link, .field-homepage-feature-caption a:active, .field-homepage-feature-caption a:hover {
    font-size: 14px;
  }

  .caption h3, .caption h3 a {
    font-size: 30px;
  }

  .caption {
    position: relative;
    display: block;
    padding-right: 15px;
    background-color: #797676;
    margin-top: 43.7%;
    margin-left: -26px;
    margin-bottom: -21px;
    padding-bottom: 7px;
  }
  .caption .field-homepage-feature-caption a:visited, .caption .field-homepage-feature-caption a:link, .caption .field-homepage-feature-caption a:active, .caption .field-homepage-feature-caption a:hover {
    letter-spacing: .01em;
    margin-top: -15px;
    line-height: 1.3em;
  }
}
/* Larger than phablet */
@media (min-width: 550px) {
  .field-homepage-feature-caption {
    width: 90%;
  }
  .field-homepage-feature-caption a:visited, .field-homepage-feature-caption a:link, .field-homepage-feature-caption a:active, .field-homepage-feature-caption a:hover {
    font-size: 15px;
  }

  .caption h3, .caption h3 a {
    font-size: 35px;
  }
}
/* Larger than tablet */
@media (min-width: 750px) {
  width: 90%;
  .field-homepage-feature-caption a:visited, .field-homepage-feature-caption a:link, .field-homepage-feature-caption a:active, .field-homepage-feature-caption a:hover {
    font-size: 15.5px;
  }

  .caption h3, .caption h3 a {
    font-size: 40px;
  }
}
@media (min-width: 751px) {
  .caption {
    position: absolute;
    display: block;
    bottom: 0;
    margin-top: 168px;
    left: -25;
    right: 0;
    padding-right: 15px;
    margin-top: 0;
    margin-left: 0px;
    margin-bottom: 0px;
    left: -25px;
    max-height: 130px;
    background: #000;
    background: rgba(85, 85, 85, 0.5);
  }
  .caption .field-homepage-feature-caption a:visited, .caption .field-homepage-feature-caption a:link, .caption .field-homepage-feature-caption a:active, .caption .field-homepage-feature-caption a:hover {
    letter-spacing: .01em;
    margin-top: -15px;
    line-height: 1.3em;
  }
}
/* Larger than desktop */
@media (min-width: 1000px) {
  width: 90%;
  .field-homepage-feature-caption a:visited, .field-homepage-feature-caption a:link, .field-homepage-feature-caption a:active, .field-homepage-feature-caption a:hover {
    font-size: 16px;
  }

  .caption h3, .caption h3 a {
    font-size: 46px;
  }
}
/* Larger than Desktop HD */
@media (min-width: 1200px) {
  .field-homepage-feature-caption {
    width: 90%;
  }
  .field-homepage-feature-caption a:visited, .field-homepage-feature-caption a:link, .field-homepage-feature-caption a:active, .field-homepage-feature-caption a:hover {
    font-size: 16px;
  }

  .caption h3, .caption h3 a {
    font-size: 46px;
  }
}
/* quadralateral backgrounds */
.fxBlock {
  box-sizing: border-box;
}

div.field-caption {
  overflow: hidden !important;
}
div.field-caption h4, div.field-caption p, div.field-caption h2 {
  word-wrap: break-word;
}
div.field-caption h2 {
  text-transform: uppercase;
  font-family: Oswald !important;
  font-size: 1.5em !important;
}

@media screen and (min-width: 850px) {
  .field-caption {
    background: none repeat scroll 0% 0% #FFF;
    background: rgba(255, 255, 255, 0.9);
  }

  div.collegeSlides .field-caption:not(.fxBlock) {
    width: 29%;
    padding-left: 21px;
    padding-top: 21px;
    height: 300px;
  }
  div.collegeSlides .field-caption:not(.fxBlock) p {
    line-height: 1.6667em;
  }
  div.collegeSlides .field-caption:not(.fxBlock) p a:link, div.collegeSlides .field-caption:not(.fxBlock) p a:visited {
    border-bottom: 1px dashed #777 !important;
  }
  div.collegeSlides .field-caption:not(.fxBlock) p a:hover, div.collegeSlides .field-caption:not(.fxBlock) p a:focus {
    border-bottom: 1px dashed #f47d20 !important;
  }

  .fxBlock {
    background-color: transparent !important;
    background-repeat: no-repeat !important;
    max-width: 500px;
    width: 60% !important;
    /* background-size: 100% 100% !important; */
  }

  .fxBlock h2, .fxBlock h3, .fxBlock h4, .fxBlock h5, .fxBlock h6 {
    padding-right: 5px;
    margin-left: 30%;
    line-height: 1.1 !important;
  }

  .fxBlock p {
    margin-left: 30% !important;
    padding-right: 5px;
  }

  .brGreenQ {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width=%27500%27%20height=%27300%27%20version=%271.1%27%20xmlns=%27http://www.w3.org/2000/svg%27%20xmlns:xlink=%27http://www.w3.org/1999/xlink%27%20style=%27height:300px;width:500px;perspective-origin:300px%20150px;transform-origin:300px%20150px;%27%3E%3Cpolygon%20points=%2715,300%20165,0%20500,0%20500,300%27%20style=%27height:auto;overflow-x:visible;overflow-y:visible;width:auto;perspective-origin:0px%200px;transform-origin:0px%200px;fill:rgb(102%2C172%2C71)%27/%3E%3Cpolygon%20points=%270,300%20149,0%20167,0%2018,300%27%20style=%27height:auto;overflow-x:visible;overflow-y:visible;width:auto;perspective-origin:0px%200px;transform-origin:0px%200px;fill:rgb(255,%20255,%20255);%27/%3E%3C/svg%3E");
  }

  .uvmGreenQ {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width=%27500%27%20height=%27300%27%20version=%271.1%27%20xmlns=%27http://www.w3.org/2000/svg%27%20xmlns:xlink=%27http://www.w3.org/1999/xlink%27%20style=%27height:300px;width:500px;perspective-origin:300px%20150px;transform-origin:300px%20150px;%27%3E%3Cpolygon%20points=%2715,300%20165,0%20500,0%20500,300%27%20style=%27height:auto;overflow-x:visible;overflow-y:visible;width:auto;perspective-origin:0px%200px;transform-origin:0px%200px;fill:rgb(0%2C113%2C85)%27/%3E%3Cpolygon%20points=%270,300%20149,0%20167,0%2018,300%27%20style=%27height:auto;overflow-x:visible;overflow-y:visible;width:auto;perspective-origin:0px%200px;transform-origin:0px%200px;fill:rgb(255,%20255,%20255);%27/%3E%3C/svg%3E");
  }

  .dkBlueQ {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width=%27500%27%20height=%27300%27%20version=%271.1%27%20xmlns=%27http://www.w3.org/2000/svg%27%20xmlns:xlink=%27http://www.w3.org/1999/xlink%27%20style=%27height:300px;width:500px;perspective-origin:300px%20150px;transform-origin:300px%20150px;%27%3E%3Cpolygon%20points=%2715,300%20165,0%20500,0%20500,300%27%20style=%27height:auto;overflow-x:visible;overflow-y:visible;width:auto;perspective-origin:0px%200px;transform-origin:0px%200px;fill:rgb(21%2C159%2C218)%27/%3E%3Cpolygon%20points=%270,300%20149,0%20167,0%2018,300%27%20style=%27height:auto;overflow-x:visible;overflow-y:visible;width:auto;perspective-origin:0px%200px;transform-origin:0px%200px;fill:rgb(255,%20255,%20255);%27/%3E%3C/svg%3E");
  }

  .ltGreenQ {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width=%27500%27%20height=%27300%27%20version=%271.1%27%20xmlns=%27http://www.w3.org/2000/svg%27%20xmlns:xlink=%27http://www.w3.org/1999/xlink%27%20style=%27height:300px;width:500px;perspective-origin:300px%20150px;transform-origin:300px%20150px;%27%3E%3Cpolygon%20points=%2715,300%20165,0%20500,0%20500,300%27%20style=%27height:auto;overflow-x:visible;overflow-y:visible;width:auto;perspective-origin:0px%200px;transform-origin:0px%200px;fill:rgb(167%2C210%2C51)%27/%3E%3Cpolygon%20points=%270,300%20149,0%20167,0%2018,300%27%20style=%27height:auto;overflow-x:visible;overflow-y:visible;width:auto;perspective-origin:0px%200px;transform-origin:0px%200px;fill:rgb(255,%20255,%20255);%27/%3E%3C/svg%3E");
  }

  .midBlueQ {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width=%27500%27%20height=%27300%27%20version=%271.1%27%20xmlns=%27http://www.w3.org/2000/svg%27%20xmlns:xlink=%27http://www.w3.org/1999/xlink%27%20style=%27height:300px;width:500px;perspective-origin:300px%20150px;transform-origin:300px%20150px;%27%3E%3Cpolygon%20points=%2715,300%20165,0%20500,0%20500,300%27%20style=%27height:auto;overflow-x:visible;overflow-y:visible;width:auto;perspective-origin:0px%200px;transform-origin:0px%200px;fill:rgb(144%2C212%2C237)%27/%3E%3Cpolygon%20points=%270,300%20149,0%20167,0%2018,300%27%20style=%27height:auto;overflow-x:visible;overflow-y:visible;width:auto;perspective-origin:0px%200px;transform-origin:0px%200px;fill:rgb(255,%20255,%20255);%27/%3E%3C/svg%3E");
  }

  .orangeQ {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width=%27500%27%20height=%27300%27%20version=%271.1%27%20xmlns=%27http://www.w3.org/2000/svg%27%20xmlns:xlink=%27http://www.w3.org/1999/xlink%27%20style=%27height:300px;width:500px;perspective-origin:300px%20150px;transform-origin:300px%20150px;%27%3E%3Cpolygon%20points=%2715,300%20165,0%20500,0%20500,300%27%20style=%27height:auto;overflow-x:visible;overflow-y:visible;width:auto;perspective-origin:0px%200px;transform-origin:0px%200px;fill:rgb(244%2C125%2C32)%27/%3E%3Cpolygon%20points=%270,300%20149,0%20167,0%2018,300%27%20style=%27height:auto;overflow-x:visible;overflow-y:visible;width:auto;perspective-origin:0px%200px;transform-origin:0px%200px;fill:rgb(255,%20255,%20255);%27/%3E%3C/svg%3E");
  }

  .yellowQ {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width=%27500%27%20height=%27300%27%20version=%271.1%27%20xmlns=%27http://www.w3.org/2000/svg%27%20xmlns:xlink=%27http://www.w3.org/1999/xlink%27%20style=%27height:300px;width:500px;perspective-origin:300px%20150px;transform-origin:300px%20150px;%27%3E%3Cpolygon%20points=%2715,300%20165,0%20500,0%20500,300%27%20style=%27height:auto;overflow-x:visible;overflow-y:visible;width:auto;perspective-origin:0px%200px;transform-origin:0px%200px;fill:rgb(255%2C212%2C22)%27/%3E%3Cpolygon%20points=%270,300%20149,0%20167,0%2018,300%27%20style=%27height:auto;overflow-x:visible;overflow-y:visible;width:auto;perspective-origin:0px%200px;transform-origin:0px%200px;fill:rgb(255,%20255,%20255);%27/%3E%3C/svg%3E");
  }

  .collegeSlides .field-caption {
    padding: 10px;
    margin-right: 0px;
    overflow: auto !important;
    position: absolute;
    top: 0;
    right: 0%;
    z-index: 4;
  }

  .fxBlock h2 {
    font-size: 1.5em !important;
    margin-top: 7%;
  }

  .singleImage {
    margin: 0px !important;
  }
}
@media screen and (max-width: 849px) {
  .collegeSlides .field-caption {
    margin-top: -9px;
    padding: 20px;
    overflow: hidden;
  }

  .singleImage .field-caption {
    margin-top: -7px;
  }

  div.collegeSlides .field-caption:not(.fxBox) {
    width: 100%;
    background-color: #dfdfdf;
  }

  .uvmGreenQ {
    background-color: #007155 !important;
  }

  .brGreenQ {
    background-color: #79b55e !important;
  }

  .dkBlueQ {
    background-color: #159fda !important;
  }

  .ltGreenQ {
    background-color: #a7d233 !important;
  }

  .midBlueQ {
    background-color: #90d4ed !important;
  }

  .orangeQ {
    background-color: #f47d20 !important;
  }

  .yellowQ {
    background-color: #ffd416 !important;
  }

  .fxBlock h2 {
    margin-left: -8px;
    font-size: 1.5em !important;
    margin-top: 0px;
  }

  .fxBlock p {
    margin-left: -5px !important;
  }

  div.field-caption p, div.field-caption h2, div.field-caption h3, div.field-caption h4, div.field-caption h5, div.field-caption h6 {
    word-wrap: break-word;
    width: 90%;
    margin-left: -10px !important;
  }
}
.fxBlock p a:visited, .fxBlock p a:link {
  border-bottom: 1px dashed #444;
  line-height: 1.66667;
}
.fxBlock p a:hover {
  border-bottom: 1px dashed #fff !important;
}

#content .brGreenQ h2, #content .brGreenQ h3, #content .brGreenQ h4, #content .brGreenQ h5, #content .brGreenQ h6 {
  color: #FFF !important;
  letter-spacing: 0.05em;
}
#content .brGreenQ p {
  color: #FFF !important;
  word-wrap: break-word;
}
#content .brGreenQ p a:visited, #content .brGreenQ p a:link, #content .brGreenQ p a:active {
  color: #FFF !important;
  border-bottom: 1px dashed #FFF !important;
}
#content .brGreenQ p a:hover {
  color: #444 !important;
  border-bottom: 1px dashed #444 !important;
}

#content .uvmGreenQ h2, #content .uvmGreenQ h3, #content .uvmGreenQ h4, #content .uvmGreenQ h5, #content .uvmGreenQ h6 {
  color: #FFF !important;
  letter-spacing: 0.05em;
}
#content .uvmGreenQ p {
  color: #FFF !important;
  word-wrap: break-word;
}
#content .uvmGreenQ p a:visited, #content .uvmGreenQ p a:link, #content .uvmGreenQ p a:active {
  color: #FFF !important;
  border-bottom: 1px dashed #FFF !important;
}
#content .uvmGreenQ p a:hover {
  color: #e5ded3 !important;
  border-bottom: 1px dashed #e5ded3 !important;
}

#content .ltGreenQ h2, #content .ltGreenQ h3, #content .ltGreenQ h4, #content .ltGreenQ h5, #content .ltGreenQ h6 {
  color: #303030 !important;
  letter-spacing: 0.05em;
}
#content .ltGreenQ p {
  color: #303030 !important;
  word-wrap: break-word;
}
#content .ltGreenQ p a:visited, #content .ltGreenQ p a:link, #content .ltGreenQ p a:active {
  color: #303030 !important;
  border-bottom: 1px dashed #303030 !important;
}
#content .ltGreenQ p a:hover {
  color: #FFF !important;
  border-bottom: 1px dashed #FFF !important;
}

#content .midBlueQ h2, #content .midBlueQ h3, #content .midBlueQ h4, #content .midBlueQ h5, #content .midBlueQ h6 {
  color: #303030 !important;
  letter-spacing: 0.05em;
}
#content .midBlueQ p {
  color: #303030 !important;
  word-wrap: break-word;
}
#content .midBlueQ p a:visited, #content .midBlueQ p a:link, #content .midBlueQ p a:active {
  color: #303030 !important;
  border-bottom: 1px dashed #303030 !important;
}
#content .midBlueQ p a:hover {
  color: #FFF !important;
  border-bottom: 1px dashed #FFF !important;
}

#content .dkBlueQ h2, #content .dkBlueQ h3, #content .dkBlueQ h4, #content .dkBlueQ h5, #content .dkBlueQ h6 {
  color: #2b2b2b !important;
  letter-spacing: 0.05em;
}
#content .dkBlueQ p {
  color: #2b2b2b !important;
  word-wrap: break-word;
}
#content .dkBlueQ p a:visited, #content .dkBlueQ p a:link, #content .dkBlueQ p a:active {
  color: #2b2b2b !important;
  border-bottom: 1px dashed #2b2b2b !important;
}
#content .dkBlueQ p a:hover {
  color: #FFF !important;
  border-bottom: 1px dashed #FFF !important;
}

#content .yellowQ h2, #content .yellowQ h3, #content .yellowQ h4, #content .yellowQ h5, #content .yellowQ h6 {
  color: #303030 !important;
  letter-spacing: 0.05em;
}
#content .yellowQ p {
  color: #303030 !important;
  word-wrap: break-word;
}
#content .yellowQ p a:visited, #content .yellowQ p a:link, #content .yellowQ p a:active {
  color: #303030 !important;
  border-bottom: 1px dashed #303030 !important;
}
#content .yellowQ p a:hover {
  color: #FFF !important;
  border-bottom: 1px dashed #FFF !important;
}

#content .orangeQ h2, #content .orangeQ h3, #content .orangeQ h4, #content .orangeQ h5, #content .orangeQ h6 {
  color: #FFF !important;
  letter-spacing: 0.05em;
}
#content .orangeQ p {
  color: #FFF !important;
  word-wrap: break-word;
}
#content .orangeQ p a:visited, #content .orangeQ p a:link, #content .orangeQ p a:active {
  color: #FFF !important;
  border-bottom: 1px dashed #FFF !important;
}
#content .orangeQ p a:hover {
  color: #444 !important;
  border-bottom: 1px dashed #444 !important;
}

/* College header slides */
.collegeSlides {
  position: relative;
  margin-top: -22px;
}

.collegeSlides .centered-btns_nav {
  margin-top: 12%;
}

.collegeSlides li {
  text-decoration: none;
  margin: 0px !important;
  padding: 0px !important;
}

.collegeSlides ul {
  list-style: none !important;
}

.collegeSlides .field-top-image {
  max-height: 301px;
}

.collegeSlides img {
  border: 0px !important;
  margin-left: 0px;
  max-height: 300px;
}

.collegeSlides .field-caption {
  max-height: 300px;
  height: 100%;
}

.node-uvm-college-homepage .stripes:first-of-type {
  background: #fff url(/sites/default/files/speckle600-566.jpg) repeat 0 0 !important;
  margin-top: -27px;
  border-top: 1px solid #ccc !important;
  border-bottom: 1px solid #ccc !important;
}

@media (min-width: 800px) {
  .amp-block {
    background-color: #fff;
    margin: -20px;
    margin-left: -20px;
    border: 1px solid #c5e64f;
  }
  .amp-block img {
    margin-top: 20px;
  }
  .amp-block .amp-link {
    margin-left: 19px !important;
    margin-right: 19px !important;
    margin-top: -20px !important;
  }

  .amp-block-top {
    border-bottom: 0px;
    float: right;
  }

  .amp-block-bottom {
    border-bottom: 1px solid #c5e64f;
    max-width: 258px;
    margin-left: 2px;
    margin-top: -2px !important;
    border-left: 1px solid #c5e64f;
    border-right: 1px solid #c5e64f;
    margin-bottom: 20px;
  }

  .pane-node-field-careers {
    background-color: #c5e64f;
  }
}
@media (max-width: 799px) {
  .amp-block {
    background-color: #fff;
    margin: -20px;
    margin-left: -20px;
    border: 1px solid #c5e64f;
    float: left;
    width: 100%;
    padding-top: 10px;
    padding-right: 40px;
  }

  .amp-link {
    margin-left: 19px !important;
    margin-right: 19px !important;
    margin-top: -20px !important;
  }

  .amp-block-bottom {
    margin-bottom: 20px;
  }
}
div.field-accordions-with-header h2 {
  margin-top: 60px;
}

/*
@import "objects/site-header";
@import "objects/page-intro";
  @import "objects/events"; */
/* @import "theme-B"; */
/* HACKS to support hackery */

/*# sourceMappingURL=styles.css.map */
