@-ms-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

/* Import Sass mixins, variables, Compass modules, etc. */
@-ms-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

/* 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
 *
 * Its suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
/* line 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 users computer, you
 * can use web fonts which, like images, are resources downloaded to the users
 * 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 Squirrels
 * 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 were using Sass, youll need to declare your font faces here, then you
 * can add them to the font variables in the _init.scss partial.
 

@font-face {
    font-family: 'bebas_neueregular';
    src: url('../fonts/BebasNeue-webfont.eot');
    src: url('../fonts/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/BebasNeue-webfont.woff') format('woff'),
         url('../fonts/BebasNeue-webfont.ttf') format('truetype'),
         url('../fonts/BebasNeue-webfont.svg#bebas_neueregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
*/
@font-face {
  font-family: 'yanone_kaffeesatzbold';
  src: url("../fonts/yanonekaffeesatz-bold-webfont.eot");
  src: url("../fonts/yanonekaffeesatz-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/yanonekaffeesatz-bold-webfont.woff") format("woff"), url("../fonts/yanonekaffeesatz-bold-webfont.ttf") format("truetype"), url("../fonts/yanonekaffeesatz-bold-webfont.svg#yanone_kaffeesatzbold") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'muli';
  src: url("../fonts/muli-regular-webfont.eot");
  src: url("../fonts/muli-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/muli-regular-webfont.woff") format("woff"), url("../fonts/muli-regular-webfont.ttf") format("truetype"), url("../fonts/muli-regular-webfont.svg#muliregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'muli';
  src: url("../fonts/muli-italic-webfont.eot");
  src: url("../fonts/muli-italic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/muli-italic-webfont.woff2") format("woff"), url("../fonts/muli-italic-webfont.ttf") format("truetype"), url("../fonts/muli-italic-webfont.svg#muliregular") format("svg");
  font-weight: normal;
  font-style: italic;
}

/**
 * 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 138, ../sass/_normalize.scss */
html {
  font-family: muli, Tahoma, Verdana, "DejaVu Sans", sans-serif;
  /* 1 */
  font-size: 90%;
  /* 3 */
  -ms-text-size-adjust: 90%;
  /* 2 */
  -webkit-text-size-adjust: 90%;
  /* 2 */
  line-height: 1.5em;
  color: #6d6e70;
}

/* Remove default margin. */
/* line 159, ../sass/_normalize.scss */
body {
  margin: 0;
  padding: 0;
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyers article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
/* line 169, ../sass/_normalize.scss */
a:link {
  color: #3a6f89;
  text-decoration: none;
  font-weight: bold;
}

/* line 174, ../sass/_normalize.scss */
a:visited {
  color: #3a6f89;
  text-decoration: none;
}

/* line 179, ../sass/_normalize.scss */
a:hover,
a:focus {
  color: #00619d;
}

/* Address `outline` inconsistency between Chrome and other browsers. */
/* line 186, ../sass/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
/* line 192, ../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 208, ../sass/_normalize.scss */
p,
pre {
  margin: 1.5em 0;
}

/* line 211, ../sass/_normalize.scss */
blockquote {
  /* Sets 1 unit of vertical rhythm on the top and bottom margin. */
  margin: 2em 0 2em 2em;
  padding: 1em;
  background: #EAEAEA;
  float: right;
  width: 50%;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 230, ../sass/_normalize.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: yanone_kaffeesatzbold, Tahoma, Verdana, "DejaVu Sans", sans-serif;
  font-weight: normal;
}

/* line 232, ../sass/_normalize.scss */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2.5em;
  line-height: 1.2em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.6em;
  margin-bottom: 0.6em;
}

/* line 240, ../sass/_normalize.scss */
h2 {
  font-size: 1.5em;
  line-height: 1.5em;
  margin-top: 0em;
  margin-bottom: 1em;
}

/* line 245, ../sass/_normalize.scss */
h3 {
  font-size: 1.35em;
  line-height: 1.66667em;
  margin-top: 1.11111em;
  margin-bottom: 0em;
}

/* line 250, ../sass/_normalize.scss */
h4 {
  font-size: 1.25em;
  line-height: 1.2em;
  margin-top: 1.2em;
  margin-bottom: 0em;
}

/* line 255, ../sass/_normalize.scss */
h5 {
  font-size: 1.25em;
  line-height: 1.2em;
  margin-top: 1.2em;
  margin-bottom: 0em;
}

/* line 260, ../sass/_normalize.scss */
h6 {
  font-size: 1.25em;
  line-height: 1.2em;
  margin-top: 1.2em;
  margin-bottom: 0em;
}

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
/* line 267, ../sass/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
/* line 273, ../sass/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* Address styling not present in Safari 5 and Chrome. */
/* line 278, ../sass/_normalize.scss */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
/* line 283, ../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 292, ../sass/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 303, ../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 312, ../sass/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/* Set consistent quote types. */
/* line 324, ../sass/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
/* line 329, ../sass/_normalize.scss */
small {
  font-size: 80%;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
/* line 335, ../sass/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 341, ../sass/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 344, ../sass/_normalize.scss */
sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
/* line 354, ../sass/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.5em 0;
}

/* line 361, ../sass/_normalize.scss */
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

/* line 366, ../sass/_normalize.scss */
dd {
  margin: 0 0 0 30px;
  /* LTR */
}

/* Address paddings set differently in IE 6/7. */
/* line 373, ../sass/_normalize.scss */
menu,
ol,
ul {
  padding: 0 0 0 30px;
  /* LTR */
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 391, ../sass/_normalize.scss */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */
  /* Responsive images */
  max-width: 100%;
  height: auto;
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

/* Correct overflow displayed oddly in IE 9. */
/* line 412, ../sass/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
/* line 417, ../sass/_normalize.scss */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
/* line 433, ../sass/_normalize.scss */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-style: solid;
  border-top-width: 0.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 448, ../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 466, ../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 483, ../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 494, ../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 510, ../sass/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
/* line 522, ../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 533, ../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 547, ../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 557, ../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 563, ../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 572, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
/* line 578, ../sass/_normalize.scss */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
/* line 586, ../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;
}

/* Component (SMACSS module) rules */
/* *
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zens online documentation.
 * https://drupal.org/node/1707736
 */
/*
 * Backgrounds
 */
/* line 14, ../sass/components/_misc.scss */
body, #footer, .region-bottom {
  background: #939597;
}

/* line 18, ../sass/components/_misc.scss */
#main {
  background: #fff;
}

/* line 22, ../sass/components/_misc.scss */
#leaderboard {
  background: #6d6e70;
}

/* line 26, ../sass/components/_misc.scss */
#suggested {
  padding-top: 2em;
  background: #f0f0f0;
}

/*
 * Skyscraper Ad
 */
/* line 34, ../sass/components/_misc.scss */
#dfp-ad-skyscraper-wrapper {
  border: 2px solid #000000;
  width: 120px;
}

/* 
 * Wireframes.
 */
/* line 51, ../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 69, ../sass/components/_misc.scss */
.element-invisible,
.element-focusable {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the element-invisible effect. */
/* line 74, ../sass/components/_misc.scss */
.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 */
/* line 91, ../sass/components/_misc.scss */
#skip-link {
  margin: 0;
}
/* line 95, ../sass/components/_misc.scss */
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/* line 107, ../sass/components/_misc.scss */
.breadcrumb {
  font-size: 75%;
}
/* line 109, ../sass/components/_misc.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 113, ../sass/components/_misc.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* line 122, ../sass/components/_misc.scss */
#department_title .block {
  margin: 0;
  padding: 0;
}

/* The link around the name of the website. */
/* line 131, ../sass/components/_misc.scss */
h1 a.header__site-link:link, h1 a.header__site-link:visited {
  color: #fff;
  text-decoration: none;
}
/* line 137, ../sass/components/_misc.scss */
h1 a.header__site-link:hover, h1 a.header__site-link:focus {
  text-decoration: none;
}

/* line 142, ../sass/components/_misc.scss */
#top {
  background: #d1d2d4;
  width: 100%;
  color: #fff;
  -webkit-box-shadow: rgba(97, 110, 117, 0.7) 0px 2px 2px;
  -moz-box-shadow: rgba(97, 110, 117, 0.7) 0px 2px 2px;
  box-shadow: rgba(97, 110, 117, 0.7) 0px 2px 2px;
  padding: 0.5em 0;
}
/* line 149, ../sass/components/_misc.scss */
#top .nav-btn {
  position: absolute;
  top: 0;
  /* left: pem(-36); */
}

/* line 156, ../sass/components/_misc.scss */
#brand {
  float: left;
  padding: 0;
}
/* line 160, ../sass/components/_misc.scss */
#brand .header__logo {
  padding: 0;
  float: left;
}
/* line 165, ../sass/components/_misc.scss */
#brand h1 {
  font-size: 2em;
  line-height: 50px;
  margin: 0;
  padding: 0 0.5em;
  float: left;
}

/* Advertisments */
/* line 176, ../sass/components/_misc.scss */
#leaderboard .block {
  margin: 0;
  padding: 0;
}

/* line 182, ../sass/components/_misc.scss */
.column {
  margin-top: 1em;
}

/**
 * Titles.
 */
/* line 194, ../sass/components/_misc.scss */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  color: #3a6f89;
}

/* line 200, ../sass/components/_misc.scss */
.field-name-field-subtitle {
  font-size: 1.5em;
  line-height: 1.5em;
  margin-top: 1em;
  margin-bottom: 1em;
}

/*
 * Author Submitted 
 */
/* line 208, ../sass/components/_misc.scss */
.submitted {
  font-size: 0.75em;
  line-height: 2em;
}

/**
 * Messages.
 */
/* line 215, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.5em 0;
  padding: 10px 10px 10px 50px;
  /* LTR */
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAD6UlEQVR42s2WX0xbVRzH3YwmC4k+GF/0ZS/S267/bmnX9nL7bwstZlnbjTDYyoC5GCbB0ZW5pdJCe6swbLFA6bpWIGuRMWVjKGP+21QW3SZBSAjGh4XEaTZTH82Cm/3ztS2xs7mw4KLRk3xyzj33/H6fe5Pz7zEA/yr/vUDukj9FH6drqTaqT8EoPs/UV+nX6TD1BlUh9AqLHlmgPKLcRHmoCOWmElK/FOKTYpS8UwLJkASiUyLI3pKhlClN0g46qj+qL/pbArlbrlO1q25JeiSgR2iYJ8ywXLSg/qP6LNl2ro8+Q4MMkKCd9K2t3q3KdQnkXXIF5aISkgEJzONm1F2qW52pDJN1MI2bUBIuAdVOJWSMTPNQgX6/vkjVpvpREpag6oMqWCYta1IzbsHh9ga0RJtzY8URMdRO9U/KSuWmNQUqh2pY3CtG+fvlqJyofMAFNrZAE+7e/RWR4X4cD9tgOGsA2U2CdtMDqwqyMyIzQ5KKqAKmcyaYxkzYd3YvjGNGFtXRPRj58DT+LOemRrFnrBLyITmUDmUyO/NYgu2d26ukHVJo3tXAMGpAs+cQmh0NeClan30uwN7TgnQ6nRd4r3thOGOAJqYB2UVC79AfZAnKHGUxQa8A2tNaNLW/jKvXv8Dyb8s4yryKA4O10A3roIvpUB+swTdz1/LJZ27PQBvT5lBH1RD4BChzlQ2wBNtc22aE/ULQgzRCl4P5BPcT93GMOYz9wb2QhCRgAq35d8u/L2PXe7tADVGgBlcQ+AXQtmlvsP/gzbJZvp8PMkJCFBYh8m0knyiVSsHe0YIGZz1+/uVOvt8z7QGvnwf+ST5EIRHIUyR4fh50rbp5lsDcYR4ReAXgBrng9q/Qfa0bfy035r7Ot2dvz4IX4IEIEAXwvDzscOw4zxJUd1YfEXlE4Aa4BQHMlwzSSBeI7iXvoTxWDqKPYCFsFaKmr+YVliB0JfS89DVpiuhlB9k/tSOZTuYFvq98yI7L0/MAsVWcGp0bfW61hbahwltxSeARsIKyWKesSKQSWIwvYkvvllwfx88pgOvhwthu/AzAxlVX8vz385tLbaVxwpcLZtEw0QDjsBGctzksiE4CimZFfHp++oWHbnbuUfdB0komMgHsRN1r0MWBsEmYODF5onY92/UTwcvBxuzXcN1ccHycVSn2FaPYWwzCQUDWKIt7z3utAJ5c74Hz+OLSomynY+cVfiM/xW3JiDyZpB3FuZrj4oCwE+Ad4qWMjPHjpTtL0mzMoxyZz9yM39Q7Y85Ok930icqm+k59TL2wm9l90dZv8y/8sPAigGf/iUN/Q4anM2zOsdLe+L+4VfwBVVjDs2rTYx0AAAAASUVORK5CYII=');
  background-position: 8px 8px;
  /* LTR */
  background-repeat: no-repeat;
  border: 1px solid #be7;
}

