@charset "UTF-8";
/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-scss
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
/* line 23, ../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 38, ../sass/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

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

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

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

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

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
/* line 138, ../sass/_normalize.scss */
a:link {
  color: #697a20;
}

/* line 142, ../sass/_normalize.scss */
a:visited {
  color: #697a20;
}

/* line 146, ../sass/_normalize.scss */
a:hover {
  color: #333;
  text-decoration: none;
}

/* line 151, ../sass/_normalize.scss */
#content a:hover {
  color: #333 !important;
}

/* line 155, ../sass/_normalize.scss */
a:hover img {
  border-color: #697a20 !important;
}

/* line 158, ../sass/_normalize.scss */
a.arrow {
  color: #333333 !important;
  text-decoration: none;
}

/* line 162, ../sass/_normalize.scss */
a.arrow:after {
  content: ' »';
}

/* line 166, ../sass/_normalize.scss */
.region-sidebar-second h2 a:after {
  content: '';
}

/**
 * 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 181, ../sass/_normalize.scss */
p,
pre {
  line-height: 1.45em;
  padding: 0;
  margin: 0.2em 0 0.8em 0;
}

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

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 196, ../sass/_normalize.scss */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 28px;
  font-weight: normal;
  padding: 0;
  margin: 0 0 0.8em 0;
}

/* line 203, ../sass/_normalize.scss */
h2 {
  font-size: 22.4px;
  font-weight: normal;
  padding: 0;
  margin: 0.8em 0 0.2em 0;
}

/* line 209, ../sass/_normalize.scss */
h3 {
  font-size: 18.2px;
  font-weight: normal;
  padding: 0;
  margin: 1em 0 0.3em 0;
}

/* line 215, ../sass/_normalize.scss */
h2 + h3 {
  margin-top: 0.6em;
}

/* line 218, ../sass/_normalize.scss */
h4 {
  font-size: 14px;
  font-weight: 700;
  padding: 0;
  margin: 0.8em 0 0.3em 0;
}

/* line 224, ../sass/_normalize.scss */
h5 + h4 {
  margin: 1.3em 0 0.3em 0;
}

/* line 227, ../sass/_normalize.scss */
h5 {
  font-size: 14px;
  font-weight: normal;
  padding: 0;
  margin: .4em 0 .3em 0;
}

/* line 233, ../sass/_normalize.scss */
h6 {
  font-size: 9.38px;
  font-weight: bold;
  padding: 0;
  margin: .4em 0 .3em 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Lists
 */
/* line 327, ../sass/_normalize.scss */
.summary p {
  line-height: 1.3em;
}

/* line 331, ../sass/_normalize.scss */
ul, ol {
  line-height: 1.45em;
  padding: 0;
  margin: 0 0 .6em 0;
}

/* line 337, ../sass/_normalize.scss */
li ul, li ol {
  margin-bottom: 0;
}

/* line 341, ../sass/_normalize.scss */
p + ul {
  margin-top: -.2em;
}

/* line 345, ../sass/_normalize.scss */
li {
  padding: 0;
  margin: .2em 0 .2em 0;
}

/* line 350, ../sass/_normalize.scss */
li:last-child {
  margin-bottom: 0;
}

/* line 354, ../sass/_normalize.scss */
ul,
ol {
  margin-left: 0;
  padding-left: 20px;
  /* LTR */
}

/* line 360, ../sass/_normalize.scss */
ul.nodot {
  list-style-type: none;
  padding-left: 0;
}

/* line 365, ../sass/_normalize.scss */
.block ul,
.item-list ul {
  margin: 1em 0;
  padding: 0 0 0 2em;
  /* LTR */
}

/* line 371, ../sass/_normalize.scss */
ul ul, ul ol,
ol ol, ol ul,
.block ul ul, .block ul ol,
.block ol ol, .block ol ul,
.item-list ul ul, .item-list ul ol,
.item-list ol ol, .item-list ol ul {
  margin: 0;
}

/* line 380, ../sass/_normalize.scss */
.item-list ul li {
  margin: 0;
  padding: 0;
  list-style: inherit;
}

/* line 386, ../sass/_normalize.scss */
ul.menu li,
li.expanded,
li.collapsed,
li.leaf {
  margin: 0;
  padding: 0;
}

/* line 394, ../sass/_normalize.scss */
ul {
  list-style-type: disc;
}

/* line 395, ../sass/_normalize.scss */
ul ul {
  list-style-type: circle;
}

/* line 396, ../sass/_normalize.scss */
ul ul ul {
  list-style-type: square;
}

/* line 397, ../sass/_normalize.scss */
ul ul ul ul {
  list-style-type: circle;
}

/* line 398, ../sass/_normalize.scss */
ol {
  list-style-type: decimal;
}

/* line 399, ../sass/_normalize.scss */
ol ol {
  list-style-type: lower-alpha;
}

/* line 400, ../sass/_normalize.scss */
ol ol ol {
  list-style-type: decimal;
}

/* line 402, ../sass/_normalize.scss */
dt {
  font-size: 1.3em;
  font-weight: normal;
  padding: 0;
  margin: .8em 0 .2em 0;
}

/* line 409, ../sass/_normalize.scss */
dd {
  line-height: 1.45em;
  padding: 0;
  margin: .2em 0 .8em 0;
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 421, ../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;
}
/* line 436, ../sass/_normalize.scss */
.lt-ie9 img {
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

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

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

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
/* line 467, ../sass/_normalize.scss */
legend {
  font-size: 1.3em;
  font-weight: normal;
}

/* line 472, ../sass/_normalize.scss */
div.filefield-sources-list a.active {
  color: #000000;
  font-weight: bold;
  text-decoration: none;
}

/* line 478, ../sass/_normalize.scss */
fieldset.location {
  display: none;
}

/* line 480, ../sass/_normalize.scss */
.node-type-location fieldset.location {
  display: block;
}

/* line 482, ../sass/_normalize.scss */
.taxonomy-super-select-checkboxes {
  clear: both;
  padding-top: 0;
}

/* line 487, ../sass/_normalize.scss */
.taxonomy-super-select-checkboxes fieldset fieldset {
  margin: .2em 0 .6em 0;
}

/* line 492, ../sass/_normalize.scss */
fieldset fieldset legend,
.body-field-wrapper fieldset legend,
#edit-field-summary-0-value-wrapper + fieldset legend {
  font-size: 1em;
  font-weight: bold;
}

/* line 499, ../sass/_normalize.scss */
h2 + form {
  margin-top: 1em;
}

/* line 503, ../sass/_normalize.scss */
fieldset {
  margin: 1em 0 0 0;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-width: 0.07143em;
  border-top-style: solid;
  padding-top: 0.42857em;
  border-bottom-width: 0.07143em;
  border-bottom-style: solid;
  padding-bottom: 0.85714em;
  border-left-width: 0.07143em;
  border-left-style: solid;
  padding-left: 0.85714em;
  border-right-width: 0.07143em;
  border-right-style: solid;
  padding-right: 0.85714em;
}

/**
 * 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 518, ../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 533, ../sass/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 552, ../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 563, ../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 577, ../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 591, ../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 602, ../sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

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

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 626, ../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 632, ../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 642, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

/**
 * Tables
 */
/* line 656, ../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. */
}

/* line 666, ../sass/_normalize.scss */
table + p {
  margin-top: 1em;
}

/* line 670, ../sass/_normalize.scss */
td, th {
  text-align: left;
  padding: .5em 10px .5em 10px;
}

/* line 675, ../sass/_normalize.scss */
thead th {
  border-bottom: 0;
  padding-right: 1em;
  text-align: left;
}

/* line 681, ../sass/_normalize.scss */
thead {
  border-bottom: 3px solid #CCCCCC;
}

/* line 685, ../sass/_normalize.scss */
thead tr + tr th {
  padding-top: 0;
}

/* line 689, ../sass/_normalize.scss */
tbody {
  border-top: none;
}

/* line 693, ../sass/_normalize.scss */
tbody th {
  border: 0;
}

/* table states */
/* line 699, ../sass/_normalize.scss */
tr.even {
  background-color: #fff;
}

/* line 703, ../sass/_normalize.scss */
.zebra tbody tr:nth-child(odd),
tr.odd {
  background-color: #f1f1f1;
}

/* line 708, ../sass/_normalize.scss */
td.active {
  background-color: transparent;
}

/* views tables */
/* line 713, ../sass/_normalize.scss */
.views-table,
.sticky-header {
  font-size: .9em;
  width: 100%;
}

/* line 719, ../sass/_normalize.scss */
td.views-field .field-item {
  margin-bottom: .6em;
}

/* line 723, ../sass/_normalize.scss */
tr.odd {
  background: #f5f5f5;
}

/* line 727, ../sass/_normalize.scss */
tr.even, tr.odd {
  border-bottom: 0;
}

/* line 731, ../sass/_normalize.scss */
tr[onclick^="location.href"]:hover {
  background: #EDEDED !important;
  cursor: pointer;
}

/* Emphasis */
/* line 737, ../sass/_normalize.scss */
u {
  font-weight: bold;
  text-decoration: none;
}

/* Layout rules */
/**
 * @file
 * Positioning for a fixed-width, desktop-centric layout.
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout uses the Zen Grids plugin for Compass: http://zengrids.com
 */
/**
 * Center the page.
 *
 * If you want to make the page a fixed width and centered in the viewport,
 * this is the standards-compliant way to do that.
 */
/* line 38, ../sass/layouts/_fixed.scss */
#page,
.region-bottom,
#header,
#header-top,
#navigation {
  margin-left: auto;
  margin-right: auto;
  width: 960px;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
/* Containers for grid items and flow items. */
/* line 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:before, #header:after,
#main:before,
#main:after,
#footer:before,
#footer:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:after,
#main:after,
#footer:after {
  clear: both;
}

/* line 65, ../sass/layouts/_fixed.scss */
#content, .sidebars {
  margin-top: 2.3em;
}

/* line 69, ../sass/layouts/_fixed.scss */
#logo {
  clear: both;
  padding: 16px 0 14px;
}

/* Navigation bar */
/**
 * The layout when there is only one sidebar, the left one.
 */
/* line 87, ../sass/layouts/_fixed.scss */
.sidebar-first {
  /* Span 4 columns, starting in 2nd column from left. */
  /* Span 1 column, starting in 1st column from left. */
}
/* line 89, ../sass/layouts/_fixed.scss */
.sidebar-first #content {
  float: left;
  width: 960px;
  margin-left: 240px;
  margin-right: -1200px;
}
/* line 94, ../sass/layouts/_fixed.scss */
.sidebar-first .region-sidebar-first {
  float: left;
  width: 240px;
  margin-left: 0px;
  margin-right: -240px;
}

/**
 * The layout when there is only one sidebar, the right one.
 */
/* line 102, ../sass/layouts/_fixed.scss */
.sidebar-second {
  /* Span 3 columns, starting in 1st column from left. */
  /* Span 1 column, starting in 4th column from left. */
}
/* line 104, ../sass/layouts/_fixed.scss */
.sidebar-second #content {
  float: left;
  width: 720px;
  margin-left: 0px;
  margin-right: -720px;
}
/* line 109, ../sass/layouts/_fixed.scss */
.sidebar-second .region-sidebar-second {
  float: left;
  width: 240px;
  margin-left: 720px;
  margin-right: -960px;
}

/**
 * The layout when there are two sidebars.
 */
/* line 117, ../sass/layouts/_fixed.scss */
.two-sidebars {
  /* Span 3 columns, starting in 2nd column from left. */
  /* Span 1 column, starting in 1st column from left. */
  /* Span 1 column, starting in 5th column from left. */
}
/* line 119, ../sass/layouts/_fixed.scss */
.two-sidebars #content {
  float: left;
  width: 720px;
  margin-left: 240px;
  margin-right: -960px;
}
/* line 124, ../sass/layouts/_fixed.scss */
.two-sidebars .region-sidebar-first {
  float: left;
  width: 240px;
  margin-left: 0px;
  margin-right: -240px;
}
/* line 129, ../sass/layouts/_fixed.scss */
.two-sidebars .region-sidebar-second {
  float: left;
  width: 240px;
  margin-left: 960px;
  margin-right: -1200px;
}

/* line 135, ../sass/layouts/_fixed.scss */
#content {
  float: left;
  width: 100%;
  box-sizing: border-box;
}

/*
 * Footer
 */
/* line 144, ../sass/layouts/_fixed.scss */
#footer {
  padding-top: 10px;
}

/* line 148, ../sass/layouts/_fixed.scss */
#banner-wrapper {
  clear: both;
  background: #676767;
  margin-top: 30px;
  width: 100%;
}

/* line 155, ../sass/layouts/_fixed.scss */
#footer-wrapper {
  clear: both;
  background: #F2F2F3;
  width: 100%;
}

/* line 161, ../sass/layouts/_fixed.scss */
#banner, #footer {
  clear: left;
  margin-left: auto;
  margin-right: auto;
  width: 960px;
}

/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
/* line 15, ../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 39, ../sass/components/_misc.scss */
.element-invisible,
.element-focusable,
#navigation .block-menu .block__title,
#navigation .block-menu-block .block__title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

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

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

/**
 * Branding header.
 */
/* Wrapping link for logo. */
/* line 81, ../sass/components/_misc.scss */
.header__logo {
  float: left;
  /* LTR */
  margin: 0;
  padding: 0;
}

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

/* Wrapper for website name and slogan. */
/* line 93, ../sass/components/_misc.scss */
.header__name-and-slogan {
  float: left;
}

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

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

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

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

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

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

/**
 * Breadcrumb navigation.
 */
/* line 170, ../sass/components/_misc.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 174, ../sass/components/_misc.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/**
 * Titles.
 */
/* line 185, ../sass/components/_misc.scss */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
}

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

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

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

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

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

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

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

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

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

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

/* line 275, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  float: left;
  /* LTR */
  margin: 0 3px;
}

/* line 279, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.42857em;
  text-decoration: none;
}

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

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

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

/* line 317, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

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

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

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

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

/* line 367, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}

/* line 372, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

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

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

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

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

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

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

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

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

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

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

/**
 * Menus.
 */
/* line 479, ../sass/components/_misc.scss */
.menu__item.is-leaf {
  list-style-image: none;
  list-style-type: none;
}

/* line 483, ../sass/components/_misc.scss */
.menu__item.is-expanded {
  list-style-image: none;
  list-style-type: none;
}

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

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

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
/* line 502, ../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 514, ../sass/components/_misc.scss */
.unpublished {
  display: block;
  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 543, ../sass/components/_misc.scss */
.comments {
  margin: 1.42857em 0;
}

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

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

/* Nested comments are indented. */
/* line 564, ../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 574, ../sass/components/_misc.scss */
.form-item {
  margin: 1.42857em 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 578, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 585, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 591, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 598, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* regions */
/* line 3, ../sass/_cgcc.scss */
.sidebar .block-block,
.sidebar .block-views,
.sidebar .block-webform {
  background: #f9fbed;
}

/* line 9, ../sass/_cgcc.scss */
.region-sidebar-second .block-menu-block {
  background: #F2F2F3;
}

/* Header */
/* line 17, ../sass/_cgcc.scss */
#header-top,
#top-wrapper {
  overflow: hidden;
}

/* line 22, ../sass/_cgcc.scss */
#header-wrapper {
  background-color: #b9d249;
}

