/**
 * @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/
 */
/* jg */
/* Top page title */
div#title-top-right h1#page-title {
	margin-top: 0.5em;
	text-transform: uppercase;
	color: #983520;
	font-size: 3em;
}
/* center the logo and text on front page */
body.front div#logo-title-slogan {
	float: none;
}
span#witness {
	display: inline-block;
	width: 150px;
}
div.view-front-page-roller {
	max-width: 800px;
	margin: auto;
}
/* for Laura */
body.front div#content article p img {
	margin-left: 0px;
	margin-top: 0px;
}
/* responsive youtube as per http://avexdesigns.com/responsive-youtube-embed/ */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* hide person type selector */
form#views-exposed-form-rmm-staff-page {
  display: none;
}
span#donate {
  background-color: #ffac2c;
  border-radius: 11px;
  padding-left: 0.4em;
  padding-right: 0.4em;
}
a span#donate {
  font-color: Black;
}
div#block-block-6 {
	text-align: center;
}
div#logo-title-slogan {
	float: left;
	margin-bottom: 1.5em;
}
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
/* line 33, ../sass/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

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

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

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

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

/* Remove default margin. */
/* line 126, ../sass/_normalize.scss */
body {
  color: Black;
  margin: 0;
  padding: 0;
  /* background-color: #fbfff0; /* green tinge as per RW request */
  /* background-color: #f7f0ef; /* brownish */
  background-color: #faf8f2; /* brownish */
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
/* line 139, ../sass/_normalize.scss */
a:link,
a:visited {
 /* color: #51acd2; */
  color: #41722c; /* logo green */
  text-decoration: none;
}

/* line 144, ../sass/_normalize.scss */
a:hover,
a:focus {
  text-decoration: underline;
}

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

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

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

/* line 176, ../sass/_normalize.scss */
blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.5em 30px;
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 186, ../sass/_normalize.scss */
h1,
h2 {
  font-family: "Cagliostro", Arial;
  font-weight: bold;
  letter-spacing: -1px;
}

/* line 191, ../sass/_normalize.scss */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.5em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

/* line 199, ../sass/_normalize.scss */
h2 {
  font-size: 1.8em;
  line-height: 1.5em;
  margin-top: 0.75em;
  margin-bottom: 0.75em;
  color: #9a441d; /* brown from the logo */
}
aside h2 {
  font-size: 1.2em;
}

/* line 204, ../sass/_normalize.scss */
h3 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  color: #9a441d; /* brown from the logo */
}

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

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

/* line 219, ../sass/_normalize.scss */
h6 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
/* line 392, ../sass/_normalize.scss */
fieldset {
  margin: 10px 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #dfdfdf;
  border-top-style: solid;
  border-top-width: 0.0625em;
  padding-top: 0.4625em;
  border-bottom-style: solid;
  border-bottom-width: 0.0625em;
  padding-bottom: 0.9125em;
  border-left-style: solid;
  border-left-width: 0.0625em;
  padding-left: 0.9125em;
  border-right-style: solid;
  border-right-width: 0.0625em;
  padding-right: 0.9125em;
}

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

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

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

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

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
/* line 469, ../sass/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  background: #b4c589;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  /* 3 */
  font-family: "Istok Web", Arial;
  margin: 0.3em;
  padding: 6px 12px;
}

/* line 487, ../sass/_normalize.scss */
button:hover,
html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background: #2e2e2e;
}

/* line 494, ../sass/_normalize.scss */
button:active,
html input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  background: #222;
}

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

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

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

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

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

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

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

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

/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
/* line 22, ../sass/components/_misc.scss */
.with-wireframes #header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

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

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

/**
 * Counteract the flash of unstyled text (FOUT).
 */
/* line 63, ../sass/components/_misc.scss */
.js h1,
.js h2 {
  -webkit-transition: opacity 0.15s ease-in-out;
  -moz-transition: opacity 0.15s ease-in-out;
  -o-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
  opacity: 0;
}

/* line 71, ../sass/components/_misc.scss */
.js.wf-active h1,
.js.wf-active h2,
.js.wf-inactive h1,
.js.wf-inactive h2 {
  opacity: 1;
}

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

/**
 * Branding header.
 */
/* line 95, ../sass/components/_misc.scss */
#header {
  text-align: center;
}