/* line 230, ../sass/components/_misc.scss */
.messages--warning {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACuElEQVRIiWP4//8/Ay0xSYqntTpnT252zqeJBf0Njhsykrz/pyd6/e9vcNpGVQv6q2wlm0qc/r0+IPD/3UG+/61l9v9mdrjIUc2C7hqHUzc3S///eZwBjO9tF/vfWe1wjioWTKixVm8otPn38wQT3IKfxxn/t5Va/utpsNSg2ILWcttrNzdJgQ3+dpQRjEHs+9tE/zeXWt+gyILOamuTqlxrsOtPLub+7+emBsSq/88v5wL7oqHQ9H9nmbkF2RbUF1rev7lJEuziuU3i/90ddcB4UZsoJC62ifyvK7R4QJYFrcUGrmUZ5v9hYb9hosh/bzcDMN42VRgeF9W5hv8bi/XdSbagKtfs2c1NEvCIPbaQ/7+/pwkYn17Ki0hR24T/l2eZPCfJgsZ83dCiNOP/yCnn7iau/8G+5mD8aBsHSoqqyNL9X5erHUm0BcVpRm9ubhZHMoTh/4eDzP/DA23+RwTZ/P96hAlF7t5Wof8FyfpvibKgNk8noyDZ4D9quofg1Bjr/1kJlhjiIF+Upmn/r83RzCJoQXaC3qcbm8SwGMLwvybP/H8jMGlik7u7VeB/Zqz2J7wWVGdr1uTG62J1PQgfWST1/+hiCaxyIF8UJqv9r8hQrcVpQVqkzrcbG0WwGvB2H/P/lnx5MAaxsam5vYn3f2KY+jesFpSlqfZnxWjidP2OGWL/g/0swBjExu4Lhv958Ur/i5KU+lEsCA1lYI4JUv95bZ0gTo2Pt3P+z0myBmMQG5e6mxu4/kf4Kf8EmQm3oCRNebKrvSawIGPBqRG9sMOp5hjjfwdrlf/58bKT4RaUpWvtcLZV/39iscD/H0AFP46jYwYiMeP/44u4/9tbKQODSXUH3II9G7v18hI0n8YGKv+IDVT6joxj/BVx4mgcOCde/SnITPRUJAHEGlTCEkQV19TAAN8FC67hZdFXAAAAAElFTkSuQmCC');
  border-color: #ed5;
}

/* line 239, ../sass/components/_misc.scss */
.messages--error {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACpElEQVR42rWWTUgbQRiGQ0Tx4MWDeFM8eBA9iKAoggiCoCiiIiL4L3oQV1CJB0UEf6iRYFpK7UniTw9VSqL2kvQsVDBpSZrtRo35czVNW3oprRf17exSl4yzu1ikAy9h59vvedhkMrMGAGoxknAk2w8MJ/WosXThiZkZt9jdLeglPjn5ATc3mhJNuNjbK0QbG3ExMICL/n6IfX0gcxB7ekDAELu6IHZ2IlJbi1hLS1BLogmPtbUhMTv7oMSamzUlqnByMxLT0/8STQkDj9TV4ZLj5OysrODl8jIu5Gs68dFR7JG6dWkJ0fFx+TpSX89IDMnwcHU1yKec12Yz3rlc4HkeLwjkXJpPip3U3+7vIx6P4ymph4eG5PlwTQ0lMdytlmBxMWKtrXLeT0zA5XTibvj9fjxfXETkb/3N/Dz2dneVuiTZtliU/rPSUsQ5ziuxZYG03IIlJdKKUPJjdRUAKMmzuTnskB/VYbdTtd9HR4g2NCi9Z2VliDY1BSnBaUEBzsrLqXyzWCiQ9HU5HA4afniIUFWV0hOqqMBpURErOM7NxWlhIZOvCwvA7S3Uxq+DA5AnZ3pO8vJYQSArC8c5Oeqx2Rj4udeLQH6+6v2B7GxW8DkjA0JmJpONwUHY7XZGIAgCzCYTeJUewmIFfqMRfEoKlQ2yJbza2oLWcLvdeDI2hk/3+iQWKzAYkJzNjg5srq9TwJ9OJ76YTNScx+ORJT66X1/grKyEbW2NgfPp6XKd/JMZySrHaQsSU1Oe+0/w3WpVgyu5HBlR6lc+H8gioevDwz6JrWwV5+3txyoSFk5DcOX1MnCyJ4Vwfb1zt1UY9SR8aioDpuppaVpwZbPTl+hHF04dOKzk8XBF8DgJC3/woU/W/EciOtELOWi8DDwp//215Q+p7kiKh2lQSAAAAABJRU5ErkJggg==');
  border-color: #ed541d;
}

/* line 249, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

/* line 252, ../sass/components/_misc.scss */
.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
/* line 257, ../sass/components/_misc.scss */
.messages--error p.error {
  color: #333;
}

/* System status report. */
/* line 263, ../sass/components/_misc.scss */
.ok,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

/* line 268, ../sass/components/_misc.scss */
.warning,
.messages--warning {
  background-color: #fffce5;
  color: #840;
}

/* line 273, ../sass/components/_misc.scss */
.error,
.messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 283, ../sass/components/_misc.scss */
.tabs-primary, .tabs-secondary {
  overflow: hidden;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, transparent));
  background-image: -webkit-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: -moz-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: -o-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbbbbb \0/ie;
  margin: 1.5em 0;
  padding: 0 2px;
  white-space: nowrap;
}

/* line 293, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  float: left;
  /* LTR */
  margin: 0 3px;
}

/* line 297, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.5em;
  text-decoration: none;
}

/* Primary tabs. */
/* line 310, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  text-shadow: 1px 1px 0 white;
  border: 1px solid #bbbbbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

/* line 319, ../sass/components/_misc.scss */
.is-active.tabs-primary__tab {
  border-bottom-color: white;
}

/* line 325, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

/* line 335, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

/* line 339, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
  background-image: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -o-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  border-color: #fff;
}

/* Secondary tabs. */
/* line 363, ../sass/components/_misc.scss */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.5em;
}

/* line 370, ../sass/components/_misc.scss */
.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0.75em 3px;
}

/* line 376, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  -webkit-border-radius: 0.75em;
  -moz-border-radius: 0.75em;
  -ms-border-radius: 0.75em;
  -o-border-radius: 0.75em;
  border-radius: 0.75em;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-shadow: 1px 1px 0 white;
  background-color: #f2f2f2;
  color: #666;
  padding: 0 .5em;
}

/* line 385, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}

/* line 390, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
/* line 418, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 422, ../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 430, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

/**
 * "More" links.
 */
/* line 437, ../sass/components/_misc.scss */
.more-link {
  text-align: right;
  /* LTR */
}

/* line 440, ../sass/components/_misc.scss */
.more-help-link {
  text-align: right;
  /* LTR */
}

/* line 443, ../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 458, ../sass/components/_misc.scss */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

/* line 463, ../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 475, ../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 480, ../sass/components/_misc.scss */
.pager-current {
  font-weight: bold;
}

/**
 * Blocks.
 */
/* Block wrapper. */
/* line 490, ../sass/components/_misc.scss */
.block {
  margin-bottom: 1.5em;
}

/**
 * Menus.
 */
/* line 497, ../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 504, ../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 511, ../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 520, ../sass/components/_misc.scss */
.menu a.active {
  color: #000;
}

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
/* line 530, ../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 541, ../sass/components/_misc.scss */
.unpublished {
  height: 0;
  overflow: visible;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  /* A very nice CSS3 property. */
  word-wrap: break-word;
}

/**
 * Comments.
 */
/* Wrapper for the list of comments and its title. */
/* line 569, ../sass/components/_misc.scss */
.comments {
  margin: 1.5em 0;
}

/* Preview of the comment before submitting new or updated comment. */
/* line 574, ../sass/components/_misc.scss */
.comment-preview {
  /* Drupal core will use a #ffffea background. See #1110842. */
  background-color: #ffffea;
}

/* Wrapper for a single comment. */
/* line 580, ../sass/components/_misc.scss */
.comment {
  /* Comment's permalink wrapper. */
}
/* line 583, ../sass/components/_misc.scss */
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* Nested comments are indented. */
/* line 590, ../sass/components/_misc.scss */
.indented {
  /* Drupal core uses a 25px left margin. */
  margin-left: 30px;
  /* LTR */
}

/**
 * Forms.
 */
/* Wrapper for a form element (or group of form elements) and its label. */
/* line 600, ../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 604, ../sass/components/_misc.scss */
.form-item .form-text {
  color: #00619d;
  font-size: 12px;
  padding: 0.5em;
  border: #00619d 1px solid;
}
/* line 613, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 620, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 627, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 632, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

/* line 639, ../sass/components/_misc.scss */
.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

/* The part of the label that indicates a required field. */
/* line 645, ../sass/components/_misc.scss */
.form-required {
  color: #c00;
}

/* Labels for radios and checkboxes. */
/* line 650, ../sass/components/_misc.scss */
label.option {
  display: inline;
  font-weight: normal;
}

/* Buttons used by contrib modules like Media. */
/* line 656, ../sass/components/_misc.scss */
a.button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}
/* line 659, ../sass/components/_misc.scss */
a.button.subbtn {
  padding: 1px 6px;
}

/* Password confirmation. */
/* line 667, ../sass/components/_misc.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
/* line 672, ../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 684, ../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 691, ../sass/components/_misc.scss */
.openid-link,
.user-link {
  margin-top: 1.5em;
}

/* line 695, ../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 699, ../sass/components/_misc.scss */
#user-login ul {
  margin: 1.5em 0;
}

/**
 * Drupal admin tables.
 */
/* line 707, ../sass/components/_misc.scss */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
/* line 712, ../sass/components/_misc.scss */
form tbody {
  border-top: 1px solid #ccc;
}
/* line 715, ../sass/components/_misc.scss */
form table ul {
  margin: 0;
}

/* line 720, ../sass/components/_misc.scss */
tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

/* line 725, ../sass/components/_misc.scss */
tr.even {
  background-color: #fff;
}

/* Markup generated by theme_tablesort_indicator(). */
/* line 740, ../sass/components/_misc.scss */
td.active {
  background-color: #ddd;
}

/* Center checkboxes inside table cell. */
/* line 746, ../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 751, ../sass/components/_misc.scss */
td.menu-disabled {
  background: #ccc;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list. */
/* line 762, ../sass/components/_misc.scss */
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 773, ../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 782, ../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 789, ../sass/components/_misc.scss */
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
/* line 801, ../sass/components/_misc.scss */
tr.drag {
  background-color: #fffff0;
}

/* line 804, ../sass/components/_misc.scss */
tr.drag-previous {
  background-color: #ffd;
}

/* line 807, ../sass/components/_misc.scss */
.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
/* line 816, ../sass/components/_misc.scss */
tr.selected td {
  background: #ffc;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
/* line 825, ../sass/components/_misc.scss */
.progress {
  font-weight: bold;
}
/* line 828, ../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 834, ../sass/components/_misc.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1466892916');
}

/* line 842, ../sass/components/_misc.scss */
.node-teaser {
  clear: both;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: #d1d2d4 solid 1px;
}
/* line 848, ../sass/components/_misc.scss */
.node-teaser .user-picture {
  display: none;
}
/* line 850, ../sass/components/_misc.scss */
.node-teaser img {
  max-width: 150px;
  float: left;
  margin-right: 1em;
}

/* line 859, ../sass/components/_misc.scss */
b.field-name-field-date {
  display: block;
  font-size: 90%;
}

/* line 864, ../sass/components/_misc.scss */
ul.pager--infinite-scroll {
  list-style-type: none;
}

/* User Navigation */
/* line 3, ../sass/components/_menu.scss */
#user-box {
  float: right;
}
/* line 6, ../sass/components/_menu.scss */
#user-box ul {
  margin: 5px 0 0;
  padding: 0;
  float: right;
}
/* line 7, ../sass/components/_menu.scss */
#user-box li {
  margin: 0;
  padding: 0 5px 0 0;
  list-style: none;
  float: left;
}
/* line 14, ../sass/components/_menu.scss */
#user-box li a {
  padding: 10px;
  color: #fff;
}
/* line 16, ../sass/components/_menu.scss */
#user-box li.sign-up a {
  background: #3a6f89;
}
/* line 17, ../sass/components/_menu.scss */
#user-box li.fb-connect a {
  background: #00619d;
}
/* line 18, ../sass/components/_menu.scss */
#user-box li.login a {
  background: #6d6e70;
}
/* line 21, ../sass/components/_menu.scss */
#user-box .view-current-users .views-field {
  float: left;
}
/* line 25, ../sass/components/_menu.scss */
#user-box #search-block-form {
  position: relative;
  margin-top: .5em;
}
/* line 29, ../sass/components/_menu.scss */
#user-box #search-block-form input.form-text {
  width: 11.875em;
  z-index: 5;
}
/* line 34, ../sass/components/_menu.scss */
#user-box #search-block-form input.form-submit {
  position: absolute;
  display: block;
  z-index: 10;
  margin: 0.375em;
  top: 0;
  right: 0;
}