/* line 26, ../sass/_cgcc.scss */
#site-name a, #tagline {
  color: #fff;
}

/* line 30, ../sass/_cgcc.scss */
#content {
  margin-bottom: 30px;
}

/* line 34, ../sass/_cgcc.scss */
.front #content {
  margin-bottom: 0;
}

/* line 38, ../sass/_cgcc.scss */
#header-top, #top-wrapper {
  overflow: hidden;
}

/* line 42, ../sass/_cgcc.scss */
#top-wrapper {
  background-color: #F2F2F3;
  overflow: visible;
  background: #ffffff;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ4JSIgc3RvcC1jb2xvcj0iI2YyZjJmMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMmYyZjMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #ffffff 0%, #f2f2f3 48%, #f2f2f3 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(48%, #f2f2f3), color-stop(100%, #f2f2f3));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffffff 0%, #f2f2f3 48%, #f2f2f3 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffffff 0%, #f2f2f3 48%, #f2f2f3 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ffffff 0%, #f2f2f3 48%, #f2f2f3 100%);
  /* IE10+ */
  background: linear-gradient to bottom, #ffffff 0%, #f2f2f3 48%, #f2f2f3 100%;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f2f3',GradientType=0 );
  /* IE6-8 */
}

/* line 57, ../sass/_cgcc.scss */
#search-box {
  float: right;
  margin-left: 20px;
  padding-top: 4px;
}
/* line 62, ../sass/_cgcc.scss */
#search-box .form-submit {
  background: transparent;
  border: 0;
  color: #676767;
  cursor: pointer;
  font-family: 'Droid Sans',Arial,sans-serif;
  font-size: .85em;
  font-weight: bold;
  text-transform: uppercase;
  padding: 2px 0 0 0;
}

/* line 76, ../sass/_cgcc.scss */
#edit-search-theme-form-1,
#search-field {
  font-size: 0.8em;
}

/* line 82, ../sass/_cgcc.scss */
#header-wrapper {
  background-color: #5a447a;
}

/* line 87, ../sass/_cgcc.scss */
#nav-wrapper {
  clear: both;
  float: left;
  background: #676767;
  width: 100%;
}

/* line 94, ../sass/_cgcc.scss */
#page-wrapper {
  clear: both;
  width: 100%;
  float: left;
  padding-bottom: 30px;
}

/* line 101, ../sass/_cgcc.scss */
#navigation {
  position: relative;
  z-index: 101;
}

/* line 110, ../sass/_cgcc.scss */
#header-top ul,
#header ul,
#navigation ul {
  line-height: 1em;
  margin: 0;
  padding: 0;
  text-align: left;
}
/* line 117, ../sass/_cgcc.scss */
#header-top li,
#header li,
#navigation li {
  float: left;
  list-style-type: none;
  padding: 0;
  margin: 0 !important;
}

/* line 128, ../sass/_cgcc.scss */
#navigation #right-menu {
  float: right;
}
/* line 132, ../sass/_cgcc.scss */
#navigation a {
  color: #fff;
  float: left;
  font-size: 1.05em;
  font-weight: bold;
  padding: 10px 15px 10px 15px;
  text-decoration: none;
  text-transform: uppercase;
}
/* line 141, ../sass/_cgcc.scss */
#navigation a#n-mycgcc {
  text-transform: none;
  background-color: #b3cb48;
}
/* line 146, ../sass/_cgcc.scss */
#navigation a:hover {
  background: #3a343a;
}
/* line 150, ../sass/_cgcc.scss */
#navigation a.active {
  background: #fff;
  color: #333333;
}

/* line 161, ../sass/_cgcc.scss */
#header-top #n1 {
  float: right;
}
/* line 165, ../sass/_cgcc.scss */
#header-top #n1 a {
  padding: 0;
}
/* line 169, ../sass/_cgcc.scss */
#header-top #n1 li {
  padding: 8px 0 6px 16px;
}
/* line 172, ../sass/_cgcc.scss */
#header-top #n1 li:first-child a {
  padding-left: 0;
}
/* line 182, ../sass/_cgcc.scss */
#header-top #n2 li {
  padding: 6px 2px 5px 2px;
}
/* line 186, ../sass/_cgcc.scss */
#header-top #n2 a {
  color: #5A447A;
}
/* line 194, ../sass/_cgcc.scss */
#header-top #n1 a:hover, #header-top #n2 a:hover {
  color: #333;
}
/* line 201, ../sass/_cgcc.scss */
#header-top a {
  color: #676767;
  float: left;
  font-size: .85em;
  font-weight: bold;
  padding: 2px 6px 1px 6px;
  text-decoration: none;
  text-transform: uppercase;
}
/* line 210, ../sass/_cgcc.scss */
#header-top a.active {
  color: #333;
}
/* line 214, ../sass/_cgcc.scss */
#header-top a#nav-861.active {
  color: #fff !important;
  background: #E9AC07;
}
/* line 218, ../sass/_cgcc.scss */
#header-top a#nav-862.active {
  color: #fff !important;
  background: #06B6E9;
}
/* line 222, ../sass/_cgcc.scss */
#header-top a#nav-863.active {
  color: #fff !important;
  background: #CE5C45;
}
/* line 226, ../sass/_cgcc.scss */
#header-top a#nav-864.active {
  color: #fff !important;
  background: #B9D249;
}

/* line 236, ../sass/_cgcc.scss */
a#quick-links {
  background-image: url(/sites/default/files/images/icon-arrow-down.png);
  background-position: 100% 50%;
  background-repeat: no-repeat;
}

/* line 242, ../sass/_cgcc.scss */
.mega {
  overflow: visible;
  position: relative;
}
/* line 248, ../sass/_cgcc.scss */
.mega.hovering a#quick-links {
  background: #3A3A3A;
}
/* line 254, ../sass/_cgcc.scss */
.mega #q-links {
  display: none;
  background: #3A3A3A;
  top: 2.2em;
  right: 0;
  position: absolute;
  width: 190px;
  z-index: 100;
  -webkit-box-shadow: 3px 3px 3px #ccc;
  -moz-box-shadow: 3px 3px 3px #ccc;
  box-shadow: 3px 3px 3px #ccc;
}
/* line 266, ../sass/_cgcc.scss */
.mega #q-links .inner {
  padding: 10px 0 10px 0;
}
/* line 270, ../sass/_cgcc.scss */
.mega #q-links li {
  display: block !important;
  float: none !important;
}
/* line 276, ../sass/_cgcc.scss */
.mega #q-links li#ql-05 a, .mega #q-links li li#ql-08 a {
  border-top: 1px solid #676767;
  margin: .5em 10px 0 10px !important;
  padding: 0.8em 0 0.3em 0 !important;
}
/* line 286, ../sass/_cgcc.scss */
.mega #q-links a {
  font-weight: normal !important;
  display: block !important;
  padding: .3em 10px .3em 10px !important;
  float: none !important;
  text-transform: none !important;
}
/* line 293, ../sass/_cgcc.scss */
.mega #q-links a:hover {
  background-color: transparent !important;
  color: #B9D249 !important;
}

/* line 305, ../sass/_cgcc.scss */
.views-field-field-photo-thumbnail {
  width: 65px;
}
/* line 307, ../sass/_cgcc.scss */
.views-field-field-photo-thumbnail img {
  background: #ffffff;
  border: 1px solid #cccccc;
  padding: 2px;
}

/* line 315, ../sass/_cgcc.scss */
tr:hover .views-field-field-photo-thumbnail-fid img {
  border-color: #191919;
}

/* line 319, ../sass/_cgcc.scss */
td.views-field-field-phone {
  white-space: nowrap;
}

/* line 323, ../sass/_cgcc.scss */
.view-directories thead th,
.view-course-descriptions thead th {
  font-size: 1.2em;
}

/* line 328, ../sass/_cgcc.scss */
th.views-field-field-last-name {
  white-space: nowrap;
}

/* line 332, ../sass/_cgcc.scss */
.view-directories td.views-field-field-first-name,
.view-directories td.views-field-field-last-name {
  font-weight: bold;
}

/* line 337, ../sass/_cgcc.scss */
.view-directories .views-exposed-form {
  padding: 0.2em 0 1em 0;
}

/* line 341, ../sass/_cgcc.scss */
.view-directories .views-exposed-form:before {
  content: "Search by: ";
  float: left;
  margin: 1.5em 10px 0 0;
  font-size: 1.2em;
}

/* line 348, ../sass/_cgcc.scss */
#views-exposed-form-directories-default #edit-name,
#views-exposed-form-directories-block-1 #edit-name,
#views-exposed-form-directories-block-2 #edit-name {
  width: 260px;
}

/* line 354, ../sass/_cgcc.scss */
#views-exposed-form-directories-default #edit-dept,
#views-exposed-form-directories-block-1 #edit-dept,
#views-exposed-form-directories-block-2 #edit-dept {
  width: 260px;
}

/* course descriptions */
/* line 362, ../sass/_cgcc.scss */
.view-course-descriptions th,
.view-course-descriptions td {
  vertical-align: top;
}

/* line 367, ../sass/_cgcc.scss */
.view-course-descriptions .views-field-field-course-description-value {
  display: none;
}

/* line 371, ../sass/_cgcc.scss */
.view-course-descriptions .views-field-field-course-name-value {
  font-weight: bold;
}

/* line 375, ../sass/_cgcc.scss */
.view-course-descriptions .views-field-field-course-name-value p {
  font-weight: normal;
  padding-top: .2em;
}

/* line 380, ../sass/_cgcc.scss */
.view-course-descriptions .views-field-field-course-number-value,
.view-course-descriptions .views-field-field-credit-hours-value {
  width: 60px;
}

/* line 385, ../sass/_cgcc.scss */
.view-course-descriptions th {
  font-size: 1.2em;
}

/* calendar */
/* line 392, ../sass/_cgcc.scss */
ul.pager {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* line 400, ../sass/_cgcc.scss */
.view .date-nav-wrapper .date-nav {
  margin-bottom: 0;
}
/* line 403, ../sass/_cgcc.scss */
.view .date-nav-wrapper .date-prev, .view .date-nav-wrapper .date-next {
  background-color: transparent;
  border: none;
  border-radius: 0;
  font-size: inherit;
  padding: 0;
  left: auto;
  right: auto;
  top: auto;
  position: relative;
  text-align: inherit;
  z-index: 1;
  margin-top: -1.3em;
}
/* line 416, ../sass/_cgcc.scss */
.view .date-nav-wrapper .date-prev a, .view .date-nav-wrapper .date-next a {
  color: #697a20;
  font-size: inherit;
  text-decoration: underline;
}
/* line 420, ../sass/_cgcc.scss */
.view .date-nav-wrapper .date-prev a:hover, .view .date-nav-wrapper .date-next a:hover {
  text-decoration: none;
  color: #333333;
}
/* line 426, ../sass/_cgcc.scss */
.view .date-nav-wrapper .date-prev {
  float: left;
}
/* line 429, ../sass/_cgcc.scss */
.view .date-nav-wrapper .date-next {
  float: right;
}

/* line 436, ../sass/_cgcc.scss */
.calendar-calendar .day-view .full td.multi-day div.dayview,
.calendar-calendar .week-view .full td.multi-day div.weekview {
  height: auto !important;
}

/* line 442, ../sass/_cgcc.scss */
.date-nav div.date-heading h3 {
  font-size: 1.6em;
}

/* line 446, ../sass/_cgcc.scss */
.calendar-calendar td .inner div.day a {
  color: #697A20;
  font-weight: normal;
  font-size: 1.1em;
}

/* line 452, ../sass/_cgcc.scss */
.view-calendar .view-filters {
  display: none;
}

/* line 456, ../sass/_cgcc.scss */
.calendar-calendar div.calendar {
  font-size: 0.9em;
}
/* line 458, ../sass/_cgcc.scss */
.calendar-calendar div.calendar h5 {
  font-size: 1em;
}

/* line 463, ../sass/_cgcc.scss */
.calendar-calendar thead {
  border-bottom: 0;
}

/* line 467, ../sass/_cgcc.scss */
.calendar-calendar th.days {
  background-color: #f2f2f3;
  color: #333;
  font-weight: normal;
  padding: 7px 0 7px 0;
}

/* line 474, ../sass/_cgcc.scss */
.calendar-calendar .month-view h5 {
  margin: 0;
}

/* line 478, ../sass/_cgcc.scss */
.calendar-calendar .month-view .full td .inner div.day,
.calendar-calendar .month-view .full td .inner div.day a {
  display: block;
  text-align: right;
  width: 100%;
}

/* line 485, ../sass/_cgcc.scss */
.calendar-calendar .month-view .full td.empty .inner div.day {
  display: none;
}

/* line 490, ../sass/_cgcc.scss */
.calendar-calendar .month-view .full td.single-day .calendar-empty, .calendar-calendar .month-view .full td.single-day.empty, .calendar-calendar .month-view .full td.date-box.empty {
  background-color: #ffffff;
}

/* line 493, ../sass/_cgcc.scss */
.calendar-calendar .month-view .full td.date-box.today,
.calendar-calendar .month-view .full tr td.single-day.today {
  background-color: #f4f4f4;
  border: none;
}

/* line 498, ../sass/_cgcc.scss */
.calendar-calendar .month-view .full tr td.single-day.today {
  border-bottom: 1px solid #cccccc;
}

/* line 502, ../sass/_cgcc.scss */
.date-box.empty .day {
  display: none;
}

/* line 506, ../sass/_cgcc.scss */
.view-data-node-data-field-date-field-date-value {
  color: #666 !important;
  font-size: .8em;
  font-weight: normal;
  line-height: normal;
  margin-bottom: 3px !important;
}

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

/* line 518, ../sass/_cgcc.scss */
.calendar-calendar .month-view .view-data-node-title {
  font-size: .85em;
  line-height: 1.3em;
}

/* line 523, ../sass/_cgcc.scss */
.calendar-calendar td .view-data-node-title a {
  color: #697A20 !important;
  text-decoration: underline !important;
}

/* line 528, ../sass/_cgcc.scss */
.calendar-calendar td .view-data-node-title a:hover {
  text-decoration: none !important;
}

/* line 532, ../sass/_cgcc.scss */
.calendar-calendar .month-view .full td.multi-day .calendar.monthview .view-field {
  float: none;
  white-space: normal;
}

/* line 537, ../sass/_cgcc.scss */
.calendar-calendar .month-view .view-item {
  margin-bottom: .6em;
}

/* line 541, ../sass/_cgcc.scss */
.calendar-calendar .month-view .full td.single-day div.monthview, .calendar-calendar .week-view .full td.single-day div.weekview, .calendar-calendar .day-view .full td.single-day div.dayview {
  background: transparent;
}

/* line 545, ../sass/_cgcc.scss */
.calendar-calendar .month-view .full td.multi-day div.monthview, .calendar-calendar .week-view .full td.multi-day div.weekview, .calendar-calendar .day-view .full td.multi-day div.dayview {
  background: #F2F2F3;
  color: #333333;
  height: auto;
  padding-top: 3px;
  padding-bottom: 3px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* line 556, ../sass/_cgcc.scss */
.calendar-calendar .month-view .full tr td.single-day {
  padding-bottom: .6em;
}

/* line 560, ../sass/_cgcc.scss */
.calendar-calendar .month-view .full td.multi-day .calendar.monthview .contents, .calendar-calendar .week-view .full td.multi-day .calendar.weekview .contents {
  left: 5px;
  position: relative;
  height: auto;
  width: auto;
}

/* line 567, ../sass/_cgcc.scss */
.calendar-calendar .month-view .full td.multi-day .inner .view-field, .calendar-calendar .month-view .full td.multi-day .inner .view-field a, .calendar-calendar .week-view .full td.multi-day .inner .view-field, .calendar-calendar .week-view .full td.multi-day .inner .view-field a, .calendar-calendar .day-view .full td.multi-day .inner .view-field, .calendar-calendar .day-view .full td.multi-day .inner .view-field a {
  color: #333333;
}

/* line 571, ../sass/_cgcc.scss */
.calendar-calendar .month-view .full td.multi-day .inner .monthview .continues, .calendar-calendar .month-view .full td.multi-day .inner .monthview .cutoff, .calendar-calendar .week-view .full td.multi-day .inner .weekview .continues, .calendar-calendar .week-view .full td.multi-day .inner .weekview .cutoff {
  display: none;
}

/* line 575, ../sass/_cgcc.scss */
.view-header h3.selector {
  margin-bottom: 1em;
}

/* line 579, ../sass/_cgcc.scss */
.view-calendar.view-display-id-page_2 .attachment-before {
  margin-bottom: 1em;
}

/* line 583, ../sass/_cgcc.scss */
.view-upcoming-events .views-field-field-summary-value,
.view-calendar.view-display-id-page_2 .views-field-field-summary-value {
  margin-bottom: 1em;
}

/* line 587, ../sass/_cgcc.scss */
.view-upcoming-events .views-field-field-summary-value .summary p:last-child,
.view-calendar.view-display-id-page_2 .views-field-field-summary-value .summary p:last-child {
  margin-bottom: 0;
}

/* line 590, ../sass/_cgcc.scss */
.view-upcoming-events h3 {
  margin: 1.2em 0 .6em 0;
}

/* line 594, ../sass/_cgcc.scss */
.view-cgcc-calendar .view-filters {
  display: none;
}

/* line 598, ../sass/_cgcc.scss */
.view-display-id-date_nav_2 {
  margin-bottom: 1em;
}

/* line 602, ../sass/_cgcc.scss */
.view-cgcc-calendar .views-row,
.view-academic-calendar .views-row {
  margin: 0 0 1.2em;
}

/* line 607, ../sass/_cgcc.scss */
.view-cgcc-calendar .view-content h3,
.view-academic-calendar .view-content h3 {
  font-size: 1.6em;
}

/* line 612, ../sass/_cgcc.scss */
.view-cgcc-calendar h3 + .views-row,
.view-academic-calendar h3 + .views-row {
  margin-top: .8em;
}

/* line 617, ../sass/_cgcc.scss */
.view-cgcc-calendar .views-row + h3,
.view-academic-calendar .views-row + h3 {
  border-top: 3px solid #cccccc;
  padding-top: .3em;
  margin-top: 1.2em;
}

/* directory controls */
/* line 625, ../sass/_cgcc.scss */
#edit-n-wrapper input {
  width: 200px;
}

/* line 629, ../sass/_cgcc.scss */
#edit-n-wrapper .description {
  display: none;
}