/* Wrapping link for logo. */
/* line 100, ../sass/components/_misc.scss */
.header__logo {
  margin: 0;
  padding: 0;
}

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

/* Wrapper for website name and slogan. */
/* The name of the website. */
/* line 115, ../sass/components/_misc.scss */
.header__site-name {
  margin: 0;
  font-size: 2em;
  line-height: 1.5em;
}

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

/* The slogan (or tagline) of a website. */
/* line 135, ../sass/components/_misc.scss */
.header__site-slogan {
  color: #4f4f4f;
  font-size: 1.25em;
  margin: 10px 0 0 0;
}

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

/**
 * Navigation bar.
 */
/* line 151, ../sass/components/_misc.scss */
#navigation {
  padding: 10px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
/* line 158, ../sass/components/_misc.scss */
#navigation.has-content {
  background: #333;
}
/* line 162, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 172, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
  /* Indent child menus. */
}
/* line 177, ../sass/components/_misc.scss */
#navigation .links li,
#navigation .menu li {
  display: block;
  list-style-type: none;
  list-style-image: none;
  padding: 0 .1em;
}
/* line 184, ../sass/components/_misc.scss */
#navigation .links li.last a,
#navigation .menu li.last a {
  border-bottom: 1px solid #444;
}
/* line 189, ../sass/components/_misc.scss */
#navigation .links li a,
#navigation .menu li a {
  border-top: 1px solid #444;
  display: block;
  padding: 15px 10px;
}
/* line 194, ../sass/components/_misc.scss */
#navigation .links li a:hover,
#navigation .menu li a:hover {
  background: #f0f0f0;
}
/* line 197, ../sass/components/_misc.scss */
#navigation .links li a.active,
#navigation .menu li a.active {
  color: #fff;
  background: #3f3f3f;
}
/* line 204, ../sass/components/_misc.scss */
#navigation .links ul,
#navigation .menu ul {
  padding: 0 0 0 20px;
}
/* line 208, ../sass/components/_misc.scss */
#navigation .links ul li.last a,
#navigation .menu ul li.last a {
  border-bottom: none;
}

/* line 216, ../sass/components/_misc.scss */
#nav-close {
  background: url('../images/icon-cross.png?1394495931') no-repeat right center;
  color: #fff;
  display: block;
  line-height: 1;
  padding: 15px 25px 15px 20px;
  text-align: right;
  text-transform: uppercase;
}

@media screen and (-webkit-min-device-pixel-ratio: 2) {
  /* line 227, ../sass/components/_misc.scss */
  #nav-close {
    background-image: url('../images/icon-cross-2x.png?1394495931');
    background-size: 16px 16px;
  }
}
/* line 233, ../sass/components/_misc.scss */
#nav-togg {
  background: #333333 url('../images/icon-menu.png?1395605020') no-repeat center center;
  color: #fff;
  padding: 20px;
  position: fixed;
  right: 10px;
  top: 10px;
}

@media screen and (-webkit-min-device-pixel-ratio: 2) {
  /* line 243, ../sass/components/_misc.scss */
  #nav-togg {
    background-image: url('../images/icon-menu-2x.png?1395604996');
    background-size: 16px 16px;
  }
}
/**
 * Highlighted region.
 */
/* line 252, ../sass/components/_misc.scss */
.region-highlighted {
  border-bottom: 1px solid #dfdfdf;
  margin-bottom: 40px;
  padding-bottom: 40px;
}

/**
 * Breadcrumb navigation.
 */
/* line 261, ../sass/components/_misc.scss */
.breadcrumb {
  border-top: 1px solid #dfdfdf;
  margin-top: 20px;
  padding-top: 40px;
}
/* line 265, ../sass/components/_misc.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 269, ../sass/components/_misc.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

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

/**
 * Messages.
 */
/* line 292, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.5em 0;
  /* Drupal core uses "6px 0" margin */
  padding: 3px 3px 3px 59px;
  color: #3f3f3f;
  border: none;
  background: url('../images/icon-tick.png?1394495931') no-repeat 23px center;
}
/* line 299, ../sass/components/_misc.scss */
.messages ul, .messages--status ul, .messages--warning ul, .messages--error ul {
  margin-top: 0;
  margin-bottom: 0;
}

/* line 304, ../sass/components/_misc.scss */
.messages-inner {
  padding: 15px 20px;
  background: #fff;
}