/* 
 * Nav bar.
 */
/* line 49, ../sass/components/_menu.scss */
#nav {
  top: 4.5em;
  z-index: 200;
  background: #939597;
  text-align: center;
  width: 100%;
  color: #fff;
  -webkit-box-shadow: rgba(97, 110, 117, 0.7) 0px 2px 2px;
  -moz-box-shadow: rgba(97, 110, 117, 0.7) 0px 2px 2px;
  box-shadow: rgba(97, 110, 117, 0.7) 0px 2px 2px;
  /* close TB Megamenu */
}
/* line 59, ../sass/components/_menu.scss */
#nav .contextual-links-wrapper {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
/* line 60, ../sass/components/_menu.scss */
#nav .block {
  margin: 0;
  padding: 0;
}
/* line 62, ../sass/components/_menu.scss */
#nav .tb-megamenu {
  background: #939597;
  white-space: nowrap;
  /* Top Level */
  /* Active Page TL */
  /* Drowdowns */
  /* TOP LEVEL ACTIVE */
}
/* line 67, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav {
  margin: 0;
}
/* line 71, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li {
  font-family: yanone_kaffeesatzbold, Tahoma, Verdana, "DejaVu Sans", sans-serif;
  font-size: 1.25em;
}
/* line 76, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li ul {
  font-family: muli, Tahoma, Verdana, "DejaVu Sans", sans-serif;
  font-size: 70%;
}
/* line 79, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li ul ul {
  font-size: 100%;
}
/* line 84, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li.magazine a {
  /* Magazine */
  background: rgba(162, 132, 136, 0.2);
}
/* line 88, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li.magazine a:focus, #nav .tb-megamenu .nav > li.magazine a:hover {
  color: #fff;
  background: #a25963;
}
/* line 93, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li.magazine a.active {
  background: #a28488;
}
/* line 98, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li.news a {
  /* News */
  background: rgba(84, 90, 109, 0.2);
}
/* line 102, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li.news a:focus, #nav .tb-megamenu .nav > li.news a:hover {
  color: #fff;
  background: #2d3859;
}
/* line 107, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li.news a.active {
  background: #545a6d;
}
/* line 111, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li.equipment a {
  /* Equipment */
  background: rgba(217, 177, 119, 0.2);
}
/* line 115, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li.equipment a:focus, #nav .tb-megamenu .nav > li.equipment a:hover {
  color: #fff;
  background: #d69a43;
}
/* line 120, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li.equipment a.active {
  background: #d9b177;
}
/* line 125, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li.services a {
  /* Services */
  background: rgba(89, 110, 125, 0.2);
}
/* line 129, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li.services a:focus, #nav .tb-megamenu .nav > li.services a:hover {
  color: #fff;
  background: #1d4d70;
}
/* line 134, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li.services a.active {
  background: #596e7d;
}
/* line 139, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li.encyclopedia a {
  /* Pedia */
  background: rgba(183, 200, 148, 0.2);
}
/* line 143, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li.encyclopedia a:focus, #nav .tb-megamenu .nav > li.encyclopedia a:hover {
  color: #fff;
  background: #96bc48;
}
/* line 148, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li.encyclopedia a.active {
  background: #b7c894;
}
/* line 154, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li > a {
  background: none;
  border-right: none;
  color: #fff;
  font-weight: normal;
  padding: 8px 10px;
}
/* line 162, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li > a:focus,
#nav .tb-megamenu .nav > li > a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
/* line 168, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > .active > a,
#nav .tb-megamenu .nav > .active > a:hover,
#nav .tb-megamenu .nav > .active > a:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
/* line 173, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav-collapse .nav > li.active > a:hover,
#nav .tb-megamenu .nav-collapse .nav > li.active > a:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
/* line 177, ../sass/components/_menu.scss */
#nav .tb-megamenu .row-fluid + .row-fluid {
  border: none;
}
/* line 180, ../sass/components/_menu.scss */
#nav .tb-megamenu .dropdown .caret {
  margin-left: 5px;
}
/* line 183, ../sass/components/_menu.scss */
#nav .tb-megamenu .dropdown-menu {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
/* line 188, ../sass/components/_menu.scss */
#nav .tb-megamenu .dropdown-menu li > a {
  border-top: 1px solid #444;
  padding: 5px 20px;
  text-shadow: none;
}
/* line 193, ../sass/components/_menu.scss */
#nav .tb-megamenu .dropdown-menu li:first-child > a {
  border-bottom: none;
}
/* line 196, ../sass/components/_menu.scss */
#nav .tb-megamenu .navbar .nav > li > .dropdown-menu:before {
  display: none;
}
/* line 199, ../sass/components/_menu.scss */
#nav .tb-megamenu .navbar .nav > li > .dropdown-menu:after {
  display: none;
}
/* line 203, ../sass/components/_menu.scss */
#nav .tb-megamenu .dropdown-menu .disabled > a,
#nav .tb-megamenu .dropdown-menu .disabled > a:hover {
  color: #999;
}
/* line 206, ../sass/components/_menu.scss */
#nav .tb-megamenu .dropdown-menu .disabled > a:hover {
  background-color: transparent;
}
/* line 209, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav li.dropdown.open > .dropdown-toggle {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
/* line 213, ../sass/components/_menu.scss */
.magazine #nav .tb-megamenu .nav li.dropdown.open > .dropdown-toggle {
  background: rgba(162, 132, 136, 0.2);
}
/* line 216, ../sass/components/_menu.scss */
.news #nav .tb-megamenu .nav li.dropdown.open > .dropdown-toggle {
  background: rgba(84, 90, 109, 0.2);
}
/* line 219, ../sass/components/_menu.scss */
.encyclopedia #nav .tb-megamenu .nav li.dropdown.open > .dropdown-toggle {
  background: rgba(183, 200, 148, 0.2);
}
/* line 222, ../sass/components/_menu.scss */
.services #nav .tb-megamenu .nav li.dropdown.open > .dropdown-toggle {
  background: rgba(89, 110, 125, 0.2);
}
/* line 225, ../sass/components/_menu.scss */
.equipment #nav .tb-megamenu .nav li.dropdown.open > .dropdown-toggle {
  background: rgba(217, 177, 119, 0.2);
}
/* line 231, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav li.dropdown.active > .dropdown-toggle {
  background-color: inherit;
  color: #fff;
}
/* line 235, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav li.magazine.dropdown.active > .dropdown-toggle {
  background-color: rgba(162, 132, 136, 0.95);
  color: #fff;
}
/* line 239, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav li.news.dropdown.active > .dropdown-toggle {
  background-color: rgba(84, 90, 109, 0.95);
  color: #fff;
}
/* line 243, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav li.encyclopedia.dropdown.active > .dropdown-toggle {
  background-color: rgba(183, 200, 148, 0.95);
  color: #fff;
}
/* line 247, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav li.services.dropdown.active > .dropdown-toggle {
  background-color: rgba(89, 110, 125, 0.95);
  color: #fff;
}
/* line 251, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav li.equipment.dropdown.active > .dropdown-toggle {
  background-color: rgba(217, 177, 119, 0.95);
  color: #fff;
}
/* line 257, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav > li.dropdown.open.active > a:hover,
#nav .tb-megamenu .nav > li.dropdown.open.active > a:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
/* line 264, ../sass/components/_menu.scss */
#nav .tb-megamenu .dropdown-menu {
  background-color: #939597;
  border: none;
}
/* line 272, ../sass/components/_menu.scss */
#nav .tb-megamenu .dropdown-menu #block-taxonomy-menu-block-1 ul,
#nav .tb-megamenu .dropdown-menu #block-views-pgpedia-newest-block-2 ul,
#nav .tb-megamenu .dropdown-menu #block-views-columnist-block-3 ul,
#nav .tb-megamenu .dropdown-menu #block-views-nodequeue-3-block-1 ul {
  margin: 0;
  padding: 0;
}
/* line 277, ../sass/components/_menu.scss */
#nav .tb-megamenu .dropdown-menu #block-taxonomy-menu-block-1 li,
#nav .tb-megamenu .dropdown-menu #block-views-pgpedia-newest-block-2 li,
#nav .tb-megamenu .dropdown-menu #block-views-columnist-block-3 li,
#nav .tb-megamenu .dropdown-menu #block-views-nodequeue-3-block-1 li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  vertical-align: top;
  border-right: #e5e5e5 1px solid;
}
/* line 287, ../sass/components/_menu.scss */
#nav .tb-megamenu .dropdown-menu #block-taxonomy-menu-block-1 li.last,
#nav .tb-megamenu .dropdown-menu #block-taxonomy-menu-block-1 li.views-row-last,
#nav .tb-megamenu .dropdown-menu #block-views-pgpedia-newest-block-2 li.last,
#nav .tb-megamenu .dropdown-menu #block-views-pgpedia-newest-block-2 li.views-row-last,
#nav .tb-megamenu .dropdown-menu #block-views-columnist-block-3 li.last,
#nav .tb-megamenu .dropdown-menu #block-views-columnist-block-3 li.views-row-last,
#nav .tb-megamenu .dropdown-menu #block-views-nodequeue-3-block-1 li.last,
#nav .tb-megamenu .dropdown-menu #block-views-nodequeue-3-block-1 li.views-row-last {
  border-right: none;
}
/* line 291, ../sass/components/_menu.scss */
#nav .tb-megamenu .dropdown-menu #block-taxonomy-menu-block-1 a,
#nav .tb-megamenu .dropdown-menu #block-views-pgpedia-newest-block-2 a,
#nav .tb-megamenu .dropdown-menu #block-views-columnist-block-3 a,
#nav .tb-megamenu .dropdown-menu #block-views-nodequeue-3-block-1 a {
  text-decoration: none;
  background: none;
  color: #fff;
}
/* line 299, ../sass/components/_menu.scss */
#nav .tb-megamenu .dropdown-menu #block-taxonomy-menu-block-1 li a {
  margin: 5px;
  padding: 0;
}
/* line 306, ../sass/components/_menu.scss */
#nav .tb-megamenu .dropdown-menu #block-menu-menu-pgpedia li {
  float: left;
}
/* line 313, ../sass/components/_menu.scss */
#nav .tb-megamenu .dropdown-menu #block-views-pgpedia-newest-block-2 li,
#nav .tb-megamenu .dropdown-menu #block-views-columnist-block-3 li,
#nav .tb-megamenu .dropdown-menu #block-views-nodequeue-3-block-1 li {
  max-width: 100px;
  margin: 0 10px 0 -15px;
}
/* line 317, ../sass/components/_menu.scss */
#nav .tb-megamenu .dropdown-menu #block-views-pgpedia-newest-block-2 img,
#nav .tb-megamenu .dropdown-menu #block-views-columnist-block-3 img,
#nav .tb-megamenu .dropdown-menu #block-views-nodequeue-3-block-1 img {
  padding: 0 15px;
}
/* line 322, ../sass/components/_menu.scss */
#nav .tb-megamenu .magazine .dropdown-menu {
  background-color: rgba(162, 132, 136, 0.95);
}
/* line 325, ../sass/components/_menu.scss */
#nav .tb-megamenu .news .dropdown-menu {
  background-color: rgba(84, 90, 109, 0.95);
}
/* line 328, ../sass/components/_menu.scss */
#nav .tb-megamenu .encyclopedia .dropdown-menu {
  background-color: rgba(183, 200, 148, 0.95);
}
/* line 331, ../sass/components/_menu.scss */
#nav .tb-megamenu .equipment .dropdown-menu {
  background-color: rgba(217, 177, 119, 0.95);
}
/* line 334, ../sass/components/_menu.scss */
#nav .tb-megamenu .services .dropdown-menu {
  background-color: rgba(89, 110, 125, 0.95);
}
/* line 338, ../sass/components/_menu.scss */
#nav .tb-megamenu .dropdown-menu li > a {
  color: #fff;
  border-top: none;
}
/* line 344, ../sass/components/_menu.scss */
#nav .tb-megamenu .dropdown-menu li > a:hover,
#nav .tb-megamenu .dropdown-menu li > a:focus,
#nav .tb-megamenu .dropdown-submenu:hover > a {
  background: none;
  color: #d1d2d4;
}
/* line 350, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav li.dropdown.open > .dropdown-toggle,
#nav .tb-megamenu .nav li.dropdown.open.active > .dropdown-toggle {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
/* line 355, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav li.dropdown.open.magazine > .dropdown-toggle,
#nav .tb-megamenu .nav li.dropdown.open.active.magazine > .dropdown-toggle {
  background: #a28488;
}
/* line 359, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav li.dropdown.open.news > .dropdown-toggle,
#nav .tb-megamenu .nav li.dropdown.open.active.news > .dropdown-toggle {
  background: #545a6d;
}
/* line 363, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav li.dropdown.open.encyclopedia > .dropdown-toggle,
#nav .tb-megamenu .nav li.dropdown.open.active.encyclopedia > .dropdown-toggle {
  background: #b7c894;
}
/* line 367, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav li.dropdown.open.services > .dropdown-toggle,
#nav .tb-megamenu .nav li.dropdown.open.active.services > .dropdown-toggle {
  background: #596e7d;
}
/* line 371, ../sass/components/_menu.scss */
#nav .tb-megamenu .nav li.dropdown.open.equipment > .dropdown-toggle,
#nav .tb-megamenu .nav li.dropdown.open.active.equipment > .dropdown-toggle {
  background: #d9b177;
}
/* line 377, ../sass/components/_menu.scss */
#nav .tb-megamenu .mega-nav .mega-group > .mega-group-title,
#nav .tb-megamenu .dropdown-menu .mega-nav .mega-group > .mega-group-title,
#nav .tb-megamenu .dropdown-menu .active .mega-nav .mega-group > .mega-group-title {
  color: #ddd;
}
/* line 380, ../sass/components/_menu.scss */
#nav .tb-megamenu .tb-block {
  background: transparent;
  color: inherit;
}
/* line 384, ../sass/components/_menu.scss */
#nav .tb-megamenu .tb-block .block-inner {
  padding: 0;
}
/* line 387, ../sass/components/_menu.scss */
#nav .tb-megamenu .tb-block .block-title {
  background: inherit;
  color: #ddd;
}
/* line 391, ../sass/components/_menu.scss */
#nav .tb-megamenu .block-ct {
  background: inherit;
  color: inherit;
  padding: 0;
  *zoom: 1;
}
/* line 398, ../sass/components/_menu.scss */
#nav .tb-megamenu .block-ct:before,
#nav .tb-megamenu .block-ct:after {
  display: table;
  content: "";
  line-height: 0;
}
/* line 403, ../sass/components/_menu.scss */
#nav .tb-megamenu .block-ct:after {
  clear: both;
}
/* line 409, ../sass/components/_menu.scss */
#nav .tb-megamenu .tb-block ul.unstyled,
#nav .tb-megamenu .tb-block ol.unstyled,
#nav .tb-megamenu .tb-block ul.nav,
#nav .tb-megamenu .tb-block ol.nav {
  margin-left: 0;
}
/* line 412, ../sass/components/_menu.scss */
#nav .tb-megamenu .block_menu .nav {
  margin-bottom: 20px;
}
/* line 415, ../sass/components/_menu.scss */
#nav .tb-megamenu .block_menu .nav > li {
  border-top: 1px solid #444;
}
/* line 418, ../sass/components/_menu.scss */
#nav .tb-megamenu .block_menu .nav > li > a {
  padding: 5px;
}
/* line 421, ../sass/components/_menu.scss */
#nav .tb-megamenu .block_menu .nav > li:first-child {
  border-top: 0;
}
/* line 424, ../sass/components/_menu.scss */
#nav .tb-megamenu .block_menu .nav > li:first-child > a {
  padding-top: 0;
  border-top: 0;
}