/* expando etc */
/* line 635, ../sass/_cgcc.scss */
.hidden {
  display: none;
}

/* sidebar */
/* line 642, ../sass/_cgcc.scss */
.region-sidebar-second .block-menu_block {
  background: #f2f2f3 none repeat scroll 0 0;
}

/* line 646, ../sass/_cgcc.scss */
.sidebar #block-block-13.block-block {
  background-color: transparent;
}

/* line 652, ../sass/_cgcc.scss */
.region-sidebar-second .block .content {
  margin: 0 18px 0 18px;
  padding: 0 0 10px 0;
}

/* line 659, ../sass/_cgcc.scss */
.region-sidebar-second #block-block-13.block .content {
  margin: 0;
}

/* line 663, ../sass/_cgcc.scss */
.sidebars #block-block-13 .block-menu_block {
  margin-bottom: 0;
  padding-right: 18px;
  padding-bottom: 0;
  padding-left: 18px;
}

/* line 670, ../sass/_cgcc.scss */
.region-sidebar-second .block h2.title {
  border-bottom: 1px solid #fff;
  font-size: 1.2em;
  margin: 0 18px 0 18px;
  padding: 1em 0 .4em 0;
}

/* line 677, ../sass/_cgcc.scss */
.region-sidebar-second .block h5 {
  margin: .5em 0 .8em 0;
}

/* line 681, ../sass/_cgcc.scss */
.region-sidebar-second .block p {
  font-family: 'Droid Serif', Georgia, Times New Roman, serif;
  font-size: .9em;
  margin: .2em 0 .8em 0;
}

/* line 687, ../sass/_cgcc.scss */
.region-sidebar-second .block h5 + p {
  font-size: .9em;
  margin: -1em 0 .8em 0;
}

/* footer */
/* line 694, ../sass/_cgcc.scss */
#footer span {
  color: #ccc;
}

/* line 698, ../sass/_cgcc.scss */
#block-block-1 {
  padding-bottom: 30px;
}

/*
 * Menus
 */
/* line 707, ../sass/_cgcc.scss */
.block-menu_block li {
  border-bottom: 1px solid #fff;
}

/* line 711, ../sass/_cgcc.scss */
.block-menu_block li:last-child {
  border: none;
}

/* line 715, ../sass/_cgcc.scss */
.region-sidebar-second .block.block-menu_block.count-2 li {
  border-bottom: 0 none !important;
  font-size: 0.9em;
}

/* line 720, ../sass/_cgcc.scss */
.region-sidebar-second .block h2.title {
  border-bottom: 2px solid #fff;
  font-size: 1.3em;
  padding: .8em 0 .3em 0;
}

/* line 726, ../sass/_cgcc.scss */
.region-sidebar-second .block.block-menu-block h2.title {
  border-bottom: 3px solid #fff;
  font-size: 1.15em;
}

/* line 731, ../sass/_cgcc.scss */
.region-sidebar-second .block.block-menu-block.first h2.title {
  border-bottom: 3px solid #fff;
  font-size: 1.3em;
  margin: 0 18px 0 18px;
  padding: 0;
}

/* line 738, ../sass/_cgcc.scss */
.region-sidebar-second #block-block-13 h2.title {
  border-bottom: 3px solid #fff;
  font-size: 1.3em;
  margin: 0;
  padding: 1em 0 0 0;
}

/* line 745, ../sass/_cgcc.scss */
.region-sidebar-second #block-block-13 .block.block-menu_block h3.title {
  border-bottom: 3px solid #fff;
  font-size: 0.9em;
  padding: 0.8em 0 0.3em 0;
  margin: 0;
  font-weight: normal !important;
  text-transform: uppercase;
}

/* line 754, ../sass/_cgcc.scss */
.region-sidebar-second #block-block-13 .block-menu_block h2.title {
  padding-top: 0;
}

/* line 759, ../sass/_cgcc.scss */
.region-sidebar-second .block.block-menu-block h2.title a,
.region-sidebar-second #block-block-13 h2.title a {
  display: block;
  padding: 0.8em 0 0.3em 0;
}

/* line 766, ../sass/_cgcc.scss */
.region-sidebar-second .block.block-menu-block.count-2 li {
  border-bottom: 0 !important;
  font-size: .9em;
}

/* line 771, ../sass/_cgcc.scss */
.block-menu-block ul,
#block-block-13 ul {
  margin: 0;
  padding: 0;
}

/* line 777, ../sass/_cgcc.scss */
.block-menu-block li {
  border-bottom: 1px solid #fff;
}

/* line 781, ../sass/_cgcc.scss */
.block-menu-block.last li {
  border-bottom: none;
  font-size: 0.9em;
}

/* line 786, ../sass/_cgcc.scss */
.block-menu-block li:last-child,
.block-menu-block li li {
  border: 0;
}

/* line 791, ../sass/_cgcc.scss */
.block-menu-block li li:fist-child a {
  padding-top: 0;
}

/* line 794, ../sass/_cgcc.scss */
.block-menu-block li li:last-child a {
  padding-bottom: .8em;
}

/* line 797, ../sass/_cgcc.scss */
.block-menu-block li li li:last-child a {
  padding-bottom: .25em;
}

/* line 802, ../sass/_cgcc.scss */
ul.menu li, li.expanded, li.collapsed, li.leaf {
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style-image: none;
  line-height: normal;
}

/* line 810, ../sass/_cgcc.scss */
.block ul a,
.item-list ul a {
  display: block;
  padding: .4em 0 .4em 0;
}

/* line 816, ../sass/_cgcc.scss */
.block ul .first a {
  padding-top: .6em !important;
}

/* line 820, ../sass/_cgcc.scss */
.block ul ul .first a,
.block ul li.first li a {
  padding-top: .2em !important;
}

/* line 825, ../sass/_cgcc.scss */
.block ul ul {
  margin-top: -.2em;
}

/* line 829, ../sass/_cgcc.scss */
.block ul ul a,
.item-list ul ul a {
  font-size: .9em;
  padding: .2em 0 .2em 1em;
}

/* line 835, ../sass/_cgcc.scss */
.block ul ul ul a,
.item-list ul ul ul a {
  padding-left: 2em;
}

/* line 840, ../sass/_cgcc.scss */
.region-sidebar-second .block a {
  color: #697a20;
  text-decoration: none;
}

/* line 845, ../sass/_cgcc.scss */
.region-sidebar-second .block a:hover {
  color: #333;
  /*
  background: #e8e8e9;
  */
}

/* line 852, ../sass/_cgcc.scss */
.region-sidebar-second .block td a {
  text-decoration: underline;
}

/* line 855, ../sass/_cgcc.scss */
.region-sidebar-second .block td a:hover {
  text-decoration: none;
}

/* line 860, ../sass/_cgcc.scss */
.region-sidebar-second .block a.active {
  color: #333;
  font-weight: 700;
}

/* line 865, ../sass/_cgcc.scss */
.region-sidebar-second .block h2 a.active {
  font-weight: normal;
}

/* line 869, ../sass/_cgcc.scss */
.block-menu-block.first,
#block-block-13 {
  margin-top: 30px;
}

/* line 874, ../sass/_cgcc.scss */
a.read-more {
  font-size: .8em;
  text-transform: uppercase;
  font-family: 'Droid Sans', Arial, sans-serif !important;
}

/*
 * Templates
 */
/* line 885, ../sass/_cgcc.scss */
div.print-only,
span.print-only {
  display: none;
}