/* line 312, ../sass/components/_misc.scss */
.messages--warning {
  background-image: url('../images/icon-warning.png?1394495931');
}

/* line 317, ../sass/components/_misc.scss */
.messages--error {
  background-image: url('../images/icon-cross.png?1394495931');
}

/* line 322, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

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

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

/* System status report. */
/* line 336, ../sass/components/_misc.scss */
.ok,
.messages--status {
  background-color: #75d675;
}

/* line 340, ../sass/components/_misc.scss */
.warning,
.messages--warning {
  background-color: #e9c75f;
}

/* line 344, ../sass/components/_misc.scss */
.error,
.messages--error {
  background-color: #e56464;
}

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 353, ../sass/components/_misc.scss */
.tabs-primary, .tabs-secondary {
  overflow: hidden;
  border-bottom: 1px solid #dfdfdf;
  list-style: none;
  margin: 1em 0 1.5em;
  padding: 0;
  white-space: nowrap;
}

/* line 361, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  float: left;
  /* LTR */
}

/* line 364, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  border: 1px solid #dfdfdf;
  display: block;
  line-height: 1.5em;
  text-decoration: none;
}

/* Primary tabs. */
/* line 375, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active {
  margin-right: 2px;
}

/* line 382, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
  border-bottom: 0;
  padding: 0.5em 1em;
}

/* line 387, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus, a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
  background-color: #51acd2;
  border-color: #51acd2;
  color: #fff;
}

/* line 392, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  background: #3f3f3f;
  border-color: #3f3f3f;
  color: #fff;
}

/* Secondary tabs. */
/* line 415, ../sass/components/_misc.scss */
.tabs-secondary {
  margin-top: -.75em;
  padding-bottom: .75em;
}

/* line 421, ../sass/components/_misc.scss */
.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin-right: 5px;
}

/* line 425, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  -webkit-border-radius: 0.75em;
  -moz-border-radius: 0.75em;
  -ms-border-radius: 0.75em;
  -o-border-radius: 0.75em;
  border-radius: 0.75em;
  padding: .25em .5em;
}

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
/* line 454, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 458, ../sass/components/_misc.scss */
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

/* The inline field label used by the Fences module. */
/* line 466, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

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

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

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

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

/* line 499, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis, .pager-current {
  display: inline;
  padding: 0 0.5em;
  list-style-type: none;
  background-image: none;
}

/* line 511, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis {
  /* A concatenation of several list items using an ellipsis. */
}

/* The current page's list item. */
/* line 516, ../sass/components/_misc.scss */
.pager-current {
  font-weight: bold;
}

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

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

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

/* line 547, ../sass/components/_misc.scss */
.menu__item.is-collapsed {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  list-style-type: disc;
}

/* The active item in a Drupal menu. */
/* line 556, ../sass/components/_misc.scss */
.menu a.active {
  color: #000;
}

/**
 * Main.
 */
/* line 564, ../sass/components/_misc.scss */
#main {
  /* Move all the children of #main down to make room. */
  margin-bottom: 3em;
  padding-top: 4em;
  position: relative;
}

/**
 * Sidebars.
 */
/* line 575, ../sass/components/_misc.scss */
.sidebars {
  border-top: 1px solid #dfdfdf;
  margin-top: 20px;
  padding-top: 20px;
}

/**
 * Nodes.
 */
/* line 585, ../sass/components/_misc.scss */
.node-teaser {
  border-bottom: 1px solid #dfdfdf;
  margin-bottom: 45px;
  padding-bottom: 55px;
}

/**
 * Feed icon.
 */
/* line 595, ../sass/components/_misc.scss */
.feed-icon {
  background: url('../images/icon-rss.png?1394495931') no-repeat center center;
  display: block;
  height: 16px;
  width: 16px;
}

@media screen and (-webkit-min-device-pixel-ratio: 2) {
  /* line 603, ../sass/components/_misc.scss */
  .feed-icon {
    background-image: url('../images/icon-rss-2x.png?1394495931');
    background-size: 16px 16px;
  }
}
/* line 609, ../sass/components/_misc.scss */
.feed-icon img {
  display: none;
}

/**
 * User.
 */
/* line 618, ../sass/components/_misc.scss */
.profile .user-picture {
  float: none;
}
/* line 621, ../sass/components/_misc.scss */
.profile h3 {
  border-bottom: 1px solid #dfdfdf;
}