/* close nav */
/*
 * Flexslider
 */
/* line 6, ../sass/components/_flexslider.scss */
#front-page-flexslider.flexslider,
.flexslider {
  margin: 0;
  background: none;
  border: none;
  border-bottom: 1em #d1d2d4 solid;
  position: relative;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  box-shadow: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: 0;
  -o-box-shadow: 0;
  zoom: 1;
}

/* line 23, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption {
  color: #6d6e70;
  position: absolute;
  /* background: rgba(0,0,0,.5); */
  height: 85%;
}
/* line 29, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption.Magazine h2 {
  color: #a28488;
}
/* line 30, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption.News h2 {
  color: #545a6d;
}
/* line 31, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption.Encyclopedia h2 {
  color: #b7c894;
}
/* line 32, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption.Equipment h2 {
  color: #d9b177;
}
/* line 33, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption.Services h2 {
  color: #596e7d;
}
/* line 35, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption h2 {
  line-height: 1em;
  font-size: 1.5em;
  margin-bottom: 0;
  padding-bottom: 0;
}
/* line 39, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption a {
  position: absolute;
  bottom: 0;
  display: block;
  margin-bottom: 1.25em;
  color: #fff;
  border: none;
  /* width:50%; */
  padding: 0.625em;
}
/* line 49, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption a a:hover {
  text-decoration: none;
}
/* line 52, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption.Magazine a {
  background: rgba(162, 132, 136, 0.95);
}
/* line 54, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption.Magazine a:hover {
  background: #a25963;
}
/* line 56, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption.News a {
  background: rgba(84, 90, 109, 0.95);
}
/* line 58, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption.News a:hover {
  background: #2d3859;
}
/* line 60, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption.Encyclopedia a {
  background: rgba(183, 200, 148, 0.95);
}
/* line 62, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption.Encyclopedia a:hover {
  background: #96bc48;
}
/* line 64, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption.Equipment a {
  background: rgba(217, 177, 119, 0.95);
}
/* line 66, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption.Equipment a:hover {
  background: #d69a43;
}
/* line 68, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption.Local a {
  background: rgba(89, 110, 125, 0.95);
}
/* line 70, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption.Local a:hover {
  background: #1d4d70;
}
/* line 73, ../sass/components/_flexslider.scss */
#front-page-flexslider .flex-caption .field-name-field-description {
  width: 94%;
}

/* line 78, ../sass/components/_flexslider.scss */
.flex-direction-nav a {
  overflow: visible;
}

/*
Department Styles - replaces need for multiple themes. Themes with colors.
*/
/* line 6, ../sass/components/_departments.scss */
.node-banner-ad h2 {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Front Page Departments */
/* line 11, ../sass/components/_departments.scss */
#pgp-departments {
  margin: 0 12px;
}
/* line 15, ../sass/components/_departments.scss */
#pgp-departments .field-name-field-slogan {
  font-size: .8em;
}
/* line 19, ../sass/components/_departments.scss */
#pgp-departments article {
  margin: 0;
  border: none;
}
/* line 21, ../sass/components/_departments.scss */
#pgp-departments h2 {
  margin: 0 -9px;
  padding: 0.1875em 0;
}
/* line 25, ../sass/components/_departments.scss */
#pgp-departments h2 a {
  color: #fff;
  display: block;
  padding: 0 10px;
  text-decoration: none;
}
/* line 33, ../sass/components/_departments.scss */
#pgp-departments .node {
  padding: 0 0.625em;
}
/* line 37, ../sass/components/_departments.scss */
#pgp-departments p {
  margin-top: 0;
}
/* line 40, ../sass/components/_departments.scss */
#pgp-departments .magazine h2 {
  background: #a28488;
}
/* line 45, ../sass/components/_departments.scss */
#pgp-departments .news h2 {
  background: #545a6d;
}
/* line 50, ../sass/components/_departments.scss */
#pgp-departments .encyclopedia h2 {
  background: #b7c894;
}
/* line 55, ../sass/components/_departments.scss */
#pgp-departments .equipment h2 {
  background: #d9b177;
}
/* line 60, ../sass/components/_departments.scss */
#pgp-departments .services h2 {
  background: #596e7d;
}

/* line 68, ../sass/components/_departments.scss */
.front .magazine h1.title {
  padding: 0 0.1875em;
  background: #a28488;
  border: none;
}
/* line 73, ../sass/components/_departments.scss */
.front .magazine h1.title a {
  display: block;
}
/* line 80, ../sass/components/_departments.scss */
.front .news h1.title {
  padding: 0 0.1875em;
  background: #545a6d;
  border: none;
}
/* line 85, ../sass/components/_departments.scss */
.front .news h1.title a {
  display: block;
}
/* line 92, ../sass/components/_departments.scss */
.front .encyclopedia h1.title {
  padding: 0 0.1875em;
  background: #b7c894;
  border: none;
}
/* line 97, ../sass/components/_departments.scss */
.front .encyclopedia h1.title a {
  display: block;
}
/* line 104, ../sass/components/_departments.scss */
.front .equipment h1.title {
  padding: 0 0.1875em;
  background: #d9b177;
  border: none;
}
/* line 109, ../sass/components/_departments.scss */
.front .equipment h1.title a {
  display: block;
}
/* line 116, ../sass/components/_departments.scss */
.front .services h1.title {
  padding: 0 0.1875em;
  background: #596e7d;
  border: none;
}
/* line 121, ../sass/components/_departments.scss */
.front .services h1.title a {
  display: block;
}

/*  Pages  */
/* 
 * Hide Department Titles to show only nickname and slogan 
 */
/* line 137, ../sass/components/_departments.scss */
.node-type-pgp-departments h1.title,
.node-type-pgp-departments article.node-8 p {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* 
 * MAGAZINE Pages 
 */
/* line 149, ../sass/components/_departments.scss */
.magazine h1.field-name-field-display-title,
.section-magazine h1.field-name-field-display-title {
  border-bottom: 0.3125em solid #a28488;
  color: #a28488;
}
/* line 156, ../sass/components/_departments.scss */
.magazine h1.title,
.section-magazine h1.title {
  border-bottom: none;
  color: #a28488;
}
/* line 161, ../sass/components/_departments.scss */
.magazine h1.title a:link,
.magazine h1.title a:visited,
.section-magazine h1.title a:link,
.section-magazine h1.title a:visited {
  color: #fff;
  text-decoration: none;
}
/* line 167, ../sass/components/_departments.scss */
.magazine h1.title a:hover,
.magazine h1.title a:focus,
.section-magazine h1.title a:hover,
.section-magazine h1.title a:focus {
  text-decoration: underline;
}
/* line 173, ../sass/components/_departments.scss */
.magazine h2,
.section-magazine h2 {
  color: #a28488;
}
/* line 178, ../sass/components/_departments.scss */
.magazine a:link,
.magazine a:visited,
.section-magazine a:link,
.section-magazine a:visited {
  color: #a28488;
  text-decoration: none;
}
/* line 184, ../sass/components/_departments.scss */
.magazine a:hover,
.magazine a:focus,
.section-magazine a:hover,
.section-magazine a:focus {
  color: #a25963;
}
/* line 189, ../sass/components/_departments.scss */
.magazine .field-name-field-slogan,
.section-magazine .field-name-field-slogan {
  color: #a28488;
}

/*
 * Subscribe Page
 */
/* line 199, ../sass/components/_departments.scss */
.field-name-field-product-display-image {
  position: relative;
  z-index: 1;
}

/* line 203, ../sass/components/_departments.scss */
.signup {
  padding: 1em;
}

/* line 207, ../sass/components/_departments.scss */
.promo-button {
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  padding: 2em 0;
}

/* 
 * NEWS Pages 
 */
/* line 225, ../sass/components/_departments.scss */
.news h1.field-name-field-display-title,
.page-node-8 h1.field-name-field-display-title,
.node-type-news h1.field-name-field-display-title,
.node-type-pgp-post h1.field-name-field-display-title,
.section-news h1.field-name-field-display-title {
  border-bottom: 0.3125em solid #545a6d;
  color: #545a6d;
}
/* line 232, ../sass/components/_departments.scss */
.news h1.title,
.page-node-8 h1.title,
.node-type-news h1.title,
.node-type-pgp-post h1.title,
.section-news h1.title {
  border-bottom: none;
  color: #545a6d;
}
/* line 237, ../sass/components/_departments.scss */
.news h1.title a:link,
.news h1.title a:visited,
.page-node-8 h1.title a:link,
.page-node-8 h1.title a:visited,
.node-type-news h1.title a:link,
.node-type-news h1.title a:visited,
.node-type-pgp-post h1.title a:link,
.node-type-pgp-post h1.title a:visited,
.section-news h1.title a:link,
.section-news h1.title a:visited {
  color: #fff;
}
/* line 242, ../sass/components/_departments.scss */
.news h1.title a:hover,
.news h1.title a:focus,
.page-node-8 h1.title a:hover,
.page-node-8 h1.title a:focus,
.node-type-news h1.title a:hover,
.node-type-news h1.title a:focus,
.node-type-pgp-post h1.title a:hover,
.node-type-pgp-post h1.title a:focus,
.section-news h1.title a:hover,
.section-news h1.title a:focus {
  text-decoration: underline;
}
/* line 250, ../sass/components/_departments.scss */
.news h2,
.page-node-8 h2,
.node-type-news h2,
.node-type-pgp-post h2,
.section-news h2 {
  color: #545a6d;
}
/* line 255, ../sass/components/_departments.scss */
.news a:link,
.news a:visited,
.page-node-8 a:link,
.page-node-8 a:visited,
.node-type-news a:link,
.node-type-news a:visited,
.node-type-pgp-post a:link,
.node-type-pgp-post a:visited,
.section-news a:link,
.section-news a:visited {
  color: #545a6d;
}
/* line 261, ../sass/components/_departments.scss */
.news a:hover,
.news a:focus,
.page-node-8 a:hover,
.page-node-8 a:focus,
.node-type-news a:hover,
.node-type-news a:focus,
.node-type-pgp-post a:hover,
.node-type-pgp-post a:focus,
.section-news a:hover,
.section-news a:focus {
  color: #2d3859;
}
/* line 265, ../sass/components/_departments.scss */
.news .field-name-field-slogan,
.page-node-8 .field-name-field-slogan,
.node-type-news .field-name-field-slogan,
.node-type-pgp-post .field-name-field-slogan,
.section-news .field-name-field-slogan {
  color: #545a6d;
}

/* 
 * Encyclopedia 
 */
/* line 281, ../sass/components/_departments.scss */
.section-encyclopedia h1.field-name-field-display-title,
.page-all-encyclopedia-listings h1.field-name-field-display-title,
.page-node-11 h1.field-name-field-display-title,
.encyclopedia h1.field-name-field-display-title {
  border-bottom: 0.3125em solid #b7c894;
  color: #b7c894;
}
/* line 288, ../sass/components/_departments.scss */
.section-encyclopedia h1.title,
.page-all-encyclopedia-listings h1.title,
.page-node-11 h1.title,
.encyclopedia h1.title {
  border-bottom: none;
  color: #b7c894;
}
/* line 293, ../sass/components/_departments.scss */
.section-encyclopedia h1.title a:link,
.section-encyclopedia h1.title a:visited,
.page-all-encyclopedia-listings h1.title a:link,
.page-all-encyclopedia-listings h1.title a:visited,
.page-node-11 h1.title a:link,
.page-node-11 h1.title a:visited,
.encyclopedia h1.title a:link,
.encyclopedia h1.title a:visited {
  color: #fff;
  text-decoration: none;
}
/* line 299, ../sass/components/_departments.scss */
.section-encyclopedia h1.title a:hover,
.section-encyclopedia h1.title a:focus,
.page-all-encyclopedia-listings h1.title a:hover,
.page-all-encyclopedia-listings h1.title a:focus,
.page-node-11 h1.title a:hover,
.page-node-11 h1.title a:focus,
.encyclopedia h1.title a:hover,
.encyclopedia h1.title a:focus {
  text-decoration: underline;
}
/* line 305, ../sass/components/_departments.scss */
.section-encyclopedia h2,
.page-all-encyclopedia-listings h2,
.page-node-11 h2,
.encyclopedia h2 {
  color: #b7c894;
}
/* line 310, ../sass/components/_departments.scss */
.section-encyclopedia a:link,
.section-encyclopedia a:visited,
.page-all-encyclopedia-listings a:link,
.page-all-encyclopedia-listings a:visited,
.page-node-11 a:link,
.page-node-11 a:visited,
.encyclopedia a:link,
.encyclopedia a:visited {
  color: #b7c894;
}
/* line 315, ../sass/components/_departments.scss */
.section-encyclopedia a:hover,
.section-encyclopedia a:focus,
.page-all-encyclopedia-listings a:hover,
.page-all-encyclopedia-listings a:focus,
.page-node-11 a:hover,
.page-node-11 a:focus,
.encyclopedia a:hover,
.encyclopedia a:focus {
  color: #96bc48;
}
/* line 319, ../sass/components/_departments.scss */
.section-encyclopedia .field-name-field-slogan,
.page-all-encyclopedia-listings .field-name-field-slogan,
.page-node-11 .field-name-field-slogan,
.encyclopedia .field-name-field-slogan {
  color: #b7c894;
}
/* line 325, ../sass/components/_departments.scss */
.section-encyclopedia #alpha-menu ul, .section-encyclopedia #pedia-categories ul,
.page-all-encyclopedia-listings #alpha-menu ul,
.page-all-encyclopedia-listings #pedia-categories ul,
.page-node-11 #alpha-menu ul,
.page-node-11 #pedia-categories ul,
.encyclopedia #alpha-menu ul,
.encyclopedia #pedia-categories ul {
  margin: 0;
  padding: 0;
}
/* line 326, ../sass/components/_departments.scss */
.section-encyclopedia #alpha-menu li, .section-encyclopedia #pedia-categories li,
.page-all-encyclopedia-listings #alpha-menu li,
.page-all-encyclopedia-listings #pedia-categories li,
.page-node-11 #alpha-menu li,
.page-node-11 #pedia-categories li,
.encyclopedia #alpha-menu li,
.encyclopedia #pedia-categories li {
  margin: 0;
  padding: 0 10px;
  list-style: none;
  display: inline-block;
}
/* line 328, ../sass/components/_departments.scss */
.section-encyclopedia #pedia-categories,
.page-all-encyclopedia-listings #pedia-categories,
.page-node-11 #pedia-categories,
.encyclopedia #pedia-categories {
  margin-top: 1.5em;
}
/* line 330, ../sass/components/_departments.scss */
.section-encyclopedia .field-name-field-slogan,
.page-all-encyclopedia-listings .field-name-field-slogan,
.page-node-11 .field-name-field-slogan,
.encyclopedia .field-name-field-slogan {
  color: #b7c894;
}