/* line 890, ../sass/_cgcc.scss */
.big-button a,
.views-exposed-form .form-submit {
  margin: .3em 0 .8em 0;
  color: #505F15 !important;
  border: 1px solid #b9cd54;
  float: left;
  font-size: 1.2em;
  padding: 7px 15px;
  text-decoration: none;
  white-space: nowrap;
  -webkit-box-shadow: 2px 3px 2px #E1E1E1;
  -moz-box-shadow: 2px 3px 2px #E1E1E1;
  box-shadow: 2px 3px 2px #E1E1E1;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-shadow: 0px 1px 1px #fff;
  filter: dropshadow(color=#fff, offx=0, offy=1);
  background: #b9cd54;
  /* Old browsers */
  background: -moz-linear-gradient(top, #E0F09F 0%, #b9cd54 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #E0F09F), color-stop(100%, #b9cd54));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #E0F09F 0%, #b9cd54 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #E0F09F 0%, #b9cd54 100%);
  /* Opera11.10+ */
  background: -ms-linear-gradient(top, #E0F09F 0%, #b9cd54 100%);
  /* IE10+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E0F09F', endColorstr='#b9cd54',GradientType=0 );
  /* IE6-9 */
  background: linear-gradient(to bottom, #e0f09f 0%, #b9cd54 100%);
  /* W3C */
}

/* line 924, ../sass/_cgcc.scss */
.big-button.medium a {
  font-size: 1em;
}

/* line 928, ../sass/_cgcc.scss */
.big-button a:hover,
.views-exposed-form .form-submit:hover {
  background: #E0F09F;
  background: -moz-linear-gradient(top, #b9cd54 0%, #e0f09f 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b9cd54), color-stop(100%, #e0f09f));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #b9cd54 0%, #e0f09f 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #b9cd54 0%, #e0f09f 100%);
  /* Opera11.10+ */
  background: -ms-linear-gradient(top, #b9cd54 0%, #e0f09f 100%);
  /* IE10+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b9cd54', endColorstr='#e0f09f',GradientType=0 );
  /* IE6-9 */
  background: linear-gradient(to bottom, #b9cd54 0%, #e0f09f 100%);
  /* W3C */
}

/* line 940, ../sass/_cgcc.scss */
.views-exposed-form .views-exposed-widget .form-submit {
  font-size: 1em;
  margin-top: 1em;
  padding: 4px 10px;
  cursor: pointer;
}

/* line 947, ../sass/_cgcc.scss */
.big-button + * {
  clear: left;
}

/* line 951, ../sass/_cgcc.scss */
.big-button + h3 {
  padding-top: .5em;
}

/* line 955, ../sass/_cgcc.scss */
#page-tools,
.page-tools {
  border: 0;
  clear: both;
  overflow: hidden;
  padding: 2em 0 0;
  margin: -15px 0 1.2em 0;
  color: #666;
}
/* line 963, ../sass/_cgcc.scss */
#page-tools a,
.page-tools a {
  color: #666 !important;
}
/* line 966, ../sass/_cgcc.scss */
#page-tools .translate,
.page-tools .translate {
  font-size: 0.9em;
  margin-top: 20px;
}

/* line 972, ../sass/_cgcc.scss */
#page-tools a,
.page-tools a {
  color: #666 !important;
}

/* line 977, ../sass/_cgcc.scss */
#share,
.share {
  font-size: .9em;
  padding-top: 3em;
}

/* line 983, ../sass/_cgcc.scss */
.share {
  font-size: .9em;
  padding-top: 0;
}

/* line 988, ../sass/_cgcc.scss */
#share img,
.share img {
  display: inline-block;
  margin: 0 0 -3px 0;
}

/* line 994, ../sass/_cgcc.scss */
#meta-info {
  font-size: .9em;
}

/* line 998, ../sass/_cgcc.scss */
.callout {
  background: #fff;
  float: right;
  margin: 5px 0 20px 0;
  padding: 0;
  width: 270px;
}

/* line 1006, ../sass/_cgcc.scss */
.callout .inner {
  margin-left: 20px;
  width: 250px;
}

/* line 1011, ../sass/_cgcc.scss */
.callout h2 {
  font-size: 1.3em;
  margin-top: 0;
}

/* line 1016, ../sass/_cgcc.scss */
.callout img + h2,
.callout .view-header h2 {
  margin-top: .8em;
}

/* line 1021, ../sass/_cgcc.scss */
.callout p + h2,
.callout h3 + h2,
.callout div + h2 {
  border-top: 2px solid #ccc;
  padding-top: .4em;
}

/* line 1028, ../sass/_cgcc.scss */
.callout h3 {
  font-size: .9em;
}

/* line 1031, ../sass/_cgcc.scss */
.callout h4 {
  font-size: .8em;
}

/* line 1035, ../sass/_cgcc.scss */
.callout td {
  font-size: .9em;
}

/* line 1039, ../sass/_cgcc.scss */
.callout td h4 {
  font-size: 1em;
}

/* line 1044, ../sass/_cgcc.scss */
.callout p,
.callout li {
  font-size: .9em;
}

/* line 1049, ../sass/_cgcc.scss */
.callout li {
  margin-bottom: .6em;
  line-height: normal;
}

/* line 1055, ../sass/_cgcc.scss */
.callout h2,
.callout h3,
.callout h4,
.callout p,
.callout li,
.callout img,
.callout .view-content {
  margin-right: 0;
}

/* line 1065, ../sass/_cgcc.scss */
.callout img {
  border: 1px solid #ccc;
  padding: 4px;
}

/* line 1070, ../sass/_cgcc.scss */
.callout h2 {
  clear: both;
  margin-bottom: .4em;
}

/* line 1075, ../sass/_cgcc.scss */
.callout h5 {
  font-size: .9em;
}

/* line 1079, ../sass/_cgcc.scss */
.callout img.avatar {
  border: 0;
  float: left;
  margin: 5px 10px 10px 0;
}

/* line 1085, ../sass/_cgcc.scss */
.callout img.icon {
  border: 0;
  margin: 0 0 -2px 0;
  padding: 0;
}

/* line 1091, ../sass/_cgcc.scss */
.callout .summary {
  display: none;
}

/* line 1095, ../sass/_cgcc.scss */
.contact-box img {
  float: left;
  margin: 5px 0 0 0;
}

/* line 1100, ../sass/_cgcc.scss */
.contact-box p {
  padding-left: 65px;
}

/* line 1104, ../sass/_cgcc.scss */
.float-right h2 {
  margin-top: 0;
  padding-top: .3em;
}

/* line 1109, ../sass/_cgcc.scss */
.float-right {
  border-top: 3px solid #ccc;
  float: right;
  margin: 10px 0 20px 30px;
  padding-bottom: 1em;
}

/* line 1118, ../sass/_cgcc.scss */
h3 em {
  font-style: normal;
  font-size: .9em;
  color: #666;
}

/* line 1124, ../sass/_cgcc.scss */
#date, #location {
  line-height: 1.45em;
}

/* line 1128, ../sass/_cgcc.scss */
#date div,
.date div {
  display: none;
}

/* line 1133, ../sass/_cgcc.scss */
#location p {
  margin: 0;
}

/* line 1137, ../sass/_cgcc.scss */
.edit-link {
  background: #fff;
  color: #ccc;
  font-size: .8em;
  padding: 5px;
  display: none;
}

/* line 1145, ../sass/_cgcc.scss */
.views_view .views-row {
  position: relative;
}

/* line 1149, ../sass/_cgcc.scss */
.views_view .views-row:hover .edit-link {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

/* line 1156, ../sass/_cgcc.scss */
h2 .edit-link {
  font-size: .5em;
}

/* line 1160, ../sass/_cgcc.scss */
.file-info,
.status {
  color: #666 !important;
  font-size: .9em;
  padding-left: 3px;
}

/* line 1168, ../sass/_cgcc.scss */
.status.submitted {
  color: red;
}

/* line 1172, ../sass/_cgcc.scss */
.resource-teaser a[href$=".pdf"]:after,
.resource-teaser a[href$=".pdf"] + .file-info:before {
  display: none;
}

/* line 1178, ../sass/_cgcc.scss */
.featured-image p a:after,
.gallery-item p span {
  display: none !important;
}

/* line 1184, ../sass/_cgcc.scss */
.edit-link:hover {
  color: #666;
}

/* line 1188, ../sass/_cgcc.scss */
.featured-image {
  background-color: #fff;
  float: right;
  padding: 0 0 20px 20px;
}

/* line 1194, ../sass/_cgcc.scss */
span.featured-image {
  float: left;
  padding: 0 0 10px 0;
}

/* line 1199, ../sass/_cgcc.scss */
.featured-image .file-info {
  display: none;
}

/* line 1203, ../sass/_cgcc.scss */
.featured-image h5 .file-info {
  display: inline;
}

/* line 1207, ../sass/_cgcc.scss */
#node-185 .featured-image {
  margin-bottom: 0;
}

/* line 1211, ../sass/_cgcc.scss */
#node-2070 .featured-image {
  padding: 0;
  float: left;
}
/* line 1214, ../sass/_cgcc.scss */
#node-2070 .featured-image img {
  padding-left: 0 !important;
}

/* line 1219, ../sass/_cgcc.scss */
.image-right {
  float: right;
  margin: 0 0 20px 25px;
}

/* line 1224, ../sass/_cgcc.scss */
.featured-image img,
.featured-image iframe,
.image-right img {
  border: 1px solid #ccc;
  padding: 4px;
  margin: 0 0 3px 0;
}

/* line 1232, ../sass/_cgcc.scss */
.noborder img,
.no-border img {
  border: 0 !important;
  padding: 0;
  margin: 0;
}

/* line 1239, ../sass/_cgcc.scss */
.featured-image.no-border img {
  padding-left: 10px;
}

/* line 1243, ../sass/_cgcc.scss */
.featured-image p {
  margin: 0;
  padding: 0;
  line-height: normal;
}

/* line 1249, ../sass/_cgcc.scss */
.featured-image h5,
h5.caption {
  font-size: .9em;
  line-height: normal;
  margin: 0;
  padding: 0 0 2px 0;
}

/* line 1257, ../sass/_cgcc.scss */
.featured-image h6,
h6.credit {
  color: #666;
  font-size: .8em;
  line-height: normal;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

/* line 1267, ../sass/_cgcc.scss */
p.note {
  color: #666;
  font-size: .9em;
  font-weight: normal;
}

/* line 1273, ../sass/_cgcc.scss */
.inline-note {
  color: #666;
  font-size: .9em;
  font-weight: normal;
}

/* line 1279, ../sass/_cgcc.scss */
h4 .inline-note {
  font-size: 1em;
}

/* line 1283, ../sass/_cgcc.scss */
.meta p {
  margin-top: 0;
}

/* line 1287, ../sass/_cgcc.scss */
.teaser {
  margin: 0 0 1.2em 0;
}

/* line 1291, ../sass/_cgcc.scss */
.callout .event-teaser {
  margin: 0 0 .8em 0;
}

/* line 1295, ../sass/_cgcc.scss */
.resource-teaser {
  margin: 0 0 1.2em 0;
}

/* line 1299, ../sass/_cgcc.scss */
#date-location {
  padding-bottom: 0.8em;
}

/* line 1303, ../sass/_cgcc.scss */
.date, .field-name-field-date {
  color: #666;
}
/* line 1305, ../sass/_cgcc.scss */
.date .date-display-range, .field-name-field-date .date-display-range {
  display: inline;
}

/* line 1310, ../sass/_cgcc.scss */
.teaser .date,
.views-row .date {
  font-size: .9em;
}

/* line 1315, ../sass/_cgcc.scss */
.callout .teaser .date {
  float: left;
  margin: 0 0.5em 0 0;
}

/* line 1320, ../sass/_cgcc.scss */
.teaser h3 {
  margin-top: .2em;
}

/* line 1324, ../sass/_cgcc.scss */
.node .view-header {
  padding-bottom: 0;
}

/* line 1328, ../sass/_cgcc.scss */
.node .callout .view-header {
  padding-bottom: 0;
}

/* line 1332, ../sass/_cgcc.scss */
.node .view-header h2.section-header,
#views + h2.section-header {
  /*
  font-size: 1.3em;
  margin-top: .4em;
  */
}

/* line 1340, ../sass/_cgcc.scss */
.node .view-header h2.section-header {
  margin-bottom: 0 !important;
  padding-bottom: 0;
}

/* line 1345, ../sass/_cgcc.scss */
.event-teaser .location {
  font-size: .9em;
  padding: .2em 0 .6em 0;
}

/* line 1350, ../sass/_cgcc.scss */
.resources {
  border: 2px solid #ccc;
  margin: 1.5em 0 0 0;
  padding: 0 15px 1em 15px;
}

/* line 1356, ../sass/_cgcc.scss */
#views {
  clear: left;
}

/* line 1360, ../sass/_cgcc.scss */
.page-type-index .content + #views {
  padding-top: 1.2em;
}

/* line 1364, ../sass/_cgcc.scss */
#views .view-header h2 {
  padding-bottom: .6em;
}

/* line 1368, ../sass/_cgcc.scss */
#views .view:first-child .view-header h2 {
  clear: left;
  margin-top: 0 !important;
}

/* line 1373, ../sass/_cgcc.scss */
#views .view .view-header h2.first {
  border-top: 0;
  padding-top: 0;
}

/* line 1378, ../sass/_cgcc.scss */
.node-type-index #views .view-header h2 {
  font-size: 1.3em;
  padding-bottom: .6em;
}

/* line 1383, ../sass/_cgcc.scss */
#views .view-id-course_descriptions.view:first-child .view-header h2,
#views .view-id-directories.view-display-id-block_16 .view-header h2 {
  margin: 0.8em 0 0.2em !important;
  padding: 0 !important;
}

/* line 1389, ../sass/_cgcc.scss */
.callout .views_view {
  margin-top: .6em;
}

/* line 1394, ../sass/_cgcc.scss */
.resources h2 {
  margin-top: -.8em;
  margin-left: -10px;
}

/* line 1399, ../sass/_cgcc.scss */
.resources h2 span {
  background-color: #fff;
  padding: 0 10px 0 10px;
}

/* line 1404, ../sass/_cgcc.scss */
.resources h3 {
  border-top: 1px solid #ccc;
  margin-top: .6em;
  padding: .8em 0 .8em 0;
}

/* line 1410, ../sass/_cgcc.scss */
.resources h2 + h3 {
  border-top: 0;
  margin-top: 0;
}

/* line 1415, ../sass/_cgcc.scss */
h2.topic-header {
  border-top: 3px solid #ccc;
  margin-top: .4em;
  padding: .4em 0 .4em 0;
}

/* line 1421, ../sass/_cgcc.scss */
.callout h2.topic-header {
  padding-bottom: .2em;
}

/* line 1425, ../sass/_cgcc.scss */
#node-55 h2.topic-header:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

/* line 1432, ../sass/_cgcc.scss */
h2.section-header,
h3.section-header {
  border-top: 3px solid #ccc;
  margin-top: 1em;
  padding: 0.4em 0 .4em 0;
}

/* line 1439, ../sass/_cgcc.scss */
.tweets p a:last-child {
  font-size: .9em;
}

/* line 1443, ../sass/_cgcc.scss */
.endnote {
  color: #666;
  font-size: 90%;
}

/* panels and such */
/* line 1450, ../sass/_cgcc.scss */
.j-btn.active {
  color: #333333;
  text-decoration: none;
}

/* line 1455, ../sass/_cgcc.scss */
h2 .j-btn.active {
  font-weight: normal;
}

/* line 1459, ../sass/_cgcc.scss */
.j-panel {
  display: none;
}

/* line 1464, ../sass/_cgcc.scss */
.cke_show_borders .j-panel {
  display: block;
  border: 1px solid red;
}

/* tables */
/* line 1471, ../sass/_cgcc.scss */
.layout td {
  padding: 0 20px 0 0;
  vertical-align: top;
}

/* line 1475, ../sass/_cgcc.scss */
.layout h3 {
  border-top: 2px solid #ccc;
  padding-top: .5em;
  margin: .5em 0 0 0;
}

/* line 1480, ../sass/_cgcc.scss */
.layout tr:first-child h3 {
  border-top: 0;
  padding-top: 0;
}

/* line 1485, ../sass/_cgcc.scss */
.layout p,
.layout li {
  font-size: .9em;
  line-height: 1.3em;
  margin: .2em 0 .4em 0;
}

/* line 1491, ../sass/_cgcc.scss */
.layout li li {
  font-size: 1em;
}

/* line 1495, ../sass/_cgcc.scss */
.page-childcare-types .layout td {
  padding: 0 10px 0 0;
  width: 45%;
}

/* line 1499, ../sass/_cgcc.scss */
.page-childcare-types .layout td + td {
  padding: 0 0 0 10px;
  width: 55%;
}

/* line 1504, ../sass/_cgcc.scss */
.layout td {
  padding: 0;
}

/* line 1508, ../sass/_cgcc.scss */
.actions td {
  vertical-align: middle;
  border-top: 3px solid #ccc;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

/* line 1515, ../sass/_cgcc.scss */
.actions tr td:first-child {
  padding-left: 0;
  white-space: nowrap;
}

/* line 1520, ../sass/_cgcc.scss */
.actions tr td:last-child {
  padding-right: 0;
  text-align: center;
}

/* line 1525, ../sass/_cgcc.scss */
.actions tr:first-child td {
  border-top: none;
}

/* line 1529, ../sass/_cgcc.scss */
.actions .big-button a {
  float: none;
}

/* line 1533, ../sass/_cgcc.scss */
.actions h3 {
  margin: 0;
}

/* line 1537, ../sass/_cgcc.scss */
.actions .big-button a {
  font-size: .9em;
  padding: 4px 10px;
}

/* tabs */
/* line 1544, ../sass/_cgcc.scss */
.ui-tabs-hide {
  display: none;
}

/* line 1548, ../sass/_cgcc.scss */
ul.css-tabs {
  float: right;
  width: 270px;
  list-style-type: none;
  padding-left: 20px;
}

/* line 1555, ../sass/_cgcc.scss */
ul.css-tabs a.current {
  background-color: transparent !important;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* mega */
/* line 1563, ../sass/_cgcc.scss */
.mega {
  overflow: visible;
  position: relative;
}

/* line 1568, ../sass/_cgcc.scss */
.mega.hovering a#quick-links {
  background: #3A3A3A;
}

/* line 1572, ../sass/_cgcc.scss */
.mega #q-links {
  display: none;
  background: #3A3A3A;
  top: 2.2em;
  right: 0;
  position: absolute;
  width: 190px;
  z-index: 100;
  -webkit-box-shadow: 3px 3px 3px #ccc;
  -moz-box-shadow: 3px 3px 3px #ccc;
  box-shadow: 3px 3px 3px #ccc;
}

/* line 1585, ../sass/_cgcc.scss */
.mega #q-links .inner {
  padding: 10px 0 10px 0;
}

/* line 1590, ../sass/_cgcc.scss */
#q-links li {
  display: block !important;
  float: none !important;
}