/* line 626, ../sass/components/_misc.scss */
.user-signature {
  color: #8f8f8f;
}

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

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

/**
 * Comments.
 */
/* line 674, ../sass/components/_misc.scss */
.comment-wrapper {
  margin: 40px 0 0 0;
  padding: 60px 0 0 0;
  border-top: 1px solid #dfdfdf;
}

/* line 680, ../sass/components/_misc.scss */
.comments {
  margin: 1.5em 0;
}
/* line 682, ../sass/components/_misc.scss */
.comments h2.comment-form {
  padding: 40px 0 0 0;
  border-top: 1px solid #dfdfdf;
}

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

/* Wrapper for a single comment. */
/* line 696, ../sass/components/_misc.scss */
.comment {
  padding: 40px 0;
  border-top: 1px solid #dfdfdf;
  /* Comment's permalink wrapper. */
}
/* line 700, ../sass/components/_misc.scss */
.comment.first {
  margin: 30px 0 0 0;
}
/* line 704, ../sass/components/_misc.scss */
.comment .submitted {
  margin-top: 0;
}
/* line 709, ../sass/components/_misc.scss */
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* Nested comments are indented. */
/* line 716, ../sass/components/_misc.scss */
.indented {
  /* Drupal core uses a 25px left margin. */
  margin-left: 30px;
  /* LTR */
}

/* The "posted by" information. */
/* line 722, ../sass/components/_misc.scss */
.submitted {
  color: #8f8f8f;
}

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

/* line 763, ../sass/components/_misc.scss */
.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

/* line 768, ../sass/components/_misc.scss */
.form-actions {
  margin: 1em 0;
}

/* The part of the label that indicates a required field. */
/* line 773, ../sass/components/_misc.scss */
.form-required {
  color: #e56464;
}

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

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

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

/* Drupal's default login form block. */
/* line 795, ../sass/components/_misc.scss */
#user-login-form {
  text-align: left;
  /* LTR */
}

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

/* The "Log in using OpenID" and "Cancel OpenID login" links. */
/* line 814, ../sass/components/_misc.scss */
.openid-link,
.user-link {
  margin-top: 1.5em;
}

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

/* line 822, ../sass/components/_misc.scss */
#user-login ul {
  margin: 1.5em 0;
}

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

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

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

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

/* Center checkboxes inside table cell. */
/* line 869, ../sass/components/_misc.scss */
td.checkbox,
th.checkbox {
  text-align: center;
}

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

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

/* Neptune has slightly taller textfields, so reposition the throbber. */
/* line 891, ../sass/components/_misc.scss */
html.js input.form-autocomplete {
  background-position: 100% 6px;
}

/* line 895, ../sass/components/_misc.scss */
html.js input.throbbing {
  background-position: 100% -14px;
}

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

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

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

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

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

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

/**
 * Search.
 */
/* line 975, ../sass/components/_misc.scss */
.search-results {
  padding: 0;
}
/* line 977, ../sass/components/_misc.scss */
.search-results li {
  border-top: 1px solid #dfdfdf;
  margin-bottom: 0;
  padding: 2em 0 0.5em 0;
}
/* line 983, ../sass/components/_misc.scss */
.search-results .title,
.search-results .search-info {
  font-size: 1em;
}
/* line 986, ../sass/components/_misc.scss */
.search-results .search-snippet-info {
  padding: 10px 0 0;
}
/* line 989, ../sass/components/_misc.scss */
.search-results .search-info {
  color: #8f8f8f;
}

/**
 * Forums.
 */
/* line 999, ../sass/components/_misc.scss */
#forum table {
  width: 100%;
}
/* line 1003, ../sass/components/_misc.scss */
#forum td.forum .icon {
  display: none;
}

/**
 * Poll.
 */
/* line 1013, ../sass/components/_misc.scss */
#block-poll-recent .poll .title {
  margin: 1.5em 0 1em 0;
}

/* line 1017, ../sass/components/_misc.scss */
.poll .bar .foreground {
  background-color: #3f3f3f;
}

/**
 * Book.
 */