/* 
 * Equipment 
 */
/* line 342, ../sass/components/_departments.scss */
.equipment h1.field-name-field-display-title,
.section-equipment h1.field-name-field-display-title {
  border-bottom: 0.3125em solid #d9b177;
  color: #d9b177;
}
/* line 349, ../sass/components/_departments.scss */
.equipment h1.title,
.section-equipment h1.title {
  border-bottom: none;
  color: #d9b177;
}
/* line 354, ../sass/components/_departments.scss */
.equipment h1.title a:link,
.equipment h1.title a:visited,
.section-equipment h1.title a:link,
.section-equipment h1.title a:visited {
  color: #fff;
  text-decoration: none;
}
/* line 360, ../sass/components/_departments.scss */
.equipment h1.title a:hover,
.equipment h1.title a:focus,
.section-equipment h1.title a:hover,
.section-equipment h1.title a:focus {
  text-decoration: underline;
}
/* line 365, ../sass/components/_departments.scss */
.equipment h2,
.section-equipment h2 {
  color: #d9b177;
}
/* line 370, ../sass/components/_departments.scss */
.equipment a:link,
.equipment a:visited,
.section-equipment a:link,
.section-equipment a:visited {
  color: #d9b177;
}
/* line 375, ../sass/components/_departments.scss */
.equipment a:hover,
.equipment a:focus,
.section-equipment a:hover,
.section-equipment a:focus {
  color: #d69a43;
}
/* line 379, ../sass/components/_departments.scss */
.equipment .field-name-field-slogan,
.section-equipment .field-name-field-slogan {
  color: #d9b177;
}

/* 
 * Local
 */
/* line 392, ../sass/components/_departments.scss */
.services h1.field-name-field-display-title,
.section-local h1.field-name-field-display-title {
  border-bottom: 0.3125em solid #596e7d;
  color: #596e7d;
}
/* line 399, ../sass/components/_departments.scss */
.services h1.title,
.section-local h1.title {
  border-bottom: none;
  color: #596e7d;
}
/* line 404, ../sass/components/_departments.scss */
.services h1.title a:link,
.services h1.title a:visited,
.section-local h1.title a:link,
.section-local h1.title a:visited {
  color: #fff;
  text-decoration: none;
}
/* line 410, ../sass/components/_departments.scss */
.services h1.title a:hover,
.services h1.title a:focus,
.section-local h1.title a:hover,
.section-local h1.title a:focus {
  text-decoration: underline;
}
/* line 415, ../sass/components/_departments.scss */
.services h2,
.section-local h2 {
  color: #596e7d;
}
/* line 421, ../sass/components/_departments.scss */
.services a:link,
.services a:visited,
.section-local a:link,
.section-local a:visited {
  color: #596e7d;
}
/* line 426, ../sass/components/_departments.scss */
.services a:hover,
.services a:focus,
.section-local a:hover,
.section-local a:focus {
  color: #1d4d70;
}
/* line 431, ../sass/components/_departments.scss */
.services .field-name-field-slogan,
.section-local .field-name-field-slogan {
  color: #596e7d;
}

/* line 2, ../sass/components/_footer.scss */
.html footer,
.html .region-bottom {
  padding: 2em 0;
  color: #cccccc;
}
/* line 7, ../sass/components/_footer.scss */
.html footer a:link,
.html .region-bottom a:link {
  color: #3a6f89;
}
/* line 10, ../sass/components/_footer.scss */
.html footer a:visited,
.html .region-bottom a:visited {
  color: #3a6f89;
}
/* line 14, ../sass/components/_footer.scss */
.html footer a:hover,
.html footer a:focus,
.html .region-bottom a:hover,
.html .region-bottom a:focus {
  color: #00619d;
}
/* line 17, ../sass/components/_footer.scss */
.html footer a:active,
.html .region-bottom a:active {
  color: #00619d;
}

/* line 24, ../sass/components/_footer.scss */
.view-departments-about.view-display-id-block_1 {
  text-align: left;
  margin-top: 2em;
}
/* line 28, ../sass/components/_footer.scss */
.view-departments-about.view-display-id-block_1 .views-row {
  margin: 1em;
}

/* line 35, ../sass/components/_footer.scss */
.region-bottom {
  clear: left;
  color: #fff;
  text-align: center;
  font-size: 75%;
}
/* line 41, ../sass/components/_footer.scss */
.region-bottom .block {
  margin: 0;
  padding: 1em;
}
/* line 42, ../sass/components/_footer.scss */
.region-bottom p {
  margin: 0;
  padding: 0;
}

/* *************BETTER VIEW CSS*********************** */
/* Department Sidebar "Menus" */
/* line 7, ../sass/components/_views.scss */
#block-views-magazine-block-5 .view-content,
.view-magazine.view-display-id-embed_2 .view-content,
#block-menu-menu-pgpedia--2,
#block-views-news-categories-block .view-content {
  /* News */
  margin: 0;
  font-family: yanone_kaffeesatzbold, Tahoma, Verdana, "DejaVu Sans", sans-serif;
  font-size: 1.5em;
}
/* line 12, ../sass/components/_views.scss */
#block-views-magazine-block-5 .view-content ul,
.view-magazine.view-display-id-embed_2 .view-content ul,
#block-menu-menu-pgpedia--2 ul,
#block-views-news-categories-block .view-content ul {
  margin: 0;
  padding: 0;
}
/* line 17, ../sass/components/_views.scss */
#block-views-magazine-block-5 .view-content li,
.view-magazine.view-display-id-embed_2 .view-content li,
#block-menu-menu-pgpedia--2 li,
#block-views-news-categories-block .view-content li {
  margin: .25em 0;
  padding: 0 .25em;
  list-style: none;
  display: block;
  border-bottom: #e5e5e5 1px solid;
}

/* 
 * Views / Articles Rows Styles
 */
/* line 39, ../sass/components/_views.scss */
.view-author-profile img,
.view-nodequeue-3 img,
.view-id-columnist img,
.view-columnist-users.view-display-id-page_1 img,
.view-magazine img,
.view-id-magazine_articles img,
.view-pgpedia-newest.view-display-id-block img,
.view-id-alpha_pages img,
.view-departments-about.view-display-id-block_3 img {
  padding: 0.625em 0;
}
/* line 43, ../sass/components/_views.scss */
.view-author-profile .views-row,
.view-nodequeue-3 .views-row,
.view-id-columnist .views-row,
.view-columnist-users.view-display-id-page_1 .views-row,
.view-magazine .views-row,
.view-id-magazine_articles .views-row,
.view-pgpedia-newest.view-display-id-block .views-row,
.view-id-alpha_pages .views-row,
.view-departments-about.view-display-id-block_3 .views-row {
  clear: both;
  border-bottom: #d1d2d4 1px solid;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
/* line 49, ../sass/components/_views.scss */
.view-author-profile h2,
.view-nodequeue-3 h2,
.view-id-columnist h2,
.view-columnist-users.view-display-id-page_1 h2,
.view-magazine h2,
.view-id-magazine_articles h2,
.view-pgpedia-newest.view-display-id-block h2,
.view-id-alpha_pages h2,
.view-departments-about.view-display-id-block_3 h2 {
  margin-bottom: 0em;
}
/* line 52, ../sass/components/_views.scss */
.view-author-profile .views-field-nothing-1,
.view-nodequeue-3 .views-field-nothing-1,
.view-id-columnist .views-field-nothing-1,
.view-columnist-users.view-display-id-page_1 .views-field-nothing-1,
.view-magazine .views-field-nothing-1,
.view-id-magazine_articles .views-field-nothing-1,
.view-pgpedia-newest.view-display-id-block .views-field-nothing-1,
.view-id-alpha_pages .views-field-nothing-1,
.view-departments-about.view-display-id-block_3 .views-field-nothing-1 {
  clear: both;
}

/* line 58, ../sass/components/_views.scss */
.view-columnist.view-display-id-embed_3 .views-row {
  clear: none;
}

/* ****************************************************** */
/* Subscribe call to action - validation warnings */
/* line 69, ../sass/components/_views.scss */
#block-block-20.block {
  margin: 0;
  padding: 0;
}

/* News Lists */
/*
*
Columnists
*
*/
/* line 92, ../sass/components/_views.scss */
.view-columnist.view-display-id-block_2 img,
.view-columnist-users.view-display-id-page img {
  float: right;
  margin: 0 0 1em 1em;
}
/* line 96, ../sass/components/_views.scss */
.view-columnist.view-display-id-block_2 h3,
.view-columnist-users.view-display-id-page h3 {
  margin-bottom: 0em;
}