/* line 1595, ../sass/_cgcc.scss */
#q-links li#ql-05 a,
#q-links li#ql-08 a {
  border-top: 1px solid #676767;
  margin: .5em 10px 0 10px !important;
  padding: 0.8em 0 0.3em 0 !important;
}

/* line 1602, ../sass/_cgcc.scss */
#q-links a {
  font-weight: normal !important;
  display: block !important;
  padding: .3em 10px .3em 10px !important;
  float: none !important;
  text-transform: none !important;
}

/* line 1610, ../sass/_cgcc.scss */
#q-links a:hover {
  background-color: transparent !important;
  color: #B9D249 !important;
}

/* Grid */
/* line 1618, ../sass/_cgcc.scss */
.grid-row {
  float: left;
  overflow: visible;
  width: 100%;
}

/* line 1624, ../sass/_cgcc.scss */
.grid-2 {
  float: left;
  width: 50%;
}

/* line 1629, ../sass/_cgcc.scss */
.grid-3 {
  float: left;
  width: 33%;
}

/* line 1634, ../sass/_cgcc.scss */
.grid-row h2 {
  font-size: 1.3em;
}

/* line 1638, ../sass/_cgcc.scss */
.grid-row p + h2,
.grid-row h3 + h2 {
  border-top: 2px solid #ccc;
  padding-top: .4em;
}

/* line 1644, ../sass/_cgcc.scss */
.grid-row h3 {
  font-size: .9em;
}

/* line 1647, ../sass/_cgcc.scss */
.grid-row h4 {
  font-size: .8em;
}

/* line 1651, ../sass/_cgcc.scss */
.grid-row p,
.grid-row li {
  font-size: .9em;
}

/* line 1656, ../sass/_cgcc.scss */
.grid-row h2,
.grid-row h3,
.grid-row h4,
.grid-row p,
.grid-row li,
.grid-row img,
.grid-row .view-content {
  margin-right: 10px;
}

/* line 1666, ../sass/_cgcc.scss */
.grid-row h3 {
  margin: .4em 0 .2em 0;
}

/* line 1670, ../sass/_cgcc.scss */
.grid-row img.icon {
  border: 1px solid #ccc;
  padding: 2px;
  float: left;
  margin: 5px 10px 10px 0;
}

/* columns */
/* line 1678, ../sass/_cgcc.scss */
.column.first,
.column {
  padding-right: 15px;
}

/* line 1682, ../sass/_cgcc.scss */
.column.last {
  padding-right: 0;
}

/* line 1686, ../sass/_cgcc.scss */
div.inline {
  display: inline-block;
  margin-right: 30px;
  vertical-align: top;
}

/* line 1692, ../sass/_cgcc.scss */
div.inline h2:first-child {
  margin-top: 0;
}

/* line 1696, ../sass/_cgcc.scss */
div.inline h2:first-child,
div.inline h3:first-child {
  margin-top: 0;
}

/*
.columns-2 {
  -moz-column-count: 2;
  -moz-column-gap: 20px;
  -webkit-column-count: 2;
  -webkit-column-gap: 20px;
  column-count: 2;
  column-gap: 20px;
}

.columns-3 {
  -moz-column-count: 3;
  -moz-column-gap: 20px;
  -webkit-column-count: 3;
  -webkit-column-gap: 20px;
  column-count: 3;
  column-gap: 20px;
}
*/
/* line 1721, ../sass/_cgcc.scss */
.columns-2 h5:first-child,
.columns-3 h5:first-child {
  margin-top: 0;
}

/* to do: move this stuff */
/* line 1728, ../sass/_cgcc.scss */
.sidebar .block-block,
.sidebar .block-views,
.sidebar .block-webform {
  border-top: 3px solid #B9D249;
}

/* line 1734, ../sass/_cgcc.scss */
.sidebar #block-block-13.block-block {
  border-top: 0;
}

/* line 1739, ../sass/_cgcc.scss */
.sidebar .block-block img {
  background: #fff;
  border: 1px solid #ccc;
  padding: 3px;
  float: right;
  height: 75px;
  margin: 10px 0 5px 10pt;
  width: 75px;
}

/* line 1749, ../sass/_cgcc.scss */
.region-sidebar-second .block h2.title {
  border-bottom: 0;
}

/* line 1753, ../sass/_cgcc.scss */
.region-sidebar-second .block h3 {
  font-size: 1em;
  margin-top: 0;
  font-weight: 700;
}

/* line 1759, ../sass/_cgcc.scss */
.region-sidebar-second .block h5 {
  font-size: .9em;
}

/* line 1763, ../sass/_cgcc.scss */
#spotlight-784 h2.title {
  color: #B9D249;
  font-family: "museo-slab", serif;
  font-weight: 700;
  font-size: 1.4em;
}

/* line 1770, ../sass/_cgcc.scss */
#spotlight-784 table,
#home-bottom .column.last table {
  width: 100%;
}

/* line 1775, ../sass/_cgcc.scss */
#spotlight-784 tr td,
#home-bottom .column.last tr td {
  font-family: "museo-slab", serif;
  font-size: .9em;
  padding: 3px 3px 3px 0;
}

/* line 1782, ../sass/_cgcc.scss */
#spotlight-784 tr td strong,
#home-bottom .column.last tr td strong {
  background: #B9D249;
  color: #ffffff;
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  padding: 1px 3px;
  text-align: center;
}

/* line 1794, ../sass/_cgcc.scss */
.block ul a, .item-list ul a {
  display: block;
  padding: 0.3em 0;
}

/* line 1799, ../sass/_cgcc.scss */
.item-list ul.pager {
  padding-top: 2em;
}
/* line 1803, ../sass/_cgcc.scss */
.item-list ul.pager a {
  display: inline;
}
/* line 1807, ../sass/_cgcc.scss */
.item-list ul.pager li {
  padding: 0.5em;
}

/* line 1815, ../sass/_cgcc.scss */
.date-nav-wrapper .item-list ul.pager {
  padding-top: 0;
}

/* line 1820, ../sass/_cgcc.scss */
#content-area .content h3 + p {
  font-size: 1em;
}

/* end move this stuff */
/* sidebar blocks */
/* line 1827, ../sass/_cgcc.scss */
.sidebar #block-block-12.block-block {
  border-top: 0;
  background: none;
}

/* line 1832, ../sass/_cgcc.scss */
.region-sidebar-second #block-block-12.block .content {
  margin: 20px 0 0 0;
  padding: 0;
}

/* gallery */
/* line 1840, ../sass/_cgcc.scss */
.gallery-item {
  display: inline-block;
  margin: 0 22px 15px 0;
  text-align: center;
  vertical-align: top;
}

/* line 1847, ../sass/_cgcc.scss */
.gallery-item img {
  border: 1px solid #ccc;
  padding: 4px;
}

/* line 1852, ../sass/_cgcc.scss */
.gallery-item p {
  line-height: normal;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* line 1859, ../sass/_cgcc.scss */
.gallery-item h5 {
  font-size: .9em;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

/* line 1866, ../sass/_cgcc.scss */
.gallery-item h6 {
  font-size: .8em;
  font-weight: normal;
  margin: .2em 0 0 0;
  padding: 0;
}

/* sidebar */
/* line 1874, ../sass/_cgcc.scss */
.sidebar-follow {
  font-weight: normal;
  font-size: .9em;
  color: #666;
  margin: 0 0 0 0;
}

/* line 1881, ../sass/_cgcc.scss */
#block-block-13 .sidebar-follow {
  margin: 1em 0 0 0;
  padding-bottom: 30px;
}

/* line 1886, ../sass/_cgcc.scss */
.sidebar-follow img {
  margin: 0 0 -3px 0;
}

/* line 1890, ../sass/_cgcc.scss */
.sidebar-follow a.icon {
  background-repeat: no-repeat;
  background-position: 0 0;
  display: inline-block;
  height: 16px;
  margin: 0 0 -3px 0;
  width: 16px;
}

/* line 1899, ../sass/_cgcc.scss */
.sidebar-follow a.icon:hover {
  background-position: 0 -16px;
}

/* line 1902, ../sass/_cgcc.scss */
.sidebar-follow a.icon.facebook {
  background-image: url("/sites/default/files/images/sprite-facebook.png");
}

/* line 1905, ../sass/_cgcc.scss */
.sidebar-follow a.icon.google-plus {
  background-image: url("/sites/default/files/images/sprite-google-plus.png");
}

/* line 1908, ../sass/_cgcc.scss */
.sidebar-follow a.icon.twitter {
  background-image: url("/sites/default/files/images/sprite-twitter.png");
}

/* line 1911, ../sass/_cgcc.scss */
.sidebar-follow a.icon.linkedin {
  background-image: url("/sites/default/files/images/sprite-linkedin.png");
}

/* line 1914, ../sass/_cgcc.scss */
.sidebar-follow a.icon.rss {
  background-image: url("/sites/default/files/images/sprite-rss.png");
}

/* line 1917, ../sass/_cgcc.scss */
.sidebar-follow a.icon.youtube {
  background-image: url("/sites/default/files/images/sprite-youtube.png");
}

/* line 1922, ../sass/_cgcc.scss */
.sidebar-follow a.icon
.page-literacy h1 {
  /*
    background:url('/sites/default/files/images/gorge-literacy-logo-gray.png') 18px 0 no-repeat;
    padding-top:48px;
    */
  background: url("/sites/default/files/literacy/gorge-literacy-logo-gray-top.png") 0 0 no-repeat;
  padding: 12px 0 0 144px;
  height: 48px;
  margin: -5px 0 .2em 0;
}

/* profiles */
/* line 1938, ../sass/_cgcc.scss */
#office-hours table,
table.hours {
  margin-top: 5px;
  width: auto;
}

/* line 1943, ../sass/_cgcc.scss */
#office-hours td,
table.hours td {
  padding: 0 8px 3px 0;
}

/* line 1948, ../sass/_cgcc.scss */
p + table.hours {
  margin-top: -.6em;
}

/* line 1953, ../sass/_cgcc.scss */
.job-title {
  font-size: 1.3em;
  margin: -1em 0 .1em 0;
}

/* line 1958, ../sass/_cgcc.scss */
#content-profile-display-profile .job-title {
  margin: 1em 0 .1em 0;
}

/* twitter updates */
/* line 1963, ../sass/_cgcc.scss */
ul#twitter_update_list {
  list-style-type: none;
  padding-left: 0;
}

/* line 1967, ../sass/_cgcc.scss */
ul#twitter_update_list li {
  margin-bottom: 1em;
}

/* line 1971, ../sass/_cgcc.scss */
a.twtr-user, .twtr-hd, .twtr-ft {
  display: none;
}

/* line 1975, ../sass/_cgcc.scss */
.twtr-widget .twtr-tweet-wrap {
  padding: 0 !important;
}

/* line 1979, ../sass/_cgcc.scss */
#twtr-widget-1.twtr-widget {
  color: #333333 !important;
  font-family: 'Droid Sans',Arial,sans-serif !important;
  font-size: 1em !important;
}

/* line 1985, ../sass/_cgcc.scss */
#banner .twtr-widget {
  color: #fff !important;
  font-family: 'Droid Sans',Arial,sans-serif !important;
  font-size: 1em !important;
  padding-left: 45px;
  width: 665px;
}

/* line 1993, ../sass/_cgcc.scss */
#twtr-widget-1.twtr-widget .twtr-bd,
#twtr-widget-1.twtr-widget .twtr-timeline i a,
#twtr-widget-1.twtr-widget .twtr-bd p {
  color: #333333 !important;
  line-height: 1.3em !important;
}

/* line 2000, ../sass/_cgcc.scss */
#banner .twtr-widget .twtr-bd p {
  font-size: 1em;
}

/* line 2004, ../sass/_cgcc.scss */
#banner .twtr-widget .twtr-bd,
#banner .twtr-widget .twtr-timeline i a,
#banner .twtr-widget .twtr-bd p {
  color: #ffffff !important;
  line-height: 1.4em !important;
}

/* line 2011, ../sass/_cgcc.scss */
#twtr-widget-1.twtr-widget em {
  color: transparent;
  font-size: .9em !important;
}

/* line 2016, ../sass/_cgcc.scss */
#banner .twtr-widget em,
.front .tweets .twtr-widget em {
  color: transparent;
  font-size: .9em !important;
  display: inline;
}

/* line 2023, ../sass/_cgcc.scss */
#twtr-widget-1.twtr-widget .twtr-tweet,
#banner .twtr-widget .twtr-tweet {
  border: 0;
  margin-bottom: 1em;
}

/* line 2029, ../sass/_cgcc.scss */
#twtr-widget-1.twtr-widget .twtr-tweet:last-child,
#banner .twtr-widget .twtr-tweet:last-child {
  margin-bottom: 0;
}

/* line 2034, ../sass/_cgcc.scss */
.twtr-reply,
.twtr-rt,
.twtr-fav {
  display: none;
}

/* line 2040, ../sass/_cgcc.scss */
#twtr-widget-1 .twtr-tweet a {
  color: #627F40 !important;
  text-decoration: underline !important;
}

/* line 2045, ../sass/_cgcc.scss */
#banner .twtr-tweet a {
  color: #fff !important;
  text-decoration: underline !important;
}

/* line 2050, ../sass/_cgcc.scss */
#twtr-widget-1 .twtr-doc .twtr-tweet a:hover {
  color: #333 !important;
  text-decoration: none !important;
}

/* line 2055, ../sass/_cgcc.scss */
#banner .twtr-doc .twtr-tweet a:hover {
  color: #fff !important;
  text-decoration: none !important;
}

/* line 2060, ../sass/_cgcc.scss */
#banner .twtr-widget em {
  display: inline;
  font-size: .9em;
}

/* portals */
/* line 2068, ../sass/_cgcc.scss */
.section-about #about-top,
.page-node-1975 #about-top,
#node-786 #about-top,
#node-2070 #about-top,
.section-academics #about-top {
  width: 690px;
  height: 390px;
  position: relative;
  margin-bottom: 20px;
}

/* line 2079, ../sass/_cgcc.scss */
#node-786 #about-top,
#node-2070 #about-top {
  margin-bottom: 0;
}

/* line 2084, ../sass/_cgcc.scss */
.section-academics #about-top {
  height: 260px;
  margin-bottom: 5px;
}

/* line 2089, ../sass/_cgcc.scss */
.section-about #about-top .inner,
.section-node-1975 #about-top .inner,
#node-786 #about-top .inner,
#node-2070 #about-top .inner,
.section-academics #about-top .inner {
  position: absolute;
  bottom: 0;
}

/* line 2098, ../sass/_cgcc.scss */
body.section-future-students {
  /*
  background:#3a3a3a;
  */
}

/* line 2104, ../sass/_cgcc.scss */
.portal #content,
.node-type-portal #content {
  margin-top: 18px;
}

/* line 2109, ../sass/_cgcc.scss */
.page-node-279 #content,
.section-node-1975 #content,
#node-786 #content,
#node-2070 #content {
  margin-top: 18px;
}

/* line 2116, ../sass/_cgcc.scss */
.section-business-and-partners #content {
  background: url("/sites/default/files/images/business-1.jpg") 0 0 no-repeat;
}