/* line 1026, ../sass/components/_misc.scss */
.book-navigation .menu {
  border-top: 1px solid #dfdfdf;
  padding: 1.5em 0 0 3em;
}
/* line 1030, ../sass/components/_misc.scss */
.book-navigation .page-links {
  border-bottom: 1px solid #dfdfdf;
  border-top: 1px solid #dfdfdf;
  padding: 1.5em 0;
}

/**
 * Footer.
 */
/* line 1040, ../sass/components/_misc.scss */
#footer {
  border-top: 1px solid #dfdfdf;
  padding: 40px 0;
}

/* 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
 */
/* line 27, ../sass/layouts/_responsive.scss */
#page {
  margin: 0 auto;
}

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

/* Containers for grid items and flow items. */
/* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:before, #header:after,
#main:before,
#main:after,
#footer:before,
#footer:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:after,
#main:after,
#footer:after {
  clear: both;
}

@media all and (min-width: 480px) {
  /* line 52, ../sass/layouts/_responsive.scss */
  .sidebars {
    border: 0;
    margin: 0;
    padding: 0;
  }
}
@media all and (min-width: 768px) {
  /* Used by script.js to determine breakpoint. */
  /* line 61, ../sass/layouts/_responsive.scss */
  body:after {
    content: 'minw768';
    opacity: 0;
  }

  /* line 65, ../sass/layouts/_responsive.scss */
  #header {
    padding-top: 20px;
  }

  /* line 68, ../sass/layouts/_responsive.scss */
  #main {
    padding-top: 5em;
  }

  /* line 71, ../sass/layouts/_responsive.scss */
  #navigation {
    padding-top: 1em;
    position: absolute;
    text-align: center;
  }
  /* line 76, ../sass/layouts/_responsive.scss */
  #navigation.has-content {
    background: none;
  }
  /* line 81, ../sass/layouts/_responsive.scss */
  #navigation .links,
  #navigation .menu {
    text-align: center;
  }
  /* line 84, ../sass/layouts/_responsive.scss */
  #navigation .links li,
  #navigation .menu li {
    /* The main menu created via code in page.tpl.php. */
    display: inline-block;
  }
  /* line 88, ../sass/layouts/_responsive.scss */
  #navigation .links li a,
  #navigation .menu li a {
    border: 0;
    padding: 12px 17px;
  }
  /* line 93, ../sass/layouts/_responsive.scss */
  #navigation .links li.last a,
  #navigation .menu li.last a {
    border: 0;
  }

  /* The main menu block. */
  /* line 102, ../sass/layouts/_responsive.scss */
  #block-system-main-menu li {
    display: inline-block;
  }

  /* line 105, ../sass/layouts/_responsive.scss */
  #block-system-main-menu li ul {
    float: left;
  }
}
/**
 * Use 3 grid columns for smaller screens.
 */
@media all and (min-width: 480px) and (max-width: 959px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 120, ../sass/layouts/_responsive.scss */
  .sidebar-first {
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  /* line 122, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  /* line 127, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 135, ../sass/layouts/_responsive.scss */
  .sidebar-second {
    /* Span 2 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 3rd column from left. */
  }
  /* line 137, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: -66.66667%;
  }
  /* line 142, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }

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

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 213, ../sass/layouts/_responsive.scss */
  .sidebar-second {
    /* Span 4 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  /* line 215, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 80%;
    margin-left: 0%;
    margin-right: -80%;
  }
  /* line 220, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 20%;
    margin-left: 80%;
    margin-right: -100%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 228, ../sass/layouts/_responsive.scss */
  .two-sidebars {
    /* Span 3 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  /* line 230, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 60%;
    margin-left: 20%;
    margin-right: -80%;
  }
  /* line 235, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 20%;
    margin-left: 0%;
    margin-right: -20%;
  }
  /* line 240, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 20%;
    margin-left: 80%;
    margin-right: -100%;
  }
}
/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved front-end performance.
 */
@media print {
  /* Underline all links. */
  /* line 16, ../sass/_print.scss */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  /* line 20, ../sass/_print.scss */
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }

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

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

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

  /* Hide sidebars and nav elements. */
  /* line 77, ../sass/_print.scss */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
div.view-rmm-people-collage div.views-field-field-headshot {
	width: 120px;
	height: 120px;
}
div.views-field-field-headshot {
  width: 200px;
  float: left;
  margin: 1em;
}
div.view-rmm-staff div.views-row {
  float: right;
}