/* line 100, ../sass/components/_views.scss */
.view-columnist-users.view-display-id-page .views-row {
  clear: both;
  border-bottom: #036 1px solid;
  padding-bottom: 1em;
  margin-bottom: 1em;
}

/* line 109, ../sass/components/_views.scss */
.view-columnist-users.view-display-id-page_1 img,
.view-author.view-display-id-block img,
.view-columnist.view-display-id-embed_1 .views-field-field-photo {
  float: right;
  margin: .5em;
}

/* line 116, ../sass/components/_views.scss */
.cols-3 td {
  width: 30%;
}

/* Encyclopedia */
/* line 127, ../sass/components/_views.scss */
.encyclopedia #alpha-menu,
#block-taxonomy-menu-block-1--2.block {
  margin: 0;
  font-family: yanone_kaffeesatzbold, Tahoma, Verdana, "DejaVu Sans", sans-serif;
  font-size: 1.5em;
}
/* line 132, ../sass/components/_views.scss */
.encyclopedia #alpha-menu ul,
#block-taxonomy-menu-block-1--2.block ul {
  margin: 0;
  padding: 0;
}
/* line 137, ../sass/components/_views.scss */
.encyclopedia #alpha-menu li,
#block-taxonomy-menu-block-1--2.block li {
  margin: .25em 0;
  padding: 0;
  list-style: none;
  display: inline;
  border-right: #e5e5e5 2px solid;
}
/* line 145, ../sass/components/_views.scss */
.encyclopedia #alpha-menu li.last,
#block-taxonomy-menu-block-1--2.block li.last {
  border-right: none;
}
/* line 149, ../sass/components/_views.scss */
.encyclopedia #alpha-menu a:link,
#block-taxonomy-menu-block-1--2.block a:link {
  padding: 0 .35em;
  text-decoration: none;
}

/*
 * Directory Pages
 */
/* Taxonomy Title Pages */
/* line 168, ../sass/components/_views.scss */
.view-taxonomy-titles.view-display-id-embed_1 {
  margin-bottom: 2em;
}
/* line 171, ../sass/components/_views.scss */
.view-taxonomy-titles.view-display-id-embed_1 img {
  float: left;
  padding-right: .5em;
}
/* line 176, ../sass/components/_views.scss */
.view-taxonomy-titles.view-display-id-embed_1 p {
  margin-top: 0em;
}

/* jump menus */
/* line 183, ../sass/components/_views.scss */
#block-jump-menu-jump-menu-m-menu-manufacturer-me,
#block-jump-menu-jump-menu-m-menu-states-menu {
  float: right;
}

/* line 190, ../sass/components/_views.scss */
.view-manufacturer-parent h2 {
  margin-top: 0em;
}
/* line 192, ../sass/components/_views.scss */
.view-manufacturer-parent .views-row {
  margin-bottom: 3em;
}

/* Free Listings */
/* line 200, ../sass/components/_views.scss */
.view-directory-free-listings .views-row {
  margin-bottom: 2em;
}

/* ******************************* */
/* line 208, ../sass/components/_views.scss */
#block-dfp-skyscraper {
  margin: 4em auto;
}

/**
 * @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. 
    a[href]:after {
      content: " (" attr(href) ")";
      font-weight: normal;
      font-size: $base-font-size;
	  display:none;
    }*/
    /* Only display useful links. 
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
      content: "";
    }*/
    /* Add visible title after abbreviations.
    abbr[title]:after {
      content: " (" attr(title) ")";
    } */
  }

  /* Un-float the content. */
  /* line 47, ../sass/_print.scss */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Turn off any background colors or images. */
  /* line 58, ../sass/_print.scss */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  /* line 80, ../sass/_print.scss */
  #skip-link,
  #toolbar,
  .form-item-search-block-form,
  .hideSubmitButton-processed,
  nav,
  .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"; */
/* 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 */
body {
  min-width: 20em;
  position: relative;
  width: 100%;
}

/*
 * Center the page.
 *
 * For screen sizes larger than 1200px, prevent excessively long lines of text
 * by setting a max-width.
 */
/* line 40, ../sass/layouts/responsive.scss */
.inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 75em;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
/* line 57, ../sass/layouts/responsive.scss */
header .inner,
.view-slideshow,
#department_title,
#content,
#department_nav nav ul,
.region-sidebar-first,
.region-sidebar-second,
#suggested .inner,
.footcol {
  padding-left: 13px;
  padding-right: 13px;
  -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 */
nav:before, nav:after,
#main:before,
#main:after,
#footer .inner:before,
#footer .inner:after,
.news-block:before,
.news-block:after,
#suggested .inner .block:before,
#suggested .inner .block:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
nav:after,
#main:after,
#footer .inner:after,
.news-block:after,
#suggested .inner .block:after {
  clear: both;
}

/* line 4, ../sass/layouts/_base.scss */
#top {
  position: absolute;
  top: 0;
  z-index: 200;
}
/* line 10, ../sass/layouts/_base.scss */
#top #brand .header__site-name {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Nav bar */
/* line 17, ../sass/layouts/_base.scss */
#nav {
  top: 63px;
  position: absolute;
  /* eo tb-megamenu */
}
/* line 21, ../sass/layouts/_base.scss */
#nav .tb-megamenu {
  background-color: inherit;
  height: auto;
}
/* line 25, ../sass/layouts/_base.scss */
#nav .tb-megamenu .nav > li {
  float: none;
  display: block;
}
/* line 32, ../sass/layouts/_base.scss */
#nav .tb-megamenu .btn-navbar {
  display: block;
  margin-bottom: 0;
}
/* line 36, ../sass/layouts/_base.scss */
#nav .tb-megamenu .btn-navbar:hover {
  cursor: pointer;
}
/* line 39, ../sass/layouts/_base.scss */
#nav .tb-megamenu .nav-collapse {
  background-color: #939597;
}
/* line 42, ../sass/layouts/_base.scss */
#nav .tb-megamenu .nav-collapse .nav li a {
  border-top: none;
}
/* line 46, ../sass/layouts/_base.scss */
#nav .tb-megamenu .nav-collapse .nav > li > a,
#nav .tb-megamenu .nav-collapse .dropdown-menu a {
  border-bottom: none;
  border-top: none;
  color: #eee;
}
/* line 51, ../sass/layouts/_base.scss */
#nav .tb-megamenu .row-fluid + .row-fluid {
  border-top-color: #444;
}

/* end nav */
/* Advertisments */
/* line 59, ../sass/layouts/_base.scss */
#leaderboard {
  padding: 7.5em 0 0.9375em;
}

/* Main */
/* Taxonomy header */
/* line 70, ../sass/layouts/_base.scss */
.view-department-titles h1,
.view-taxonomy-titles h1 {
  margin-bottom: 0;
}
/* line 71, ../sass/layouts/_base.scss */
.view-department-titles img,
.view-taxonomy-titles img {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Title Images */
/* Department Titles */
/* line 76, ../sass/layouts/_base.scss */
.view-department-titles img {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Content */
/* line 81, ../sass/layouts/_base.scss */
#content {
  padding-bottom: 3em;
}

/* FLEXSLIDER Slideshow */
/* line 86, ../sass/layouts/_base.scss */
.flex-caption {
  display: none;
}

/* line 90, ../sass/layouts/_base.scss */
#pgp-departments {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Float Images Left */
/* line 98, ../sass/layouts/_base.scss */
.view-author-profile.view-display-id-embed_1 img {
  float: left;
  padding-right: 0.625em;
  max-height: 200px;
}

/* Float Images Right 
. {
	img {
		float:right;
		padding-left:pem(10);
		max-height: 200px;
	}
}
*/
/* line 114, ../sass/layouts/_base.scss */
ul.social-icons {
  margin: 0 0 2em;
  padding: 0;
}
/* line 118, ../sass/layouts/_base.scss */
ul.social-icons li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 0;
  outline: none;
  background-size: 40px 40px;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* .no-svg & {
  		background-image: url("../images/nav-icon.png");
  } */
}
/* line 139, ../sass/layouts/_base.scss */
ul.social-icons li:hover, ul.social-icons li:focus {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
/* line 143, ../sass/layouts/_base.scss */
ul.social-icons li.facebook {
  background: url("../images/sprites.png") no-repeat 0 0;
}
/* line 146, ../sass/layouts/_base.scss */
ul.social-icons li.twitter {
  background: url("../images/sprites.png") no-repeat -40px 0;
}
/* line 149, ../sass/layouts/_base.scss */
ul.social-icons li.googleplus {
  background: url("../images/sprites.png") no-repeat -80px 0;
}
/* line 152, ../sass/layouts/_base.scss */
ul.social-icons li.linkedin {
  background: url("../images/sprites.png") no-repeat -120px 0;
}
/* line 155, ../sass/layouts/_base.scss */
ul.social-icons li.pinterest {
  background: url("../images/sprites.png") no-repeat -160px 0;
}
/* line 158, ../sass/layouts/_base.scss */
ul.social-icons li.rss {
  background: url("../images/sprites.png") no-repeat -240px 0;
}
/* line 162, ../sass/layouts/_base.scss */
ul.social-icons li a {
  display: block;
  width: 40px;
  height: 40px;
}

/* 
 * DIRECTORY LINKS 
 */
/* manufacturers homepage links 
.view-front-page-manufacturers .view-content {
	img {display:none;}
}
*/
/* States List */
/* line 183, ../sass/layouts/_base.scss */
#block-views-9bbe5835f483c5bbb678d5c8b611a838,
.view-front-page-manufacturers.view-display-id-embed_1,
.view-states {
  font-size: 80%;
}
/* line 186, ../sass/layouts/_base.scss */
#block-views-9bbe5835f483c5bbb678d5c8b611a838 div,
.view-front-page-manufacturers.view-display-id-embed_1 div,
.view-states div {
  display: inline-block;
  margin: 0 1em 0 0;
}

/* enhanced listings, Free listings */
/* line 192, ../sass/layouts/_base.scss */
.view-directory-categories-highlights,
.view-directory-free-listings {
  border-bottom: 1px solid #ccc;
  margin-botom: 1em;
}
/* line 197, ../sass/layouts/_base.scss */
.view-directory-categories-highlights .node__title,
.view-directory-free-listings .node__title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
/* line 201, ../sass/layouts/_base.scss */
.view-directory-categories-highlights .block,
.view-directory-free-listings .block {
  padding: 10px;
  margin-bottom: 0;
}
/* line 207, ../sass/layouts/_base.scss */
.view-directory-categories-highlights .views-row,
.view-directory-categories-highlights .views-row article,
.view-directory-free-listings .views-row,
.view-directory-free-listings .views-row article {
  padding: 0;
  max-width: 350px;
  margin: .5em auto 1em;
}
/* line 213, ../sass/layouts/_base.scss */
.view-directory-categories-highlights h3,
.view-directory-free-listings h3 {
  background: #939597;
  color: #fff;
  margin: 0;
  padding: 2px 10px;
}
/* line 219, ../sass/layouts/_base.scss */
.view-directory-categories-highlights .view-content h4,
.view-directory-free-listings .view-content h4 {
  padding: 2px 10px;
}
/* line 223, ../sass/layouts/_base.scss */
.view-directory-categories-highlights .view-content p,
.view-directory-categories-highlights p,
.view-directory-free-listings .view-content p,
.view-directory-free-listings p {
  margin: 0;
  padding: 0 10px;
}
/* line 228, ../sass/layouts/_base.scss */
.view-directory-categories-highlights .field-name-field-enhanced-listing,
.view-directory-categories-highlights .enhanced-category,
.view-directory-free-listings .field-name-field-enhanced-listing,
.view-directory-free-listings .enhanced-category {
  font-size: 80%;
  font-style: oblique;
}
/* line 232, ../sass/layouts/_base.scss */
.view-directory-categories-highlights ul.links,
.view-directory-free-listings ul.links {
  display: none;
}

/* line 236, ../sass/layouts/_base.scss */
#local-listings {
  margin-bottom: 3em;
}
/* line 239, ../sass/layouts/_base.scss */
#local-listings .title {
  text-align: center;
}

/* Phone / Web Fields */
/* line 242, ../sass/layouts/_base.scss */
.field-name-field-phone {
  white-space: nowrap;
  background: url("../images/phone.png") no-repeat 10px 1px;
  padding-left: 30px;
}

/* line 247, ../sass/layouts/_base.scss */
.field-name-field-website {
  white-space: nowrap;
  background: url("../images/website.png") no-repeat 10px 3px;
  padding-left: 30px;
}

/* Company Page */
/* line 255, ../sass/layouts/_base.scss */
.view-enhanced-listings-companies {
  border-bottom: 1px solid #ccc;
  margin-bottom: 2em;
}
/* line 259, ../sass/layouts/_base.scss */
.view-enhanced-listings-companies .views-row {
  border-top: 1px solid #ccc;
  margin-botom: 1em;
  padding-bottom: 1em;
  clear: both;
}
/* line 266, ../sass/layouts/_base.scss */
.view-enhanced-listings-companies h3 a {
  display: block;
  padding-left: 1em;
}
/* line 268, ../sass/layouts/_base.scss */
.view-enhanced-listings-companies img {
  margin: 0 auto 1em;
  display: block;
}