/* line 2120, ../sass/_cgcc.scss */
.portal #content .section,
.node-type-portal #content .section,
.node-type-home #content .section {
  padding: 0 20px 0 20px;
  margin-right: 0;
}

/* line 2127, ../sass/_cgcc.scss */
.portal h1,
.node-type-portal h1 {
  background-color: transparent;
  background-image: url("/sites/default/files/images/gold-90.png");
  display: inline-block;
  font-family: "museo-slab",serif;
  font-size: 2.8em;
  font-weight: 700;
  font-style: normal;
  padding: 5px 20px 5px 20px;
  margin: 120px 0 8px 0;
  width: auto;
  color: #fff;
}

/* line 2142, ../sass/_cgcc.scss */
.page-node-279 h1,
.page-node-1975 h1,
#node-786 h1,
#node-2070 h1 {
  background-color: transparent;
  background-image: url("/sites/default/files/images/green-88.png");
  color: #fff;
  font-family: "museo-slab",serif;
  font-size: 2.8em;
  font-weight: 700;
  padding: 5px 20px 5px 20px;
  margin-bottom: 8px;
  display: inline-block;
}

/* line 2157, ../sass/_cgcc.scss */
.section-faculty-and-staff h1 {
  background-image: url("/sites/default/files/images/green-88.png");
}

/* line 2161, ../sass/_cgcc.scss */
.deck {
  background-image: url("/sites/default/files/images/gold-90.png");
  font-size: 1em;
  font-family: "museo-slab",serif;
  padding: 8px 20px 10px 20px;
  color: #fff;
}

/* line 2169, ../sass/_cgcc.scss */
.portal .deck,
.node-type-portal .deck {
  margin: 0;
  padding: 8px 20px 20px 20px;
}

/* line 2175, ../sass/_cgcc.scss */
.section-about .deck,
.page-node-1975 .deck,
#node-786 .deck,
#node-2070 .deck,
.section-faculty-and-staff .deck,
.section-academics .deck {
  background-color: transparent;
  background-image: url("/sites/default/files/images/green-88.png");
  color: #fff;
}

/* line 2186, ../sass/_cgcc.scss */
.section-business-and-partners h1,
.section-business-and-partners .deck {
  background: rgba(206, 92, 69, 0.9);
  background-image: none;
  color: #fff;
}

/* line 2194, ../sass/_cgcc.scss */
.portal.section-students h1,
.node-type-portal.section-students h1 {
  background-image: none;
  background: #06b6e9;
  background: rgba(6, 182, 233, 0.83);
}

/* line 2201, ../sass/_cgcc.scss */
.section-students .deck {
  background-image: none;
  color: #fff;
  background: #06b6e9;
  background: rgba(6, 182, 233, 0.83);
}

/* line 2208, ../sass/_cgcc.scss */
.deck p:first-child {
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.2em;
  margin: 0 0 .1em 0;
}

/* line 2215, ../sass/_cgcc.scss */
.deck p:last-child {
  font-size: 1.15em;
  font-weight: 700;
  line-height: 1.35em;
  margin: 0;
}

/* line 2222, ../sass/_cgcc.scss */
#content .deck a:hover,
.deck a {
  color: #fff !important;
}

/* line 2227, ../sass/_cgcc.scss */
.section-future-students .portal-card a {
  color: #b38405;
}

/* line 2231, ../sass/_cgcc.scss */
.section-students .portal-card a {
  color: #0689AF;
}

/* line 2235, ../sass/_cgcc.scss */
.section-business-and-partners a {
  color: #ab4834;
}

/* line 2239, ../sass/_cgcc.scss */
.portal-main {
  float: left;
  width: 696px;
}

/* line 2243, ../sass/_cgcc.scss */
.portal-card.full-width {
  clear: left;
  width: 656px !important;
}

/* line 2247, ../sass/_cgcc.scss */
.portal-card {
  float: left;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 15px 10px 15px;
  margin: 10px 10px 0 0;
  width: 192px;
}

/* line 2255, ../sass/_cgcc.scss */
.portal-card.half-width {
  width: 308px;
}

/* line 2259, ../sass/_cgcc.scss */
.portal-card-set {
  overflow: hidden;
}

/* line 2263, ../sass/_cgcc.scss */
.portal-card-set .portal-card {
  margin-bottom: -10000px;
  padding-bottom: 10000px;
}

/* line 2268, ../sass/_cgcc.scss */
.portal-card-set .portal-card h5:last-child {
  padding-bottom: 1.6em;
}

/* line 2272, ../sass/_cgcc.scss */
.portal-sidebar .portal-card {
  margin-right: 0;
  padding-top: 10px;
  padding-bottom: 30px;
  border-top: 3px solid #E9AC07;
  background-color: #FAF4E8;
  background-image: none;
}

/* line 2281, ../sass/_cgcc.scss */
.section-business-and-partners .portal-sidebar .portal-card {
  background: #faf2f1;
  background: rgba(250, 242, 241, 0.95);
  border-top: 3px solid #CE5C45;
}

/* line 2287, ../sass/_cgcc.scss */
.section-faculty-and-staff .portal-sidebar .portal-card {
  background: #f9fbed;
  background: rgba(249, 251, 237, 0.95);
  border-top: 3px solid #B9D249;
}

/* line 2293, ../sass/_cgcc.scss */
.section-students .portal-sidebar .portal-card {
  border-top: 3px solid #06B6E9;
  background: #e8f3f6;
  background: rgba(232, 243, 246, 0.95);
}

/* line 2299, ../sass/_cgcc.scss */
.portal-card .big-button a,
.front .big-button a,
#footer .big-button a {
  font-size: 1em;
  margin-top: .5em;
  padding: 4px 10px;
  text-decoration: none !important;
}

/* line 2308, ../sass/_cgcc.scss */
.fb-like-box {
  background: url("/sites/default/files/images/white-95.png");
}

/* line 2312, ../sass/_cgcc.scss */
.portal-card h2,
.sidebar .block-views h2,
#spotlight-1021 h2 {
  font-size: 1.3em;
  font-weight: 700;
  font-family: "museo-slab",serif;
  margin-top: 1em;
  margin-bottom: .6em;
}

/* line 2321, ../sass/_cgcc.scss */
.portal-main .portal-card h2:first-child {
  margin-top: 0;
}

/* line 2325, ../sass/_cgcc.scss */
.portal-card h3 {
  font-size: 1.1em;
  font-weight: 500;
  font-family: "museo-slab",serif;
}

/* line 2331, ../sass/_cgcc.scss */
.sidebar .view-footer h4 {
  font-size: .9em;
  font-weight: normal;
  font-family: "museo-slab",serif;
  margin-top: .6em;
}

/* line 2338, ../sass/_cgcc.scss */
.sidebar .view-footer a {
  text-decoration: underline;
}

/* line 2341, ../sass/_cgcc.scss */
.sidebar .view-footer a:hover {
  text-decoration: none;
}

/* line 2345, ../sass/_cgcc.scss */
.sidebar .view-footer {
  padding-bottom: 1em;
}

/* line 2348, ../sass/_cgcc.scss */
.portal-sidebar.sidebar .view-footer {
  padding-bottom: 0;
}

/* line 2352, ../sass/_cgcc.scss */
.compact td, .compact th {
  padding: 0.25em 20px .25em 0;
  text-align: left;
}

/* line 2357, ../sass/_cgcc.scss */
.callout thead th {
  font-size: .9em;
}

/* line 2361, ../sass/_cgcc.scss */
.sidebar table.views-table thead {
  display: none;
}

/* line 2365, ../sass/_cgcc.scss */
.sidebar table.views-table,
table.portal-spotlight {
  margin: -5px 0 0 0;
}

/* line 2370, ../sass/_cgcc.scss */
.sidebar table.views-table td,
table.portal-spotlight td {
  font-family: "museo-slab",serif;
  font-size: 0.9em;
  padding: 3px 3px 3px 0;
}

/* line 2377, ../sass/_cgcc.scss */
.sidebar table.views-table td {
  font-size: 1em;
}

/* line 2381, ../sass/_cgcc.scss */
.sidebar table.views-table td:first-child,
table.portal-spotlight td:first-child {
  min-width: 145px;
  padding-right: 10px;
  white-space: nowrap;
}

/* line 2388, ../sass/_cgcc.scss */
.sidebar table.views-table td:last-child,
table.portal-spotlight td:last-child {
  white-space: nowrap;
}

/* line 2393, ../sass/_cgcc.scss */
.sidebar table.views-table tr.even,
.sidebar table.views-table tr.odd {
  background-color: transparent;
}

/* line 2398, ../sass/_cgcc.scss */
.key-dates {
  width: 400px;
}

/* line 2402, ../sass/_cgcc.scss */
.key-dates td {
  font-size: .9em;
}

/* line 2406, ../sass/_cgcc.scss */
.section-future-students #page-tools {
  background-color: transparent;
}

/* line 2410, ../sass/_cgcc.scss */
.section-future-students #page-tools #share {
  padding-top: 1em;
  margin-left: 0;
}

/* line 2415, ../sass/_cgcc.scss */
.portal-sidebar {
  float: left;
  width: 205px;
}

/* line 2420, ../sass/_cgcc.scss */
.portal-sidebar h2 {
  border-top: 2px solid #E9AC07;
  color: #E9AC07;
  padding-top: .3em;
}

/* line 2426, ../sass/_cgcc.scss */
.section-students .portal-sidebar h2 {
  border-top: 2px solid #06B6E9;
  color: #06B6E9;
}

/* line 2431, ../sass/_cgcc.scss */
.section-business-and-partners .portal-sidebar h2 {
  border-top: 2px solid #CE5C45;
  color: #CE5C45;
}

/* line 2436, ../sass/_cgcc.scss */
.section-faculty-and-staff .portal-sidebar h2 {
  border-top: 2px solid #B9D249;
  color: #B9D249;
}

/* line 2441, ../sass/_cgcc.scss */
.sidebar .block-views h2,
#spotlight-1021 h2 {
  color: #B9D249;
}

/* line 2446, ../sass/_cgcc.scss */
.region-sidebar-second .block #node-1044 .content {
  margin: 0;
  padding: 0;
}

/* line 2452, ../sass/_cgcc.scss */
.sidebar h2 span.smaller {
  font-size: 0.7em;
}

/* line 2456, ../sass/_cgcc.scss */
.portal-sidebar h3 {
  font-weight: 700;
  margin-top: 0;
}

/* line 2460, ../sass/_cgcc.scss */
.portal-sidebar h5,
.front .last h5 {
  font-family: "museo-slab",serif;
  font-size: 0.9em;
}

/* line 2466, ../sass/_cgcc.scss */
.portal-sidebar ul {
  padding-left: 0;
}

/* line 2470, ../sass/_cgcc.scss */
.portal-sidebar li {
  font-family: "museo-slab",serif;
  font-size: 0.9em;
  list-style-type: none;
}

/* line 2476, ../sass/_cgcc.scss */
.portal-sidebar .media {
  margin: 10px 0 0 0;
}

/* line 2480, ../sass/_cgcc.scss */
.portal-sidebar .sidebar-follow {
  margin-top: 10px;
}

/* line 2484, ../sass/_cgcc.scss */
.media h5 {
  margin-top: 5px !important;
}

/* line 2488, ../sass/_cgcc.scss */
ul.compact {
  line-height: 1.2em;
}

/* line 2492, ../sass/_cgcc.scss */
ul.compact + h3 {
  margin-top: .8em;
}

/* line 2496, ../sass/_cgcc.scss */
.compact li {
  margin: 0;
}

/* line 2500, ../sass/_cgcc.scss */
.node-type-portal #field-youtube-id-items,
.node-type-portal #field-caption-items {
  display: inline-block;
  vertical-align: top;
  width: 45%;
}

/* captcha */
/* line 2509, ../sass/_cgcc.scss */
fieldset.captcha {
  border: 0;
  padding: 0 0 1em 0;
}

/* line 2514, ../sass/_cgcc.scss */
fieldset.captcha legend {
  display: none;
}

/* numbering stuff - cool, eh? */
/* line 2520, ../sass/_cgcc.scss */
body,
h2 {
  counter-reset: faq;
}

/* line 2524, ../sass/_cgcc.scss */
.view-faq h3:before {
  content: counter(faq) ". ";
  counter-increment: faq;
}

/* FAQ */
/* line 2531, ../sass/_cgcc.scss */
.portal-card h3.question {
  margin-bottom: -.4em;
}

/* line 2535, ../sass/_cgcc.scss */
.portal-card h3.question.active {
  margin-bottom: .4em;
}

/* line 2539, ../sass/_cgcc.scss */
.portal-card .view-id-faq {
  padding-bottom: 25px;
}

/* line 2543, ../sass/_cgcc.scss */
.portal-card .view-id-faq .views-row-1 h3 {
  margin-top: 0;
}

/* line 2547, ../sass/_cgcc.scss */
.page-students .portal-card .question span {
  color: #0689AF;
  cursor: pointer;
  text-decoration: underline;
}

/* line 2553, ../sass/_cgcc.scss */
.page-students .portal-card .question:hover span {
  color: #333333;
  text-decoration: none;
}

/* line 2558, ../sass/_cgcc.scss */
.portal-card .answer {
  display: none;
}

/* line 2562, ../sass/_cgcc.scss */
.view-faq .views-row {
  margin-bottom: 1.6em;
}

/* line 2566, ../sass/_cgcc.scss */
.portal-card .view-faq .views-row {
  margin-bottom: 0;
}

/* panels etc */
/* line 2572, ../sass/_cgcc.scss */
h2.btn, h3.btn {
  color: #697A20;
  cursor: pointer;
  text-decoration: underline;
}

/* line 2578, ../sass/_cgcc.scss */
.j-panel + h3 {
  margin-top: .6em;
}

/* line 2582, ../sass/_cgcc.scss */
h3.btn:hover, h3.btn.active {
  color: #333333;
  text-decoration: none;
}

/* module-specific overrides */
/* line 2589, ../sass/_cgcc.scss */
.view-content:after {
  clear: none;
  content: " ";
  display: none;
  height: 0;
  visibility: hidden;
}

/* line 2597, ../sass/_cgcc.scss */
.view-display-id-block_11 .resource-teaser {
  margin: 0;
}

/* search */
/* line 2603, ../sass/_cgcc.scss */
#cse {
  margin-top: 20px;
}

/* line 2607, ../sass/_cgcc.scss */
#search-submit-1 {
  text-transform: capitalize;
}

/* line 2612, ../sass/_cgcc.scss */
.gsc-resultsHeader,
.gsc-above-wrapper-area {
  display: none;
}

/* line 2617, ../sass/_cgcc.scss */
.cse .gsc-control-cse, .gsc-control-cse {
  padding: 0 !important;
}

/* line 2621, ../sass/_cgcc.scss */
.gsc-webResult {
  padding: 0 0 1em 0 !important;
}

/* line 2625, ../sass/_cgcc.scss */
.gsc-table-result, .gsc-thumbnail-inside, .gsc-url-top {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* line 2630, ../sass/_cgcc.scss */
.gs-snippet {
  margin-top: 3px !important;
}

/* line 2634, ../sass/_cgcc.scss */
.gsc-result .gs-title {
  height: auto !important;
}

/* line 2638, ../sass/_cgcc.scss */
.gsc-control-cse, .gsc-control-cse .gsc-table-result {
  font-family: 'Droid Sans', Arial, sans-serif !important;
  font-size: 1em !important;
}

/* line 2643, ../sass/_cgcc.scss */
.gs-result .gs-title, .gs-result .gs-title * {
  text-decoration: none !important;
}

/* line 2647, ../sass/_cgcc.scss */
.gs-title a.gs-title {
  color: #697a20 !important;
  text-decoration: underline !important;
}

/* line 2652, ../sass/_cgcc.scss */
a.gs-title:hover {
  color: #333 !important;
  text-decoration: none !important;
}

/* line 2657, ../sass/_cgcc.scss */
a.gs-title b,
.gsc-table-result b {
  color: inherit !important;
  font-weight: normal;
  font-size: 1em !important;
}

/* line 2664, ../sass/_cgcc.scss */
.gs-visibleUrl {
  color: #999999 !important;
  font-size: .9em;
  padding: .2em 0 0 0;
}

/* line 2670, ../sass/_cgcc.scss */
.gsc-table-cell-snippet-close {
  padding-top: .2em !important;
}

/* line 2674, ../sass/_cgcc.scss */
.gs-fileFormat {
  display: none;
}

/* line 2678, ../sass/_cgcc.scss */
.gs-snippet {
  font-size: 1em !important;
  line-height: 1.3em !important;
}

/* line 2683, ../sass/_cgcc.scss */
.gsc-cursor-box {
  font-size: 1.05em !important;
}

/* line 2687, ../sass/_cgcc.scss */
.gsc-cursor-page {
  color: #697a20 !important;
  cursor: pointer;
  display: inline;
  font-size: 1.1em;
  margin-right: 10px;
  text-decoration: underline !important;
}

/* line 2696, ../sass/_cgcc.scss */
.gsc-cursor-page:hover {
  color: #333 !important;
  text-decoration: none !important;
}

/* line 2701, ../sass/_cgcc.scss */
.gsc-cursor-current-page {
  color: #333 !important;
  text-decoration: none !important;
}

/* line 2706, ../sass/_cgcc.scss */
.gsc-control-cse,
.gsc-control-cse .gsc-table-result {
  font-family: Arial,sans-serif;
  font-size: 1em !important;
}

/* line 2712, ../sass/_cgcc.scss */
.gsc-table-cell-thumbnail, .gs-promotion-image-cell {
  padding-left: 0 !important;
  padding-right: 5px !important;
}

/* special styles */
/* line 2718, ../sass/_cgcc.scss */
.example {
  border: 1px solid #ccc;
  background: #F5F5F5;
  margin: 1em 0 1em 0;
  padding: 1.6em 20px .2em 10px;
  padding-top: 1em;
  /* remove this if using .example:before */
  position: relative;
}

/* line 2727, ../sass/_cgcc.scss */
.example:before {
  display: none;
  position: absolute;
  top: 5px;
  left: 10px;
  content: "Example";
  padding: 0;
  font-size: .9em;
  color: #999;
}

/* line 2738, ../sass/_cgcc.scss */
.color {
  display: inline-block;
  width: 100px;
  height: 100px;
  margin: 0 0 5px 0;
}

/* line 2745, ../sass/_cgcc.scss */
.color.small {
  margin-top: 25px;
  width: 75px;
  height: 75px;
}

/* line 2751, ../sass/_cgcc.scss */
.palette {
  display: inline-block;
  vertical-align: top;
  width: 200px;
  margin: 0 20px 0 0;
}

/* line 2758, ../sass/_cgcc.scss */
.highlight-1 {
  background: yellow;
}

/* line 2762, ../sass/_cgcc.scss */
a.filter.active {
  text-decoration: none !important;
  color: #333;
}

/* line 2767, ../sass/_cgcc.scss */
.faded {
  color: #666666;
}

/* line 2771, ../sass/_cgcc.scss */
.noshow,
#content a.noshow:hover {
  color: #fff !important;
}

/* contact page */
/* line 2778, ../sass/_cgcc.scss */
#node-281 img + h3 {
  margin-top: 10px;
}

/* line 2782, ../sass/_cgcc.scss */
.region-sidebar-second .block-menu-block-9 h2.title {
  border-bottom: 0;
  font-size: 1.3em;
  padding: 0.8em 0 0.1em;
}

/* line 2788, ../sass/_cgcc.scss */
.block-menu-block-9.block ul a {
  display: block;
  padding: 0.1em 0;
}

/* line 2793, ../sass/_cgcc.scss */
.region-sidebar-second .block-menu-block-9.block-menu-block {
  background: none repeat scroll 0 0 #F2F2F3;
}

/* line 2797, ../sass/_cgcc.scss */
.sidebar .block-menu-block-9.block-menu-block {
  border-top: 3px solid #B9D249 !important;
}

/* line 2801, ../sass/_cgcc.scss */
.sidebar .block-menu-block-9.block-menu-block {
  background: none repeat scroll 0 0 #F9FBED;
}

/* line 2805, ../sass/_cgcc.scss */
.region-sidebar-second .block-menu-block-9.block.block-menu-block.count-2 li {
  font-size: 1em;
}

/* line 2809, ../sass/_cgcc.scss */
.sidebar .block table {
  width: auto;
}

/* line 2813, ../sass/_cgcc.scss */
.sidebar .block td {
  padding: 0;
}

/* line 2817, ../sass/_cgcc.scss */
.sidebar #spotlight-1021.block td {
  padding: 3px 3px 3px 0;
}

/* line 2821, ../sass/_cgcc.scss */
#spotlight-1021.block table.portal-spotlight td:first-child {
  padding-right: 10px;
}

/* line 2825, ../sass/_cgcc.scss */
#block-block-11 p {
  line-height: normal;
  margin: -.8em 0 1em 0;
}

/* arrows */
/* line 2831, ../sass/_cgcc.scss */
a.show {
  position: relative;
}

/* line 2834, ../sass/_cgcc.scss */
a.show:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #ccc;
  position: absolute;
  right: -15px;
  top: 50%;
}

/* line 2846, ../sass/_cgcc.scss */
a.show.expanded:after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #ccc;
  border-top: 0;
}

/* line 2853, ../sass/_cgcc.scss */
.arrow-up {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
}

/* line 2861, ../sass/_cgcc.scss */
.arrow-down {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #f00;
}

/* line 2869, ../sass/_cgcc.scss */
.arrow-right {
  width: 0;
  height: 0;
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent;
  border-left: 60px solid green;
}

/* line 2877, ../sass/_cgcc.scss */
.arrow-left {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid blue;
}

/* line 2885, ../sass/_cgcc.scss */
.card1 p:first-child,
.card1 .text {
  display: inline-block;
  vertical-align: middle;
}

/* line 2890, ../sass/_cgcc.scss */
.card1 p:first-child {
  width: 225px;
}

/* line 2893, ../sass/_cgcc.scss */
.card1 .text {
  width: 455px;
}

/* line 2896, ../sass/_cgcc.scss */
.card1 img {
  border: 1px solid #CCCCCC;
  padding: 4px;
}

/* Tabs */
/* line 2903, ../sass/_cgcc.scss */
#tabs {
  float: left;
  width: 100%;
}

/* line 2908, ../sass/_cgcc.scss */
#tabs ul.tabs {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  _display: inline;
  _overflow: hidden;
  _overflow-y: visible;
  float: left;
  margin: 0 0 -2px 0;
  padding: 0;
  width: 100%;
}

/* line 2923, ../sass/_cgcc.scss */
#tabs ul.tabs li {
  float: left;
  list-style-type: none;
  margin: 0 0 0 0;
}

/* line 2929, ../sass/_cgcc.scss */
#tabs ul.tabs li a {
  background: #f1f1f1;
  border: 2px solid #ccc;
  -webkit-border-top-left-radius: 6px;
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topleft: 6px;
  -moz-border-radius-topright: 6px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  color: #777777;
  float: left;
  font-weight: bold;
  outline: none;
  padding: .2em 15px .1em 15px;
  text-decoration: none;
}

/* line 2946, ../sass/_cgcc.scss */
#tabs ul.tabs li a:hover {
  color: #333333;
}

/* line 2950, ../sass/_cgcc.scss */
#tabs ul.tabs li a.current {
  background-color: #F9FBED !important;
  color: #333333;
  border-color: #B9D249;
  border-bottom-color: #F9FBED;
  position: relative;
  z-index: 2;
}

/* line 2959, ../sass/_cgcc.scss */
#tabs .panes {
  background-color: #F9FBED;
  border: 2px solid #B9D249;
  float: left;
  min-height: 9em;
  position: relative;
  width: 100%;
  z-index: 1;
}

/* line 2969, ../sass/_cgcc.scss */
#tabs .panes .pane {
  margin: 1.6em  20px 1em 20px;
}

/* line 2973, ../sass/_cgcc.scss */
#tabs .panes .featured-image {
  background: transparent;
}

/* library */
/* line 2979, ../sass/_cgcc.scss */
#tabs .panes form div {
  padding: 0 0 .4em 0;
}

/* line 2986, ../sass/_cgcc.scss */
.section-library #tabs form div {
  padding: 4px 0;
}
/* line 2989, ../sass/_cgcc.scss */
.section-library #tabs form label {
  display: inline;
  font-weight: normal;
}

/* line 2997, ../sass/_cgcc.scss */
#tabs
.callout.data,
#node-786 .callout,
#node-1092 .callout {
  background: #F9FBED;
  border-top: 3px solid #B3CB48;
  padding: 0 0 20px 0;
  margin-left: 30px;
  width: auto;
}

/* line 3012, ../sass/_cgcc.scss */
.callout.data,
#node-1092 .callout {
  width: 300px;
}

/* line 3017, ../sass/_cgcc.scss */
.callout.data .inner,
#node-786 .callout .inner,
#node-1092 .callout .inner {
  margin-right: 20px;
  width: auto;
}

/* line 3024, ../sass/_cgcc.scss */
.callout.data h2,
#node-786 .callout h2,
#node-1092 .callout h2 {
  color: #B9D249;
  font-family: "museo-slab",serif;
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 0.6em;
  margin-top: 1em;
}

/* line 3035, ../sass/_cgcc.scss */
#node-786 .callout table {
  width: 210px;
}

/* line 3039, ../sass/_cgcc.scss */
.callout.data h4,
#node-786 .callout h4 {
  margin-bottom: 0;
}

/* line 3044, ../sass/_cgcc.scss */
.callout.data tr:first-child h4,
#node-786 .callout tr:first-child h4 {
  margin-top: 0;
}

/* line 3049, ../sass/_cgcc.scss */
.callout.data td,
.callout.data th,
#node-786 .callout td,
#node-1092 .callout td,
#node-1092 .callout th {
  font-family: "museo-slab",serif;
  padding: 2px 10px 2px 0;
}

/* line 3058, ../sass/_cgcc.scss */
.callout.data td:last-child,
#node-786 .callout td:last-child,
#node-1092 .callout td:last-child {
  padding-right: 0;
}

/* line 3064, ../sass/_cgcc.scss */
.callout.data li,
#node-1092 .callout li {
  font-family: "museo-slab",serif;
}

/* line 3069, ../sass/_cgcc.scss */
.callout.data table + ul,
#node-1092 .callout table + ul {
  margin-top: .8em;
}

/* Mycgcc */
/* line 3076, ../sass/_cgcc.scss */
.page-mycgcc .callout,
#node-2299 .callout {
  background: #F2F2F3;
}

/* line 3081, ../sass/_cgcc.scss */
#node-2299 .callout {
  margin-left: 20px;
}

/* line 3085, ../sass/_cgcc.scss */
.page-mycgcc .callout .inner,
#node-2299 .callout .inner {
  float: left;
  padding: 20px 0;
}

/* line 3090, ../sass/_cgcc.scss */
.page-mycgcc .callout h2,
#node-2299 .callout h2 {
  font-size: 1.6em;
}

/* a to z */
/* line 3097, ../sass/_cgcc.scss */
#block-webform-client-block-825 #webform-client-form-825,
#block-webform-client-block-1063 #webform-client-form-1063,
#block-webform-client-block-1118 #webform-client-form-1118 {
  display: none;
}

/* line 3103, ../sass/_cgcc.scss */
#webform-component-suggestion,
#webform-component-question,
#webform-client-form-1118 #webform-component-message {
  width: 600px;
}

/* home page */
/* line 3110, ../sass/_cgcc.scss */
.node-type-portal.front #content,
.node-type-home #content {
  margin-top: 18px;
  padding-bottom: 0;
}

/* line 3116, ../sass/_cgcc.scss */
.node-type-portal.front #content .section,
.node-type-home #content .section {
  padding: 0;
}

/* line 3121, ../sass/_cgcc.scss */
.front #content h2,
.node-type-home #content h2 {
  font-family: "museo-slab",serif;
  font-size: 1.3em;
  font-weight: 700;
  margin: 0 0 0.7em 0;
}

/* line 3129, ../sass/_cgcc.scss */
#home-top {
  height: 350px;
  position: relative;
}

/* line 3133, ../sass/_cgcc.scss */
#home-deck ul {
  margin: 0;
  padding: 0;
}

/* line 3136, ../sass/_cgcc.scss */
#home-deck li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
  line-height: 1em;
}

/* line 3141, ../sass/_cgcc.scss */
#home-deck li img {
  display: block;
  float: left;
  margin: 8px 2px 0 0;
  padding: 3px;
}

/* line 3148, ../sass/_cgcc.scss */
#home-deck li img:hover {
  border: 1px solid #697a20;
  padding: 2px;
}

/* line 3153, ../sass/_cgcc.scss */
#home-deck li.active img {
  border: 3px solid #697a20;
  padding: 0;
}

/* line 3159, ../sass/_cgcc.scss */
#home-deck {
  background-color: rgba(179, 203, 72, 0.8);
  color: #FFFFFF;
  font-family: "museo-slab",serif;
  padding: 6px 10px 6px 10px;
  position: absolute;
  bottom: 20px;
  left: 0px;
  width: 333px;
}

/* line 3170, ../sass/_cgcc.scss */
.front #content #home-deck h2,
.node-type-home #content #home-deck h2 {
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.2em;
  margin: 8px 0 0.1em;
}

/* line 3177, ../sass/_cgcc.scss */
.front #content #home-deck p,
.node-type-home #content #home-deck p {
  font-size: 1.15em;
  font-weight: 700;
  line-height: 1.35em;
  margin: 0 0 10px 0;
}

/* line 3185, ../sass/_cgcc.scss */
#home-deck a {
  color: #fff;
}

/* line 3189, ../sass/_cgcc.scss */
#start {
  background: #F2F2F3;
  background: #F9FBEE;
  background: #f9fbed;
  background: rgba(249, 251, 237, 0.95);
  /*
  border-top: 3px solid #B9D249;
  */
  background: #F2F2F3;
  position: absolute;
  bottom: 0px;
  padding-bottom: 5px;
  right: 0;
  width: 225px;
  z-index: 100;
}