/* line 275, ../sass/layouts/_base.scss */
.section-equipment h2.block__title {
  background: rgba(217, 177, 119, 0.2);
  text-indent: 1em;
}
/* line 280, ../sass/layouts/_base.scss */
.section-equipment .view-enhanced-listings-companies h3 {
  background: rgba(217, 177, 119, 0.2);
}

/* line 287, ../sass/layouts/_base.scss */
.section-local article {
  margin-bottom: 1.5em;
  border-bottom: 1px solid #596e7d;
}
/* line 291, ../sass/layouts/_base.scss */
.section-local h2.block__title {
  font-size: 1.8em;
  border-bottom: 1px solid #596e7d;
}
/* line 295, ../sass/layouts/_base.scss */
.section-local h2.node__title {
  background: rgba(89, 110, 125, 0.2);
  text-indent: .5em;
}
/* line 299, ../sass/layouts/_base.scss */
.section-local .submitted {
  display: none;
}
/* line 302, ../sass/layouts/_base.scss */
.section-local .view-enhanced-listings-companies h3 {
  background: rgba(89, 110, 125, 0.2);
}

/* line 308, ../sass/layouts/_base.scss */
.confirm-parent,
.password-parent {
  width: 300px;
}

/* line 312, ../sass/layouts/_base.scss */
.password-strength {
  float: none;
}