/* line 3206, ../sass/_cgcc.scss */
#home-bottom .column.last {
  box-sizing: border-box;
  border-top: 3px solid #B9D249;
  float: right;
  margin-bottom: 30px;
  background: #F9FBEE;
  padding-bottom: 20px;
  width: 23%;
}

/* line 3216, ../sass/_cgcc.scss */
#home-bottom .column.last .inner {
  margin: 10px 18px 30px 18px;
}

/* line 3220, ../sass/_cgcc.scss */
#home-bottom .column.last h2 {
  color: #B9D249;
  font-family: "museo-slab",serif;
  font-size: 1.4em;
  font-weight: 700;
}

/* line 3227, ../sass/_cgcc.scss */
.front #content #start h2,
.node-type-home #content #start h2 {
  padding: 15px 18px 0 18px;
  margin-bottom: .3em;
}

/* line 3233, ../sass/_cgcc.scss */
#start .big-button {
  margin-left: 10px;
}

/* line 3237, ../sass/_cgcc.scss */
#start ul,
#start li {
  line-height: 1em;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* line 3244, ../sass/_cgcc.scss */
#start ul {
  margin: 0 18px 0 18px;
}

/* line 3248, ../sass/_cgcc.scss */
#start li {
  padding: .3em 0 .3em 0;
}

/* line 3252, ../sass/_cgcc.scss */
#start ul.first {
  border-bottom: 3px solid #fff;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

/* line 3258, ../sass/_cgcc.scss */
#start a {
  text-decoration: none;
}

/* line 3262, ../sass/_cgcc.scss */
#start a:hover {
  text-decoration: underline;
}

/* line 3266, ../sass/_cgcc.scss */
#home-bottom {
  padding-top: 18px;
}

/* line 3270, ../sass/_cgcc.scss */
#home-bottom .latest-tweets {
  margin-bottom: .8em;
}

/* line 3274, ../sass/_cgcc.scss */
#home-bottom .latest-tweets-date {
  font-size: .9em;
  color: #666;
}

/* line 3279, ../sass/_cgcc.scss */
#home-bottom .column {
  box-sizing: border-box;
  display: inline-block;
  padding: 0;
  vertical-align: top;
  width: 38%;
}

/* line 3287, ../sass/_cgcc.scss */
#home-bottom .column.middle {
  box-sizing: border-box;
  width: 38%;
}

/* line 3292, ../sass/_cgcc.scss */
#home-bottom .view-content {
  margin-right: 30px;
}

/* line 3296, ../sass/_cgcc.scss */
.front .audience ul,
.front .audience li,
.node-type-home .audience ul,
.node-type-home .audience li {
  list-style-type: none !important;
  line-height: 1em !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* line 3305, ../sass/_cgcc.scss */
.front #start .audience ul,
.node-type-home #start .audience ul {
  padding: 0 0 10px 0 !important;
}

/* line 3310, ../sass/_cgcc.scss */
.front .audience a,
.node-type-home .audience a {
  color: #5A447A;
  display: inline-block;
  font-size: 0.85em;
  font-weight: bold;
  padding: 3px 6px 3px;
  margin: 2px 0 0 12px;
  text-decoration: none;
  text-transform: uppercase;
}

/* line 3322, ../sass/_cgcc.scss */
.front #content .audience a:hover,
.node-type-home #content .audience a:hover {
  color: #fff !important;
  text-decoration: none !important;
}

/* line 3328, ../sass/_cgcc.scss */
a.future:hover,
a#nav-861:hover,
.section-future-students a#nav-861 {
  background: #E9AC07;
  color: #fff !important;
  text-decoration: none !important;
}

/* line 3335, ../sass/_cgcc.scss */
a.current:hover,
a#nav-862:hover,
.section-students a#nav-862 {
  background: #06B6E9;
  color: #fff !important;
  text-decoration: none !important;
}

/* line 3342, ../sass/_cgcc.scss */
a.business:hover,
a#nav-863:hover,
.section-business-and-partners a#nav-863 {
  background: #CE5C45;
  color: #fff !important;
  text-decoration: none !important;
}

/* line 3349, ../sass/_cgcc.scss */
a.faculty:hover,
a#nav-864:hover,
.section-faculty-and-staff a#nav-864 {
  background: #B9D249;
  color: #fff !important;
  text-decoration: none !important;
}

/* line 3357, ../sass/_cgcc.scss */
#home-bottom .column .inner {
  margin: 0 10px 0 10px;
}

/* line 3361, ../sass/_cgcc.scss */
#home-bottom .views-row .summary {
  display: none;
}

/* line 3365, ../sass/_cgcc.scss */
#home-bottom .view-id-news .views-row .teaser {
  margin-bottom: 1em;
}

/* line 3369, ../sass/_cgcc.scss */
#home-bottom .views-table {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
}

/* line 3375, ../sass/_cgcc.scss */
#home-bottom .views-table .date-display-single {
  font-size: 0.9em;
}

/* line 3379, ../sass/_cgcc.scss */
#home-bottom .views-field-field-date,
#home-bottom .views-field-created {
  padding-top: 0.1em;
  white-space: nowrap;
}

/* line 3385, ../sass/_cgcc.scss */
#home-bottom thead {
  display: none;
}

/* line 3389, ../sass/_cgcc.scss */
#home-bottom td, #home-bottom th {
  padding: 0 10px .6em 0;
  vertical-align: top;
}

/* line 3394, ../sass/_cgcc.scss */
#home-bottom tr.even, #home-bottom tr.odd {
  background-color: transparent;
  border-bottom: 0;
  padding: 0;
}

/* line 3400, ../sass/_cgcc.scss */
#home-bottom h5 {
  line-height: normal;
  margin: 0;
  padding: 0;
}

/* home page alert */
/* line 3408, ../sass/_cgcc.scss */
#home-alert {
  text-align: center;
  background: #cc0000;
}

/* line 3413, ../sass/_cgcc.scss */
#home-alert .inner {
  text-align: left;
  width: 960px;
  margin: 0 auto;
}

/* line 3419, ../sass/_cgcc.scss */
#alert-close {
  font-size: .9em;
  color: #fff;
  float: right;
  margin: 15px 5px 0 0;
}

/* line 3426, ../sass/_cgcc.scss */
#home-alert p {
  margin: 0;
  padding: 8px 60px 8px 0;
  color: #ffffff;
  font-family: 'museo-slab',serif;
  font-size: 1.4em;
  font-weight: 700;
}

/* line 3435, ../sass/_cgcc.scss */
#home-alert a {
  color: #fff;
}

/* layout */
/* line 3441, ../sass/_cgcc.scss */
#header-wrapper {
  background-color: #634278;
  background-color: #5A447A;
}

/* line 3445, ../sass/_cgcc.scss */
#top-wrapper {
  background-color: #F2F2F3;
  overflow: visible;
  background: #ffffff;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ4JSIgc3RvcC1jb2xvcj0iI2YyZjJmMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMmYyZjMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #ffffff 0%, #f2f2f3 48%, #f2f2f3 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(48%, #f2f2f3), color-stop(100%, #f2f2f3));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffffff 0%, #f2f2f3 48%, #f2f2f3 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffffff 0%, #f2f2f3 48%, #f2f2f3 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ffffff 0%, #f2f2f3 48%, #f2f2f3 100%);
  /* IE10+ */
  background: linear-gradient to bottom, #ffffff 0%, #f2f2f3 48%, #f2f2f3 100%;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f2f3',GradientType=0 );
  /* IE6-8 */
}

/* global footer */
/* line 3462, ../sass/_cgcc.scss */
#banner {
  padding: 25px 0 25px 0;
  min-height: 5em;
}

/* line 3467, ../sass/_cgcc.scss */
#banner .tweets {
  width: 660px;
}

/* line 3471, ../sass/_cgcc.scss */
#banner .latest-tweets {
  opacity: 0.5;
  -moz-opacity: 0.5;
  -webkit-opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 3478, ../sass/_cgcc.scss */
#banner:hover .latest-tweets {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
}

/* line 3485, ../sass/_cgcc.scss */
#banner .tweets img {
  float: left;
  padding: 0 10px 0 0;
}

/* line 3490, ../sass/_cgcc.scss */
#banner .latest-tweets {
  margin-left: 60px;
  margin-bottom: .8em;
}

/* line 3495, ../sass/_cgcc.scss */
#banner .latest-tweets * {
  color: #fff !important;
}

/* line 3500, ../sass/_cgcc.scss */
#banner .connect {
  float: right;
  text-align: center;
}

/* line 3505, ../sass/_cgcc.scss */
#home-bottom .last .connect {
  text-align: center;
}

/* line 3509, ../sass/_cgcc.scss */
#banner .connect img,
#home-bottom .last .connect img {
  padding: 0 3px 0 3px;
  height: 25px;
  width: 25px;
}

/* line 3516, ../sass/_cgcc.scss */
#banner h4,
#home-bottom .last .connect h4 {
  font-family: "museo-slab",serif;
  font-size: 1.3em;
  font-weight: 700;
  line-height: normal;
  margin: 15px 0 0 0;
  padding: 0 0 9px 0;
}

/* line 3527, ../sass/_cgcc.scss */
#banner .connect a {
  color: #fff;
  text-decoration: none;
}

/* line 3532, ../sass/_cgcc.scss */
#banner .connect a:hover {
  text-decoration: underline;
}

/* line 3536, ../sass/_cgcc.scss */
#footer h4 {
  font-weight: normal;
  line-height: 1em;
  margin: .3em 0 .3em 0;
}

/* line 3542, ../sass/_cgcc.scss */
#footer ul + h4,
#footer h4 + h4 {
  margin-top: .8em;
}

/* line 3547, ../sass/_cgcc.scss */
#footer p {
  line-height: normal;
  margin: 0;
}

/* line 3552, ../sass/_cgcc.scss */
#footer ul, #footer li {
  line-height: 1em;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* line 3558, ../sass/_cgcc.scss */
#footer a {
  text-decoration: none;
}

/* line 3562, ../sass/_cgcc.scss */
#footer a:hover {
  text-decoration: underline;
}

/* line 3566, ../sass/_cgcc.scss */
#footer .column {
  display: inline-block;
  margin-right: 25px;
  vertical-align: top;
}

/* line 3571, ../sass/_cgcc.scss */
#footer .column.column-5 {
  margin-right: 0;
}

/* line 3575, ../sass/_cgcc.scss */
#footer .column-1.a {
  border-right: 1px solid #ccc;
  padding-bottom: 4em;
}

/* line 3580, ../sass/_cgcc.scss */
#footer .column-1 li,
#footer .column-2 li {
  color: #999;
  padding: .35em 0 .35em 0;
}

/* line 3586, ../sass/_cgcc.scss */
#footer .column-2a li,
#footer .column-3 li,
#footer .column-4 li,
#footer .column-5 li {
  font-size: .9em;
  padding: .3em 0 .3em 0;
}

/* line 3594, ../sass/_cgcc.scss */
#footer .contact {
  padding-top: 30px;
}

/* line 3598, ../sass/_cgcc.scss */
#footer .contact p {
  font-size: .9em;
  padding: .4em 0 0 0;
}

/* line 3603, ../sass/_cgcc.scss */
#footer .copyright {
  font-size: .8em;
  padding: 20px 0 30px 0;
}

/* line 3608, ../sass/_cgcc.scss */
#footer .copyright span {
  color: #cccccc;
}

/* line 3612, ../sass/_cgcc.scss */
#block-webform-client-block-1425 {
  display: none;
  margin-top: -30px;
  padding-bottom: 30px;
}

/* line 3618, ../sass/_cgcc.scss */
#block-webform-client-block-1425 #webform-component-message {
  width: 600px;
}

/* line 3622, ../sass/_cgcc.scss */
#block-webform-client-block-1425 #webform-component-subject.webform-component {
  width: auto !important;
}

/* search */
/* line 3628, ../sass/_cgcc.scss */
ol.search-results {
  padding-left: 0;
}
/* line 3630, ../sass/_cgcc.scss */
ol.search-results .search-info {
  display: none;
}

/* Forms */
/* line 3639, ../sass/_cgcc.scss */
.key-required {
  color: #666666;
  float: right;
  font-size: 0.9em;
  font-weight: normal;
  margin: 15px 0 0 0;
}

/* line 3647, ../sass/_cgcc.scss */
.section-header + .key-required {
  margin-top: -3.2em;
}

/* node forms */
/* line 3652, ../sass/_cgcc.scss */
#field-phone-items,
#field-ext-items,
#edit-field-public-phone-0-value-wrapper,
#edit-field-public-ext-0-value-wrapper {
  display: inline-block;
  vertical-align: top;
}

/* line 3660, ../sass/_cgcc.scss */
#edit-field-staging-value-wrapper,
.page-node-add-course #edit-field-departments-value-11-wrapper,
.node-type-course #edit-field-departments-value-11-wrapper,
.page-node-add-course #edit-field-departments-value-12-wrapper,
.node-type-course #edit-field-departments-value-12-wrapper,
.page-node-add-course #edit-field-departments-value-13-wrapper,
.node-type-course #edit-field-departments-value-13-wrapper,
.page-node-add-course #edit-field-departments-value-14-wrapper,
.node-type-course #edit-field-departments-value-14-wrapper,
.page-node-add-course #edit-field-departments-value-15-wrapper,
.node-type-course #edit-field-departments-value-15-wrapper,
.page-node-add-course #edit-field-departments-value-16-wrapper,
.node-type-course #edit-field-departments-value-16-wrapper,
.page-node-add-course #edit-field-departments-value-17-wrapper,
.node-type-course #edit-field-departments-value-17-wrapper,
.page-node-add-course #edit-field-departments-value-18-wrapper,
.node-type-course #edit-field-departments-value-18-wrapper,
.page-node-add-course #edit-field-departments-value-19-wrapper,
.node-type-course #edit-field-departments-value-19-wrapper,
.page-node-add-course #edit-field-departments-value-20-wrapper,
.node-type-course #edit-field-departments-value-20-wrapper,
.page-node-add-course #edit-field-departments-value-21-wrapper,
.node-type-course #edit-field-departments-value-21-wrapper,
.page-node-add-course #edit-field-departments-value-22-wrapper,
.node-type-course #edit-field-departments-value-22-wrapper,
.page-node-add-course #edit-field-departments-value-23-wrapper,
.node-type-course #edit-field-departments-value-23-wrapper,
.page-node-add-course #edit-field-departments-value-24-wrapper,
.node-type-course #edit-field-departments-value-24-wrapper,
.page-node-add-course #edit-field-departments-value-25-wrapper,
.node-type-course #edit-field-departments-value-25-wrapper,
.page-node-add-course #edit-field-departments-value-26-wrapper,
.node-type-course #edit-field-departments-value-26-wrapper {
  display: none;
}

/* line 3699, ../sass/_cgcc.scss */
.form-managed-file input.form-submit {
  display: none;
}

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

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

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

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

  /* Hide sidebars and nav elements. */
  /* line 64, ../sass/_print.scss */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