@media only screen and (min-width: 481px) {
  /* Title Images */
  /* Department Titles */
  /* Taxonomy header */
  /* line 7, ../sass/layouts/_481up.scss */
  .view-taxonomy-titles h1,
  .view-department-titles h1 {
    margin-bottom: 0;
  }
  /* line 8, ../sass/layouts/_481up.scss */
  .view-taxonomy-titles img,
  .view-department-titles img {
    position: static !important;
    clip: auto;
    height: auto;
    width: auto;
    overflow: auto;
    float: left;
    padding: 0 1em 0 0;
  }

  /* Float Images Left */
  /* line 22, ../sass/layouts/_481up.scss */
  .view-magazine.view-display-id-embed_3 img,
  .view-magazine.view-display-id-block_4 img,
  .view-magazine-articles.view-display-id-block img,
  .view-id-nodequeue_3.view-display-id-embed_1 img {
    float: left;
    padding-right: 0.625em;
  }

  /* Float Images Right */
  /* line 34, ../sass/layouts/_481up.scss */
  .view-columnist.view-display-id-default img,
  .view-author-profile img,
  .view-pgpedia-newest.view-display-id-block img,
  .view-id-alpha_pages img {
    float: right;
    padding-left: 0.625em;
  }

  /* Max-height Images  */
  /* line 47, ../sass/layouts/_481up.scss */
  .view-magazine-articles.view-display-id-block img,
  .view-id-nodequeue_3.view-display-id-embed_1 img,
  .view-columnist.view-display-id-default img,
  .view-author-profile img,
  .view-pgpedia-newest.view-display-id-block img,
  .view-id-alpha_pages img {
    max-height: 200px;
  }

  /* Float Images Reset (for attachments, etc.) */
  /* line 53, ../sass/layouts/_481up.scss */
  .view-author-profile.view-display-id-block_1 .attachment img {
    float: none;
    padding: 0;
  }

  /* line 59, ../sass/layouts/_481up.scss */
  .view-magazine.view-display-id-embed_3 .views-row {
    border-bottom: none;
  }

  /*
   * Equipment Manufacturer Icons, States
   */
  /* line 68, ../sass/layouts/_481up.scss */
  .view-front-page-manufacturers.view-display-id-block_1,
  .view-id-manufacturer_parent.view-display-id-embed_1 .view-content {
    clear: left;
  }
  /* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
  .view-front-page-manufacturers.view-display-id-block_1:before, .view-front-page-manufacturers.view-display-id-block_1:after,
  .view-id-manufacturer_parent.view-display-id-embed_1 .view-content:before,
  .view-id-manufacturer_parent.view-display-id-embed_1 .view-content:after {
    content: "";
    display: table;
  }
  /* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
  .view-front-page-manufacturers.view-display-id-block_1:after,
  .view-id-manufacturer_parent.view-display-id-embed_1 .view-content:after {
    clear: both;
  }
  /* line 73, ../sass/layouts/_481up.scss */
  .view-front-page-manufacturers.view-display-id-block_1 img,
  .view-id-manufacturer_parent.view-display-id-embed_1 .view-content img {
    display: block;
  }
  /* line 76, ../sass/layouts/_481up.scss */
  .view-front-page-manufacturers.view-display-id-block_1 .views-row,
  .view-front-page-manufacturers.view-display-id-block_1 .parent-views-row,
  .view-id-manufacturer_parent.view-display-id-embed_1 .view-content .views-row,
  .view-id-manufacturer_parent.view-display-id-embed_1 .view-content .parent-views-row {
    padding-left: 13px;
    padding-right: 13px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    padding-bottom: 1em;
  }
  /* line 82, ../sass/layouts/_481up.scss */
  .view-front-page-manufacturers.view-display-id-block_1 .views-row:nth-child(4n+1),
  .view-front-page-manufacturers.view-display-id-block_1 .parent-views-row:nth-child(4n+1),
  .view-id-manufacturer_parent.view-display-id-embed_1 .view-content .views-row:nth-child(4n+1),
  .view-id-manufacturer_parent.view-display-id-embed_1 .view-content .parent-views-row:nth-child(4n+1) {
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -25%;
    clear: left;
  }
  /* line 87, ../sass/layouts/_481up.scss */
  .view-front-page-manufacturers.view-display-id-block_1 .views-row:nth-child(4n+2),
  .view-front-page-manufacturers.view-display-id-block_1 .parent-views-row:nth-child(4n+2),
  .view-id-manufacturer_parent.view-display-id-embed_1 .view-content .views-row:nth-child(4n+2),
  .view-id-manufacturer_parent.view-display-id-embed_1 .view-content .parent-views-row:nth-child(4n+2) {
    float: left;
    width: 25%;
    margin-left: 25%;
    margin-right: -50%;
  }
  /* line 91, ../sass/layouts/_481up.scss */
  .view-front-page-manufacturers.view-display-id-block_1 .views-row:nth-child(4n+3),
  .view-front-page-manufacturers.view-display-id-block_1 .parent-views-row:nth-child(4n+3),
  .view-id-manufacturer_parent.view-display-id-embed_1 .view-content .views-row:nth-child(4n+3),
  .view-id-manufacturer_parent.view-display-id-embed_1 .view-content .parent-views-row:nth-child(4n+3) {
    float: left;
    width: 25%;
    margin-left: 50%;
    margin-right: -75%;
  }
  /* line 95, ../sass/layouts/_481up.scss */
  .view-front-page-manufacturers.view-display-id-block_1 .views-row:nth-child(4n),
  .view-front-page-manufacturers.view-display-id-block_1 .parent-views-row:nth-child(4n),
  .view-id-manufacturer_parent.view-display-id-embed_1 .view-content .views-row:nth-child(4n),
  .view-id-manufacturer_parent.view-display-id-embed_1 .view-content .parent-views-row:nth-child(4n) {
    float: left;
    width: 25%;
    margin-left: 75%;
    margin-right: -100%;
  }

  /* Enhanced Listings */
  /* line 103, ../sass/layouts/_481up.scss */
  .view-directory-categories-highlights.view-display-id-embed_5 .field-name-field-enhanced-listing {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }

  /* line 111, ../sass/layouts/_481up.scss */
  .view-id-manufacturer_parent .views-row article,
  .view-directory-categories-highlights .views-row article {
    border: #d1d2d4 thin solid;
    background: #f0f0f0;
    -webkit-border-radius: 0.25em 0.25em;
    -moz-border-radius: 0.25em / 0.25em;
    border-radius: 0.25em / 0.25em;
  }
  /* line 115, ../sass/layouts/_481up.scss */
  .view-id-manufacturer_parent .views-row article #box-shadow-custom,
  .view-directory-categories-highlights .views-row article #box-shadow-custom {
    -webkit-box-shadow: #6d6e70 2px 2px 10px;
    -moz-box-shadow: #6d6e70 2px 2px 10px;
    box-shadow: #6d6e70 2px 2px 10px;
  }

  /* line 122, ../sass/layouts/_481up.scss */
  .view-enhanced-listings-companies img {
    /* max-width:90px; */
    float: left;
    margin: 0 1em 1em;
  }

  /* Subscribe Pages */
  /* line 132, ../sass/layouts/_481up.scss */
  .signup {
    clear: left;
  }
  /* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
  .signup:before, .signup:after {
    content: "";
    display: table;
  }
  /* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
  .signup:after {
    clear: both;
  }
  /* line 137, ../sass/layouts/_481up.scss */
  .signup #signup-digital {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
    padding-left: 13px;
    padding-right: 13px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  /* line 143, ../sass/layouts/_481up.scss */
  .signup #signup-print {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
    padding-left: 13px;
    padding-right: 13px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
}
@media only screen and (min-width: 768px) {
  /* Float Images Reset (for attachments, etc.) */
  /* line 3, ../sass/layouts/_768up.scss */
  .view-magazine.view-display-id-block_4 img {
    float: none;
    padding: 0;
  }

  /* FLEXSLIDER Slideshow */
  /* line 12, ../sass/layouts/_768up.scss */
  #front-page-flexslider {
    padding-left: 0;
    padding-right: 0;
    clear: left;
    padding-left: 13px;
    padding-right: 13px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    border: 1px solid red;
  }

  /* line 20, ../sass/layouts/_768up.scss */
  #front-page-flexslider .flex-caption {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
    display: block;
    /*width: 95%;  35%; */
    /*height: 100%;  89%; */
    padding: 2%;
    overflow: hidden;
    /* left: 2.8em; */
    top: 0;
    font-size: 14px;
    line-height: 16px;
  }

  /* line 33, ../sass/layouts/_768up.scss */
  #front-page-flexslider img {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }

  /* Homepage Deeplink Content */
  /* line 38, ../sass/layouts/_768up.scss */
  #pgp-departments {
    position: static !important;
    clip: auto;
    height: auto;
    width: auto;
    overflow: auto;
    overflow: hidden;
  }
  /* line 43, ../sass/layouts/_768up.scss */
  #pgp-departments .node {
    border-left: 1px #d1d2d4 dashed;
  }
  /* line 45, ../sass/layouts/_768up.scss */
  #pgp-departments .services .node {
    border-right: 1px #d1d2d4 dashed;
  }

  /* line 50, ../sass/layouts/_768up.scss */
  .view-columnist.view-display-id-embed_3 .view-content,
  #pgp-departments,
  #pedia-recent {
    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 2nd column from left. */
    /* Span 1 column, starting in the 2nd column from left. */
    /* Span 1 column, starting in the 3rd column from left. */
  }
  /* line 59, ../sass/layouts/_768up.scss */
  .view-columnist.view-display-id-embed_3 .view-content .view-pgpedia-newest .views-row,
  .view-columnist.view-display-id-embed_3 .view-content .views-row,
  .view-columnist.view-display-id-embed_3 .view-content .view-front-page-manufacturers .views-row,
  #pgp-departments .view-pgpedia-newest .views-row,
  #pgp-departments .views-row,
  #pgp-departments .view-front-page-manufacturers .views-row,
  #pedia-recent .view-pgpedia-newest .views-row,
  #pedia-recent .views-row,
  #pedia-recent .view-front-page-manufacturers .views-row {
    padding-left: 13px;
    padding-right: 13px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  /* line 65, ../sass/layouts/_768up.scss */
  .view-columnist.view-display-id-embed_3 .view-content .news-block:nth-child(5n+1),
  .view-columnist.view-display-id-embed_3 .view-content .block:nth-child(5n+1),
  .view-columnist.view-display-id-embed_3 .view-content .views-row:nth-child(5n+1),
  #pgp-departments .news-block:nth-child(5n+1),
  #pgp-departments .block:nth-child(5n+1),
  #pgp-departments .views-row:nth-child(5n+1),
  #pedia-recent .news-block:nth-child(5n+1),
  #pedia-recent .block:nth-child(5n+1),
  #pedia-recent .views-row:nth-child(5n+1) {
    float: left;
    width: 20%;
    margin-left: 0%;
    margin-right: -20%;
    clear: left;
  }
  /* line 72, ../sass/layouts/_768up.scss */
  .view-columnist.view-display-id-embed_3 .view-content .news-block:nth-child(5n+2),
  .view-columnist.view-display-id-embed_3 .view-content .block:nth-child(5n+2),
  .view-columnist.view-display-id-embed_3 .view-content .views-row:nth-child(5n+2),
  #pgp-departments .news-block:nth-child(5n+2),
  #pgp-departments .block:nth-child(5n+2),
  #pgp-departments .views-row:nth-child(5n+2),
  #pedia-recent .news-block:nth-child(5n+2),
  #pedia-recent .block:nth-child(5n+2),
  #pedia-recent .views-row:nth-child(5n+2) {
    float: left;
    width: 20%;
    margin-left: 20%;
    margin-right: -40%;
  }
  /* line 78, ../sass/layouts/_768up.scss */
  .view-columnist.view-display-id-embed_3 .view-content .news-block:nth-child(5n+3),
  .view-columnist.view-display-id-embed_3 .view-content .block:nth-child(5n+3),
  .view-columnist.view-display-id-embed_3 .view-content .views-row:nth-child(5n+3),
  #pgp-departments .news-block:nth-child(5n+3),
  #pgp-departments .block:nth-child(5n+3),
  #pgp-departments .views-row:nth-child(5n+3),
  #pedia-recent .news-block:nth-child(5n+3),
  #pedia-recent .block:nth-child(5n+3),
  #pedia-recent .views-row:nth-child(5n+3) {
    float: left;
    width: 20%;
    margin-left: 40%;
    margin-right: -60%;
  }
  /* line 84, ../sass/layouts/_768up.scss */
  .view-columnist.view-display-id-embed_3 .view-content .news-block:nth-child(5n+4),
  .view-columnist.view-display-id-embed_3 .view-content .block:nth-child(5n+4),
  .view-columnist.view-display-id-embed_3 .view-content .views-row:nth-child(5n+4),
  #pgp-departments .news-block:nth-child(5n+4),
  #pgp-departments .block:nth-child(5n+4),
  #pgp-departments .views-row:nth-child(5n+4),
  #pedia-recent .news-block:nth-child(5n+4),
  #pedia-recent .block:nth-child(5n+4),
  #pedia-recent .views-row:nth-child(5n+4) {
    float: left;
    width: 20%;
    margin-left: 60%;
    margin-right: -80%;
  }
  /* line 90, ../sass/layouts/_768up.scss */
  .view-columnist.view-display-id-embed_3 .view-content .news-block:nth-child(5n),
  .view-columnist.view-display-id-embed_3 .view-content .block:nth-child(5n),
  .view-columnist.view-display-id-embed_3 .view-content .views-row:nth-child(5n),
  #pgp-departments .news-block:nth-child(5n),
  #pgp-departments .block:nth-child(5n),
  #pgp-departments .views-row:nth-child(5n),
  #pedia-recent .news-block:nth-child(5n),
  #pedia-recent .block:nth-child(5n),
  #pedia-recent .views-row:nth-child(5n) {
    float: left;
    width: 20%;
    margin-left: 80%;
    margin-right: -100%;
  }

  /* line 95, ../sass/layouts/_768up.scss */
  #mag-links {
    padding-left: 0;
    padding-right: 0;
    clear: left;
    /* Apply the shared properties of grid items in a single, efficient ruleset. */
  }
  /* line 101, ../sass/layouts/_768up.scss */
  #mag-links .block {
    padding-left: 13px;
    padding-right: 13px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  /* line 105, ../sass/layouts/_768up.scss */
  #mag-links #mag-intro {
    float: left;
    width: 20%;
    margin-left: 0%;
    margin-right: -20%;
  }
  /* line 108, ../sass/layouts/_768up.scss */
  #mag-links #mag-issue {
    float: left;
    width: 20%;
    margin-left: 20%;
    margin-right: -40%;
  }
  /* line 111, ../sass/layouts/_768up.scss */
  #mag-links #mag-stories {
    float: left;
    width: 60%;
    margin-left: 40%;
    margin-right: -100%;
  }

  /* line 116, ../sass/layouts/_768up.scss */
  #pedia-links {
    padding-left: 0;
    padding-right: 0;
    clear: left;
    /* Apply the shared properties of grid items in a single, efficient ruleset. */
  }
  /* line 122, ../sass/layouts/_768up.scss */
  #pedia-links .block {
    padding-left: 13px;
    padding-right: 13px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  /* line 126, ../sass/layouts/_768up.scss */
  #pedia-links #pedia-intro {
    float: left;
    width: 40%;
    margin-left: 0%;
    margin-right: -40%;
  }
  /* line 129, ../sass/layouts/_768up.scss */
  #pedia-links #pedia-categories {
    float: left;
    width: 60%;
    margin-left: 40%;
    margin-right: -100%;
  }

  /* Content / Sidebars 
   * Use 3 grid columns for smaller screens.
   */
  /*
   * The layout when there is only one sidebar, the left one.
   */
  /* line 144, ../sass/layouts/_768up.scss */
  .sidebar-first {
    /* Span 3 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  /* line 146, ../sass/layouts/_768up.scss */
  .sidebar-first #content {
    float: left;
    width: 83.33333%;
    margin-left: 16.66667%;
    margin-right: -100%;
  }
  /* line 151, ../sass/layouts/_768up.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 16.66667%;
    margin-left: 0%;
    margin-right: -16.66667%;
  }

  /*
   * The layout when there is only one sidebar, the right one.
   */
  /* line 159, ../sass/layouts/_768up.scss */
  .sidebar-second {
    /* Span 2 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 3rd column from left. */
  }
  /* line 161, ../sass/layouts/_768up.scss */
  .sidebar-second #content {
    float: left;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: -66.66667%;
  }
  /* line 166, ../sass/layouts/_768up.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 174, ../sass/layouts/_768up.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 176, ../sass/layouts/_768up.scss */
  .two-sidebars #content {
    float: left;
    width: 50%;
    margin-left: 16.66667%;
    margin-right: -66.66667%;
  }
  /* line 181, ../sass/layouts/_768up.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 16.66667%;
    margin-left: 0%;
    margin-right: -16.66667%;
  }
  /* line 186, ../sass/layouts/_768up.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
      /* @include zen-grid-item(3, 1);
      @include zen-nested-container(); // Since we're making every block in this region be a grid item.
      @include zen-clear();

      /* Apply the shared properties of grid items in a single, efficient ruleset. 
      .block {
        @include zen-grid-item-base();
      }*/
    /* Span 1 column, starting in the 1st column from left.
    .block:nth-child(3n+1) {
      @include zen-grid-item(1, 1);
      @include zen-clear();
    } */
    /* Span 1 column, starting in the 2nd column from left. 
    .block:nth-child(3n+2) {
      @include zen-grid-item(1, 2);
    }*/
    /* Span 1 column, starting in the 3rd column from left. 
    .block:nth-child(3n) {
      @include zen-grid-item(1, 3);
    }*/
  }

  /*
   * Suggested Blocks
   */
  /* line 217, ../sass/layouts/_768up.scss */
  #suggested {
    clear: left;
  }
  /* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
  #suggested:before, #suggested:after {
    content: "";
    display: table;
  }
  /* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
  #suggested:after {
    clear: both;
  }
  /* line 222, ../sass/layouts/_768up.scss */
  #suggested .block {
    padding-left: 13px;
    padding-right: 13px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  /* line 226, ../sass/layouts/_768up.scss */
  #suggested .block:nth-child(3n+1) {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
    clear: left;
  }
  /* line 230, ../sass/layouts/_768up.scss */
  #suggested .block:nth-child(3n+2) {
    float: left;
    width: 33.33333%;
    margin-left: 33.33333%;
    margin-right: -66.66667%;
  }
  /* line 233, ../sass/layouts/_768up.scss */
  #suggested .block:nth-child(3n) {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }

  /* Footer Blocks */
  /* line 239, ../sass/layouts/_768up.scss */
  #footer .inner {
    /* 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 242, ../sass/layouts/_768up.scss */
  #footer .inner .foot-col1 {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }
  /* line 246, ../sass/layouts/_768up.scss */
  #footer .inner .foot-col2 {
    float: left;
    width: 33.33333%;
    margin-left: 33.33333%;
    margin-right: -66.66667%;
  }
  /* line 250, ../sass/layouts/_768up.scss */
  #footer .inner .foot-col3 {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }
}
@media only screen and (min-width: 980px) {
  /* line 6, ../sass/layouts/_980up.scss */
  #top {
    position: fixed;
    top: 0;
    z-index: 100;
  }
  /* line 12, ../sass/layouts/_980up.scss */
  #top #brand .header__site-name {
    position: static !important;
    clip: auto;
    height: auto;
    width: auto;
    overflow: auto;
  }

  /* line 18, ../sass/layouts/_980up.scss */
  #nav {
    position: fixed;
  }
  /* line 21, ../sass/layouts/_980up.scss */
  #nav .tb-megamenu {
    /* Top Level */
  }
  /* line 23, ../sass/layouts/_980up.scss */
  #nav .tb-megamenu .btn-navbar {
    display: none;
    margin-bottom: 0;
  }
  /* line 29, ../sass/layouts/_980up.scss */
  #nav .tb-megamenu .nav > li {
    float: none;
    display: inline-block;
    margin-left: -4px;
  }

  /* end nav */
}
@media only screen and (min-width: 769px) and (max-width: 1059px) {
  /* enhanced listings, Free listings */
  /* line 2, ../sass/layouts/_980_1059.scss */
  .view-directory-categories-highlights.view-display-id-embed_5 {
    clear: left;
  }
  /* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
  .view-directory-categories-highlights.view-display-id-embed_5:before, .view-directory-categories-highlights.view-display-id-embed_5:after {
    content: "";
    display: table;
  }
  /* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
  .view-directory-categories-highlights.view-display-id-embed_5:after {
    clear: both;
  }
  /* line 8, ../sass/layouts/_980_1059.scss */
  .view-directory-categories-highlights.view-display-id-embed_5 .views-row {
    padding-left: 13px;
    padding-right: 13px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  /* line 13, ../sass/layouts/_980_1059.scss */
  .view-directory-categories-highlights.view-display-id-embed_5 .views-row:nth-child(2n+1) {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
    clear: left;
  }
  /* line 17, ../sass/layouts/_980_1059.scss */
  .view-directory-categories-highlights.view-display-id-embed_5 .views-row:nth-child(2n) {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
  }

  /* line 22, ../sass/layouts/_980_1059.scss */
  #local-listings .title {
    text-align: left;
  }
}
@media only screen and (min-width: 1060px) {
  /* Float Images Left */
  /* line 3, ../sass/layouts/_1060up.scss */
  .view-magazine.view-display-id-block_4 img {
    float: left;
    padding-right: 0.625em;
  }

  /* line 10, ../sass/layouts/_1060up.scss */
  .view-magazine.view-display-id-block_4 .view-footer img {
    max-height: 200px;
  }

  /* Float Images Right 
   {
  	img {
  		float:right;
  		padding-left:pem(10);
  		max-height: 200px;
  	}
  }*/
  /* Float Images Reset (for attachments, etc.) 
  . {
  	img {
  		float:none;
  		padding:0;
  	}
  }*/
  /* enhanced listings, Free listings */
  /* line 32, ../sass/layouts/_1060up.scss */
  .view-directory-categories-highlights.view-display-id-embed_5 {
    clear: left;
  }
  /* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
  .view-directory-categories-highlights.view-display-id-embed_5:before, .view-directory-categories-highlights.view-display-id-embed_5:after {
    content: "";
    display: table;
  }
  /* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
  .view-directory-categories-highlights.view-display-id-embed_5:after {
    clear: both;
  }
  /* line 43, ../sass/layouts/_1060up.scss */
  .view-directory-categories-highlights.view-display-id-embed_5 .views-row {
    padding-left: 2.5;
    padding-right: 2.5;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    max-width: 320px;
  }
  /* line 48, ../sass/layouts/_1060up.scss */
  .view-directory-categories-highlights.view-display-id-embed_5 .views-row:nth-child(3n+1) {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
    clear: left;
  }
  /* line 52, ../sass/layouts/_1060up.scss */
  .view-directory-categories-highlights.view-display-id-embed_5 .views-row:nth-child(3n+2) {
    float: left;
    width: 33.33333%;
    margin-left: 33.33333%;
    margin-right: -66.66667%;
  }
  /* line 55, ../sass/layouts/_1060up.scss */
  .view-directory-categories-highlights.view-display-id-embed_5 .views-row:nth-child(3n) {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }

  /* line 60, ../sass/layouts/_1060up.scss */
  #local-listings .title {
    text-align: left;
  }

  /* enhanced listings, Free listings */
  /* line 64, ../sass/layouts/_1060up.scss */
  .view-directory-categories-highlights.view-display-id-embed_6 {
    clear: left;
  }
  /* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
  .view-directory-categories-highlights.view-display-id-embed_6:before, .view-directory-categories-highlights.view-display-id-embed_6:after {
    content: "";
    display: table;
  }
  /* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
  .view-directory-categories-highlights.view-display-id-embed_6:after {
    clear: both;
  }
  /* line 70, ../sass/layouts/_1060up.scss */
  .view-directory-categories-highlights.view-display-id-embed_6 .views-row {
    padding-left: 2.5;
    padding-right: 2.5;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  /* line 75, ../sass/layouts/_1060up.scss */
  .view-directory-categories-highlights.view-display-id-embed_6 .views-row:nth-child(2n+1) {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
    clear: left;
  }
  /* line 79, ../sass/layouts/_1060up.scss */
  .view-directory-categories-highlights.view-display-id-embed_6 .views-row:nth-child(2n) {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
  }
}
