/*! normalize.css 2012-02-07T12:37 UTC - http://github.com/necolas/normalize.css */

/* =============================================================================
   HTML5 display definitions
   ========================================================================== */

/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
    display: block;
}

/*
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 */

audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

/*
 * Prevents modern browsers from displaying 'audio' without controls
 */

audio:not([controls]) {
    display: none;
}

/*
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */

[hidden] {
    display: none;
}


/* =============================================================================
   Base
   ========================================================================== */

/*
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */

html {
    font-size: 100%; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -ms-text-size-adjust: 100%; /* 2 */
}

/*
 * Addresses font-family inconsistency between 'textarea' and other form elements.
 */

html,
button,
input,
select,
textarea {
    font-family: sans-serif;
}

/*
 * Addresses margins handled incorrectly in IE6/7
 */

body {
    margin: 0;
}


/* =============================================================================
   Links
   ========================================================================== */

/*
 * Addresses outline displayed oddly in Chrome
 */

a:focus {
    outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test
 */

a:hover,
a:active {
    outline: 0;
}


/* =============================================================================
   Typography
   ========================================================================== */

/*
 * Addresses font sizes and margins set differently in IE6/7
 * Addresses font sizes within 'section' and 'article' in FF4+, Chrome, S5
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

h2 {
    font-size: 1.5em;
    margin: 0.83em 0;
}

h3 {
    font-size: 1.17em;
    margin: 1em 0;
}

h4 {
    font-size: 1em;
    margin: 1.33em 0;
}

h5 {
    font-size: 0.83em;
    margin: 1.67em 0;
}

h6 {
    font-size: 0.75em;
    margin: 2.33em 0;
}

/*
 * Addresses styling not present in IE7/8/9, S5, Chrome
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/*
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
*/

b,
strong {
    font-weight: bold;
}

blockquote {
    margin: 1em 40px;
}

/*
 * Addresses styling not present in S5, Chrome
 */

dfn {
    font-style: italic;
}

/*
 * Addresses styling not present in IE6/7/8/9
 */

mark {
    background: #ff0;
    color: #000;
}

/*
 * Addresses margins set differently in IE6/7
 */

p,
pre {
    margin: 1em 0;
}

/*
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */

pre,
code,
kbd,
samp {
    font-family: monospace, serif;
    _font-family: 'courier new', monospace;
    font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers
 */

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/*
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */

/* 1 */

q {
    quotes: none;
}

/* 2 */

q:before,
q:after {
    content: '';
    content: none;
}

small {
    font-size: 75%;
}

/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}


/* =============================================================================
   Lists
   ========================================================================== */

/*
 * Addresses margins set differently in IE6/7
 */

dl,
menu,
ol,
ul {
    margin: 1em 0;
}

dd {
    margin: 0 0 0 40px;
}

/*
 * Addresses paddings set differently in IE6/7
 */

menu,
ol,
ul {
    padding: 0 0 0 40px;
}

/*
 * Corrects list images handled incorrectly in IE7
 */

nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
}


/* =============================================================================
   Embedded content
   ========================================================================== */

/*
 * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */

img {
    border: 0; /* 1 */
    -ms-interpolation-mode: bicubic; /* 2 */
}

/*
 * Corrects overflow displayed oddly in IE9
 */

svg:not(:root) {
    overflow: hidden;
}


/* =============================================================================
   Figures
   ========================================================================== */

/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */

figure {
    margin: 0;
}


/* =============================================================================
   Forms
   ========================================================================== */

/*
 * Corrects margin displayed oddly in IE6/7
 */

form {
    margin: 0;
}

/*
 * Define consistent border, margin, and padding
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3 
 * 3. Corrects alignment displayed oddly in IE6/7
 */

legend {
    border: 0; /* 1 */
    padding: 0;
    white-space: normal; /* 2 */
    *margin-left: -7px; /* 3 */
}

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */

button,
input,
select,
textarea {
    font-size: 100%; /* 1 */
    margin: 0; /* 2 */
    vertical-align: baseline; /* 3 */
    *vertical-align: middle; /* 3 */
}

/*
 * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
 */

button,
input {
    line-height: normal; /* 1 */
}

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *    Known issue: inner spacing remains in IE6
 */

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer; /* 1 */
    -webkit-appearance: button; /* 2 */
    *overflow: visible;  /* 3 */
}

/*
 * Re-set default cursor for disabled elements
 */

button[disabled],
input[disabled] {
    cursor: default;
}

/*
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 * 3. Removes excess padding in IE7
      Known issue: excess padding remains in IE6
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
    *height: 13px; /* 3 */
    *width: 13px; /* 3 */
}

/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in S5, Chrome on OS X
 */

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

/*
 * Removes inner padding and border in FF3+
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */

textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}


/* =============================================================================
   Tables
   ========================================================================== */

/*
 * Remove most spacing between table cells
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*! Flickity v2.0.5
http://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
          tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: hsla(0, 0%, 100%, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flickity-prev-next-button:hover { background: white; }

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F;
}

.flickity-prev-next-button:active {
  opacity: 0.6;
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-prev-next-button .arrow {
  fill: #333;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

@charset "UTF-8";
/* http://paulirish.com/2012/box-sizing-border-box-ftw/ */
/*$light-font:'Gill Sans W01 Light';
$regular-font:'Gill Sans W01 Book';
$medium-font:'Gill Sans W01 Medium';
$bold-font:'Gill Sans W01 Bold';
*/
/* line 1, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/style.scss */
h1, h3, h4, h5, h6 {
  line-height: 1.1em;
}

/* line 5, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/style.scss */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/* line 9, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/style.scss */
strong, b {
  font-family: "Helvetica", "Arial", "Sans-Serif";
  font-weight: bold;
  color: #333;
}

/* line 13, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/style.scss */
h2 strong {
  font-family: "Helvetica", "Arial", "Sans-Serif";
  color: #545454;
}

/* line 18, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/style.scss */
a {
  color: #004F8C;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
/* line 3, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/_base.scss */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
/* line 21, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/_base.scss */
.hamburger:hover {
  opacity: 1;
}

/* line 31, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/_base.scss */
.hamburger-box {
  width: 40px;
  height: 21px;
  display: inline-block;
  position: relative;
}

/* line 38, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/_base.scss */
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}
/* line 43, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/_base.scss */
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 3px;
  background-color: #004F8C;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
/* line 56, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/_base.scss */
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
/* line 62, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/_base.scss */
.hamburger-inner::before {
  top: -9px;
}
/* line 66, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/_base.scss */
.hamburger-inner::after {
  bottom: -9px;
}

/*
 * 3DX
 */
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dx.scss */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}
/* line 10, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dx.scss */
.hamburger--3dx .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
/* line 14, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dx.scss */
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
/* line 21, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dx.scss */
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg);
}
/* line 25, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dx.scss */
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
/* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dx.scss */
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dx-r.scss */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}
/* line 10, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dx-r.scss */
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
/* line 14, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dx-r.scss */
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
/* line 21, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dx-r.scss */
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg);
}
/* line 25, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dx-r.scss */
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
/* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dx-r.scss */
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dy.scss */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}
/* line 10, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dy.scss */
.hamburger--3dy .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
/* line 14, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dy.scss */
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
/* line 21, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dy.scss */
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg);
}
/* line 25, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dy.scss */
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
/* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dy.scss */
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dy-r.scss */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}
/* line 10, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dy-r.scss */
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
/* line 14, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dy-r.scss */
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
/* line 21, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dy-r.scss */
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg);
}
/* line 25, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dy-r.scss */
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
/* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_3dy-r.scss */
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
/* line 7, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_arrow.scss */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
/* line 11, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_arrow.scss */
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
/* line 7, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_arrow-r.scss */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
/* line 11, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_arrow-r.scss */
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
/* line 7, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_arrowalt.scss */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
/* line 12, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_arrowalt.scss */
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
/* line 20, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_arrowalt.scss */
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
/* line 27, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_arrowalt.scss */
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
/* line 7, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_arrowalt-r.scss */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
/* line 12, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_arrowalt-r.scss */
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
/* line 20, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_arrowalt-r.scss */
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
/* line 27, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_arrowalt-r.scss */
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Boring
 */
/* line 7, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_boring.scss */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
/* line 15, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_boring.scss */
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
/* line 18, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_boring.scss */
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
/* line 23, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_boring.scss */
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_collapse.scss */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 13, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_collapse.scss */
.hamburger--collapse .hamburger-inner::after {
  top: -18px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
/* line 19, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_collapse.scss */
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_collapse.scss */
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* line 31, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_collapse.scss */
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
}
/* line 38, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_collapse.scss */
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_collapse-r.scss */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 13, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_collapse-r.scss */
.hamburger--collapse-r .hamburger-inner::after {
  top: -18px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
/* line 19, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_collapse-r.scss */
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_collapse-r.scss */
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -9px, 0) rotate(45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* line 31, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_collapse-r.scss */
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
}
/* line 38, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_collapse-r.scss */
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_elastic.scss */
.hamburger--elastic .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/* line 11, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_elastic.scss */
.hamburger--elastic .hamburger-inner::before {
  top: 9px;
  transition: opacity 0.15s 0.4s ease;
}
/* line 16, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_elastic.scss */
.hamburger--elastic .hamburger-inner::after {
  top: 18px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/* line 23, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_elastic.scss */
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 0) rotate(135deg);
  transition-delay: 0.1s;
}
/* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_elastic.scss */
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
/* line 34, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_elastic.scss */
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -18px, 0) rotate(-270deg);
  transition-delay: 0.1s;
}

/*
 * Elastic Reverse
 */
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_elastic-r.scss */
.hamburger--elastic-r .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/* line 11, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_elastic-r.scss */
.hamburger--elastic-r .hamburger-inner::before {
  top: 9px;
  transition: opacity 0.15s 0.4s ease;
}
/* line 16, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_elastic-r.scss */
.hamburger--elastic-r .hamburger-inner::after {
  top: 18px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/* line 23, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_elastic-r.scss */
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 0) rotate(-135deg);
  transition-delay: 0.1s;
}
/* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_elastic-r.scss */
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
/* line 34, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_elastic-r.scss */
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -18px, 0) rotate(270deg);
  transition-delay: 0.1s;
}

/*
 * Emphatic
 */
/* line 5, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_emphatic.scss */
.hamburger--emphatic {
  overflow: hidden;
}
/* line 8, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_emphatic.scss */
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.2s 0.25s ease-in;
}
/* line 11, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_emphatic.scss */
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in;
}
/* line 18, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_emphatic.scss */
.hamburger--emphatic .hamburger-inner::after {
  top: 9px;
  right: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in;
}
/* line 28, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_emphatic.scss */
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}
/* line 33, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_emphatic.scss */
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}
/* line 42, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_emphatic.scss */
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
/* line 5, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_emphatic-r.scss */
.hamburger--emphatic-r {
  overflow: hidden;
}
/* line 8, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_emphatic-r.scss */
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.2s 0.25s ease-in;
}
/* line 11, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_emphatic-r.scss */
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in;
}
/* line 18, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_emphatic-r.scss */
.hamburger--emphatic-r .hamburger-inner::after {
  top: 9px;
  right: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in;
}
/* line 28, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_emphatic-r.scss */
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}
/* line 33, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_emphatic-r.scss */
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}
/* line 42, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_emphatic-r.scss */
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Slider
 */
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_slider.scss */
.hamburger--slider .hamburger-inner {
  top: 1.5px;
}
/* line 9, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_slider.scss */
.hamburger--slider .hamburger-inner::before {
  top: 9px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.2s;
}
/* line 16, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_slider.scss */
.hamburger--slider .hamburger-inner::after {
  top: 18px;
}
/* line 22, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_slider.scss */
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
/* line 27, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_slider.scss */
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}
/* line 32, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_slider.scss */
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -18px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_slider-r.scss */
.hamburger--slider-r .hamburger-inner {
  top: 1.5px;
}
/* line 9, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_slider-r.scss */
.hamburger--slider-r .hamburger-inner::before {
  top: 9px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.2s;
}
/* line 16, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_slider-r.scss */
.hamburger--slider-r .hamburger-inner::after {
  top: 18px;
}
/* line 22, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_slider-r.scss */
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 0) rotate(-45deg);
}
/* line 27, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_slider-r.scss */
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0;
}
/* line 32, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_slider-r.scss */
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -18px, 0) rotate(90deg);
}

/*
 * Spring
 */
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spring.scss */
.hamburger--spring .hamburger-inner {
  top: 1.5px;
  transition: background-color 0s 0.15s linear;
}
/* line 10, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spring.scss */
.hamburger--spring .hamburger-inner::before {
  top: 9px;
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 16, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spring.scss */
.hamburger--spring .hamburger-inner::after {
  top: 18px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 24, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spring.scss */
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.32s;
  background-color: transparent;
}
/* line 28, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spring.scss */
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
/* line 35, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spring.scss */
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 9px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spring-r.scss */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 13, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spring-r.scss */
.hamburger--spring-r .hamburger-inner::after {
  top: -18px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
/* line 19, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spring-r.scss */
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spring-r.scss */
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* line 31, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spring-r.scss */
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.32s linear;
}
/* line 38, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spring-r.scss */
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_stand.scss */
.hamburger--stand .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear;
}
/* line 10, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_stand.scss */
.hamburger--stand .hamburger-inner::before {
  transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 15, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_stand.scss */
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 22, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_stand.scss */
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear;
}
/* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_stand.scss */
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* line 36, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_stand.scss */
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_stand-r.scss */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear;
}
/* line 10, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_stand-r.scss */
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 15, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_stand-r.scss */
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 22, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_stand-r.scss */
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear;
}
/* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_stand-r.scss */
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* line 36, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_stand-r.scss */
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin
 */
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spin.scss */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 10, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spin.scss */
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}
/* line 15, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spin.scss */
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 22, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spin.scss */
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* line 27, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spin.scss */
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}
/* line 34, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spin.scss */
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spin-r.scss */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 10, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spin-r.scss */
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}
/* line 15, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spin-r.scss */
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 22, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spin-r.scss */
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* line 27, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spin-r.scss */
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}
/* line 34, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_spin-r.scss */
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_squeeze.scss */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 10, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_squeeze.scss */
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}
/* line 15, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_squeeze.scss */
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 22, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_squeeze.scss */
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* line 27, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_squeeze.scss */
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}
/* line 34, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_squeeze.scss */
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_vortex.scss */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
/* line 10, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_vortex.scss */
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
/* line 17, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_vortex.scss */
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
/* line 21, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_vortex.scss */
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
/* line 27, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_vortex.scss */
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
/* line 31, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_vortex.scss */
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
/* line 36, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_vortex.scss */
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
/* line 41, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_vortex.scss */
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_vortex-r.scss */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
/* line 10, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_vortex-r.scss */
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
/* line 17, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_vortex-r.scss */
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
/* line 21, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_vortex-r.scss */
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
/* line 27, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_vortex-r.scss */
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
/* line 31, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_vortex-r.scss */
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
/* line 36, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_vortex-r.scss */
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
/* line 41, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/lib/hamburgers/types/_vortex-r.scss */
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/* line 1, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  *behavior: url("/static/c/lib/boxsizing.htc");
  text-rendering: optimizeLegibility;
}

/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
img {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  *behavior: url("/static/c/lib/boxsizing.htc");
}

/* line 7, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
a {
  text-decoration: none;
}

/* line 10, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body {
  color: #545454;
  font-family: "Helvetica", "Arial", "Sans-Serif";
  font-size: 10pt;
  font-weight: normal;
  background: #EDEDED;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  /* line 10, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body {
    background: #FFFFFF;
    font-size: 9pt;
    line-height: 1.4;
  }
}
/* line 24, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body > .wrapper {
  background: #FFFFFF;
}
@media screen and (min-width: 769px) {
  /* line 10, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body {
    margin: 0;
    padding: 0;
  }
  /* line 32, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body .wrapper {
    max-width: 1100px;
    min-width: 280px;
    padding: 0 0%;
    margin: 0 auto;
    margin: 0 auto;
    padding: 0 75px;
  }
}
@media screen and (max-width: 768px) {
  /* line 10, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body {
    margin: 0;
    padding: 0 4.16667%;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.menu-active > .wrapper > .content, body.menu-active > .wrapper > footer {
    display: none;
  }
}

/* line 53, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
.image {
  position: relative;
}
/* line 56, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
.image img {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  top: 0;
}

@media screen and (min-width: 769px) {
  /* line 65, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  .no-desktop {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  /* line 71, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  .no-mobile {
    display: none !important;
  }
}

/* line 78, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
.pagination a {
  line-height: 45px;
  font-size: 0.9em;
  background: #004F8C;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (min-width: 769px) {
  /* line 77, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  .pagination {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  .pagination:before, .pagination:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  .pagination:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  .pagination {
    zoom: 1;
  }
  /* line 88, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  .pagination a {
    width: 110px;
    display: block;
  }
  /* line 92, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  .pagination a.prev {
    float: left;
  }
  /* line 95, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  .pagination a.next {
    float: right;
  }
}
@media screen and (max-width: 768px) {
  /* line 77, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  .pagination {
    margin: 0 0 25px;
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  .pagination:before, .pagination:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  .pagination:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  .pagination {
    zoom: 1;
  }
  /* line 104, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  .pagination a {
    float: left;
    display: inline;
    width: 16.66667%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
  }
  /* line 108, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  .pagination a.prev {
    float: left;
  }
  /* line 111, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  .pagination a.next {
    float: right;
  }
}

/* line 118, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
.createsend-wrap {
  opacity: 0.6;
}
/* line 120, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
.createsend-wrap:hover {
  opacity: 1;
}

/* line 137, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
.st_facebook_custom,
.st_twitter_custom,
.st_linkedin_custom,
.st_email_custom {
  background: url(../i/sharethis_icons.png) no-repeat;
  background-size: auto 35px;
  display: inline-block;
  height: 35px;
  width: 35px;
  cursor: pointer;
  margin: 0 10px 0 0;
}

/* line 149, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
.st_facebook_custom {
  background-position: -52.5px top;
}

/* line 152, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
.st_twitter_custom {
  background-position: -105px top;
}

/* line 155, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
.st_linkedin_custom {
  background-position: -157.5px top;
}

/* line 158, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
.st_email_custom {
  background-position: left top;
}

/* line 163, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
section.content {
  /* For modern browsers */
  /* For IE 6/7 (trigger hasLayout) */
}
/* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
section.content:before, section.content:after {
  content: "";
  display: table;
}
/* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
section.content:after {
  clear: both;
}
/* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
section.content {
  zoom: 1;
}
/* line 166, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
section.content > section.contact {
  clear: both;
  position: relative;
  height: 100px;
  margin-bottom: 150px;
  border-top: none !important;
}
/* line 173, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
section.content > section.contact > h1 {
  float: left;
  display: inline;
  width: 8.33333%;
  margin-left: 0%;
  margin-right: 0%;
  position: absolute;
  left: 0;
  top: 0;
  border-top: 3px solid #004F8C;
  border-bottom: none !important;
  padding-top: 20px;
  font-size: 15pt;
  text-transform: uppercase;
  margin-top: 0;
  color: #004F8C;
}
/* line 188, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
section.content > section.contact > div {
  /* For modern browsers */
  /* For IE 6/7 (trigger hasLayout) */
  float: left;
  display: inline;
  width: 41.92708%;
  margin-left: 0%;
  margin-right: 0%;
  margin-left: 165px;
  border-top: 3px solid #004F8C;
}
/* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
section.content > section.contact > div:before, section.content > section.contact > div:after {
  content: "";
  display: table;
}
/* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
section.content > section.contact > div:after {
  clear: both;
}
/* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
section.content > section.contact > div {
  zoom: 1;
}
/* line 195, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
section.content > section.contact > div div {
  width: 200px;
  float: left;
}
/* line 199, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
section.content > section.contact > div div h2 {
  font-size: 1em;
  margin: 25px 0 5px 0;
  color: #888;
}
/* line 205, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
section.content > section.contact > div div.omega {
  padding-top: 45px;
  width: 150px;
}

/* Major section styles
 */
/* line 220, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.community header#site-wide nav.main li.community {
  border-bottom: 3px solid #004F8C;
  margin-bottom: -3px !important;
}
@media screen and (max-width: 768px) {
  /* line 220, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.community header#site-wide nav.main li.community {
    border-bottom: none;
    margin-bottom: inherit;
  }
}

/* line 220, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.research header#site-wide nav.main li.research {
  border-bottom: 3px solid #004F8C;
  margin-bottom: -3px !important;
}
@media screen and (max-width: 768px) {
  /* line 220, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.research header#site-wide nav.main li.research {
    border-bottom: none;
    margin-bottom: inherit;
  }
}

/* line 220, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.contact header#site-wide nav.main li.contact {
  border-bottom: 3px solid #004F8C;
  margin-bottom: -3px !important;
}
@media screen and (max-width: 768px) {
  /* line 220, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.contact header#site-wide nav.main li.contact {
    border-bottom: none;
    margin-bottom: inherit;
  }
}

/* line 220, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.foundation header#site-wide nav.main li.foundation {
  border-bottom: 3px solid #004F8C;
  margin-bottom: -3px !important;
}
@media screen and (max-width: 768px) {
  /* line 220, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.foundation header#site-wide nav.main li.foundation {
    border-bottom: none;
    margin-bottom: inherit;
  }
}

/* line 233, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.analytical header#site-wide nav.main li.science, body.algae-tech header#site-wide nav.main li.science, body.aquaculture header#site-wide nav.main li.science, body.biosecurity header#site-wide nav.main li.science, body.coastal header#site-wide nav.main li.science, body.offshore header#site-wide nav.main li.science {
  border-bottom: 3px solid #004F8C;
  margin-bottom: -3px !important;
}
@media screen and (max-width: 768px) {
  /* line 233, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.analytical header#site-wide nav.main li.science, body.algae-tech header#site-wide nav.main li.science, body.aquaculture header#site-wide nav.main li.science, body.biosecurity header#site-wide nav.main li.science, body.coastal header#site-wide nav.main li.science, body.offshore header#site-wide nav.main li.science {
    border-bottom: none;
    margin-bottom: inherit;
  }
}

/* line 431, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.research section.content > h1 {
  border-bottom: 5px solid #004F8C;
  color: #004F8C;
}
/* line 435, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.research section.content header {
  background: #fff;
}
/* line 438, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.research section.content header:before {
  border-bottom: 3px solid #004F8C;
}
/* line 441, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.research section.content header h1 {
  font-size: 2.5em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 441, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content header h1 {
    font-size: 22px;
    line-height: 1.4;
    background: transparent;
    color: #004F8C;
    text-transform: capitalize;
  }
}
@media screen and (max-width: 768px) {
  /* line 455, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns p {
    font-size: 14px;
    line-height: 1.25;
  }
  /* line 460, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns p a strong {
    color: #004F8C;
  }
}
/* line 467, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.research section.content .columns nav > a:hover {
  background: url("../i/right-arrow.png") no-repeat 0 1px;
}
@media screen and (max-width: 768px) {
  /* line 467, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns nav > a:hover {
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
  }
}
@media screen and (max-width: 768px) {
  /* line 475, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns nav a {
    font-size: 14px;
    line-height: 1.25;
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
  }
}
/* line 481, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.research section.content .columns nav a.current {
  color: #666;
}
/* line 485, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.research section.content .columns nav ul {
  list-style: none;
}
/* line 489, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.research section.content .columns nav ul li:before {
  font-weight: bold;
  font-size: 0.8em;
}
/* line 496, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.research section.content .columns .support {
  font-size: .9em;
}
@media screen and (max-width: 768px) {
  /* line 496, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .support {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 503, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.research section.content .columns .support h1 {
  font-size: 1em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 503, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .support h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 513, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.research section.content .columns section footer a {
  background: #004F8C;
  color: #FFFFFF;
  line-height: 42px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 513, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns section footer a {
    font-size: 18px;
    line-height: 1.25;
  }
}
@media screen and (min-width: 769px) {
  /* line 526, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .masthead {
    position: relative;
    margin-bottom: 50px;
  }
  /* line 530, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .masthead header {
    width: 79.16667%;
    margin-left: 0%;
    margin-right: 0%;
    z-index: 100;
    height: 120px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 18.75%;
  }
  /* line 540, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .masthead header:before {
    width: 23.68421%;
    margin-left: 0%;
    margin-right: 0%;
    content: ' ';
    display: block;
    position: absolute;
    left: -23.68421%;
    bottom: 0;
  }
  /* line 548, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .masthead header h1 {
    margin: 40px 3.94737%;
  }
  /* line 553, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    position: relative;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.research section.content .columns:before, body.research section.content .columns:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.research section.content .columns:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.research section.content .columns {
    zoom: 1;
  }
  /* line 557, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns nav {
    float: left;
    display: inline;
    width: 17.70833%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 4.16667%;
  }
  /* line 561, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns nav > span.open {
    display: none;
  }
  /* line 564, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns nav > a {
    display: block;
    margin-left: -20px;
    padding-left: 20px;
    padding-bottom: 8px;
  }
  /* line 570, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns nav ul {
    margin: 0;
    padding: 0;
  }
  /* line 574, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns nav ul li {
    padding: 0 0 5px 12px;
  }
  /* line 577, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns nav ul li:before {
    display: inline-block;
    content: '>';
    margin: 0 5px 0 0;
  }
  /* line 585, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .support {
    float: left;
    display: inline;
    width: 18.75%;
    margin-left: 0%;
    margin-right: 0%;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  /* line 591, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns section footer a {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  /* line 596, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .intro {
    float: left;
    display: inline;
    width: 45.83333%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
    margin-right: 4.16667%;
  }
  /* line 601, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .intro .section-text, body.research section.content .columns .intro .section-image, body.research section.content .columns .intro .section-video {
    margin-bottom: 20px;
  }
  /* line 604, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .intro .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .intro .section-video.youtube, body.research section.content .columns .intro .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .intro .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .intro .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .intro .section-video .video-wrap .video-container .video-embed, body.research section.content .columns .intro .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .intro .section-video .caption {
    font-size: 0.8em;
  }
  /* line 608, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .right {
    float: left;
    display: inline;
    width: 27.08333%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
  }
  /* line 613, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content > h1 {
    padding: 5px 0;
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  /* line 619, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .masthead {
    margin: 0 0 15px;
    overflow: hidden;
  }
  /* line 624, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .masthead header h1, body.research section.content .masthead header h2 {
    margin: 0;
  }
  /* line 627, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .masthead header h1 {
    padding-right: 8.33333%;
  }
  /* line 631, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .masthead .image {
    margin: 0 0 10px;
  }
  /* line 635, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns {
    padding: 0 0 30px;
  }
  /* line 638, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns nav {
    position: relative;
    margin: 0 0 15px;
    padding: 45px 0 0;
  }
  /* line 644, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns nav.menu-active a {
    display: block;
  }
  /* line 648, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns nav:after {
    position: absolute;
    top: 10px;
    left: 10px;
    content: 'Menu';
    font-size: 1.5em;
    z-index: 11;
  }
  /* line 656, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns nav > span.open {
    background: #EDEDED;
    display: block;
    cursor: pointer;
    text-align: right;
    position: absolute;
    padding: 10px;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    font-size: 1.5em;
  }
  /* line 669, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns nav a {
    display: none;
    margin: 10px 0 0;
    padding-left: 20px;
  }
  /* line 675, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns p {
    margin: 0 0 10px;
  }
  /* line 678, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns section footer a {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 25px 0;
  }
  /* line 684, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .image {
    margin: 0 0 10px;
  }
  /* line 688, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .intro .section-text, body.research section.content .columns .intro .section-image, body.research section.content .columns .intro .section-video {
    margin-bottom: 15px;
  }
  /* line 691, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .intro .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .intro .section-video.youtube, body.research section.content .columns .intro .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .intro .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .intro .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .intro .section-video .video-wrap .video-container .video-embed, body.research section.content .columns .intro .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content .columns .intro .section-video .caption {
    font-size: 0.8em;
  }
}
/* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.research section.content section.summary.news article h1 {
  font-size: 1.1em;
}
@media screen and (max-width: 768px) {
  /* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary.news article h1 {
    font-size: 16px;
    line-height: 1.25;
  }
}
/* line 41, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.research section.content section.summary.research article h1 {
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  /* line 41, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary.research article h1 {
    font-size: 16px;
    line-height: 1.25;
  }
}
/* line 51, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.research section.content section.summary > h1 {
  font-size: 1.5em;
  line-height: 2;
  text-transform: uppercase;
  border-bottom: 5px solid #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 51, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary > h1 {
    border-top: 2px solid #004F8C;
    border-bottom: none;
    font-size: 22px;
    line-height: 1.4;
    background: #fff;
  }
}
/* line 65, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.research section.content section.summary > .more {
  line-height: 45px;
  font-size: .9em;
  background: #004F8C;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 65, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary > .more {
    font-size: 18px;
    line-height: 1.25;
  }
}
/* line 77, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.research section.content section.summary article {
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  /* line 77, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary article {
    background-color: transparent;
  }
}
/* line 84, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.research section.content section.summary article h1 {
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 84, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary article h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 92, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.research section.content section.summary article p {
  font-size: .9em;
  color: #545454;
}
@media screen and (max-width: 768px) {
  /* line 92, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary article p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.25;
    color: #484848;
  }
}
/* line 103, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.research section.content section.summary article .more {
  color: #004F8C;
  font-size: .9em;
  line-height: 26px;
  background: url("../i/right-arrow-grey.png") no-repeat 10px 15px;
  border-top: 1px solid #F5F5F5;
}
@media screen and (max-width: 768px) {
  /* line 103, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary article .more {
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
    border-top: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.25;
  }
}
@media screen and (min-width: 769px) {
  /* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    padding-bottom: 30px;
    margin: 0 -6px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.research section.content section.summary:before, body.research section.content section.summary:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.research section.content section.summary:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.research section.content section.summary {
    zoom: 1;
  }
  /* line 125, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary.news article {
    float: left;
    display: inline;
    width: 24.0625%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
  }
  /* line 129, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary.news article:nth-child(3n+1) {
    margin-right: 1.25%;
  }
  /* line 132, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary.news article:nth-child(4n+1) {
    margin-right: 0;
  }
  /* line 138, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary.research article {
    float: left;
    display: inline;
    width: 32.5%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
  }
  /* line 142, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary.research article:nth-child(3n+1) {
    margin-right: 0;
  }
  /* line 148, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary > h1 {
    margin: 20px 6px 12px;
  }
  /* line 151, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary > .more {
    float: left;
    display: inline;
    width: 6.25%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
    clear: left;
    float: right;
    margin-right: 6px;
    display: none;
  }
  /* line 162, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary article {
    position: relative;
    float: left;
    display: inline;
    width: 32.5%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
    height: 370px;
    padding: 12px;
  }
  /* line 169, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary article:nth-child(3n+1) {
    margin-right: 0;
  }
  /* line 173, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary article .more {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding-left: 35px;
    padding-top: 10px;
    margin: 10px 0 10px -10px;
  }
}
@media screen and (max-width: 768px) {
  /* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    margin: 0 0 15px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.research section.content section.summary:before, body.research section.content section.summary:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.research section.content section.summary:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.research section.content section.summary {
    zoom: 1;
  }
  /* line 188, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary > .more {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
    margin: 10px 0;
    padding: 15px 0;
  }
  /* line 194, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary > h1 {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    margin: 0 0 12px;
    padding: 8px 0 0;
  }
  /* line 200, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary.research article {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    min-height: 0;
    margin: 0 0 50px;
  }
  /* line 206, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary article {
    float: left;
    display: inline;
    width: 47.91667%;
    margin-left: 0%;
    margin-right: 0%;
    min-height: 385px;
    margin: 0 0 15px;
  }
  /* line 211, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary article:nth-child(2n+2) {
    margin-right: 4.16667%;
  }
  /* line 214, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary article h1 {
    margin: 0 0 8px;
  }
  /* line 217, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary article p {
    margin: 0 0 5px;
  }
  /* line 220, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary article .image {
    margin: 0 0 12px;
  }
  /* line 223, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.research section.content section.summary article .more {
    display: block;
    margin: 15px 0 0;
    padding-left: 20px;
  }
}
/* line 249, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.research section.content section.research article {
  float: left;
  display: inline;
  width: 12.5%;
  margin-left: 0%;
  margin-right: 0%;
  margin: 0 6px 0 7px;
  height: 430px;
}

/* line 755, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section.page section.content h1,
body.aquaculture.page section.content h1 {
  text-transform: uppercase;
  font-size: 1.5em;
}
/* line 759, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section.page section.content > nav,
body.aquaculture.page section.content > nav {
  border-top: 3px solid #004F8C;
}
/* line 762, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section.page section.content > nav h1, body.section.page section.content > nav h1 > a,
body.aquaculture.page section.content > nav h1,
body.aquaculture.page section.content > nav h1 > a {
  line-height: 1.1;
  color: #004F8C;
}
/* line 766, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section.page section.content > nav a,
body.aquaculture.page section.content > nav a {
  text-transform: uppercase;
  line-height: 1.1em;
  font-size: .9em;
  color: #545454;
}
@media screen and (max-width: 768px) {
  /* line 766, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section.page section.content > nav a,
  body.aquaculture.page section.content > nav a {
    color: #484848;
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 777, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section.page section.content > nav a.current,
body.aquaculture.page section.content > nav a.current {
  background: url("../i/right-arrow-grey.png") no-repeat 10px 16px;
}
/* line 780, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section.page section.content > nav a.current.singular,
body.aquaculture.page section.content > nav a.current.singular {
  background: url("../i/right-arrow-grey.png") no-repeat 10px 9px;
}
/* line 785, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section.page section.content > section,
body.aquaculture.page section.content > section {
  border-top: 3px solid #004F8C;
}
/* line 788, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section.page section.content > section > h1,
body.aquaculture.page section.content > section > h1 {
  border-bottom: 3px solid #004F8C;
  line-height: 60px;
  color: #004F8C;
}
/* line 795, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section.page section.content > section article .captioned img,
body.aquaculture.page section.content > section article .captioned img {
  box-sizing: content-box;
  border: 10px solid #EDEDED;
}
/* line 800, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section.page section.content > section article .captioned a, body.section.page section.content > section article .captioned span,
body.aquaculture.page section.content > section article .captioned a,
body.aquaculture.page section.content > section article .captioned span {
  text-align: right;
  line-height: 1.1;
}
/* line 805, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section.page section.content > section article .captioned a,
body.aquaculture.page section.content > section article .captioned a {
  background: url("../i/right-arrow-large-grey.png") no-repeat 5px 2px;
  color: #545454;
  text-align: left;
}
@media screen and (max-width: 768px) {
  /* line 805, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section.page section.content > section article .captioned a,
  body.aquaculture.page section.content > section article .captioned a {
    font-size: 14px;
    line-height: 1.25;
    color: #484848;
  }
}
/* line 817, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section.page section.content > section article div.date,
body.aquaculture.page section.content > section article div.date {
  font-size: 0.9em;
  color: #999;
}
@media screen and (min-width: 769px) {
  /* line 258, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.section.page section.content,
  body.aquaculture.page section.content {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    margin-bottom: 10px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section.page section.content:before, body.section.page section.content:after,
  body.aquaculture.page section.content:before,
  body.aquaculture.page section.content:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section.page section.content:after,
  body.aquaculture.page section.content:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section.page section.content,
  body.aquaculture.page section.content {
    zoom: 1;
  }
  /* line 827, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section.page section.content > nav,
  body.aquaculture.page section.content > nav {
    float: left;
    display: inline;
    width: 8.33333%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 15px;
  }
  /* line 831, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section.page section.content > nav h1, body.section.page section.content > nav h1 > a,
  body.aquaculture.page section.content > nav h1,
  body.aquaculture.page section.content > nav h1 > a {
    margin: 0 0 3px;
    padding: 15px 0 10px;
  }
  /* line 835, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section.page section.content > nav a,
  body.aquaculture.page section.content > nav a {
    float: left;
    display: inline;
    width: 8.33333%;
    margin-left: 0%;
    margin-right: 0%;
    margin-left: -2.08333%;
    display: block;
    padding: 10px 0 10px 40px;
  }
  /* line 844, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section.page section.content > section,
  body.aquaculture.page section.content > section {
    float: left;
    display: inline;
    width: 41.92708%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: -10px;
  }
  /* line 848, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section.page section.content > section > h1,
  body.aquaculture.page section.content > section > h1 {
    margin: 0 0 10px;
    padding: 0;
  }
  /* line 852, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section.page section.content > section article,
  body.aquaculture.page section.content > section article {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    padding-bottom: 55px;
    margin-bottom: 10px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section.page section.content > section article:before, body.section.page section.content > section article:after,
  body.aquaculture.page section.content > section article:before,
  body.aquaculture.page section.content > section article:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section.page section.content > section article:after,
  body.aquaculture.page section.content > section article:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section.page section.content > section article,
  body.aquaculture.page section.content > section article {
    zoom: 1;
  }
  /* line 858, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section.page section.content > section article .captioned,
  body.aquaculture.page section.content > section article .captioned {
    float: right;
    width: 305px;
  }
  /* line 862, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section.page section.content > section article .captioned img,
  body.aquaculture.page section.content > section article .captioned img {
    display: block;
  }
  /* line 866, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section.page section.content > section article .captioned a, body.section.page section.content > section article .captioned span,
  body.aquaculture.page section.content > section article .captioned a,
  body.aquaculture.page section.content > section article .captioned span {
    float: left;
    display: inline;
    width: 10.41667%;
    margin-left: 0%;
    margin-right: 0%;
    float: right;
    margin: 10px 0;
    padding-left: 40px;
  }
  /* line 873, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section.page section.content > section article div.date,
  body.aquaculture.page section.content > section article div.date {
    margin: 0 0 -10px 0;
  }
  /* line 876, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section.page section.content > section article .content,
  body.aquaculture.page section.content > section article .content {
    float: left;
    display: inline;
    width: 22.91667%;
    margin-left: 0%;
    margin-right: 0%;
  }
}
/* line 262, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.section.page section.content nav h1 > a,
body.aquaculture.page section.content nav h1 > a {
  padding-top: 5px;
  margin: 0;
}

/* line 431, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.page.generic section.content > h1 {
  border-bottom: 5px solid #004F8C;
  color: #004F8C;
}
/* line 435, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.page.generic section.content header {
  background: #fff;
}
/* line 438, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.page.generic section.content header:before {
  border-bottom: 3px solid #004F8C;
}
/* line 441, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.page.generic section.content header h1 {
  font-size: 2.5em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 441, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content header h1 {
    font-size: 22px;
    line-height: 1.4;
    background: transparent;
    color: #004F8C;
    text-transform: capitalize;
  }
}
@media screen and (max-width: 768px) {
  /* line 455, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns p {
    font-size: 14px;
    line-height: 1.25;
  }
  /* line 460, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns p a strong {
    color: #004F8C;
  }
}
/* line 467, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.page.generic section.content .columns nav > a:hover {
  background: url("../i/right-arrow.png") no-repeat 0 1px;
}
@media screen and (max-width: 768px) {
  /* line 467, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns nav > a:hover {
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
  }
}
@media screen and (max-width: 768px) {
  /* line 475, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns nav a {
    font-size: 14px;
    line-height: 1.25;
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
  }
}
/* line 481, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.page.generic section.content .columns nav a.current {
  color: #666;
}
/* line 485, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.page.generic section.content .columns nav ul {
  list-style: none;
}
/* line 489, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.page.generic section.content .columns nav ul li:before {
  font-weight: bold;
  font-size: 0.8em;
}
/* line 496, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.page.generic section.content .columns .support {
  font-size: .9em;
}
@media screen and (max-width: 768px) {
  /* line 496, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .support {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 503, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.page.generic section.content .columns .support h1 {
  font-size: 1em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 503, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .support h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 513, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.page.generic section.content .columns section footer a {
  background: #004F8C;
  color: #FFFFFF;
  line-height: 42px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 513, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns section footer a {
    font-size: 18px;
    line-height: 1.25;
  }
}
@media screen and (min-width: 769px) {
  /* line 526, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .masthead {
    position: relative;
    margin-bottom: 50px;
  }
  /* line 530, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .masthead header {
    width: 79.16667%;
    margin-left: 0%;
    margin-right: 0%;
    z-index: 100;
    height: 120px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 18.75%;
  }
  /* line 540, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .masthead header:before {
    width: 23.68421%;
    margin-left: 0%;
    margin-right: 0%;
    content: ' ';
    display: block;
    position: absolute;
    left: -23.68421%;
    bottom: 0;
  }
  /* line 548, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .masthead header h1 {
    margin: 40px 3.94737%;
  }
  /* line 553, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    position: relative;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.page.generic section.content .columns:before, body.page.generic section.content .columns:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.page.generic section.content .columns:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.page.generic section.content .columns {
    zoom: 1;
  }
  /* line 557, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns nav {
    float: left;
    display: inline;
    width: 17.70833%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 4.16667%;
  }
  /* line 561, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns nav > span.open {
    display: none;
  }
  /* line 564, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns nav > a {
    display: block;
    margin-left: -20px;
    padding-left: 20px;
    padding-bottom: 8px;
  }
  /* line 570, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns nav ul {
    margin: 0;
    padding: 0;
  }
  /* line 574, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns nav ul li {
    padding: 0 0 5px 12px;
  }
  /* line 577, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns nav ul li:before {
    display: inline-block;
    content: '>';
    margin: 0 5px 0 0;
  }
  /* line 585, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .support {
    float: left;
    display: inline;
    width: 18.75%;
    margin-left: 0%;
    margin-right: 0%;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  /* line 591, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns section footer a {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  /* line 596, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .intro {
    float: left;
    display: inline;
    width: 45.83333%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
    margin-right: 4.16667%;
  }
  /* line 601, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .intro .section-text, body.page.generic section.content .columns .intro .section-image, body.page.generic section.content .columns .intro .section-video {
    margin-bottom: 20px;
  }
  /* line 604, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .intro .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .intro .section-video.youtube, body.page.generic section.content .columns .intro .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .intro .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .intro .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .intro .section-video .video-wrap .video-container .video-embed, body.page.generic section.content .columns .intro .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .intro .section-video .caption {
    font-size: 0.8em;
  }
  /* line 608, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .right {
    float: left;
    display: inline;
    width: 27.08333%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
  }
  /* line 613, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content > h1 {
    padding: 5px 0;
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  /* line 619, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .masthead {
    margin: 0 0 15px;
    overflow: hidden;
  }
  /* line 624, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .masthead header h1, body.page.generic section.content .masthead header h2 {
    margin: 0;
  }
  /* line 627, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .masthead header h1 {
    padding-right: 8.33333%;
  }
  /* line 631, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .masthead .image {
    margin: 0 0 10px;
  }
  /* line 635, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns {
    padding: 0 0 30px;
  }
  /* line 638, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns nav {
    position: relative;
    margin: 0 0 15px;
    padding: 45px 0 0;
  }
  /* line 644, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns nav.menu-active a {
    display: block;
  }
  /* line 648, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns nav:after {
    position: absolute;
    top: 10px;
    left: 10px;
    content: 'Menu';
    font-size: 1.5em;
    z-index: 11;
  }
  /* line 656, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns nav > span.open {
    background: #EDEDED;
    display: block;
    cursor: pointer;
    text-align: right;
    position: absolute;
    padding: 10px;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    font-size: 1.5em;
  }
  /* line 669, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns nav a {
    display: none;
    margin: 10px 0 0;
    padding-left: 20px;
  }
  /* line 675, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns p {
    margin: 0 0 10px;
  }
  /* line 678, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns section footer a {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 25px 0;
  }
  /* line 684, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .image {
    margin: 0 0 10px;
  }
  /* line 688, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .intro .section-text, body.page.generic section.content .columns .intro .section-image, body.page.generic section.content .columns .intro .section-video {
    margin-bottom: 15px;
  }
  /* line 691, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .intro .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .intro .section-video.youtube, body.page.generic section.content .columns .intro .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .intro .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .intro .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .intro .section-video .video-wrap .video-container .video-embed, body.page.generic section.content .columns .intro .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.page.generic section.content .columns .intro .section-video .caption {
    font-size: 0.8em;
  }
}
/* line 272, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.page.generic section.content .right > section header h1 {
  font-size: 1.5em;
  line-height: 1.5;
  color: #004F8C;
  border-bottom: 2px solid #004F8C;
}

/* line 431, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.about section.content > h1, body.foundation section.content > h1 {
  border-bottom: 5px solid #004F8C;
  color: #004F8C;
}
/* line 435, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.about section.content header, body.foundation section.content header {
  background: #fff;
}
/* line 438, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.about section.content header:before, body.foundation section.content header:before {
  border-bottom: 3px solid #004F8C;
}
/* line 441, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.about section.content header h1, body.foundation section.content header h1 {
  font-size: 2.5em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 441, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content header h1, body.foundation section.content header h1 {
    font-size: 22px;
    line-height: 1.4;
    background: transparent;
    color: #004F8C;
    text-transform: capitalize;
  }
}
@media screen and (max-width: 768px) {
  /* line 455, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns p, body.foundation section.content .columns p {
    font-size: 14px;
    line-height: 1.25;
  }
  /* line 460, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns p a strong, body.foundation section.content .columns p a strong {
    color: #004F8C;
  }
}
/* line 467, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.about section.content .columns nav > a:hover, body.foundation section.content .columns nav > a:hover {
  background: url("../i/right-arrow.png") no-repeat 0 1px;
}
@media screen and (max-width: 768px) {
  /* line 467, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns nav > a:hover, body.foundation section.content .columns nav > a:hover {
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
  }
}
@media screen and (max-width: 768px) {
  /* line 475, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns nav a, body.foundation section.content .columns nav a {
    font-size: 14px;
    line-height: 1.25;
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
  }
}
/* line 481, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.about section.content .columns nav a.current, body.foundation section.content .columns nav a.current {
  color: #666;
}
/* line 485, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.about section.content .columns nav ul, body.foundation section.content .columns nav ul {
  list-style: none;
}
/* line 489, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.about section.content .columns nav ul li:before, body.foundation section.content .columns nav ul li:before {
  font-weight: bold;
  font-size: 0.8em;
}
/* line 496, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.about section.content .columns .support, body.foundation section.content .columns .support {
  font-size: .9em;
}
@media screen and (max-width: 768px) {
  /* line 496, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .support, body.foundation section.content .columns .support {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 503, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.about section.content .columns .support h1, body.foundation section.content .columns .support h1 {
  font-size: 1em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 503, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .support h1, body.foundation section.content .columns .support h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 513, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.about section.content .columns section footer a, body.foundation section.content .columns section footer a {
  background: #004F8C;
  color: #FFFFFF;
  line-height: 42px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 513, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns section footer a, body.foundation section.content .columns section footer a {
    font-size: 18px;
    line-height: 1.25;
  }
}
@media screen and (min-width: 769px) {
  /* line 526, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .masthead, body.foundation section.content .masthead {
    position: relative;
    margin-bottom: 50px;
  }
  /* line 530, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .masthead header, body.foundation section.content .masthead header {
    width: 79.16667%;
    margin-left: 0%;
    margin-right: 0%;
    z-index: 100;
    height: 120px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 18.75%;
  }
  /* line 540, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .masthead header:before, body.foundation section.content .masthead header:before {
    width: 23.68421%;
    margin-left: 0%;
    margin-right: 0%;
    content: ' ';
    display: block;
    position: absolute;
    left: -23.68421%;
    bottom: 0;
  }
  /* line 548, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .masthead header h1, body.foundation section.content .masthead header h1 {
    margin: 40px 3.94737%;
  }
  /* line 553, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns, body.foundation section.content .columns {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    position: relative;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.about section.content .columns:before, body.about section.content .columns:after, body.foundation section.content .columns:before, body.foundation section.content .columns:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.about section.content .columns:after, body.foundation section.content .columns:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.about section.content .columns, body.foundation section.content .columns {
    zoom: 1;
  }
  /* line 557, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns nav, body.foundation section.content .columns nav {
    float: left;
    display: inline;
    width: 17.70833%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 4.16667%;
  }
  /* line 561, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns nav > span.open, body.foundation section.content .columns nav > span.open {
    display: none;
  }
  /* line 564, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns nav > a, body.foundation section.content .columns nav > a {
    display: block;
    margin-left: -20px;
    padding-left: 20px;
    padding-bottom: 8px;
  }
  /* line 570, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns nav ul, body.foundation section.content .columns nav ul {
    margin: 0;
    padding: 0;
  }
  /* line 574, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns nav ul li, body.foundation section.content .columns nav ul li {
    padding: 0 0 5px 12px;
  }
  /* line 577, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns nav ul li:before, body.foundation section.content .columns nav ul li:before {
    display: inline-block;
    content: '>';
    margin: 0 5px 0 0;
  }
  /* line 585, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .support, body.foundation section.content .columns .support {
    float: left;
    display: inline;
    width: 18.75%;
    margin-left: 0%;
    margin-right: 0%;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  /* line 591, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns section footer a, body.foundation section.content .columns section footer a {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  /* line 596, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .intro, body.foundation section.content .columns .intro {
    float: left;
    display: inline;
    width: 45.83333%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
    margin-right: 4.16667%;
  }
  /* line 601, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .intro .section-text, body.about section.content .columns .intro .section-image, body.about section.content .columns .intro .section-video, body.foundation section.content .columns .intro .section-text, body.foundation section.content .columns .intro .section-image, body.foundation section.content .columns .intro .section-video {
    margin-bottom: 20px;
  }
  /* line 604, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .intro .section-video, body.foundation section.content .columns .intro .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .intro .section-video.youtube, body.about section.content .columns .intro .section-video.vimeo, body.foundation section.content .columns .intro .section-video.youtube, body.foundation section.content .columns .intro .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .intro .section-video .video-wrap, body.foundation section.content .columns .intro .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .intro .section-video .video-wrap .video-container, body.foundation section.content .columns .intro .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .intro .section-video .video-wrap .video-container .video-embed, body.about section.content .columns .intro .section-video .video-wrap .video-container iframe, body.foundation section.content .columns .intro .section-video .video-wrap .video-container .video-embed, body.foundation section.content .columns .intro .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .intro .section-video .caption, body.foundation section.content .columns .intro .section-video .caption {
    font-size: 0.8em;
  }
  /* line 608, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .right, body.foundation section.content .columns .right {
    float: left;
    display: inline;
    width: 27.08333%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
  }
  /* line 613, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content > h1, body.foundation section.content > h1 {
    padding: 5px 0;
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  /* line 619, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .masthead, body.foundation section.content .masthead {
    margin: 0 0 15px;
    overflow: hidden;
  }
  /* line 624, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .masthead header h1, body.about section.content .masthead header h2, body.foundation section.content .masthead header h1, body.foundation section.content .masthead header h2 {
    margin: 0;
  }
  /* line 627, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .masthead header h1, body.foundation section.content .masthead header h1 {
    padding-right: 8.33333%;
  }
  /* line 631, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .masthead .image, body.foundation section.content .masthead .image {
    margin: 0 0 10px;
  }
  /* line 635, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns, body.foundation section.content .columns {
    padding: 0 0 30px;
  }
  /* line 638, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns nav, body.foundation section.content .columns nav {
    position: relative;
    margin: 0 0 15px;
    padding: 45px 0 0;
  }
  /* line 644, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns nav.menu-active a, body.foundation section.content .columns nav.menu-active a {
    display: block;
  }
  /* line 648, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns nav:after, body.foundation section.content .columns nav:after {
    position: absolute;
    top: 10px;
    left: 10px;
    content: 'Menu';
    font-size: 1.5em;
    z-index: 11;
  }
  /* line 656, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns nav > span.open, body.foundation section.content .columns nav > span.open {
    background: #EDEDED;
    display: block;
    cursor: pointer;
    text-align: right;
    position: absolute;
    padding: 10px;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    font-size: 1.5em;
  }
  /* line 669, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns nav a, body.foundation section.content .columns nav a {
    display: none;
    margin: 10px 0 0;
    padding-left: 20px;
  }
  /* line 675, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns p, body.foundation section.content .columns p {
    margin: 0 0 10px;
  }
  /* line 678, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns section footer a, body.foundation section.content .columns section footer a {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 25px 0;
  }
  /* line 684, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .image, body.foundation section.content .columns .image {
    margin: 0 0 10px;
  }
  /* line 688, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .intro .section-text, body.about section.content .columns .intro .section-image, body.about section.content .columns .intro .section-video, body.foundation section.content .columns .intro .section-text, body.foundation section.content .columns .intro .section-image, body.foundation section.content .columns .intro .section-video {
    margin-bottom: 15px;
  }
  /* line 691, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .intro .section-video, body.foundation section.content .columns .intro .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .intro .section-video.youtube, body.about section.content .columns .intro .section-video.vimeo, body.foundation section.content .columns .intro .section-video.youtube, body.foundation section.content .columns .intro .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .intro .section-video .video-wrap, body.foundation section.content .columns .intro .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .intro .section-video .video-wrap .video-container, body.foundation section.content .columns .intro .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .intro .section-video .video-wrap .video-container .video-embed, body.about section.content .columns .intro .section-video .video-wrap .video-container iframe, body.foundation section.content .columns .intro .section-video .video-wrap .video-container .video-embed, body.foundation section.content .columns .intro .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .columns .intro .section-video .caption, body.foundation section.content .columns .intro .section-video .caption {
    font-size: 0.8em;
  }
}
/* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.about section.content .right section.summary.news article h1, body.foundation section.content .right section.summary.news article h1 {
  font-size: 1.1em;
}
@media screen and (max-width: 768px) {
  /* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary.news article h1, body.foundation section.content .right section.summary.news article h1 {
    font-size: 16px;
    line-height: 1.25;
  }
}
/* line 41, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.about section.content .right section.summary.research article h1, body.foundation section.content .right section.summary.research article h1 {
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  /* line 41, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary.research article h1, body.foundation section.content .right section.summary.research article h1 {
    font-size: 16px;
    line-height: 1.25;
  }
}
/* line 51, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.about section.content .right section.summary > h1, body.foundation section.content .right section.summary > h1 {
  font-size: 1.5em;
  line-height: 2;
  text-transform: uppercase;
  border-bottom: 5px solid #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 51, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary > h1, body.foundation section.content .right section.summary > h1 {
    border-top: 2px solid #004F8C;
    border-bottom: none;
    font-size: 22px;
    line-height: 1.4;
    background: #fff;
  }
}
/* line 65, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.about section.content .right section.summary > .more, body.foundation section.content .right section.summary > .more {
  line-height: 45px;
  font-size: .9em;
  background: #004F8C;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 65, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary > .more, body.foundation section.content .right section.summary > .more {
    font-size: 18px;
    line-height: 1.25;
  }
}
/* line 77, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.about section.content .right section.summary article, body.foundation section.content .right section.summary article {
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  /* line 77, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary article, body.foundation section.content .right section.summary article {
    background-color: transparent;
  }
}
/* line 84, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.about section.content .right section.summary article h1, body.foundation section.content .right section.summary article h1 {
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 84, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary article h1, body.foundation section.content .right section.summary article h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 92, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.about section.content .right section.summary article p, body.foundation section.content .right section.summary article p {
  font-size: .9em;
  color: #545454;
}
@media screen and (max-width: 768px) {
  /* line 92, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary article p, body.foundation section.content .right section.summary article p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.25;
    color: #484848;
  }
}
/* line 103, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.about section.content .right section.summary article .more, body.foundation section.content .right section.summary article .more {
  color: #004F8C;
  font-size: .9em;
  line-height: 26px;
  background: url("../i/right-arrow-grey.png") no-repeat 10px 15px;
  border-top: 1px solid #F5F5F5;
}
@media screen and (max-width: 768px) {
  /* line 103, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary article .more, body.foundation section.content .right section.summary article .more {
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
    border-top: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.25;
  }
}
@media screen and (min-width: 769px) {
  /* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary, body.foundation section.content .right section.summary {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    padding-bottom: 30px;
    margin: 0 -6px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.about section.content .right section.summary:before, body.about section.content .right section.summary:after, body.foundation section.content .right section.summary:before, body.foundation section.content .right section.summary:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.about section.content .right section.summary:after, body.foundation section.content .right section.summary:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.about section.content .right section.summary, body.foundation section.content .right section.summary {
    zoom: 1;
  }
  /* line 125, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary.news article, body.foundation section.content .right section.summary.news article {
    float: left;
    display: inline;
    width: 24.0625%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
  }
  /* line 129, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary.news article:nth-child(3n+1), body.foundation section.content .right section.summary.news article:nth-child(3n+1) {
    margin-right: 1.25%;
  }
  /* line 132, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary.news article:nth-child(4n+1), body.foundation section.content .right section.summary.news article:nth-child(4n+1) {
    margin-right: 0;
  }
  /* line 138, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary.research article, body.foundation section.content .right section.summary.research article {
    float: left;
    display: inline;
    width: 32.5%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
  }
  /* line 142, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary.research article:nth-child(3n+1), body.foundation section.content .right section.summary.research article:nth-child(3n+1) {
    margin-right: 0;
  }
  /* line 148, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary > h1, body.foundation section.content .right section.summary > h1 {
    margin: 20px 6px 12px;
  }
  /* line 151, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary > .more, body.foundation section.content .right section.summary > .more {
    float: left;
    display: inline;
    width: 6.25%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
    clear: left;
    float: right;
    margin-right: 6px;
    display: none;
  }
  /* line 162, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary article, body.foundation section.content .right section.summary article {
    position: relative;
    float: left;
    display: inline;
    width: 32.5%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
    height: 370px;
    padding: 12px;
  }
  /* line 169, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary article:nth-child(3n+1), body.foundation section.content .right section.summary article:nth-child(3n+1) {
    margin-right: 0;
  }
  /* line 173, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary article .more, body.foundation section.content .right section.summary article .more {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding-left: 35px;
    padding-top: 10px;
    margin: 10px 0 10px -10px;
  }
}
@media screen and (max-width: 768px) {
  /* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary, body.foundation section.content .right section.summary {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    margin: 0 0 15px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.about section.content .right section.summary:before, body.about section.content .right section.summary:after, body.foundation section.content .right section.summary:before, body.foundation section.content .right section.summary:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.about section.content .right section.summary:after, body.foundation section.content .right section.summary:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.about section.content .right section.summary, body.foundation section.content .right section.summary {
    zoom: 1;
  }
  /* line 188, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary > .more, body.foundation section.content .right section.summary > .more {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
    margin: 10px 0;
    padding: 15px 0;
  }
  /* line 194, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary > h1, body.foundation section.content .right section.summary > h1 {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    margin: 0 0 12px;
    padding: 8px 0 0;
  }
  /* line 200, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary.research article, body.foundation section.content .right section.summary.research article {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    min-height: 0;
    margin: 0 0 50px;
  }
  /* line 206, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary article, body.foundation section.content .right section.summary article {
    float: left;
    display: inline;
    width: 47.91667%;
    margin-left: 0%;
    margin-right: 0%;
    min-height: 385px;
    margin: 0 0 15px;
  }
  /* line 211, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary article:nth-child(2n+2), body.foundation section.content .right section.summary article:nth-child(2n+2) {
    margin-right: 4.16667%;
  }
  /* line 214, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary article h1, body.foundation section.content .right section.summary article h1 {
    margin: 0 0 8px;
  }
  /* line 217, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary article p, body.foundation section.content .right section.summary article p {
    margin: 0 0 5px;
  }
  /* line 220, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary article .image, body.foundation section.content .right section.summary article .image {
    margin: 0 0 12px;
  }
  /* line 223, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.about section.content .right section.summary article .more, body.foundation section.content .right section.summary article .more {
    display: block;
    margin: 15px 0 0;
    padding-left: 20px;
  }
}

/* line 431, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.careers section.content > h1 {
  border-bottom: 5px solid #004F8C;
  color: #004F8C;
}
/* line 435, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.careers section.content header {
  background: #fff;
}
/* line 438, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.careers section.content header:before {
  border-bottom: 3px solid #004F8C;
}
/* line 441, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.careers section.content header h1 {
  font-size: 2.5em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 441, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content header h1 {
    font-size: 22px;
    line-height: 1.4;
    background: transparent;
    color: #004F8C;
    text-transform: capitalize;
  }
}
@media screen and (max-width: 768px) {
  /* line 455, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns p {
    font-size: 14px;
    line-height: 1.25;
  }
  /* line 460, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns p a strong {
    color: #004F8C;
  }
}
/* line 467, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.careers section.content .columns nav > a:hover {
  background: url("../i/right-arrow.png") no-repeat 0 1px;
}
@media screen and (max-width: 768px) {
  /* line 467, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns nav > a:hover {
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
  }
}
@media screen and (max-width: 768px) {
  /* line 475, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns nav a {
    font-size: 14px;
    line-height: 1.25;
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
  }
}
/* line 481, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.careers section.content .columns nav a.current {
  color: #666;
}
/* line 485, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.careers section.content .columns nav ul {
  list-style: none;
}
/* line 489, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.careers section.content .columns nav ul li:before {
  font-weight: bold;
  font-size: 0.8em;
}
/* line 496, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.careers section.content .columns .support {
  font-size: .9em;
}
@media screen and (max-width: 768px) {
  /* line 496, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .support {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 503, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.careers section.content .columns .support h1 {
  font-size: 1em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 503, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .support h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 513, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.careers section.content .columns section footer a {
  background: #004F8C;
  color: #FFFFFF;
  line-height: 42px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 513, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns section footer a {
    font-size: 18px;
    line-height: 1.25;
  }
}
@media screen and (min-width: 769px) {
  /* line 526, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .masthead {
    position: relative;
    margin-bottom: 50px;
  }
  /* line 530, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .masthead header {
    width: 79.16667%;
    margin-left: 0%;
    margin-right: 0%;
    z-index: 100;
    height: 120px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 18.75%;
  }
  /* line 540, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .masthead header:before {
    width: 23.68421%;
    margin-left: 0%;
    margin-right: 0%;
    content: ' ';
    display: block;
    position: absolute;
    left: -23.68421%;
    bottom: 0;
  }
  /* line 548, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .masthead header h1 {
    margin: 40px 3.94737%;
  }
  /* line 553, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    position: relative;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.careers section.content .columns:before, body.careers section.content .columns:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.careers section.content .columns:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.careers section.content .columns {
    zoom: 1;
  }
  /* line 557, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns nav {
    float: left;
    display: inline;
    width: 17.70833%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 4.16667%;
  }
  /* line 561, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns nav > span.open {
    display: none;
  }
  /* line 564, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns nav > a {
    display: block;
    margin-left: -20px;
    padding-left: 20px;
    padding-bottom: 8px;
  }
  /* line 570, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns nav ul {
    margin: 0;
    padding: 0;
  }
  /* line 574, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns nav ul li {
    padding: 0 0 5px 12px;
  }
  /* line 577, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns nav ul li:before {
    display: inline-block;
    content: '>';
    margin: 0 5px 0 0;
  }
  /* line 585, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .support {
    float: left;
    display: inline;
    width: 18.75%;
    margin-left: 0%;
    margin-right: 0%;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  /* line 591, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns section footer a {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  /* line 596, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .intro {
    float: left;
    display: inline;
    width: 45.83333%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
    margin-right: 4.16667%;
  }
  /* line 601, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .intro .section-text, body.careers section.content .columns .intro .section-image, body.careers section.content .columns .intro .section-video {
    margin-bottom: 20px;
  }
  /* line 604, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .intro .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .intro .section-video.youtube, body.careers section.content .columns .intro .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .intro .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .intro .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .intro .section-video .video-wrap .video-container .video-embed, body.careers section.content .columns .intro .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .intro .section-video .caption {
    font-size: 0.8em;
  }
  /* line 608, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .right {
    float: left;
    display: inline;
    width: 27.08333%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
  }
  /* line 613, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content > h1 {
    padding: 5px 0;
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  /* line 619, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .masthead {
    margin: 0 0 15px;
    overflow: hidden;
  }
  /* line 624, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .masthead header h1, body.careers section.content .masthead header h2 {
    margin: 0;
  }
  /* line 627, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .masthead header h1 {
    padding-right: 8.33333%;
  }
  /* line 631, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .masthead .image {
    margin: 0 0 10px;
  }
  /* line 635, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns {
    padding: 0 0 30px;
  }
  /* line 638, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns nav {
    position: relative;
    margin: 0 0 15px;
    padding: 45px 0 0;
  }
  /* line 644, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns nav.menu-active a {
    display: block;
  }
  /* line 648, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns nav:after {
    position: absolute;
    top: 10px;
    left: 10px;
    content: 'Menu';
    font-size: 1.5em;
    z-index: 11;
  }
  /* line 656, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns nav > span.open {
    background: #EDEDED;
    display: block;
    cursor: pointer;
    text-align: right;
    position: absolute;
    padding: 10px;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    font-size: 1.5em;
  }
  /* line 669, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns nav a {
    display: none;
    margin: 10px 0 0;
    padding-left: 20px;
  }
  /* line 675, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns p {
    margin: 0 0 10px;
  }
  /* line 678, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns section footer a {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 25px 0;
  }
  /* line 684, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .image {
    margin: 0 0 10px;
  }
  /* line 688, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .intro .section-text, body.careers section.content .columns .intro .section-image, body.careers section.content .columns .intro .section-video {
    margin-bottom: 15px;
  }
  /* line 691, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .intro .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .intro .section-video.youtube, body.careers section.content .columns .intro .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .intro .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .intro .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .intro .section-video .video-wrap .video-container .video-embed, body.careers section.content .columns .intro .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.careers section.content .columns .intro .section-video .caption {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 768px) {
  /* line 298, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.careers.career-stories section.content section.right {
    display: none;
  }
}

/* line 431, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.community section.content > h1 {
  border-bottom: 5px solid #004F8C;
  color: #004F8C;
}
/* line 435, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.community section.content header {
  background: #fff;
}
/* line 438, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.community section.content header:before {
  border-bottom: 3px solid #004F8C;
}
/* line 441, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.community section.content header h1 {
  font-size: 2.5em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 441, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content header h1 {
    font-size: 22px;
    line-height: 1.4;
    background: transparent;
    color: #004F8C;
    text-transform: capitalize;
  }
}
@media screen and (max-width: 768px) {
  /* line 455, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns p {
    font-size: 14px;
    line-height: 1.25;
  }
  /* line 460, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns p a strong {
    color: #004F8C;
  }
}
/* line 467, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.community section.content .columns nav > a:hover {
  background: url("../i/right-arrow.png") no-repeat 0 1px;
}
@media screen and (max-width: 768px) {
  /* line 467, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns nav > a:hover {
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
  }
}
@media screen and (max-width: 768px) {
  /* line 475, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns nav a {
    font-size: 14px;
    line-height: 1.25;
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
  }
}
/* line 481, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.community section.content .columns nav a.current {
  color: #666;
}
/* line 485, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.community section.content .columns nav ul {
  list-style: none;
}
/* line 489, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.community section.content .columns nav ul li:before {
  font-weight: bold;
  font-size: 0.8em;
}
/* line 496, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.community section.content .columns .support {
  font-size: .9em;
}
@media screen and (max-width: 768px) {
  /* line 496, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .support {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 503, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.community section.content .columns .support h1 {
  font-size: 1em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 503, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .support h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 513, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.community section.content .columns section footer a {
  background: #004F8C;
  color: #FFFFFF;
  line-height: 42px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 513, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns section footer a {
    font-size: 18px;
    line-height: 1.25;
  }
}
@media screen and (min-width: 769px) {
  /* line 526, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .masthead {
    position: relative;
    margin-bottom: 50px;
  }
  /* line 530, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .masthead header {
    width: 79.16667%;
    margin-left: 0%;
    margin-right: 0%;
    z-index: 100;
    height: 120px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 18.75%;
  }
  /* line 540, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .masthead header:before {
    width: 23.68421%;
    margin-left: 0%;
    margin-right: 0%;
    content: ' ';
    display: block;
    position: absolute;
    left: -23.68421%;
    bottom: 0;
  }
  /* line 548, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .masthead header h1 {
    margin: 40px 3.94737%;
  }
  /* line 553, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    position: relative;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.community section.content .columns:before, body.community section.content .columns:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.community section.content .columns:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.community section.content .columns {
    zoom: 1;
  }
  /* line 557, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns nav {
    float: left;
    display: inline;
    width: 17.70833%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 4.16667%;
  }
  /* line 561, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns nav > span.open {
    display: none;
  }
  /* line 564, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns nav > a {
    display: block;
    margin-left: -20px;
    padding-left: 20px;
    padding-bottom: 8px;
  }
  /* line 570, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns nav ul {
    margin: 0;
    padding: 0;
  }
  /* line 574, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns nav ul li {
    padding: 0 0 5px 12px;
  }
  /* line 577, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns nav ul li:before {
    display: inline-block;
    content: '>';
    margin: 0 5px 0 0;
  }
  /* line 585, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .support {
    float: left;
    display: inline;
    width: 18.75%;
    margin-left: 0%;
    margin-right: 0%;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  /* line 591, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns section footer a {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  /* line 596, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .intro {
    float: left;
    display: inline;
    width: 45.83333%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
    margin-right: 4.16667%;
  }
  /* line 601, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .intro .section-text, body.community section.content .columns .intro .section-image, body.community section.content .columns .intro .section-video {
    margin-bottom: 20px;
  }
  /* line 604, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .intro .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .intro .section-video.youtube, body.community section.content .columns .intro .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .intro .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .intro .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .intro .section-video .video-wrap .video-container .video-embed, body.community section.content .columns .intro .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .intro .section-video .caption {
    font-size: 0.8em;
  }
  /* line 608, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .right {
    float: left;
    display: inline;
    width: 27.08333%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
  }
  /* line 613, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content > h1 {
    padding: 5px 0;
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  /* line 619, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .masthead {
    margin: 0 0 15px;
    overflow: hidden;
  }
  /* line 624, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .masthead header h1, body.community section.content .masthead header h2 {
    margin: 0;
  }
  /* line 627, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .masthead header h1 {
    padding-right: 8.33333%;
  }
  /* line 631, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .masthead .image {
    margin: 0 0 10px;
  }
  /* line 635, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns {
    padding: 0 0 30px;
  }
  /* line 638, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns nav {
    position: relative;
    margin: 0 0 15px;
    padding: 45px 0 0;
  }
  /* line 644, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns nav.menu-active a {
    display: block;
  }
  /* line 648, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns nav:after {
    position: absolute;
    top: 10px;
    left: 10px;
    content: 'Menu';
    font-size: 1.5em;
    z-index: 11;
  }
  /* line 656, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns nav > span.open {
    background: #EDEDED;
    display: block;
    cursor: pointer;
    text-align: right;
    position: absolute;
    padding: 10px;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    font-size: 1.5em;
  }
  /* line 669, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns nav a {
    display: none;
    margin: 10px 0 0;
    padding-left: 20px;
  }
  /* line 675, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns p {
    margin: 0 0 10px;
  }
  /* line 678, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns section footer a {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 25px 0;
  }
  /* line 684, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .image {
    margin: 0 0 10px;
  }
  /* line 688, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .intro .section-text, body.community section.content .columns .intro .section-image, body.community section.content .columns .intro .section-video {
    margin-bottom: 15px;
  }
  /* line 691, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .intro .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .intro .section-video.youtube, body.community section.content .columns .intro .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .intro .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .intro .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .intro .section-video .video-wrap .video-container .video-embed, body.community section.content .columns .intro .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content .columns .intro .section-video .caption {
    font-size: 0.8em;
  }
}
/* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.community section.content section.summary.news article h1 {
  font-size: 1.1em;
}
@media screen and (max-width: 768px) {
  /* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary.news article h1 {
    font-size: 16px;
    line-height: 1.25;
  }
}
/* line 41, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.community section.content section.summary.research article h1 {
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  /* line 41, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary.research article h1 {
    font-size: 16px;
    line-height: 1.25;
  }
}
/* line 51, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.community section.content section.summary > h1 {
  font-size: 1.5em;
  line-height: 2;
  text-transform: uppercase;
  border-bottom: 5px solid #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 51, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary > h1 {
    border-top: 2px solid #004F8C;
    border-bottom: none;
    font-size: 22px;
    line-height: 1.4;
    background: #fff;
  }
}
/* line 65, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.community section.content section.summary > .more {
  line-height: 45px;
  font-size: .9em;
  background: #004F8C;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 65, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary > .more {
    font-size: 18px;
    line-height: 1.25;
  }
}
/* line 77, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.community section.content section.summary article {
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  /* line 77, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary article {
    background-color: transparent;
  }
}
/* line 84, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.community section.content section.summary article h1 {
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 84, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary article h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 92, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.community section.content section.summary article p {
  font-size: .9em;
  color: #545454;
}
@media screen and (max-width: 768px) {
  /* line 92, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary article p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.25;
    color: #484848;
  }
}
/* line 103, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.community section.content section.summary article .more {
  color: #004F8C;
  font-size: .9em;
  line-height: 26px;
  background: url("../i/right-arrow-grey.png") no-repeat 10px 15px;
  border-top: 1px solid #F5F5F5;
}
@media screen and (max-width: 768px) {
  /* line 103, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary article .more {
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
    border-top: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.25;
  }
}
@media screen and (min-width: 769px) {
  /* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    padding-bottom: 30px;
    margin: 0 -6px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.community section.content section.summary:before, body.community section.content section.summary:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.community section.content section.summary:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.community section.content section.summary {
    zoom: 1;
  }
  /* line 125, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary.news article {
    float: left;
    display: inline;
    width: 24.0625%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
  }
  /* line 129, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary.news article:nth-child(3n+1) {
    margin-right: 1.25%;
  }
  /* line 132, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary.news article:nth-child(4n+1) {
    margin-right: 0;
  }
  /* line 138, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary.research article {
    float: left;
    display: inline;
    width: 32.5%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
  }
  /* line 142, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary.research article:nth-child(3n+1) {
    margin-right: 0;
  }
  /* line 148, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary > h1 {
    margin: 20px 6px 12px;
  }
  /* line 151, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary > .more {
    float: left;
    display: inline;
    width: 6.25%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
    clear: left;
    float: right;
    margin-right: 6px;
    display: none;
  }
  /* line 162, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary article {
    position: relative;
    float: left;
    display: inline;
    width: 32.5%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
    height: 370px;
    padding: 12px;
  }
  /* line 169, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary article:nth-child(3n+1) {
    margin-right: 0;
  }
  /* line 173, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary article .more {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding-left: 35px;
    padding-top: 10px;
    margin: 10px 0 10px -10px;
  }
}
@media screen and (max-width: 768px) {
  /* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    margin: 0 0 15px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.community section.content section.summary:before, body.community section.content section.summary:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.community section.content section.summary:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.community section.content section.summary {
    zoom: 1;
  }
  /* line 188, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary > .more {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
    margin: 10px 0;
    padding: 15px 0;
  }
  /* line 194, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary > h1 {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    margin: 0 0 12px;
    padding: 8px 0 0;
  }
  /* line 200, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary.research article {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    min-height: 0;
    margin: 0 0 50px;
  }
  /* line 206, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary article {
    float: left;
    display: inline;
    width: 47.91667%;
    margin-left: 0%;
    margin-right: 0%;
    min-height: 385px;
    margin: 0 0 15px;
  }
  /* line 211, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary article:nth-child(2n+2) {
    margin-right: 4.16667%;
  }
  /* line 214, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary article h1 {
    margin: 0 0 8px;
  }
  /* line 217, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary article p {
    margin: 0 0 5px;
  }
  /* line 220, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary article .image {
    margin: 0 0 12px;
  }
  /* line 223, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.community section.content section.summary article .more {
    display: block;
    margin: 15px 0 0;
    padding-left: 20px;
  }
}
/* line 311, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.community section.content section.science {
  border-top: 1px solid #9E9E9E;
  border-bottom: 1px solid #9E9E9E;
}
/* line 315, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.community section.content section.science h1, body.community section.content section.science h2, body.community section.content section.science h3 {
  color: #004F8C;
}
/* line 318, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.community section.content section.science p {
  font-size: 1.2em;
  color: #004F8C;
}
/* line 325, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.community section.content nav > .social form label {
  font-size: 1.15em;
  color: #808080;
}
/* line 329, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.community section.content nav > .social form input[type="email"] {
  background: #F6F6F6;
  border: 1px solid #ECECEC;
}
/* line 333, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.community section.content nav > .social form button {
  background: none;
  border: none;
  color: #004F8C;
}
@media screen and (min-width: 769px) {
  /* line 341, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.community section.content section.science {
    position: relative;
  }
  /* line 344, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.community section.content nav > .social {
    width: 192px;
    padding-top: 25px;
  }
  /* line 348, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.community section.content nav > .social > a {
    display: block;
  }
  /* line 351, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.community section.content nav > .social form {
    margin-top: 70px;
  }
  /* line 354, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.community section.content nav > .social form label {
    display: block;
  }
  /* line 357, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.community section.content nav > .social form input[type="email"] {
    width: 100%;
    height: 32px;
    margin: 5px 0;
    padding: 0 8px;
  }
  /* line 363, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.community section.content nav > .social form button {
    padding: 5px 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  /* line 371, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.community section.content .intro iframe {
    width: 100%;
    height: 56.25%;
  }
  /* line 376, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.community section.content section.science {
    margin: 0 0 10px;
  }
}

/* line 384, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust header#site-wide {
  height: 182px;
}
/* line 387, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust header#site-wide nav.top a.trust {
  border-bottom: 5px solid #676767;
  height: 31px;
}
/* line 392, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust header#site-wide nav.main {
  border-bottom: 6px solid #004F8C;
}
/* line 394, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust header#site-wide nav.main .major a {
  border-bottom: none;
  border-left: 1px solid #B1B1B1;
}
/* line 402, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content .masthead {
  position: relative;
  margin-bottom: 15px;
}
/* line 406, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content .masthead div {
  float: left;
  display: inline;
  width: 21.875%;
  margin-left: 0%;
  margin-right: 0%;
  position: absolute;
  top: 150px;
  padding: 30px 60px 30px 20px;
  color: #FFFFFF;
  background-color: #004F8C;
  font-size: 1.2em;
}
/* line 419, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content div.left {
  /* For modern browsers */
  /* For IE 6/7 (trigger hasLayout) */
  float: left;
  width: 555px;
}
/* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
body.trust section.content div.left:before, body.trust section.content div.left:after {
  content: "";
  display: table;
}
/* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
body.trust section.content div.left:after {
  clear: both;
}
/* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
body.trust section.content div.left {
  zoom: 1;
}
/* line 425, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content div.left .left-rule {
  float: left;
  display: inline;
  width: 8.33333%;
  margin-left: 0%;
  margin-right: 0%;
  float: left;
  display: block;
  border-top: 3px solid #004F8C;
  margin-right: 15px;
}
/* line 433, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content div.left section.introduction {
  float: left;
  display: inline;
  width: 20.83333%;
  margin-left: 0%;
  margin-right: 0%;
  float: left;
  border-top: 3px solid #004F8C;
}
/* line 438, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content div.left section.introduction .more {
  display: block;
  background: url(../i/right-arrow-small-grey.png) no-repeat 0px 8px;
  padding: 0px 15px 0px 20px;
  margin: 29px 0;
  line-height: 30px;
  color: #004F8C;
}
/* line 448, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content div.left section.news {
  /* For modern browsers */
  /* For IE 6/7 (trigger hasLayout) */
  clear: left;
}
/* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
body.trust section.content div.left section.news:before, body.trust section.content div.left section.news:after {
  content: "";
  display: table;
}
/* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
body.trust section.content div.left section.news:after {
  clear: both;
}
/* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
body.trust section.content div.left section.news {
  zoom: 1;
}
/* line 452, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content div.left section.news > h1 {
  float: left;
  display: inline;
  width: 8.33333%;
  margin-left: 0%;
  margin-right: 0%;
  float: left;
  margin: 0 15px 0 0;
  border-top: 3px solid #004F8C;
  padding-top: 15px;
  color: #004F8C;
  font-size: 1.5em;
  text-transform: uppercase;
}
/* line 464, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content div.left section.news div {
  /* For modern browsers */
  /* For IE 6/7 (trigger hasLayout) */
  float: left;
  border-top: 3px solid #004F8C;
}
/* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
body.trust section.content div.left section.news div:before, body.trust section.content div.left section.news div:after {
  content: "";
  display: table;
}
/* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
body.trust section.content div.left section.news div:after {
  clear: both;
}
/* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
body.trust section.content div.left section.news div {
  zoom: 1;
}
/* line 469, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content div.left section.news div article {
  float: left;
  width: 195px;
  overflow: hidden;
  height: 220px;
  background: #F7F7F7;
  position: relative;
}
/* line 477, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content div.left section.news div article h1 {
  font-size: 1em;
  padding: 10px;
  margin: 0px;
  line-height: 1.4;
}
/* line 484, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content div.left section.news div article .more {
  position: absolute;
  bottom: 0px;
  display: block;
  background: url(../i/right-arrow-small-grey.png) no-repeat 10px 8px;
  padding: 0px 15px 0px 30px;
  line-height: 30px;
  color: #004F8C;
}
/* line 495, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content div.left section.news div article + article {
  border-left: 1px solid #FFFFFF;
}
/* line 502, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content section.person {
  float: left;
  width: 390px;
  margin-left: 15px;
  background-color: #F7F7F7;
}
/* line 508, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content section.person > div {
  font-size: 1.1em;
  padding: 0 13px 30px 13px;
}
/* line 514, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content section.person article hgroup {
  margin: 10px;
}
/* line 517, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content section.person article hgroup h1, body.trust section.content section.person article hgroup h2 {
  font-size: 1.2em;
  line-height: 1.2;
  margin: 0;
}
/* line 525, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content section.person .more {
  display: block;
  background: #EDEDED url(../i/right-arrow-grey.png) no-repeat 12px 12px;
  padding: 0px 15px 0px 35px;
  line-height: 40px;
  color: #004F8C;
}
/* line 534, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content section.involved {
  /* For modern browsers */
  /* For IE 6/7 (trigger hasLayout) */
  clear: left;
  padding: 15px 0;
}
/* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
body.trust section.content section.involved:before, body.trust section.content section.involved:after {
  content: "";
  display: table;
}
/* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
body.trust section.content section.involved:after {
  clear: both;
}
/* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
body.trust section.content section.involved {
  zoom: 1;
}
/* line 540, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content section.involved h1 {
  font-size: 1.5em;
  color: #004F8C;
  text-transform: uppercase;
  padding: 20px 0 0 0;
  margin: 0;
}
/* line 548, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content section.involved > h1 {
  float: left;
  display: inline;
  width: 8.33333%;
  margin-left: 0%;
  margin-right: 0%;
  margin: 0 15px 0 0;
  float: left;
  border-top: 3px solid #004F8C;
}
/* line 557, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content section.involved section {
  float: left;
  display: inline;
  width: 20.83333%;
  margin-left: 0%;
  margin-right: 0%;
  float: left;
  border-top: 3px solid #004F8C;
}
/* line 563, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content section.involved section + section {
  margin-left: 15px;
}
/* line 567, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust section.content section.involved section .more {
  display: block;
  background: url(../i/right-arrow-small-grey.png) no-repeat 0px 8px;
  padding: 0px 0px 0px 20px;
  line-height: 30px;
  color: #004F8C;
}
/* line 580, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page h1 {
  font-size: 2em;
  color: #004F8C;
  text-transform: uppercase;
}
/* line 586, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.rule {
  width: 795px;
  position: relative;
  left: 12.33333%;
  border-top: 3px solid #004F8C;
  margin-bottom: -3px;
}
/* line 595, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.left-col {
  /* For modern browsers */
  /* For IE 6/7 (trigger hasLayout) */
  width: 31.25%;
  float: left;
}
/* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
body.trust.page div.left-col:before, body.trust.page div.left-col:after {
  content: "";
  display: table;
}
/* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
body.trust.page div.left-col:after {
  clear: both;
}
/* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
body.trust.page div.left-col {
  zoom: 1;
}
/* line 601, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.left-col > nav {
  float: left;
  display: inline;
  width: 8.33333%;
  margin-left: 0%;
  margin-right: 0%;
  float: left;
  border-top: 3px solid #004F8C;
  margin-right: 14px;
}
/* line 608, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.left-col > nav a {
  display: block;
}
/* line 613, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.left-col section.introduction {
  float: left;
  display: inline;
  width: 20.83333%;
  margin-left: 0%;
  margin-right: 0%;
  border-bottom: 1px solid #B1B1B1;
  float: left;
  margin-bottom: 15px;
}
/* line 620, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.left-col section.introduction p {
  font-size: 1.2em;
  color: #004F8C;
}
/* line 625, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.left-col section.introduction p + p {
  color: #545454;
  font-size: 1.1em;
}
/* line 631, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.left-col section.primary,
body.trust.page div.left-col section.secondary {
  float: left;
  display: inline;
  width: 20.83333%;
  margin-left: 0%;
  margin-right: 0%;
  clear: both;
  margin-left: 11.33333%;
}
/* line 638, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.left-col section.primary h1,
body.trust.page div.left-col section.secondary h1 {
  text-transform: none;
  color: #545454;
  font-size: 1.5em;
}
/* line 644, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.left-col section.primary img,
body.trust.page div.left-col section.secondary img {
  float: left;
  margin-left: -175px;
}
/* line 650, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.left-col section.secondary {
  border-top: 1px solid #B1B1B1;
}
/* line 655, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.right-col {
  float: left;
  display: inline;
  width: 19.27083%;
  margin-left: 0%;
  margin-right: 0%;
  float: left;
  margin-left: 0px;
  padding-top: 20px;
}
/* line 663, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.right-col section {
  padding: 5px;
  background: #F7F7F7;
  margin-bottom: 5px;
}
/* line 668, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.right-col section > h1 {
  border-bottom: 2px solid #004F8C;
  font-size: 1.25em;
  line-height: 40px;
  margin: 0 0 7px 0;
}
/* line 675, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.right-col section a.more {
  color: #004F8C;
  background: #EDEDED url(../i/right-arrow-large-grey.png) no-repeat 10px 14px;
  display: block;
  line-height: 50px;
  font-size: 1.2em;
  margin: 0 -5px -5px -5px;
  padding-left: 40px;
}
/* line 686, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.right-col .people {
  /* For modern browsers */
  /* For IE 6/7 (trigger hasLayout) */
}
/* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
body.trust.page div.right-col .people:before, body.trust.page div.right-col .people:after {
  content: "";
  display: table;
}
/* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
body.trust.page div.right-col .people:after {
  clear: both;
}
/* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
body.trust.page div.right-col .people {
  zoom: 1;
}
/* line 689, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.right-col .people div {
  width: 160px;
  float: left;
  margin: 5px;
}
/* line 694, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.right-col .people div + div {
  margin-left: 15px;
}
/* line 698, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.right-col .people div hgroup {
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 701, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.trust.page div.right-col .people div hgroup h2, body.trust.page div.right-col .people div hgroup h3 {
  font-size: 1em;
  line-height: 1.2;
  margin: 0;
}

/* line 714, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.foundation section.content .columns nav .donate-button {
  background: #004F8C;
  color: #fff;
  text-align: center;
}
/* line 719, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
body.foundation section.content .columns nav .donate-button:hover {
  background: #004173;
}
@media screen and (max-width: 768px) {
  /* line 719, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.foundation section.content .columns nav .donate-button:hover {
    background: #004F8C;
  }
}
@media screen and (min-width: 769px) {
  /* line 728, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.foundation section.content .columns nav .donate-button {
    display: block;
    margin: 40px -10px 0 0;
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  /* line 735, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/site.scss */
  body.foundation section.content .columns nav .donate-button {
    display: block;
    margin: 25px auto 10px;
    padding: 15px 0;
    max-width: 375px;
  }
}

/* line 2, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
body header#site-wide nav.meta {
  text-align: right;
}
@media screen and (max-width: 768px) {
  /* line 2, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.meta {
    border-bottom: 2px solid #004F8C;
  }
}
/* line 8, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
body header#site-wide nav.meta a, body header#site-wide nav.meta h6 {
  text-decoration: none;
  text-align: center;
  line-height: 25px;
  font-size: 0.9em;
  color: #949494;
}
@media screen and (max-width: 768px) {
  /* line 8, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.meta a, body header#site-wide nav.meta h6 {
    text-align: left;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.4;
    color: #004F8C;
  }
}
@media screen and (max-width: 768px) {
  /* line 23, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.meta h6 {
    color: #949494;
  }
}
/* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
body header#site-wide nav.meta a:hover {
  color: #AAA;
}
@media screen and (max-width: 768px) {
  /* line 33, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.meta a, body header#site-wide nav.meta a:hover {
    color: #004F8C;
  }
}
/* line 40, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
body header#site-wide nav.meta .tools h6:after {
  font-size: 0.6em;
}
/* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
body header#site-wide nav.meta .tools .sub {
  background: #fff;
}
@media screen and (max-width: 768px) {
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.meta .tools .sub {
    border-bottom: 2px solid #004F8C;
  }
}
/* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
body header#site-wide nav.meta .tools .sub a {
  text-align: left;
  line-height: 20px;
}
@media screen and (max-width: 768px) {
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.meta .tools .sub a {
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  /* line 61, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.footer {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.4;
    color: #004F8C;
  }
}
@media screen and (max-width: 768px) {
  /* line 70, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main .major {
    border-bottom: 2px solid #004F8C;
  }
}
/* line 74, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
body header#site-wide nav.main .major > li > a {
  text-transform: uppercase;
  color: #545454;
}
/* line 78, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
body header#site-wide nav.main .major > li > a:hover {
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 74, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main .major > li > a {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.4;
    color: #004F8C;
    text-transform: none;
  }
}
/* line 89, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
body header#site-wide nav.main .major li > ul {
  list-style: none;
  background-color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 89, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main .major li > ul {
    background-color: transparent;
    border-bottom: 2px solid #004F8C;
  }
}
/* line 98, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
body header#site-wide nav.main .major li.science, body header#site-wide nav.main .major li.research, body header#site-wide nav.main .major li.community, body header#site-wide nav.main .major li.foundation, body header#site-wide nav.main .major li.about {
  background: url(../i/dropdown-arrow.png) no-repeat 94% 5px;
}
/* line 101, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
body header#site-wide nav.main .major li.science:hover, body header#site-wide nav.main .major li.research:hover, body header#site-wide nav.main .major li.community:hover, body header#site-wide nav.main .major li.foundation:hover, body header#site-wide nav.main .major li.about:hover {
  background-image: url(../i/dropdown-arrow-blue.png);
}
@media screen and (max-width: 768px) {
  /* line 105, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main .major li.science, body header#site-wide nav.main .major li.science:hover, body header#site-wide nav.main .major li.research, body header#site-wide nav.main .major li.research:hover, body header#site-wide nav.main .major li.community, body header#site-wide nav.main .major li.community:hover, body header#site-wide nav.main .major li.foundation, body header#site-wide nav.main .major li.foundation:hover, body header#site-wide nav.main .major li.about, body header#site-wide nav.main .major li.about:hover {
    background: none;
  }
  /* line 108, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main .major li.science > a, body header#site-wide nav.main .major li.research > a, body header#site-wide nav.main .major li.community > a, body header#site-wide nav.main .major li.foundation > a, body header#site-wide nav.main .major li.about > a {
    color: #949494;
  }
}
/* line 114, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
body header#site-wide nav.main .major li li a {
  color: #FFFFFF;
  opacity: .9;
}
@media screen and (max-width: 768px) {
  /* line 114, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main .major li li a {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.4;
  }
  /* line 123, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main .major li li a, body header#site-wide nav.main .major li li a:hover {
    color: #004F8C;
    opacity: 1;
  }
}
/* line 128, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
body header#site-wide nav.main .major li li a:hover {
  color: #75A2C5;
  opacity: 1;
}
/* line 136, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
body header#site-wide nav.main form.search input {
  border: none;
  background: #EDEDED;
  border-radius: 14px;
  outline: none;
}
/* line 142, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
body header#site-wide nav.main form.search input.placeholder-visible {
  color: #aaa;
}
/* line 146, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
body header#site-wide nav.main form.search button[type=submit] {
  border: medium none;
  background: url("../i/search.png") no-repeat scroll 5px 5px transparent;
}
@media screen and (max-width: 768px) {
  /* line 135, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main form.search {
    border-bottom: 2px solid #004F8C;
  }
  /* line 153, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main form.search input {
    text-align: right;
    font-size: 20px;
    font-weight: normal;
    color: #004F8C;
    background: transparent;
    border-radius: 0;
    text-transform: capitalize;
  }
  /* line 162, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main form.search input::-webkit-input-placeholder, body header#site-wide nav.main form.search input:-moz-placeholder, body header#site-wide nav.main form.search input::-moz-placeholder, body header#site-wide nav.main form.search input:-ms-input-placeholder {
    color: #004F8C;
  }
}
@media screen and (min-width: 769px) {
  /* line 1, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide {
    position: relative;
    height: 190px;
    padding-top: 1px;
  }
  /* line 177, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide #logo {
    position: absolute;
    top: 36px;
    left: 0;
  }
  /* line 182, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide .hamburger, body header#site-wide .mobile-nav {
    display: none;
  }
  /* line 185, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav {
    position: absolute;
    width: 100%;
  }
  /* line 189, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.meta {
    top: -10px;
    right: 0px;
    height: 47px;
  }
  /* line 194, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.meta a, body header#site-wide nav.meta .tools {
    display: inline-block;
    padding: 0 6px;
    margin-top: 22px;
  }
  /* line 199, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.meta .tools {
    position: relative;
    display: inline-block;
  }
  /* line 202, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.meta .tools h6 {
    margin: 0;
  }
  /* line 205, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.meta .tools h6:after {
    content: '▼';
    position: relative;
    top: -2px;
    margin-left: 5px;
  }
  /* line 212, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.meta .tools .sub {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    display: none;
    margin-left: -20px;
    padding: 0 20px 20px;
  }
  /* line 221, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.meta .tools .sub a {
    display: block;
    margin: 0;
  }
  /* line 227, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.meta .tools:hover .sub {
    display: block;
  }
  /* line 233, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main {
    bottom: 10px;
  }
  /* line 236, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main .major {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    left: 0;
    width: 100%;
    margin: 0;
    padding-left: 0;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body header#site-wide nav.main .major:before, body header#site-wide nav.main .major:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body header#site-wide nav.main .major:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body header#site-wide nav.main .major {
    zoom: 1;
  }
  /* line 243, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main .major li {
    position: relative;
    float: left;
  }
  /* line 247, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main .major > li > a {
    padding-right: 10px;
    display: block;
    height: 37px;
  }
  /* line 252, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main .major > li.has-sub > a {
    padding-right: 35px;
  }
  /* line 255, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main .major > li + li > a {
    padding-left: 15px;
  }
  /* line 258, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main .major li > ul {
    display: none;
    padding-left: 0;
  }
  /* line 262, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main .major li.open > ul {
    z-index: 1000;
    position: absolute;
    display: block;
    top: 100%;
    margin: 0;
    width: 150%;
  }
  /* line 270, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main .major li li {
    padding: 7px 20px;
    width: 100%;
    display: block;
    float: none;
  }
  /* line 276, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main .major li li a {
    display: block;
  }
  /* line 281, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main .createsend-wrap {
    position: absolute;
    bottom: 15px;
    right: 0;
  }
  /* line 286, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main form.search {
    position: absolute;
    bottom: 100px;
    right: 0;
    width: 220px;
    padding: 0;
    margin: 0;
  }
  /* line 294, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main form.search.analytical {
    bottom: 10px;
  }
  /* line 298, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main form.search input {
    width: 220px;
    height: 28px;
    padding-left: 14px;
    padding-right: 30px;
  }
  /* line 305, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main form.search button[type=submit] {
    position: absolute;
    right: 3px;
    top: 2px;
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 768px) {
  /* line 1, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide {
    position: relative;
    padding: 15px 0 0;
    overflow: hidden;
  }
  /* line 320, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide > nav.meta, body header#site-wide > nav.main {
    display: none;
  }
  /* line 324, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide button.hamburger {
    position: absolute;
    top: 5px;
    right: calc((100% / 48 * 1) - 15px);
  }
  /* line 331, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide button.hamburger .hamburger-box .hamburger-inner:before {
    display: none;
  }
  /* line 337, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide .logo {
    width: 60.41667%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 58.33333%;
    margin-bottom: 35px;
  }
  /* line 342, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide .logo a {
    display: block;
  }
  /* line 345, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide .logo a img {
    width: 100%;
    height: auto;
  }
  /* line 351, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide .mobile-nav {
    display: none;
  }
  /* line 354, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide .mobile-nav.active {
    display: block;
  }
  /* line 358, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.meta {
    margin: 0 0 46px;
    padding: 0 0 12px;
  }
  /* line 362, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.meta a {
    display: block;
  }
  /* line 365, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.meta h6 {
    margin: 0;
  }
  /* line 368, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.meta .sub {
    margin: 0 0 12px;
    padding: 0 0 12px;
  }
  /* line 374, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main ul {
    margin: 0 0 12px;
    padding: 0 0 12px;
  }
  /* line 378, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main form.search {
    margin: 0 0 12px;
  }
  /* line 381, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main form.search input {
    width: 100%;
  }
  /* line 384, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.main form.search button {
    display: none;
  }
  /* line 389, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.footer {
    padding: 0 0 25px;
  }
  /* line 392, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.footer a {
    display: block;
    margin: 0 0 5px;
  }
  /* line 396, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.footer .mailchimp {
    display: none;
  }
  /* line 399, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/header.scss */
  body header#site-wide nav.footer .social {
    margin: 0 0 25px;
  }
}

/* line 1, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
body > .wrapper > footer {
  font-size: 0.9em;
}
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
body > .wrapper > footer .involved header h1 {
  font-size: 1.5em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer .involved header h1 {
    font-size: 16px;
  }
}
/* line 14, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
body > .wrapper > footer .involved header h2 {
  font-size: 1.5em;
  color: #AEAEAE;
}
@media screen and (max-width: 768px) {
  /* line 14, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer .involved header h2 {
    font-size: 16px;
    font-weight: 300;
  }
}
/* line 24, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
body > .wrapper > footer .involved a {
  background: url("../i/right-arrow-small-grey.png") no-repeat 0px 4px;
}
@media screen and (max-width: 768px) {
  /* line 24, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer .involved a {
    font-size: 14px;
    line-height: 1.25;
    font-weight: normal;
  }
}
@media screen and (max-width: 768px) {
  /* line 35, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer nav.meta h6 {
    font-size: 1.2em;
  }
}
@media screen and (min-width: 769px) {
  /* line 1, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer {
    padding: 70px 0;
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body > .wrapper > footer:before, body > .wrapper > footer:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body > .wrapper > footer:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body > .wrapper > footer {
    zoom: 1;
  }
  /* line 46, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer > img {
    float: left;
  }
  /* line 49, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer .involved {
    float: left;
    display: inline;
    width: 50%;
    margin-left: 0%;
    margin-right: 0%;
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    float: right;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body > .wrapper > footer .involved:before, body > .wrapper > footer .involved:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body > .wrapper > footer .involved:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body > .wrapper > footer .involved {
    zoom: 1;
  }
  /* line 54, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer .involved header {
    margin-bottom: 15px;
  }
  /* line 57, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer .involved header h1, body > .wrapper > footer .involved header h2 {
    margin: 0;
  }
  /* line 61, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer .involved a {
    float: left;
    display: inline;
    width: 25%;
    margin-left: 0%;
    margin-right: 0%;
    padding: 0 0 10px 25px;
  }
  /* line 65, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer .involved .createsend-wrap {
    display: none;
  }
  /* line 69, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer nav.meta {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    clear: both;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body > .wrapper > footer nav.meta:before, body > .wrapper > footer nav.meta:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body > .wrapper > footer nav.meta:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body > .wrapper > footer nav.meta {
    zoom: 1;
  }
  /* line 73, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer nav.meta .tools {
    display: none;
  }
  /* line 76, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer nav.meta a {
    float: left;
  }
  /* line 79, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer nav.meta a:before {
    content: '-';
    padding: 0 0.5em;
  }
  /* line 84, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer nav.meta .tools + a:before {
    content: '';
  }
}
@media screen and (max-width: 768px) {
  /* line 1, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer {
    padding: 25px 0 65px;
  }
  /* line 92, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer > img {
    margin: 0 0 25px;
  }
  /* line 95, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer .involved {
    margin: 0 0 15px;
  }
  /* line 98, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer .involved a {
    display: block;
    margin: 0 0 2px;
    padding: 2px 0 2px 20px;
  }
  /* line 103, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer .involved header {
    margin: 0 0 15px;
  }
  /* line 106, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer .involved header h1, body > .wrapper > footer .involved header h2 {
    margin: 0;
  }
  /* line 110, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer .involved .createsend-wrap {
    margin: 5px 0;
  }
  /* line 114, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
  body > .wrapper > footer nav.meta {
    display: none;
  }
}
/* line 119, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/footer.scss */
body > .wrapper > footer nav.misc {
  display: none;
}

/* analytical services sub-site
 *
 * Analytical services is something of a sub site; it has a variant base
 * template based on the main site, but with its own navigation and minor
 * changes.
 *
 * Within this, individual pages deviate from the main site in some ways.
 * Where possible, existing mixins and styling will be used, but where
 * deviation occurs, overriding mixins will be created.
 */
/* line 100, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical nav.analytical-buttons a {
  background: #F1F1F1;
  line-height: 55px;
  color: #2F5A74;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 7px;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  /* line 100, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical nav.analytical-buttons a {
    font-size: .9em;
  }
}
/* line 116, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.content > .sidebar > h1 {
  color: #004F8C;
  border-bottom: 2px solid #004F8C;
}
/* line 121, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.content > .sidebar nav.subpages a {
  line-height: 2em;
  background: url("../i/right-arrow-small-grey.png") no-repeat 2px 5px;
}
/* line 127, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.content section.services h1 {
  text-transform: none;
  color: #004F8C;
  border-bottom: 2px solid #004F8C;
}
/* line 132, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.content section.services ul {
  list-style: none;
}
/* line 135, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.content section.services ul li {
  background: url(../i/right-arrow-grey.png) no-repeat 0px 6px;
}
/* line 136, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.content section.services ul li a {
  line-height: 1.3;
  font-size: 1em;
  color: #545454;
}
/* line 145, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.content section.services ul li ul li {
  background: none;
}
/* line 148, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.content section.services ul li ul li:before {
  font-weight: bold;
  font-size: 0.8em;
}
/* line 156, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.content section.services > ul > li.has_children > a {
  background: url(../i/right-arrow-grey.png) no-repeat 10px 16px;
}
/* line 160, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.content section.services > ul > li.open.has_children > a {
  background-image: url(../i/down-arrow-grey.png);
}
/* line 164, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.content section.services ul + h1 {
  line-height: 1.1;
}
/* line 167, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.content section.services nav.subpages a {
  line-height: 2em;
  background: url("../i/right-arrow-small-grey.png") no-repeat 2px 5px;
}
@media screen and (min-width: 769px) {
  /* line 175, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical section.content:before, body.analytical section.content:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical section.content:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical section.content {
    zoom: 1;
  }
  /* line 178, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content > .sidebar {
    float: left;
    width: 250px;
    margin-right: -250px;
    margin-left: 15px;
  }
  /* line 184, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content > .sidebar > h1 {
    margin-top: 90px;
  }
  /* line 188, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content > .sidebar nav.subpages a {
    display: block;
    padding-left: 25px;
  }
  /* line 194, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.buttons {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical section.buttons:before, body.analytical section.buttons:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical section.buttons:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical section.buttons {
    zoom: 1;
  }
  /* line 198, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.buttons nav.analytical-buttons {
    float: left;
    display: inline;
    width: 68.75%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 6.25%;
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical section.buttons nav.analytical-buttons:before, body.analytical section.buttons nav.analytical-buttons:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical section.buttons nav.analytical-buttons:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical section.buttons nav.analytical-buttons {
    zoom: 1;
  }
  /* line 203, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.buttons nav.analytical-buttons a {
    float: left;
    display: inline;
    width: 30.30303%;
    margin-left: 0%;
    margin-right: 0%;
    margin: 0 3.0303% 8px 0;
    display: block;
    height: 55px;
    padding: 0 5px;
  }
  /* line 211, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.buttons .contact {
    float: left;
    display: inline;
    width: 25%;
    margin-left: 0%;
    margin-right: 0%;
  }
  /* line 214, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.buttons .contact p {
    margin: 0 0 10px;
  }
  /* line 221, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.section-overview section.services ul {
    padding: 0;
    margin: 0 0 30px 0;
  }
  /* line 225, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.section-overview section.services ul li {
    margin: 0;
    padding: 5px 0 5px 30px;
  }
  /* line 229, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.section-overview section.services ul li a {
    width: 56.25%;
    margin-left: 0%;
    margin-right: 0%;
  }
  /* line 233, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.section-overview section.services ul li ul {
    margin: 0;
  }
  /* line 236, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.section-overview section.services ul li ul li {
    margin: 0;
    padding: 0 0 5px 30px;
  }
  /* line 240, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.section-overview section.services ul li ul li:before {
    content: '>';
    margin: 0 5px 0 0;
  }
  /* line 248, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.section-overview section.services > ul > li > ul {
    display: none;
  }
  /* line 251, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.section-overview section.services > ul > li.open > ul {
    display: block;
  }
  /* line 254, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.section-overview section.services ul + h1 {
    margin: 10px 0;
  }
  /* line 257, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.section-overview section.services nav.subpages a {
    display: block;
    padding-left: 25px;
  }
}
@media screen and (max-width: 768px) {
  /* line 267, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical .content > .sidebar nav.subpages a {
    display: block;
    padding-left: 25px;
  }
  /* line 274, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical nav.analytical-buttons a {
    margin: 0 0 8px;
    display: block;
    padding: 0 0 0 30px;
  }
  /* line 282, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.section-overview section.services nav.subpages a {
    display: block;
    padding-left: 25px;
  }
  /* line 286, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.section-overview section.services > ul {
    padding: 10px 0 0;
    margin: 0 0 20px 0;
  }
  /* line 290, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.section-overview section.services > ul > li {
    margin: 0;
    padding: 5px 0 5px 20px;
  }
  /* line 294, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.section-overview section.services > ul > li > ul {
    margin: 0;
  }
  /* line 297, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.section-overview section.services > ul > li > ul li {
    margin: 0;
    padding: 0 0 5px 0;
  }
  /* line 301, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.section-overview section.services > ul > li > ul li:before {
    content: '>';
    margin: 0 5px 0 0;
  }
  /* line 309, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.section-overview section.services > ul > li > ul {
    display: none;
  }
  /* line 312, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.section-overview section.services > ul > li.open > ul {
    display: block;
  }
  /* line 315, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.section-overview section.services ul + h1 {
    margin: 10px 0;
  }
}

/* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.analytical .analytical-home section.summary.news article h1 {
  font-size: 1.1em;
}
@media screen and (max-width: 768px) {
  /* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary.news article h1 {
    font-size: 16px;
    line-height: 1.25;
  }
}
/* line 41, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.analytical .analytical-home section.summary.research article h1 {
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  /* line 41, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary.research article h1 {
    font-size: 16px;
    line-height: 1.25;
  }
}
/* line 51, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.analytical .analytical-home section.summary > h1 {
  font-size: 1.5em;
  line-height: 2;
  text-transform: uppercase;
  border-bottom: 5px solid #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 51, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary > h1 {
    border-top: 2px solid #004F8C;
    border-bottom: none;
    font-size: 22px;
    line-height: 1.4;
    background: #fff;
  }
}
/* line 65, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.analytical .analytical-home section.summary > .more {
  line-height: 45px;
  font-size: .9em;
  background: #004F8C;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 65, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary > .more {
    font-size: 18px;
    line-height: 1.25;
  }
}
/* line 77, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.analytical .analytical-home section.summary article {
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  /* line 77, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary article {
    background-color: transparent;
  }
}
/* line 84, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.analytical .analytical-home section.summary article h1 {
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 84, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary article h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 92, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.analytical .analytical-home section.summary article p {
  font-size: .9em;
  color: #545454;
}
@media screen and (max-width: 768px) {
  /* line 92, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary article p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.25;
    color: #484848;
  }
}
/* line 103, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.analytical .analytical-home section.summary article .more {
  color: #004F8C;
  font-size: .9em;
  line-height: 26px;
  background: url("../i/right-arrow-grey.png") no-repeat 10px 15px;
  border-top: 1px solid #F5F5F5;
}
@media screen and (max-width: 768px) {
  /* line 103, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary article .more {
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
    border-top: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.25;
  }
}
@media screen and (min-width: 769px) {
  /* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    padding-bottom: 30px;
    margin: 0 -6px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical .analytical-home section.summary:before, body.analytical .analytical-home section.summary:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical .analytical-home section.summary:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical .analytical-home section.summary {
    zoom: 1;
  }
  /* line 125, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary.news article {
    float: left;
    display: inline;
    width: 24.0625%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
  }
  /* line 129, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary.news article:nth-child(3n+1) {
    margin-right: 1.25%;
  }
  /* line 132, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary.news article:nth-child(4n+1) {
    margin-right: 0;
  }
  /* line 138, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary.research article {
    float: left;
    display: inline;
    width: 32.5%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
  }
  /* line 142, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary.research article:nth-child(3n+1) {
    margin-right: 0;
  }
  /* line 148, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary > h1 {
    margin: 20px 6px 12px;
  }
  /* line 151, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary > .more {
    float: left;
    display: inline;
    width: 6.25%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
    clear: left;
    float: right;
    margin-right: 6px;
    display: none;
  }
  /* line 162, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary article {
    position: relative;
    float: left;
    display: inline;
    width: 32.5%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
    height: 370px;
    padding: 12px;
  }
  /* line 169, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary article:nth-child(3n+1) {
    margin-right: 0;
  }
  /* line 173, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary article .more {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding-left: 35px;
    padding-top: 10px;
    margin: 10px 0 10px -10px;
  }
}
@media screen and (max-width: 768px) {
  /* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    margin: 0 0 15px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical .analytical-home section.summary:before, body.analytical .analytical-home section.summary:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical .analytical-home section.summary:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical .analytical-home section.summary {
    zoom: 1;
  }
  /* line 188, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary > .more {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
    margin: 10px 0;
    padding: 15px 0;
  }
  /* line 194, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary > h1 {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    margin: 0 0 12px;
    padding: 8px 0 0;
  }
  /* line 200, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary.research article {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    min-height: 0;
    margin: 0 0 50px;
  }
  /* line 206, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary article {
    float: left;
    display: inline;
    width: 47.91667%;
    margin-left: 0%;
    margin-right: 0%;
    min-height: 385px;
    margin: 0 0 15px;
  }
  /* line 211, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary article:nth-child(2n+2) {
    margin-right: 4.16667%;
  }
  /* line 214, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary article h1 {
    margin: 0 0 8px;
  }
  /* line 217, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary article p {
    margin: 0 0 5px;
  }
  /* line 220, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary article .image {
    margin: 0 0 12px;
  }
  /* line 223, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical .analytical-home section.summary article .more {
    display: block;
    margin: 15px 0 0;
    padding-left: 20px;
  }
}
/* line 329, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical .analytical-home header h1 {
  font-size: 1.5em;
}
/* line 334, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical .analytical-home div.summary .accreditation ul {
  list-style: none;
}
@media screen and (max-width: 768px) {
  /* line 340, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical .analytical-home section.summary article {
    background-color: transparent;
  }
}
@media screen and (min-width: 769px) {
  /* line 347, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical .analytical-home header h1 {
    width: 350px;
  }
  /* line 352, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical .analytical-home div.summary .accreditation ul {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    margin: 0;
    padding: 0;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical .analytical-home div.summary .accreditation ul:before, body.analytical .analytical-home div.summary .accreditation ul:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical .analytical-home div.summary .accreditation ul:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical .analytical-home div.summary .accreditation ul {
    zoom: 1;
  }
  /* line 357, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical .analytical-home div.summary .accreditation ul li {
    display: block;
    float: left;
    width: 80px;
  }
  /* line 362, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical .analytical-home div.summary .accreditation ul li:nth-child(odd) {
    clear: left;
  }
}
@media screen and (max-width: 768px) {
  /* line 372, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical .analytical-home div.summary .accreditation ul {
    padding: 0;
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical .analytical-home div.summary .accreditation ul:before, body.analytical .analytical-home div.summary .accreditation ul:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical .analytical-home div.summary .accreditation ul:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical .analytical-home div.summary .accreditation ul {
    zoom: 1;
  }
  /* line 376, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical .analytical-home div.summary .accreditation ul li {
    float: left;
    display: inline;
    width: 50%;
    margin-left: 0%;
    margin-right: 0%;
  }
  /* line 383, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical .analytical-home section.summary h1 {
    margin: 0;
  }
  /* line 387, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical .analytical-home section.summary article p {
    margin: 0 0 10px;
  }
  /* line 390, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical .analytical-home section.summary article .image {
    margin: 0 0 5px;
  }
}

@media screen and (min-width: 769px) {
  /* line 466, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical.services section.content section.service > header {
    margin-top: 15px;
  }
  /* line 470, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical.services section.content section.service nav.services nav.analytical-buttons {
    padding: 10px 0 0;
  }
  /* line 472, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical.services section.content section.service nav.services nav.analytical-buttons a {
    display: block;
    margin: 0 0 8px;
    padding: 0 0 0 30px;
    height: 55px;
  }
}

/* line 486, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.content > section.contact > header h1 {
  margin-bottom: 10px;
  padding-bottom: .25em;
}
/* line 491, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.content > section.contact > section > header h1 {
  font-size: 1.5em;
  color: #004F8C;
  border-bottom: 2px solid #004F8C;
}
@media screen and (min-width: 769px) {
  /* line 485, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content > section.contact {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical section.content > section.contact:before, body.analytical section.content > section.contact:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical section.content > section.contact:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical section.content > section.contact {
    zoom: 1;
  }
  /* line 500, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content > section.contact > header h1 {
    margin-bottom: 10px;
    padding-bottom: .25em;
  }
  /* line 504, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content > section.contact > section {
    float: left;
    width: 360px;
  }
  /* line 508, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content > section.contact > section > header h1 {
    padding-bottom: .5em;
  }
  /* line 512, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content > section.contact > section:nth-child(even) {
    clear: left;
    margin-right: 80px;
  }
}
@media screen and (max-width: 768px) {
  /* line 485, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content > section.contact {
    height: auto;
  }
}

@media screen and (min-width: 769px) {
  /* line 522, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content > section.people {
    height: auto;
  }
}

@media screen and (min-width: 769px) {
  /* line 528, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content > section.people {
    width: 620px;
    float: left;
  }
}
/* line 886, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.analytical section.content > section.people article.person.summary h1 {
  border-bottom: 1px solid #C6C6C6;
  font-size: 1.2em;
  line-height: 2;
  color: #545454;
}
@media screen and (max-width: 768px) {
  /* line 886, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical section.content > section.people article.person.summary h1 {
    font-size: 20px;
    line-height: 1.4;
    color: #484848;
  }
}
/* line 898, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.analytical section.content > section.people article.person.summary h1 span {
  opacity: .6;
  color: #545454;
}
@media screen and (max-width: 768px) {
  /* line 898, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical section.content > section.people article.person.summary h1 span {
    font-size: 18px;
    opacity: 1;
    color: #484848;
  }
}
/* line 909, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.analytical section.content > section.people article.person.summary div, body.analytical section.content > section.people article.person.summary a.more {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  /* line 909, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical section.content > section.people article.person.summary div, body.analytical section.content > section.people article.person.summary a.more {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 917, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.analytical section.content > section.people article.person.summary div {
  border-right: 1px solid #C6C6C6;
}
@media screen and (max-width: 768px) {
  /* line 917, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical section.content > section.people article.person.summary div {
    border-right: none;
  }
}
@media screen and (min-width: 769px) {
  /* line 885, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical section.content > section.people article.person.summary {
    margin-bottom: 1em;
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical section.content > section.people article.person.summary:before, body.analytical section.content > section.people article.person.summary:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical section.content > section.people article.person.summary:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.analytical section.content > section.people article.person.summary {
    zoom: 1;
  }
  /* line 928, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical section.content > section.people article.person.summary h1 {
    margin-bottom: 0;
  }
  /* line 931, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical section.content > section.people article.person.summary div, body.analytical section.content > section.people article.person.summary a.more {
    float: left;
  }
  /* line 934, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical section.content > section.people article.person.summary .phone {
    width: 200px;
  }
  /* line 937, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical section.content > section.people article.person.summary .email {
    width: 300px;
    padding: 0 20px;
  }
  /* line 941, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical section.content > section.people article.person.summary .more {
    display: block;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  /* line 885, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical section.content > section.people article.person.summary {
    margin: 0 0 25px;
  }
  /* line 949, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical section.content > section.people article.person.summary h1 {
    padding: 0 0 10px;
  }
  /* line 952, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical section.content > section.people article.person.summary h1 span.title {
    display: block;
  }
  /* line 956, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.analytical section.content > section.people article.person.summary h1 {
    margin: 0 0 10px;
  }
}
/* line 532, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.content > section.people > h1 {
  font-size: 1.5em;
  color: #004F8C;
  border-top: 2px solid #004F8C;
  border-bottom: 2px solid #004F8C;
}
@media screen and (min-width: 769px) {
  /* line 528, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content > section.people {
    width: 100%;
    clear: both;
  }
  /* line 542, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content > section.people > h1 {
    padding: 1em 0 0.5em;
  }
}

@media screen and (min-width: 769px) {
  /* line 548, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content > section.contact + section.people {
    padding-top: 80px;
  }
}

/* line 555, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.content .masthead + section.people > h1 {
  border-top: none;
  font-size: 3em;
  line-height: 1;
}
/* line 560, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.content .masthead + section.people h2 {
  color: #004F8C;
  border-bottom: 2px solid #004F8C;
}
@media screen and (min-width: 769px) {
  /* line 565, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content .masthead + section.people > h1 {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 10px;
  }
}

@media screen and (min-width: 769px) {
  /* line 573, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.accreditations {
    width: 620px;
    float: left;
  }
}
/* line 576, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.accreditations > header > h1 {
  font-size: 2.5em;
  color: #004F8C;
  border-bottom: 3px solid #004F8C;
}
/* line 582, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.accreditations article header h1 {
  font-size: 1.25em;
}
/* line 586, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.accreditations article + article {
  border-top: 1px solid #888;
}
@media screen and (min-width: 769px) {
  /* line 590, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.accreditations > header > h1 {
    margin-bottom: 1em;
    padding-bottom: 0.25em;
  }
  /* line 594, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.accreditations article {
    margin: 1em 0;
  }
}

@media screen and (min-width: 769px) {
  /* line 601, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.submit {
    width: 620px;
    float: left;
  }
}
/* line 604, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.submit > header > h1 {
  font-size: 2.5em;
  color: #004F8C;
  border-bottom: 3px solid #004F8C;
}
/* line 609, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.submit > h2 {
  color: #004F8C;
  font-size: 1.5em;
}
/* line 613, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.submit ul {
  list-style: none;
}
@media screen and (min-width: 769px) {
  /* line 617, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.submit > header > h1 {
    margin-bottom: 1em;
    padding-bottom: 0.25em;
  }
  /* line 621, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.submit ul {
    padding-left: 0;
  }
  /* line 624, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.submit + .sidebar > .contact {
    margin-top: 100px;
  }
}

@media screen and (min-width: 769px) {
  /* line 631, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content > section.page {
    width: 620px;
    float: left;
  }
}
/* line 634, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
body.analytical section.content > section.page > header > h1 {
  font-size: 2.5em;
  color: #004F8C;
  border-bottom: 3px solid #004F8C;
}
@media screen and (min-width: 769px) {
  /* line 640, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content > section.page > header > h1 {
    margin-bottom: 1em;
    padding-bottom: 0.25em;
  }
  /* line 644, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content > section.page > section {
    width: 380px;
  }
  /* line 647, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical section.content > section.page + .sidebar > .contact {
    margin-top: 100px;
  }
}

/* line 654, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
.our-tests h1 {
  color: #004F8C;
  border-bottom: 2px #004F8C solid;
  font-size: 34px;
}
/* line 659, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
.our-tests ul {
  list-style: none;
}
/* line 662, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
.our-tests ul ul {
  border-top: 1px #ccc solid;
}
/* line 665, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
.our-tests ul h6 {
  border-top: 1px #ccc solid;
  font-size: 1em;
  color: #004F8C;
}
/* line 671, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
.our-tests ul.hijacked h6 {
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  /* line 653, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    margin: 20px 0 0;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  .our-tests:before, .our-tests:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  .our-tests:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  .our-tests {
    zoom: 1;
  }
  /* line 680, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests h1 {
    padding: 0 0 15px;
  }
  /* line 683, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests ul.expander {
    padding: 0;
    margin: 0;
  }
  /* line 687, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests ul.expander li {
    margin: 0;
  }
  /* line 690, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests ul.expander ul {
    padding: 0;
    margin: 0 0 10px;
  }
  /* line 694, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests ul.expander ul li:first-child {
    margin: 10px 0 0;
  }
  /* line 698, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests ul.expander h6 {
    padding: 10px 0 10px 40px;
    margin: 0;
  }
  /* line 704, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests ul.expander.hijacked h6 {
    position: relative;
  }
  /* line 707, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests ul.expander.hijacked h6:before {
    content: '+';
    position: absolute;
    left: 5px;
    top: 10px;
  }
  /* line 713, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests ul.expander.hijacked h6.active:before {
    content: '-';
  }
  /* line 719, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests .content {
    float: left;
    display: inline;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 4.16667%;
  }
  /* line 723, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests .sidebar {
    float: left;
    display: inline;
    width: 29.16667%;
    margin-left: 0%;
    margin-right: 0%;
  }
  /* line 726, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests .sidebar nav.analytical-buttons {
    padding: 85px 0 0;
  }
  /* line 729, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests .sidebar nav.analytical-buttons a {
    display: block;
    margin: 0 0 8px;
    padding: 0 0 0 30px;
    height: 55px;
  }
  /* line 737, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests .intro {
    width: 87.5%;
    margin-left: 0%;
    margin-right: 0%;
    margin: 0 0 30px;
  }
}
@media screen and (max-width: 768px) {
  /* line 743, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests .content {
    margin: 0 0 10px;
  }
  /* line 746, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests h1 {
    padding: 0 0 15px;
  }
  /* line 749, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests ul {
    padding: 0;
    margin: 0;
  }
  /* line 753, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests ul li {
    margin: 0;
  }
  /* line 756, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests ul ul {
    padding: 0;
    margin: 0 0 10px;
  }
  /* line 760, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests ul ul li:first-child {
    margin: 10px 0 0;
  }
  /* line 764, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests ul h6 {
    padding: 10px 0 10px 40px;
    margin: 0;
  }
  /* line 768, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests ul li li {
    padding: 5px 0 5px 40px;
  }
  /* line 772, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests ul.hijacked h6 {
    position: relative;
  }
  /* line 775, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests ul.hijacked h6:before {
    content: '+';
    position: absolute;
    left: 5px;
    top: 10px;
  }
  /* line 781, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  .our-tests ul.hijacked h6.active:before {
    content: '-';
  }
}

@media screen and (max-width: 768px) {
  /* line 793, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/analytical.scss */
  body.analytical.submit section.content .masthead .right {
    display: none;
  }
}

/* line 4, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
body.aquaculture-park section.content .masthead header {
  background: #FFFFFF;
}
/* line 7, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
body.aquaculture-park section.content .masthead header h1 {
  font-size: 1.7em;
  color: #004F8C;
}
/* line 13, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
body.aquaculture-park section.content > nav {
  border-top: 3px solid #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 13, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content > nav {
    border-top: 0;
  }
}
/* line 20, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
body.aquaculture-park section.content > nav a {
  color: #004F8C;
}
/* line 24, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
body.aquaculture-park section.content > div.inner {
  border-top: 3px solid #004F8C;
}
/* line 28, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
body.aquaculture-park section.content > div.inner article h1 {
  font-size: 2.5em;
  color: #004F8C;
}
/* line 33, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
body.aquaculture-park section.content > div.inner article .introduction {
  border-bottom: 1px solid #B1B1B1;
}
/* line 34, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
body.aquaculture-park section.content > div.inner article .introduction p {
  font-size: 1.2em;
  color: #004F8C;
}
/* line 39, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
body.aquaculture-park section.content > div.inner article .introduction p + p {
  font-size: 1em;
}
/* line 48, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
body.aquaculture-park section.content > div.inner div.right-col section {
  background: #F7F7F7;
}
/* line 51, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
body.aquaculture-park section.content > div.inner div.right-col section > h1 {
  border-bottom: 2px solid #004F8C;
  font-size: 1.25em;
  line-height: 40px;
}
/* line 57, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
body.aquaculture-park section.content > div.inner div.right-col section a.more {
  color: #004F8C;
  background: #EDEDED url(../i/right-arrow-large-grey.png) no-repeat 10px 14px;
  line-height: 50px;
  font-size: 1.2em;
}
/* line 65, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
body.aquaculture-park section.content > div.inner div.right-col .sponsors {
  background: transparent;
}
/* line 68, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
body.aquaculture-park section.content > div.inner div.right-col .sponsors > h1 {
  font-size: 1em;
  color: #545454;
  border-bottom: 0;
}
@media screen and (min-width: 769px) {
  /* line 79, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content .masthead {
    position: relative;
  }
  /* line 82, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content .masthead header {
    position: absolute;
    bottom: 0;
    left: 16.66667%;
    width: 81.25%;
    height: 123px;
  }
  /* line 89, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content .masthead header h1 {
    margin: 30px 13px 0 13px;
    width: 430px;
  }
  /* line 95, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content > nav {
    float: left;
    display: inline;
    width: 16.66667%;
    margin-left: 0%;
    margin-right: 0%;
    margin: 0 1.04167% 0 0;
    padding-top: 20px;
  }
  /* line 100, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content > nav a {
    display: block;
    margin: 10px 0;
  }
  /* line 105, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content > div.inner {
    float: left;
    display: inline;
    width: 82.29167%;
    margin-left: 0%;
    margin-right: 0%;
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    padding-bottom: 60px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.aquaculture-park section.content > div.inner:before, body.aquaculture-park section.content > div.inner:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.aquaculture-park section.content > div.inner:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.aquaculture-park section.content > div.inner {
    zoom: 1;
  }
  /* line 110, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content > div.inner article {
    float: left;
    display: inline;
    width: 56.41026%;
    margin-left: 0%;
    margin-right: 0%;
    padding-right: 5.12821%;
  }
  /* line 114, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content > div.inner article h1 {
    margin: 30px 0;
  }
  /* line 118, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content > div.inner div.right-col {
    float: left;
    display: inline;
    width: 43.58974%;
    margin-left: 0%;
    margin-right: 0%;
  }
  /* line 121, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content > div.inner div.right-col section {
    padding: 5px;
    margin-bottom: 5px;
  }
  /* line 125, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content > div.inner div.right-col section > h1 {
    margin: 0 0 7px 0;
  }
  /* line 129, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content > div.inner div.right-col section a.more {
    display: block;
    margin: 0 -5px -5px -5px;
    padding-left: 40px;
  }
  /* line 136, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content > div.inner div.right-col .map {
    margin: 40px 0;
    padding: 5px 5px 40px 5px;
  }
  /* line 140, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content > div.inner div.right-col .map iframe {
    width: 100%;
  }
  /* line 145, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content > div.inner div.right-col .sponsors {
    width: 360px;
    margin-left: 0px;
  }
  /* line 149, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content > div.inner div.right-col .sponsors a {
    margin: 0;
    padding: 0;
    width: 30%;
  }
  /* line 155, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content > div.inner div.right-col .sponsors > img, body.aquaculture-park section.content > div.inner div.right-col .sponsors a {
    display: block;
    float: left;
  }
  /* line 160, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content > div.inner div.right-col .sponsors > img:nth-child(2n+1), body.aquaculture-park section.content > div.inner div.right-col .sponsors > a:nth-child(2n+1) {
    margin-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  /* line 172, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content .masthead .caption {
    display: none;
  }
  /* line 178, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content > div.inner div.right-col .sponsors {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.aquaculture-park section.content > div.inner div.right-col .sponsors:before, body.aquaculture-park section.content > div.inner div.right-col .sponsors:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.aquaculture-park section.content > div.inner div.right-col .sponsors:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.aquaculture-park section.content > div.inner div.right-col .sponsors {
    zoom: 1;
  }
  /* line 181, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content > div.inner div.right-col .sponsors a {
    float: left;
    display: inline;
    width: 29.16667%;
    margin-left: 0%;
    margin-right: 0%;
    margin-bottom: 15px;
    margin-right: 6.25%;
  }
  /* line 186, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture-park section.content > div.inner div.right-col .sponsors a:nth-child(3n+4) {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  /* line 201, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/aquaculture.scss */
  body.aquaculture section.content .masthead .caption {
    display: none;
  }
}

/* line 431, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.contact.page > h1 {
  border-bottom: 5px solid #004F8C;
  color: #004F8C;
}
/* line 435, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.contact.page header {
  background: #fff;
}
/* line 438, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.contact.page header:before {
  border-bottom: 3px solid #004F8C;
}
/* line 441, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.contact.page header h1 {
  font-size: 2.5em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 441, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page header h1 {
    font-size: 22px;
    line-height: 1.4;
    background: transparent;
    color: #004F8C;
    text-transform: capitalize;
  }
}
@media screen and (max-width: 768px) {
  /* line 455, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns p {
    font-size: 14px;
    line-height: 1.25;
  }
  /* line 460, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns p a strong {
    color: #004F8C;
  }
}
/* line 467, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.contact.page .columns nav > a:hover {
  background: url("../i/right-arrow.png") no-repeat 0 1px;
}
@media screen and (max-width: 768px) {
  /* line 467, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns nav > a:hover {
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
  }
}
@media screen and (max-width: 768px) {
  /* line 475, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns nav a {
    font-size: 14px;
    line-height: 1.25;
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
  }
}
/* line 481, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.contact.page .columns nav a.current {
  color: #666;
}
/* line 485, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.contact.page .columns nav ul {
  list-style: none;
}
/* line 489, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.contact.page .columns nav ul li:before {
  font-weight: bold;
  font-size: 0.8em;
}
/* line 496, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.contact.page .columns .support {
  font-size: .9em;
}
@media screen and (max-width: 768px) {
  /* line 496, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .support {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 503, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.contact.page .columns .support h1 {
  font-size: 1em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 503, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .support h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 513, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.contact.page .columns section footer a {
  background: #004F8C;
  color: #FFFFFF;
  line-height: 42px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 513, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns section footer a {
    font-size: 18px;
    line-height: 1.25;
  }
}
@media screen and (min-width: 769px) {
  /* line 526, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .masthead {
    position: relative;
    margin-bottom: 50px;
  }
  /* line 530, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .masthead header {
    width: 79.16667%;
    margin-left: 0%;
    margin-right: 0%;
    z-index: 100;
    height: 120px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 18.75%;
  }
  /* line 540, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .masthead header:before {
    width: 23.68421%;
    margin-left: 0%;
    margin-right: 0%;
    content: ' ';
    display: block;
    position: absolute;
    left: -23.68421%;
    bottom: 0;
  }
  /* line 548, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .masthead header h1 {
    margin: 40px 3.94737%;
  }
  /* line 553, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    position: relative;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.contact.page .columns:before, body.contact.page .columns:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.contact.page .columns:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.contact.page .columns {
    zoom: 1;
  }
  /* line 557, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns nav {
    float: left;
    display: inline;
    width: 17.70833%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 4.16667%;
  }
  /* line 561, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns nav > span.open {
    display: none;
  }
  /* line 564, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns nav > a {
    display: block;
    margin-left: -20px;
    padding-left: 20px;
    padding-bottom: 8px;
  }
  /* line 570, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns nav ul {
    margin: 0;
    padding: 0;
  }
  /* line 574, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns nav ul li {
    padding: 0 0 5px 12px;
  }
  /* line 577, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns nav ul li:before {
    display: inline-block;
    content: '>';
    margin: 0 5px 0 0;
  }
  /* line 585, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .support {
    float: left;
    display: inline;
    width: 18.75%;
    margin-left: 0%;
    margin-right: 0%;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  /* line 591, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns section footer a {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  /* line 596, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .intro {
    float: left;
    display: inline;
    width: 45.83333%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
    margin-right: 4.16667%;
  }
  /* line 601, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .intro .section-text, body.contact.page .columns .intro .section-image, body.contact.page .columns .intro .section-video {
    margin-bottom: 20px;
  }
  /* line 604, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .intro .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .intro .section-video.youtube, body.contact.page .columns .intro .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .intro .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .intro .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .intro .section-video .video-wrap .video-container .video-embed, body.contact.page .columns .intro .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .intro .section-video .caption {
    font-size: 0.8em;
  }
  /* line 608, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .right {
    float: left;
    display: inline;
    width: 27.08333%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
  }
  /* line 613, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page > h1 {
    padding: 5px 0;
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  /* line 619, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .masthead {
    margin: 0 0 15px;
    overflow: hidden;
  }
  /* line 624, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .masthead header h1, body.contact.page .masthead header h2 {
    margin: 0;
  }
  /* line 627, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .masthead header h1 {
    padding-right: 8.33333%;
  }
  /* line 631, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .masthead .image {
    margin: 0 0 10px;
  }
  /* line 635, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns {
    padding: 0 0 30px;
  }
  /* line 638, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns nav {
    position: relative;
    margin: 0 0 15px;
    padding: 45px 0 0;
  }
  /* line 644, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns nav.menu-active a {
    display: block;
  }
  /* line 648, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns nav:after {
    position: absolute;
    top: 10px;
    left: 10px;
    content: 'Menu';
    font-size: 1.5em;
    z-index: 11;
  }
  /* line 656, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns nav > span.open {
    background: #EDEDED;
    display: block;
    cursor: pointer;
    text-align: right;
    position: absolute;
    padding: 10px;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    font-size: 1.5em;
  }
  /* line 669, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns nav a {
    display: none;
    margin: 10px 0 0;
    padding-left: 20px;
  }
  /* line 675, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns p {
    margin: 0 0 10px;
  }
  /* line 678, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns section footer a {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 25px 0;
  }
  /* line 684, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .image {
    margin: 0 0 10px;
  }
  /* line 688, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .intro .section-text, body.contact.page .columns .intro .section-image, body.contact.page .columns .intro .section-video {
    margin-bottom: 15px;
  }
  /* line 691, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .intro .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .intro .section-video.youtube, body.contact.page .columns .intro .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .intro .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .intro .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .intro .section-video .video-wrap .video-container .video-embed, body.contact.page .columns .intro .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.contact.page .columns .intro .section-video .caption {
    font-size: 0.8em;
  }
}
/* line 7, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/contact.scss */
body.contact.page .columns .details section h1 {
  font-size: 1.25em;
  color: #004F8C;
  border-bottom: 1px solid #ADADAD;
}
@media screen and (max-width: 768px) {
  /* line 7, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/contact.scss */
  body.contact.page .columns .details section h1 {
    border-bottom: 2px solid #004F8C;
  }
}
@media screen and (min-width: 769px) {
  /* line 20, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/contact.scss */
  body.contact.page .columns {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.contact.page .columns:before, body.contact.page .columns:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.contact.page .columns:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.contact.page .columns {
    zoom: 1;
  }
  /* line 23, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/contact.scss */
  body.contact.page .columns .intro {
    width: 725px;
    margin-right: 0;
  }
  /* line 27, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/contact.scss */
  body.contact.page .columns .details {
    float: left;
    width: 230px;
    margin-right: 10px;
  }
  /* line 33, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/contact.scss */
  body.contact.page .columns .details section h1 {
    margin: 0 0 1em 0;
    padding: 6px 0;
  }
}
@media screen and (max-width: 768px) {
  /* line 43, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/contact.scss */
  body.contact.page .columns .details {
    margin: 0 0 35px;
  }
  /* line 46, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/contact.scss */
  body.contact.page .columns .details section {
    margin: 0 0 35px;
  }
  /* line 49, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/contact.scss */
  body.contact.page .columns .details section:last-child {
    margin: 0;
  }
  /* line 52, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/contact.scss */
  body.contact.page .columns .details section h1 {
    margin: 0 0 10px;
  }
  /* line 56, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/contact.scss */
  body.contact.page .columns .details section p:last-child {
    margin: 0;
  }
}

/* line 2, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
.downloads-database h1 {
  color: #004F8C;
  font-size: 40px;
  border-bottom: 2px #004F8C solid;
}
@media screen and (max-width: 768px) {
  /* line 2, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database h1 {
    font-size: 18px;
    line-height: 1.25;
    background: transparent;
    color: #004F8C;
    text-transform: capitalize;
  }
}
@media screen and (min-width: 769px) {
  /* line 18, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database .description p:first-child {
    font-size: 1.2em;
    line-height: 1.3;
  }
}
/* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
.downloads-database .user input {
  background: #f5f5f5;
  border: none;
  font-size: 16px;
}
/* line 31, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
.downloads-database .user label {
  font-size: 13px;
  color: #888;
}
/* line 35, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
.downloads-database .user .errorlist {
  list-style: none;
  color: red;
}
/* line 40, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
.downloads-database ul {
  list-style: none;
}
/* line 43, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
.downloads-database ul li {
  border-bottom: 1px #f5f5f5 solid;
  background: url(../i/file_icon.png) left center no-repeat;
  font-size: 15px;
}
/* line 48, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
.downloads-database ul li h6 {
  font-size: inherit;
}
/* line 51, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
.downloads-database ul li a {
  color: #004F8C;
  text-decoration: underline;
}
/* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
.downloads-database ul li a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 769px) {
  /* line 62, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database h1 {
    clear: both;
  }
  /* line 65, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database .description {
    float: left;
    width: 45%;
    margin: 0 5% 50px 0;
  }
  /* line 70, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database .user {
    float: left;
    width: 50%;
  }
  /* line 74, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database .user h4 {
    padding: 0 0 5px;
    margin: 15px 0 20px;
  }
  /* line 78, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database .user label {
    display: block;
  }
  /* line 81, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database .user input {
    padding: 10px;
  }
  /* line 84, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database .user input[type="submit"] {
    margin: 0 0 40px;
    padding: 0;
  }
  /* line 88, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database .user .errorlist {
    padding: 0;
    margin: 0;
  }
  /* line 92, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database .user .errorlist li {
    margin: 0;
  }
  /* line 97, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database ul {
    padding: 0;
    margin: 0;
  }
  /* line 101, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database ul li {
    padding: 10px 0 10px 40px;
  }
  /* line 104, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database ul li h6 {
    margin: 0;
    display: inline-block;
    width: 320px;
  }
}
@media screen and (max-width: 768px) {
  /* line 1, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database {
    margin: 0 0 25px;
  }
  /* line 115, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database h1 {
    margin: 0 0 25px;
  }
  /* line 118, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database p {
    margin: 0 0 10px;
  }
  /* line 121, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database .user {
    margin: 0 0 25px;
  }
  /* line 124, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database .user h4 {
    margin: 0 0 15px;
  }
  /* line 127, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database .user label {
    margin: 0 0 10px;
  }
  /* line 130, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database .user input {
    display: block;
    width: 100%;
    margin: 0 0 15px;
    padding: 5px;
  }
  /* line 136, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database .user input[type="submit"] {
    padding: 10px;
  }
  /* line 140, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database ul {
    margin: 0 0 10px;
    padding: 0;
  }
  /* line 144, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database ul li {
    margin: 0 0 10px;
    padding: 10px 0 10px 40px;
  }
  /* line 148, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database ul li h6 {
    margin: 0 0 10px;
  }
  /* line 151, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/downloads.scss */
  .downloads-database ul li .login {
    display: none;
  }
}

/* line 2, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
body.home header#site-wide,
body.home .masthead {
  background: #FFFFFF;
}
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
body.home .banner {
  background: #fff;
}
/* line 10, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
body.home .masthead header {
  border-top: 3px solid #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 10, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead header {
    border-top-width: 2px;
  }
}
/* line 16, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
body.home .masthead header h1 {
  color: #004F8C;
  font-size: 1.4em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  /* line 16, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead header h1 {
    font-size: 18px;
    line-height: 1.25;
  }
}
/* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
body.home .masthead header h2 {
  font-size: .9em;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  /* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead header h2 {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
  }
  /* line 35, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead header h2, body.home .masthead header h2 a {
    color: #004F8C;
  }
}
/* line 42, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
body.home .masthead nav.meta a {
  color: #7B7B7B;
}
/* line 49, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
body.home .masthead section.home-sections article.section a p {
  font-size: 16px;
  line-height: 1.1;
}
/* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.home section.content section.summary.news article h1 {
  font-size: 1.1em;
}
@media screen and (max-width: 768px) {
  /* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary.news article h1 {
    font-size: 16px;
    line-height: 1.25;
  }
}
/* line 41, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.home section.content section.summary.research article h1 {
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  /* line 41, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary.research article h1 {
    font-size: 16px;
    line-height: 1.25;
  }
}
/* line 51, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.home section.content section.summary > h1 {
  font-size: 1.5em;
  line-height: 2;
  text-transform: uppercase;
  border-bottom: 5px solid #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 51, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary > h1 {
    border-top: 2px solid #004F8C;
    border-bottom: none;
    font-size: 22px;
    line-height: 1.4;
    background: #fff;
  }
}
/* line 65, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.home section.content section.summary > .more {
  line-height: 45px;
  font-size: .9em;
  background: #004F8C;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 65, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary > .more {
    font-size: 18px;
    line-height: 1.25;
  }
}
/* line 77, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.home section.content section.summary article {
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  /* line 77, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary article {
    background-color: transparent;
  }
}
/* line 84, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.home section.content section.summary article h1 {
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 84, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary article h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 92, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.home section.content section.summary article p {
  font-size: .9em;
  color: #545454;
}
@media screen and (max-width: 768px) {
  /* line 92, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary article p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.25;
    color: #484848;
  }
}
/* line 103, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.home section.content section.summary article .more {
  color: #004F8C;
  font-size: .9em;
  line-height: 26px;
  background: url("../i/right-arrow-grey.png") no-repeat 10px 15px;
  border-top: 1px solid #F5F5F5;
}
@media screen and (max-width: 768px) {
  /* line 103, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary article .more {
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
    border-top: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.25;
  }
}
@media screen and (min-width: 769px) {
  /* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    padding-bottom: 30px;
    margin: 0 -6px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.home section.content section.summary:before, body.home section.content section.summary:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.home section.content section.summary:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.home section.content section.summary {
    zoom: 1;
  }
  /* line 125, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary.news article {
    float: left;
    display: inline;
    width: 24.0625%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
  }
  /* line 129, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary.news article:nth-child(3n+1) {
    margin-right: 1.25%;
  }
  /* line 132, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary.news article:nth-child(4n+1) {
    margin-right: 0;
  }
  /* line 138, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary.research article {
    float: left;
    display: inline;
    width: 32.5%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
  }
  /* line 142, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary.research article:nth-child(3n+1) {
    margin-right: 0;
  }
  /* line 148, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary > h1 {
    margin: 20px 6px 12px;
  }
  /* line 151, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary > .more {
    float: left;
    display: inline;
    width: 6.25%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
    clear: left;
    float: right;
    margin-right: 6px;
    display: none;
  }
  /* line 162, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary article {
    position: relative;
    float: left;
    display: inline;
    width: 32.5%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
    height: 370px;
    padding: 12px;
  }
  /* line 169, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary article:nth-child(3n+1) {
    margin-right: 0;
  }
  /* line 173, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary article .more {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding-left: 35px;
    padding-top: 10px;
    margin: 10px 0 10px -10px;
  }
}
@media screen and (max-width: 768px) {
  /* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    margin: 0 0 15px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.home section.content section.summary:before, body.home section.content section.summary:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.home section.content section.summary:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.home section.content section.summary {
    zoom: 1;
  }
  /* line 188, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary > .more {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
    margin: 10px 0;
    padding: 15px 0;
  }
  /* line 194, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary > h1 {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    margin: 0 0 12px;
    padding: 8px 0 0;
  }
  /* line 200, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary.research article {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    min-height: 0;
    margin: 0 0 50px;
  }
  /* line 206, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary article {
    float: left;
    display: inline;
    width: 47.91667%;
    margin-left: 0%;
    margin-right: 0%;
    min-height: 385px;
    margin: 0 0 15px;
  }
  /* line 211, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary article:nth-child(2n+2) {
    margin-right: 4.16667%;
  }
  /* line 214, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary article h1 {
    margin: 0 0 8px;
  }
  /* line 217, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary article p {
    margin: 0 0 5px;
  }
  /* line 220, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary article .image {
    margin: 0 0 12px;
  }
  /* line 223, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.home section.content section.summary article .more {
    display: block;
    margin: 15px 0 0;
    padding-left: 20px;
  }
}
/* line 61, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
body.home section.content section.specialists > h1 {
  font-size: 1.5em;
  line-height: 2;
  text-transform: uppercase;
  border-bottom: 5px solid #004F8C;
}
/* line 68, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
body.home section.content section.specialists h1 {
  color: #004F8C;
  text-transform: none;
}
/* line 73, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
body.home section.content section.specialists a {
  border-radius: 12px;
  color: #11487C;
  background: #EDEDED url("../i/right-arrow.png") no-repeat 10px 15px;
}
@media screen and (max-width: 768px) {
  /* line 73, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home section.content section.specialists a {
    background: none;
    color: #004F8C;
    border-radius: 0;
    font-size: 13px;
    font-weight: 300;
  }
}
@media screen and (min-width: 769px) {
  /* line 90, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home header#site-wide,
  body.home .masthead {
    margin: 0 -75px;
    padding: 0 75px;
  }
  /* line 96, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home header#site-wide #logo {
    left: 75px;
  }
  /* line 99, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home header#site-wide nav.main {
    width: calc(100% - 150px);
  }
  /* line 102, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home header#site-wide nav.meta {
    right: 75px;
  }
  /* line 107, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .banners {
    height: 130px;
    position: relative;
    margin: 15px 0 0;
  }
  /* line 112, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
  }
  /* line 120, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .banner.current {
    display: block;
  }
  /* line 123, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .banner a, body.home .banner img {
    display: block;
    border: none;
  }
  /* line 128, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead {
    position: relative;
  }
  /* line 131, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead header {
    padding: 12px 0 0;
  }
  /* line 134, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead header h1 {
    margin: 0 0 4px;
  }
  /* line 137, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead header h2 {
    margin: 0;
  }
  /* line 141, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead nav.meta {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    float: right;
    margin-top: -16px;
    padding-right: 10px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.home .masthead nav.meta:before, body.home .masthead nav.meta:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.home .masthead nav.meta:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.home .masthead nav.meta {
    zoom: 1;
  }
  /* line 147, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead nav.meta a {
    float: left;
  }
  /* line 150, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead nav.meta a + a:before {
    content: '-';
    padding: 0 0.5em;
  }
  /* line 155, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead section.home-sections {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 20px;
  }
  /* line 160, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead section.home-sections article.section {
    float: left;
    display: inline;
    width: 32.29167%;
    margin-left: 0%;
    margin-right: 0%;
    display: inline-block;
    vertical-align: top;
    margin: 0 1.5625% 10px 0;
  }
  /* line 166, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead section.home-sections article.section:nth-child(3n+3) {
    margin-right: 0;
  }
  /* line 169, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead section.home-sections article.section a {
    display: block;
  }
  /* line 172, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead section.home-sections article.section a .image {
    margin: 0 0 5px;
  }
  /* line 175, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead section.home-sections article.section a p {
    margin: 0;
  }
  /* line 183, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home section.content section.specialists {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    padding-bottom: 30px;
    margin: 0 -6px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.home section.content section.specialists:before, body.home section.content section.specialists:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.home section.content section.specialists:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.home section.content section.specialists {
    zoom: 1;
  }
  /* line 188, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home section.content section.specialists > h1 {
    margin: 20px 6px 12px;
  }
  /* line 191, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home section.content section.specialists a {
    float: left;
    display: inline;
    width: 32.5%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
    float: left;
    padding: 12px 12px 12px 42px;
    margin: 12px 1.25% 0 0;
  }
  /* line 198, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home section.content section.specialists a:nth-child(3n+1) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  /* line 206, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead {
    margin: 0 0 15px;
    overflow: hidden;
  }
  /* line 210, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead header {
    padding: 12px 0 0;
  }
  /* line 213, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead header h1, body.home .masthead header h2 {
    margin: 0;
  }
  /* line 216, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead header h1 {
    padding-right: 33.33333%;
  }
  /* line 220, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead .image {
    margin: 0 0 10px;
  }
  /* line 223, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead section.home-sections {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 15px;
  }
  /* line 228, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead section.home-sections article.section {
    float: left;
    display: inline;
    width: 47.91667%;
    margin-left: 0%;
    margin-right: 0%;
    display: inline-block;
    vertical-align: top;
    margin: 0 0 12px;
  }
  /* line 234, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead section.home-sections article.section:nth-child(2n+1) {
    margin-right: 4.16667%;
  }
  /* line 238, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead section.home-sections article.section a {
    display: block;
  }
  /* line 241, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead section.home-sections article.section a .image {
    margin: 0 0 5px;
  }
  /* line 244, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead section.home-sections article.section a p {
    margin: 0;
  }
  /* line 250, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead .banners {
    position: relative;
    margin: 10px 0 0;
    padding-top: 13.54166667%;
  }
  /* line 255, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead .banners .banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
  }
  /* line 263, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead .banners .banner.current {
    display: block;
  }
  /* line 266, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home .masthead .banners .banner a, body.home .masthead .banners .banner img {
    display: block;
    border: none;
  }
  /* line 274, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home section.content section.specialists {
    margin: 0 0 50px;
  }
  /* line 277, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home section.content section.specialists h1 {
    margin: 0 0 25px;
  }
  /* line 280, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/home.scss */
  body.home section.content section.specialists a {
    display: block;
    margin: 0 0 5px;
  }
}

/* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.news section.news section.summary.news article h1 {
  font-size: 1.1em;
}
@media screen and (max-width: 768px) {
  /* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary.news article h1 {
    font-size: 16px;
    line-height: 1.25;
  }
}
/* line 41, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.news section.news section.summary.research article h1 {
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  /* line 41, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary.research article h1 {
    font-size: 16px;
    line-height: 1.25;
  }
}
/* line 51, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.news section.news section.summary > h1 {
  font-size: 1.5em;
  line-height: 2;
  text-transform: uppercase;
  border-bottom: 5px solid #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 51, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary > h1 {
    border-top: 2px solid #004F8C;
    border-bottom: none;
    font-size: 22px;
    line-height: 1.4;
    background: #fff;
  }
}
/* line 65, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.news section.news section.summary > .more {
  line-height: 45px;
  font-size: .9em;
  background: #004F8C;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 65, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary > .more {
    font-size: 18px;
    line-height: 1.25;
  }
}
/* line 77, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.news section.news section.summary article {
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  /* line 77, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary article {
    background-color: transparent;
  }
}
/* line 84, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.news section.news section.summary article h1 {
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 84, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary article h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 92, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.news section.news section.summary article p {
  font-size: .9em;
  color: #545454;
}
@media screen and (max-width: 768px) {
  /* line 92, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary article p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.25;
    color: #484848;
  }
}
/* line 103, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.news section.news section.summary article .more {
  color: #004F8C;
  font-size: .9em;
  line-height: 26px;
  background: url("../i/right-arrow-grey.png") no-repeat 10px 15px;
  border-top: 1px solid #F5F5F5;
}
@media screen and (max-width: 768px) {
  /* line 103, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary article .more {
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
    border-top: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.25;
  }
}
@media screen and (min-width: 769px) {
  /* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    padding-bottom: 30px;
    margin: 0 -6px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.news section.news section.summary:before, body.news section.news section.summary:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.news section.news section.summary:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.news section.news section.summary {
    zoom: 1;
  }
  /* line 125, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary.news article {
    float: left;
    display: inline;
    width: 24.0625%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
  }
  /* line 129, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary.news article:nth-child(3n+1) {
    margin-right: 1.25%;
  }
  /* line 132, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary.news article:nth-child(4n+1) {
    margin-right: 0;
  }
  /* line 138, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary.research article {
    float: left;
    display: inline;
    width: 32.5%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
  }
  /* line 142, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary.research article:nth-child(3n+1) {
    margin-right: 0;
  }
  /* line 148, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary > h1 {
    margin: 20px 6px 12px;
  }
  /* line 151, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary > .more {
    float: left;
    display: inline;
    width: 6.25%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
    clear: left;
    float: right;
    margin-right: 6px;
    display: none;
  }
  /* line 162, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary article {
    position: relative;
    float: left;
    display: inline;
    width: 32.5%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
    height: 370px;
    padding: 12px;
  }
  /* line 169, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary article:nth-child(3n+1) {
    margin-right: 0;
  }
  /* line 173, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary article .more {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding-left: 35px;
    padding-top: 10px;
    margin: 10px 0 10px -10px;
  }
}
@media screen and (max-width: 768px) {
  /* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    margin: 0 0 15px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.news section.news section.summary:before, body.news section.news section.summary:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.news section.news section.summary:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.news section.news section.summary {
    zoom: 1;
  }
  /* line 188, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary > .more {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
    margin: 10px 0;
    padding: 15px 0;
  }
  /* line 194, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary > h1 {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    margin: 0 0 12px;
    padding: 8px 0 0;
  }
  /* line 200, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary.research article {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    min-height: 0;
    margin: 0 0 50px;
  }
  /* line 206, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary article {
    float: left;
    display: inline;
    width: 47.91667%;
    margin-left: 0%;
    margin-right: 0%;
    min-height: 385px;
    margin: 0 0 15px;
  }
  /* line 211, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary article:nth-child(2n+2) {
    margin-right: 4.16667%;
  }
  /* line 214, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary article h1 {
    margin: 0 0 8px;
  }
  /* line 217, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary article p {
    margin: 0 0 5px;
  }
  /* line 220, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary article .image {
    margin: 0 0 12px;
  }
  /* line 223, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news section.news section.summary article .more {
    display: block;
    margin: 15px 0 0;
    padding-left: 20px;
  }
}
/* line 101, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
body.news section.news > h1 {
  border-bottom: 5px solid #004F8C;
  color: #004F8C;
  font-size: 2.5em;
}
@media screen and (max-width: 768px) {
  /* line 2, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news section.news nav.filtering {
    background: #fff;
  }
}
@media screen and (max-width: 768px) {
  /* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news section.news nav.filtering a {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 11, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
body.news section.news nav.filtering a.current {
  opacity: .5;
}
@media screen and (max-width: 768px) {
  /* line 11, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news section.news nav.filtering a.current {
    opacity: 1;
  }
}
/* line 19, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
body.news section.news nav.filtering header h1 {
  font-size: 1em;
  font-weight: normal;
}
/* line 24, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
body.news section.news nav.filtering form.search input {
  background: #F6F6F6;
  border-radius: 16px;
  border: 0;
  line-height: 27px;
}
/* line 30, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
body.news section.news nav.filtering form.search input.placeholder-visible {
  color: #aaa;
}
/* line 35, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
body.news section.news nav.filtering form.search button[type=submit] {
  border: medium none;
  background: url("../i/search.png") no-repeat scroll 5px 5px transparent;
}
@media screen and (min-width: 769px) {
  /* line 2, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news section.news nav.filtering {
    float: left;
    display: inline;
    width: 23.95833%;
    margin-left: 0%;
    margin-right: 0%;
    float: right;
    height: 415px;
  }
  /* line 46, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news section.news nav.filtering a {
    display: block;
    margin: .5em 0;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news section.news nav.filtering form.search {
    position: relative;
  }
  /* line 53, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news section.news nav.filtering form.search input {
    width: 100%;
    height: 27px;
    margin-top: 2em;
    padding: 0 16px;
  }
  /* line 59, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news section.news nav.filtering form.search button[type=submit] {
    position: absolute;
    right: 3px;
    top: 27px;
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 768px) {
  /* line 2, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news section.news nav.filtering {
    margin: 0 0 15px;
    padding: 0 2.17391% 15px;
  }
  /* line 72, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news section.news nav.filtering a {
    display: block;
    margin: 0 0 5px;
  }
  /* line 76, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news section.news nav.filtering > div {
    margin: 0 0 15px;
  }
  /* line 79, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news section.news nav.filtering form.search {
    position: relative;
  }
  /* line 82, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news section.news nav.filtering form.search input {
    width: 87.5%;
    margin-left: 0%;
    margin-right: 0%;
    height: 27px;
    padding: 0 5px;
  }
  /* line 87, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news section.news nav.filtering form.search button[type=submit] {
    position: absolute;
    width: 8.33333%;
    margin-left: 0%;
    margin-right: 0%;
    right: 0;
    height: 27px;
  }
}
@media screen and (min-width: 769px) {
  /* line 108, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news section.news > h1 {
    margin-top: 60px;
  }
  /* line 111, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news section.news section.summary article {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  /* line 116, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news section.news section.summary > .more {
    display: none;
  }
}

/* line 124, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
body.news.individual section.content > section > h1 {
  border-bottom: 3px solid #004F8C;
  font-size: 2.5em;
  color: #004F8C;
}
/* line 701, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.news.individual section.content > section article .captioned a, body.news.individual section.content > section article .captioned span {
  text-align: right;
  line-height: 17px;
  font-style: italic;
  color: #999999;
}
@media screen and (max-width: 768px) {
  /* line 701, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news.individual section.content > section article .captioned a, body.news.individual section.content > section article .captioned span {
    font-size: 14px;
    line-height: 1.25;
    color: #484848;
  }
}
/* line 713, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.news.individual section.content > section article .captioned a {
  background: url("../i/right-arrow-large-grey.png") no-repeat 5px 2px;
  color: #545454;
  text-align: left;
}
@media screen and (max-width: 768px) {
  /* line 713, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news.individual section.content > section article .captioned a {
    color: #484848;
  }
}
/* line 722, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.news.individual section.content > section article .captioned .image {
  box-sizing: content-box;
  border: 10px solid transparent;
}
@media screen and (max-width: 768px) {
  /* line 722, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news.individual section.content > section article .captioned .image {
    border: none;
  }
}
@media screen and (min-width: 769px) {
  /* line 700, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news.individual section.content > section article .captioned {
    float: left;
    display: inline;
    width: 52.72727%;
    margin-left: 0%;
    margin-right: 0%;
    float: right;
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.news.individual section.content > section article .captioned:before, body.news.individual section.content > section article .captioned:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.news.individual section.content > section article .captioned:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.news.individual section.content > section article .captioned {
    zoom: 1;
  }
  /* line 735, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news.individual section.content > section article .captioned a, body.news.individual section.content > section article .captioned span {
    float: left;
    display: inline;
    width: 96.55172%;
    margin-left: 0%;
    margin-right: 0%;
    float: right;
    margin: 10px 0;
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  /* line 743, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news.individual section.content > section article .captioned a, body.news.individual section.content > section article .captioned span {
    display: block;
    margin: 0 0 15px;
  }
  /* line 747, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news.individual section.content > section article .captioned .image {
    margin: 0 0 10px;
  }
}
/* line 131, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
body.news.individual section.content > section article h1 {
  color: #004F8C;
  font-size: 2.25em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  /* line 136, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section article p, body.news.individual section.content > section article .date {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 142, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
body.news.individual section.content > section article .section-image .caption {
  font-size: 0.8em;
}
@media screen and (max-width: 768px) {
  /* line 146, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section article .captioned .image {
    border: 0;
  }
}
@media screen and (max-width: 768px) {
  /* line 2, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section nav.filtering {
    background: #fff;
  }
}
@media screen and (max-width: 768px) {
  /* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section nav.filtering a {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 11, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
body.news.individual section.content > section nav.filtering a.current {
  opacity: .5;
}
@media screen and (max-width: 768px) {
  /* line 11, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section nav.filtering a.current {
    opacity: 1;
  }
}
/* line 19, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
body.news.individual section.content > section nav.filtering header h1 {
  font-size: 1em;
  font-weight: normal;
}
/* line 24, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
body.news.individual section.content > section nav.filtering form.search input {
  background: #F6F6F6;
  border-radius: 16px;
  border: 0;
  line-height: 27px;
}
/* line 30, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
body.news.individual section.content > section nav.filtering form.search input.placeholder-visible {
  color: #aaa;
}
/* line 35, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
body.news.individual section.content > section nav.filtering form.search button[type=submit] {
  border: medium none;
  background: url("../i/search.png") no-repeat scroll 5px 5px transparent;
}
@media screen and (min-width: 769px) {
  /* line 2, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section nav.filtering {
    float: left;
    display: inline;
    width: 23.95833%;
    margin-left: 0%;
    margin-right: 0%;
    float: right;
    height: 415px;
  }
  /* line 46, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section nav.filtering a {
    display: block;
    margin: .5em 0;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section nav.filtering form.search {
    position: relative;
  }
  /* line 53, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section nav.filtering form.search input {
    width: 100%;
    height: 27px;
    margin-top: 2em;
    padding: 0 16px;
  }
  /* line 59, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section nav.filtering form.search button[type=submit] {
    position: absolute;
    right: 3px;
    top: 27px;
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 768px) {
  /* line 2, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section nav.filtering {
    margin: 0 0 15px;
    padding: 0 2.17391% 15px;
  }
  /* line 72, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section nav.filtering a {
    display: block;
    margin: 0 0 5px;
  }
  /* line 76, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section nav.filtering > div {
    margin: 0 0 15px;
  }
  /* line 79, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section nav.filtering form.search {
    position: relative;
  }
  /* line 82, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section nav.filtering form.search input {
    width: 87.5%;
    margin-left: 0%;
    margin-right: 0%;
    height: 27px;
    padding: 0 5px;
  }
  /* line 87, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section nav.filtering form.search button[type=submit] {
    position: absolute;
    width: 8.33333%;
    margin-left: 0%;
    margin-right: 0%;
    right: 0;
    height: 27px;
  }
}
@media screen and (min-width: 769px) {
  /* line 156, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.news.individual section.content > section:before, body.news.individual section.content > section:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.news.individual section.content > section:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.news.individual section.content > section {
    zoom: 1;
  }
  /* line 159, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section > h1 {
    margin-top: 40px;
  }
  /* line 162, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section article {
    float: left;
    display: inline;
    width: 57.29167%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 18.75%;
  }
  /* line 166, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section article .captioned {
    margin-right: -18.18182%;
  }
  /* line 169, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section article .section-text, body.news.individual section.content > section article .section-image, body.news.individual section.content > section article .section-video {
    margin-bottom: 20px;
  }
  /* line 172, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section article .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news.individual section.content > section article .section-video.youtube, body.news.individual section.content > section article .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news.individual section.content > section article .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news.individual section.content > section article .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news.individual section.content > section article .section-video .video-wrap .video-container .video-embed, body.news.individual section.content > section article .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news.individual section.content > section article .section-video .caption {
    font-size: 0.8em;
  }
  /* line 176, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section nav.filtering {
    float: left;
    margin-top: 20px;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  /* line 185, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section article {
    margin: 0 0 25px;
  }
  /* line 188, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section article .st_facebook_custom,
  body.news.individual section.content > section article .st_twitter_custom,
  body.news.individual section.content > section article .st_linkedin_custom,
  body.news.individual section.content > section article .st_email_custom {
    margin-bottom: 15px;
  }
  /* line 194, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section article .section-text,
  body.news.individual section.content > section article .section-image,
  body.news.individual section.content > section article .section-video {
    margin: 0 0 15px;
  }
  /* line 199, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section article .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news.individual section.content > section article .section-video.youtube, body.news.individual section.content > section article .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news.individual section.content > section article .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news.individual section.content > section article .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news.individual section.content > section article .section-video .video-wrap .video-container .video-embed, body.news.individual section.content > section article .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.news.individual section.content > section article .section-video .caption {
    font-size: 0.8em;
  }
  /* line 202, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section article .image {
    margin: 0 0 10px;
  }
  /* line 206, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section h1 {
    margin: 0 0 15px;
  }
  /* line 209, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section p {
    margin: 0 0 10px;
  }
  /* line 212, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/news.scss */
  body.news.individual section.content > section .date {
    margin: 0 0 10px;
  }
}

/* line 431, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.people section.content > h1 {
  border-bottom: 5px solid #004F8C;
  color: #004F8C;
}
/* line 435, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.people section.content header {
  background: #fff;
}
/* line 438, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.people section.content header:before {
  border-bottom: 3px solid #004F8C;
}
/* line 441, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.people section.content header h1 {
  font-size: 2.5em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 441, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content header h1 {
    font-size: 22px;
    line-height: 1.4;
    background: transparent;
    color: #004F8C;
    text-transform: capitalize;
  }
}
@media screen and (max-width: 768px) {
  /* line 455, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns p {
    font-size: 14px;
    line-height: 1.25;
  }
  /* line 460, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns p a strong {
    color: #004F8C;
  }
}
/* line 467, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.people section.content .columns nav > a:hover {
  background: url("../i/right-arrow.png") no-repeat 0 1px;
}
@media screen and (max-width: 768px) {
  /* line 467, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns nav > a:hover {
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
  }
}
@media screen and (max-width: 768px) {
  /* line 475, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns nav a {
    font-size: 14px;
    line-height: 1.25;
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
  }
}
/* line 481, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.people section.content .columns nav a.current {
  color: #666;
}
/* line 485, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.people section.content .columns nav ul {
  list-style: none;
}
/* line 489, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.people section.content .columns nav ul li:before {
  font-weight: bold;
  font-size: 0.8em;
}
/* line 496, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.people section.content .columns .support {
  font-size: .9em;
}
@media screen and (max-width: 768px) {
  /* line 496, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .support {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 503, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.people section.content .columns .support h1 {
  font-size: 1em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 503, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .support h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 513, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.people section.content .columns section footer a {
  background: #004F8C;
  color: #FFFFFF;
  line-height: 42px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 513, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns section footer a {
    font-size: 18px;
    line-height: 1.25;
  }
}
@media screen and (min-width: 769px) {
  /* line 526, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .masthead {
    position: relative;
    margin-bottom: 50px;
  }
  /* line 530, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .masthead header {
    width: 79.16667%;
    margin-left: 0%;
    margin-right: 0%;
    z-index: 100;
    height: 120px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 18.75%;
  }
  /* line 540, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .masthead header:before {
    width: 23.68421%;
    margin-left: 0%;
    margin-right: 0%;
    content: ' ';
    display: block;
    position: absolute;
    left: -23.68421%;
    bottom: 0;
  }
  /* line 548, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .masthead header h1 {
    margin: 40px 3.94737%;
  }
  /* line 553, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    position: relative;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.people section.content .columns:before, body.people section.content .columns:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.people section.content .columns:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.people section.content .columns {
    zoom: 1;
  }
  /* line 557, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns nav {
    float: left;
    display: inline;
    width: 17.70833%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 4.16667%;
  }
  /* line 561, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns nav > span.open {
    display: none;
  }
  /* line 564, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns nav > a {
    display: block;
    margin-left: -20px;
    padding-left: 20px;
    padding-bottom: 8px;
  }
  /* line 570, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns nav ul {
    margin: 0;
    padding: 0;
  }
  /* line 574, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns nav ul li {
    padding: 0 0 5px 12px;
  }
  /* line 577, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns nav ul li:before {
    display: inline-block;
    content: '>';
    margin: 0 5px 0 0;
  }
  /* line 585, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .support {
    float: left;
    display: inline;
    width: 18.75%;
    margin-left: 0%;
    margin-right: 0%;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  /* line 591, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns section footer a {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  /* line 596, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .intro {
    float: left;
    display: inline;
    width: 45.83333%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
    margin-right: 4.16667%;
  }
  /* line 601, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .intro .section-text, body.people section.content .columns .intro .section-image, body.people section.content .columns .intro .section-video {
    margin-bottom: 20px;
  }
  /* line 604, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .intro .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .intro .section-video.youtube, body.people section.content .columns .intro .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .intro .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .intro .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .intro .section-video .video-wrap .video-container .video-embed, body.people section.content .columns .intro .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .intro .section-video .caption {
    font-size: 0.8em;
  }
  /* line 608, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .right {
    float: left;
    display: inline;
    width: 27.08333%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
  }
  /* line 613, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content > h1 {
    padding: 5px 0;
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  /* line 619, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .masthead {
    margin: 0 0 15px;
    overflow: hidden;
  }
  /* line 624, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .masthead header h1, body.people section.content .masthead header h2 {
    margin: 0;
  }
  /* line 627, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .masthead header h1 {
    padding-right: 8.33333%;
  }
  /* line 631, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .masthead .image {
    margin: 0 0 10px;
  }
  /* line 635, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns {
    padding: 0 0 30px;
  }
  /* line 638, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns nav {
    position: relative;
    margin: 0 0 15px;
    padding: 45px 0 0;
  }
  /* line 644, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns nav.menu-active a {
    display: block;
  }
  /* line 648, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns nav:after {
    position: absolute;
    top: 10px;
    left: 10px;
    content: 'Menu';
    font-size: 1.5em;
    z-index: 11;
  }
  /* line 656, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns nav > span.open {
    background: #EDEDED;
    display: block;
    cursor: pointer;
    text-align: right;
    position: absolute;
    padding: 10px;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    font-size: 1.5em;
  }
  /* line 669, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns nav a {
    display: none;
    margin: 10px 0 0;
    padding-left: 20px;
  }
  /* line 675, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns p {
    margin: 0 0 10px;
  }
  /* line 678, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns section footer a {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 25px 0;
  }
  /* line 684, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .image {
    margin: 0 0 10px;
  }
  /* line 688, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .intro .section-text, body.people section.content .columns .intro .section-image, body.people section.content .columns .intro .section-video {
    margin-bottom: 15px;
  }
  /* line 691, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .intro .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .intro .section-video.youtube, body.people section.content .columns .intro .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .intro .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .intro .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .intro .section-video .video-wrap .video-container .video-embed, body.people section.content .columns .intro .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content .columns .intro .section-video .caption {
    font-size: 0.8em;
  }
}
/* line 6, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.people section.content form.search input {
  border: none;
  background: #EDEDED;
  border-radius: 14px;
  outline: none;
}
/* line 12, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.people section.content form.search input.placeholder-visible {
  color: #aaa;
}
/* line 16, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.people section.content form.search button[type=submit] {
  border: medium none;
  background: url("../i/search.png") no-repeat scroll 5px 5px transparent;
}
/* line 22, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.people section.content section.people > h1 {
  font-size: 2em;
  color: #004F8C;
  border-bottom: 2px solid #004F8C;
}
/* line 886, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.people section.content section.people article.person.summary h1 {
  border-bottom: 1px solid #C6C6C6;
  font-size: 1.2em;
  line-height: 2;
  color: #545454;
}
@media screen and (max-width: 768px) {
  /* line 886, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content section.people article.person.summary h1 {
    font-size: 20px;
    line-height: 1.4;
    color: #484848;
  }
}
/* line 898, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.people section.content section.people article.person.summary h1 span {
  opacity: .6;
  color: #545454;
}
@media screen and (max-width: 768px) {
  /* line 898, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content section.people article.person.summary h1 span {
    font-size: 18px;
    opacity: 1;
    color: #484848;
  }
}
/* line 909, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.people section.content section.people article.person.summary div, body.people section.content section.people article.person.summary a.more {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  /* line 909, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content section.people article.person.summary div, body.people section.content section.people article.person.summary a.more {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 917, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.people section.content section.people article.person.summary div {
  border-right: 1px solid #C6C6C6;
}
@media screen and (max-width: 768px) {
  /* line 917, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content section.people article.person.summary div {
    border-right: none;
  }
}
@media screen and (min-width: 769px) {
  /* line 885, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content section.people article.person.summary {
    margin-bottom: 1em;
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.people section.content section.people article.person.summary:before, body.people section.content section.people article.person.summary:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.people section.content section.people article.person.summary:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.people section.content section.people article.person.summary {
    zoom: 1;
  }
  /* line 928, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content section.people article.person.summary h1 {
    margin-bottom: 0;
  }
  /* line 931, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content section.people article.person.summary div, body.people section.content section.people article.person.summary a.more {
    float: left;
  }
  /* line 934, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content section.people article.person.summary .phone {
    width: 200px;
  }
  /* line 937, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content section.people article.person.summary .email {
    width: 300px;
    padding: 0 20px;
  }
  /* line 941, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content section.people article.person.summary .more {
    display: block;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  /* line 885, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content section.people article.person.summary {
    margin: 0 0 25px;
  }
  /* line 949, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content section.people article.person.summary h1 {
    padding: 0 0 10px;
  }
  /* line 952, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content section.people article.person.summary h1 span.title {
    display: block;
  }
  /* line 956, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.people section.content section.people article.person.summary h1 {
    margin: 0 0 10px;
  }
}
/* line 31, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.people section.content article.individual header h1 {
  font-size: 2.25em;
  color: #004F8C;
  border-bottom: 3px solid #004F8C;
}
/* line 36, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.people section.content article.individual header h2 {
  font-size: 1.5em;
  color: #004F8C;
}
/* line 40, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.people section.content article.individual header h3.not-current {
  font-size: 1.1em;
  color: #999;
}
/* line 46, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.people section.content article.individual .captioned .contact {
  font-size: 1.2em;
  line-height: 1.5;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 46, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual .captioned .contact {
    word-wrap: break-word;
  }
}
/* line 56, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.people section.content article.individual ul.publications {
  list-style: none;
}
/* line 60, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.people section.content article.individual ul.publications li a {
  color: #004F8C;
}
/* line 65, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.people section.content article.individual > nav {
  border-top: 3px solid #004F8C;
}
/* line 68, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.people section.content article.individual > nav div {
  border-bottom: 1px solid #ECECEC;
}
/* line 72, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.people section.content article.individual > nav div a.current {
  opacity: 0.65;
}
/* line 75, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.people section.content article.individual > nav div a:hover {
  opacity: 0.65;
}
/* line 78, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.people section.content article.individual > nav div a span {
  background: url(../i/right-arrow-grey.png) no-repeat 0px 3px;
  line-height: 22px;
  color: #545454;
}
/* line 85, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.people section.content article.individual > nav.border-hack {
  border-top: none;
}
/* line 89, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.people section.content article.individual h1 + nav {
  border-top: none;
}
@media screen and (min-width: 769px) {
  /* line 97, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content .columns .right {
    display: none;
  }
  /* line 100, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content .columns .intro {
    float: left;
    display: inline;
    width: 78.125%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 0;
  }
  /* line 105, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content form.search {
    position: absolute;
    z-index: 110;
    bottom: -30px;
    right: 70px;
  }
  /* line 111, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content form.search input {
    width: 220px;
    height: 28px;
    padding-left: 14px;
    padding-right: 30px;
  }
  /* line 117, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content form.search button[type=submit] {
    position: absolute;
    right: 3px;
    top: 2px;
    width: 25px;
    height: 25px;
  }
  /* line 125, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content section.people {
    margin-bottom: 4em;
  }
  /* line 128, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    margin-bottom: 200px;
    position: relative;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.people section.content article.individual:before, body.people section.content article.individual:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.people section.content article.individual:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.people section.content article.individual {
    zoom: 1;
  }
  /* line 134, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual header h1 {
    margin: 0;
    padding-bottom: 10px;
  }
  /* line 138, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual header h2 {
    margin: 17px 0;
    width: 415px;
  }
  /* line 143, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual .text {
    float: left;
    width: 385px;
  }
  /* line 147, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual .captioned {
    position: absolute;
    top: 60px;
    right: 0;
    float: right;
    padding-left: 40px;
  }
  /* line 154, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual .captioned img {
    display: block;
  }
  /* line 157, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual .captioned .contact {
    margin: 10px 0;
  }
  /* line 161, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual ul.publications {
    padding: 0;
  }
  /* line 164, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual ul.publications li {
    margin-bottom: 20px;
  }
  /* line 168, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual ul.publications .more-wrap .more {
    display: none;
  }
  /* line 172, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual ul.publications .more-wrap.expanded > a {
    display: none;
  }
  /* line 175, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual ul.publications .more-wrap.expanded .more {
    display: block;
  }
  /* line 181, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual > nav {
    margin-top: 20px;
  }
  /* line 184, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual > nav div {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.people section.content article.individual > nav div:before, body.people section.content article.individual > nav div:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.people section.content article.individual > nav div:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.people section.content article.individual > nav div {
    zoom: 1;
  }
  /* line 187, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual > nav div a {
    float: left;
    display: inline;
    width: 8.33333%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
    margin: 15px 0;
  }
  /* line 192, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual > nav div a span {
    display: block;
    padding: 0 0 0 22px;
  }
  /* line 196, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual > nav div a + a {
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  /* line 205, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content .masthead {
    margin: 0 0 15px;
    overflow: hidden;
  }
  /* line 209, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content .masthead h1, body.people section.content .masthead h2 {
    margin: 0;
  }
  /* line 212, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content .masthead h1 {
    padding-right: 34.78261%;
  }
  /* line 215, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content .masthead .image {
    margin: 0 0 10px;
  }
  /* line 219, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content form.search {
    position: relative;
    margin: 15px 0 15px;
  }
  /* line 223, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content form.search input {
    width: 85.41667%;
    margin-left: 0%;
    margin-right: 0%;
    height: 27px;
    padding-left: 14px;
    padding-right: 30px;
    margin-left: 20px;
  }
  /* line 230, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content form.search button[type=submit] {
    position: absolute;
    width: 8.33333%;
    margin-left: 0%;
    margin-right: 0%;
    right: 3px;
    top: 2px;
    height: 27px;
  }
  /* line 238, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content section.people {
    margin-top: 100px;
  }
  /* line 241, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content section.people:first-child {
    margin-top: 35px;
  }
  /* line 245, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content section.intro {
    padding-top: 20px;
  }
  /* line 248, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual {
    position: relative;
    padding-top: 37.5%;
  }
  /* line 253, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual header h1 {
    margin: 0;
  }
  /* line 256, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual header h2 {
    margin: 17px 0;
  }
  /* line 261, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual ul.publications li {
    margin: 0 0 10px;
  }
  /* line 266, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual ul.publications .more-wrap.expanded > a {
    display: none;
  }
  /* line 269, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual ul.publications .more-wrap.expanded .more {
    display: block;
  }
  /* line 273, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual ul.publications .more-wrap .more {
    display: none;
  }
  /* line 278, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual .captioned {
    position: absolute;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    top: 0;
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.people section.content article.individual .captioned:before, body.people section.content article.individual .captioned:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.people section.content article.individual .captioned:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.people section.content article.individual .captioned {
    zoom: 1;
  }
  /* line 284, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual .captioned .image {
    float: left;
    display: inline;
    width: 37.5%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 4.16667%;
  }
  /* line 288, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content article.individual .captioned .contact {
    float: left;
    display: inline;
    width: 58.33333%;
    margin-left: 0%;
    margin-right: 0%;
  }
  /* line 293, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content .image {
    margin: 0 0 10px;
  }
  /* line 298, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.people section.content .intro .people h1 {
    padding: 0 0 15px;
    margin: 0 0 15px;
  }
}

/* line 309, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.directors section.content .intro #introduction {
  font-size: 1.2em;
  color: #004F8C;
}
/* line 313, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.directors section.content .intro .title {
  color: #999999;
}
/* line 317, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.directors section.content .intro .contact header h1 {
  font-size: 2em;
  line-height: 1.5em;
  color: #004F8C;
  border-bottom: 3px solid #004F8C;
}
/* line 323, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.directors section.content .intro .contact header h2 {
  font-size: 1.2em;
  line-height: 1.5em;
  color: #5B5B5B;
  border-bottom: 1px solid #D0D0D0;
}
/* line 329, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.directors section.content .intro .contact .telephone, body.directors section.content .intro .contact .email {
  line-height: 2.5em;
}
/* line 332, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.directors section.content .intro .contact .email {
  border-left: 1px solid #D0D0D0;
}
/* line 337, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.directors section.content .intro .people > header h1 {
  font-size: 2em;
  line-height: 1.5em;
  color: #004F8C;
  border-bottom: 3px solid #004F8C;
}
/* line 344, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.directors section.content .intro .people article header {
  border-bottom: 1px solid #D0D0D0;
}
/* line 347, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.directors section.content .intro .people article header h1 {
  font-size: 1.3em;
}
@media screen and (max-width: 768px) {
  /* line 347, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.directors section.content .intro .people article header h1 {
    font-size: 18px;
  }
}
/* line 355, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
body.directors section.content .intro .people article img {
  border-left: 1px solid #D0D0D0;
}
@media screen and (min-width: 769px) {
  /* line 362, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.directors section.content .intro {
    margin-right: -20px;
  }
  /* line 365, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.directors section.content .intro .contact {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.directors section.content .intro .contact:before, body.directors section.content .intro .contact:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.directors section.content .intro .contact:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.directors section.content .intro .contact {
    zoom: 1;
  }
  /* line 368, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.directors section.content .intro .contact header h1 {
    margin-bottom: 0.5em;
  }
  /* line 371, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.directors section.content .intro .contact header h2 {
    margin-bottom: 0;
  }
  /* line 374, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.directors section.content .intro .contact .telephone, body.directors section.content .intro .contact .email {
    display: block;
    float: left;
    padding: 0;
  }
  /* line 379, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.directors section.content .intro .contact .telephone {
    width: 21.33333%;
  }
  /* line 382, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.directors section.content .intro .contact .email {
    padding-left: 15px;
  }
  /* line 386, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.directors section.content .intro .people {
    margin-top: 2em;
  }
  /* line 389, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.directors section.content .intro .people article {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.directors section.content .intro .people article:before, body.directors section.content .intro .people article:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.directors section.content .intro .people article:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.directors section.content .intro .people article {
    zoom: 1;
  }
  /* line 393, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.directors section.content .intro .people article header h1 {
    padding: 0;
  }
  /* line 397, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.directors section.content .intro .people article .bio {
    float: left;
    display: inline;
    width: 56%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 4%;
  }
  /* line 401, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.directors section.content .intro .people article .image {
    float: left;
    display: inline;
    width: 40%;
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 10px;
    padding-top: 10px;
  }
  /* line 407, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.directors section.content .intro .people article + article {
    margin-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  /* line 416, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.directors section.content .intro section.people article {
    position: relative;
    margin: 0 0 25px;
  }
  /* line 420, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.directors section.content .intro section.people article header {
    margin: 0 0 10px;
  }
  /* line 423, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.directors section.content .intro section.people article header h1 {
    margin: 0 0 10px;
    padding: 0;
  }
  /* line 428, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.directors section.content .intro section.people article .image {
    width: 37.5%;
    margin-left: 0%;
    margin-right: 0%;
  }
}

@media screen and (max-width: 768px) {
  /* line 440, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.single-person section.content .masthead form.search {
    display: none;
  }
  /* line 445, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/people.scss */
  body.single-person section.content .columns nav {
    display: none;
  }
}

/* line 431, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.publications section.content > h1 {
  border-bottom: 5px solid #004F8C;
  color: #004F8C;
}
/* line 435, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.publications section.content header {
  background: #fff;
}
/* line 438, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.publications section.content header:before {
  border-bottom: 3px solid #004F8C;
}
/* line 441, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.publications section.content header h1 {
  font-size: 2.5em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 441, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content header h1 {
    font-size: 22px;
    line-height: 1.4;
    background: transparent;
    color: #004F8C;
    text-transform: capitalize;
  }
}
@media screen and (max-width: 768px) {
  /* line 455, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns p {
    font-size: 14px;
    line-height: 1.25;
  }
  /* line 460, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns p a strong {
    color: #004F8C;
  }
}
/* line 467, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.publications section.content .columns nav > a:hover {
  background: url("../i/right-arrow.png") no-repeat 0 1px;
}
@media screen and (max-width: 768px) {
  /* line 467, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns nav > a:hover {
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
  }
}
@media screen and (max-width: 768px) {
  /* line 475, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns nav a {
    font-size: 14px;
    line-height: 1.25;
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
  }
}
/* line 481, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.publications section.content .columns nav a.current {
  color: #666;
}
/* line 485, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.publications section.content .columns nav ul {
  list-style: none;
}
/* line 489, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.publications section.content .columns nav ul li:before {
  font-weight: bold;
  font-size: 0.8em;
}
/* line 496, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.publications section.content .columns .support {
  font-size: .9em;
}
@media screen and (max-width: 768px) {
  /* line 496, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .support {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 503, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.publications section.content .columns .support h1 {
  font-size: 1em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 503, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .support h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 513, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.publications section.content .columns section footer a {
  background: #004F8C;
  color: #FFFFFF;
  line-height: 42px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 513, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns section footer a {
    font-size: 18px;
    line-height: 1.25;
  }
}
@media screen and (min-width: 769px) {
  /* line 526, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .masthead {
    position: relative;
    margin-bottom: 50px;
  }
  /* line 530, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .masthead header {
    width: 79.16667%;
    margin-left: 0%;
    margin-right: 0%;
    z-index: 100;
    height: 120px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 18.75%;
  }
  /* line 540, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .masthead header:before {
    width: 23.68421%;
    margin-left: 0%;
    margin-right: 0%;
    content: ' ';
    display: block;
    position: absolute;
    left: -23.68421%;
    bottom: 0;
  }
  /* line 548, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .masthead header h1 {
    margin: 40px 3.94737%;
  }
  /* line 553, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    position: relative;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.publications section.content .columns:before, body.publications section.content .columns:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.publications section.content .columns:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.publications section.content .columns {
    zoom: 1;
  }
  /* line 557, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns nav {
    float: left;
    display: inline;
    width: 17.70833%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 4.16667%;
  }
  /* line 561, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns nav > span.open {
    display: none;
  }
  /* line 564, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns nav > a {
    display: block;
    margin-left: -20px;
    padding-left: 20px;
    padding-bottom: 8px;
  }
  /* line 570, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns nav ul {
    margin: 0;
    padding: 0;
  }
  /* line 574, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns nav ul li {
    padding: 0 0 5px 12px;
  }
  /* line 577, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns nav ul li:before {
    display: inline-block;
    content: '>';
    margin: 0 5px 0 0;
  }
  /* line 585, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .support {
    float: left;
    display: inline;
    width: 18.75%;
    margin-left: 0%;
    margin-right: 0%;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  /* line 591, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns section footer a {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  /* line 596, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .intro {
    float: left;
    display: inline;
    width: 45.83333%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
    margin-right: 4.16667%;
  }
  /* line 601, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .intro .section-text, body.publications section.content .columns .intro .section-image, body.publications section.content .columns .intro .section-video {
    margin-bottom: 20px;
  }
  /* line 604, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .intro .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .intro .section-video.youtube, body.publications section.content .columns .intro .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .intro .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .intro .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .intro .section-video .video-wrap .video-container .video-embed, body.publications section.content .columns .intro .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .intro .section-video .caption {
    font-size: 0.8em;
  }
  /* line 608, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .right {
    float: left;
    display: inline;
    width: 27.08333%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
  }
  /* line 613, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content > h1 {
    padding: 5px 0;
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  /* line 619, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .masthead {
    margin: 0 0 15px;
    overflow: hidden;
  }
  /* line 624, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .masthead header h1, body.publications section.content .masthead header h2 {
    margin: 0;
  }
  /* line 627, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .masthead header h1 {
    padding-right: 8.33333%;
  }
  /* line 631, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .masthead .image {
    margin: 0 0 10px;
  }
  /* line 635, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns {
    padding: 0 0 30px;
  }
  /* line 638, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns nav {
    position: relative;
    margin: 0 0 15px;
    padding: 45px 0 0;
  }
  /* line 644, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns nav.menu-active a {
    display: block;
  }
  /* line 648, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns nav:after {
    position: absolute;
    top: 10px;
    left: 10px;
    content: 'Menu';
    font-size: 1.5em;
    z-index: 11;
  }
  /* line 656, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns nav > span.open {
    background: #EDEDED;
    display: block;
    cursor: pointer;
    text-align: right;
    position: absolute;
    padding: 10px;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    font-size: 1.5em;
  }
  /* line 669, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns nav a {
    display: none;
    margin: 10px 0 0;
    padding-left: 20px;
  }
  /* line 675, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns p {
    margin: 0 0 10px;
  }
  /* line 678, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns section footer a {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 25px 0;
  }
  /* line 684, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .image {
    margin: 0 0 10px;
  }
  /* line 688, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .intro .section-text, body.publications section.content .columns .intro .section-image, body.publications section.content .columns .intro .section-video {
    margin-bottom: 15px;
  }
  /* line 691, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .intro .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .intro .section-video.youtube, body.publications section.content .columns .intro .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .intro .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .intro .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .intro .section-video .video-wrap .video-container .video-embed, body.publications section.content .columns .intro .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.publications section.content .columns .intro .section-video .caption {
    font-size: 0.8em;
  }
}
/* line 5, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content .masthead header h1 {
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  /* line 5, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content .masthead header h1 {
    font-size: 22px;
    line-height: 1.4;
    background: transparent;
    color: #004F8C;
    text-transform: capitalize;
  }
}
/* line 18, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content section.publications > h1 {
  color: #004F8C;
  font-size: 2.5em;
}
@media screen and (max-width: 768px) {
  /* line 18, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications > h1 {
    font-size: 22px;
    line-height: 1.4;
    background: transparent;
    color: #004F8C;
    text-transform: capitalize;
  }
}
/* line 31, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content section.publications > nav a {
  font-family: "Helvetica", "Arial", "Sans-Serif";
  font-weight: bold;
  color: #333;
  color: #004F8C;
}
/* line 36, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content section.publications article {
  border-top: 1px solid #B1B1B1;
}
/* line 39, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content section.publications article > img {
  background: #EDEDED;
}
/* line 42, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content section.publications article h1 {
  font-size: 1.5em;
  color: #004F8C;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  /* line 42, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications article h1 {
    font-size: 18px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  /* line 52, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications article p {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 58, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content section.publications article .meta {
  font-size: 0.9em;
  color: #888;
}
@media screen and (max-width: 768px) {
  /* line 58, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications article .meta {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 68, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content section.publications article nav a.more {
  color: #004F8C;
  line-height: 20px;
  background: url(../i/right-arrow-small-grey.png) no-repeat 0 2px;
}
@media screen and (max-width: 768px) {
  /* line 68, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications article nav a.more {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 80, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content section.publications article + article {
  border-top: 1px solid #E9E9E9;
}
@media screen and (max-width: 768px) {
  /* line 84, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col {
    background: #F7F7F7;
  }
}
/* line 88, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content nav.right-col .current {
  color: #888;
}
/* line 91, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content nav.right-col form, body.publications section.content nav.right-col div.recent, body.publications section.content nav.right-col div.section {
  background: #F7F7F7;
}
/* line 94, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content nav.right-col form > h1, body.publications section.content nav.right-col div.recent > h1, body.publications section.content nav.right-col div.section > h1 {
  border-bottom: 2px solid #004F8C;
  font-size: 1.2em;
  line-height: 2em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 94, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col form > h1, body.publications section.content nav.right-col div.recent > h1, body.publications section.content nav.right-col div.section > h1 {
    font-size: 18px;
    line-height: 1.4;
  }
}
/* line 107, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content nav.right-col form.search input {
  border: none;
  background: #EDEDED;
  border-radius: 14px;
  outline: none;
}
/* line 113, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content nav.right-col form.search input.placeholder-visible {
  color: #aaa;
}
/* line 117, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content nav.right-col form.search button[type=submit] {
  border: none;
  background: url(../i/search.png) no-repeat 5px 5px;
}
/* line 123, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content nav.right-col div.recent ul {
  text-indent: 0;
  list-style: none;
}
/* line 127, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content nav.right-col div.recent ul li {
  background: url(../i/right-arrow-grey.png) no-repeat 0px 2px;
}
@media screen and (max-width: 768px) {
  /* line 127, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col div.recent ul li {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 134, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content nav.right-col div.recent ul li a {
  color: #545454;
}
/* line 137, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content nav.right-col div.recent ul li a:hover {
  color: #004F8C;
}
/* line 146, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content nav.right-col div.section nav h1 {
  font-size: 1.1em;
  line-height: 35px;
  color: #545454;
}
@media screen and (max-width: 768px) {
  /* line 146, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col div.section nav h1 {
    font-size: 18px;
    line-height: 1.4;
  }
}
/* line 157, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content nav.right-col div.section nav div a {
  line-height: 35px;
}
@media screen and (max-width: 768px) {
  /* line 157, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col div.section nav div a {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 167, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content nav.right-col div.section nav:hover h1 {
  color: #888 !important;
}
/* line 174, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content article.publication {
  border-right: 1px solid #E9E9E9;
}
@media screen and (max-width: 768px) {
  /* line 174, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication {
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  /* line 180, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication p {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 186, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content article.publication > hgroup {
  border-top: 3px solid #004F8C;
}
/* line 189, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content article.publication > hgroup h3 {
  color: #004F8C;
}
/* line 192, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content article.publication > hgroup h2 {
  color: #004F8C;
  font-size: 1.8em;
  line-height: 1.0;
  border-bottom: 1px solid #B1B1B1;
}
@media screen and (max-width: 768px) {
  /* line 192, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication > hgroup h2 {
    font-size: 22px;
    line-height: 1.4;
    border-bottom: none;
  }
}
/* line 206, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content article.publication div.meta ul.authors {
  text-indent: 0;
}
@media screen and (max-width: 768px) {
  /* line 209, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication div.meta ul.authors li {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 214, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content article.publication div.meta ul.authors li a {
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 219, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication div.meta .published {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 226, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content article.publication .summary {
  font-size: 1.2em;
}
@media screen and (max-width: 768px) {
  /* line 226, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication .summary {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 234, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content article.publication nav.content {
  border-top: 1px solid #BFBFBF;
  border-bottom: 1px solid #BFBFBF;
}
/* line 238, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content article.publication nav.content a {
  background: url(../i/right-arrow.png) no-repeat 0 2px;
}
/* line 241, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
body.publications section.content article.publication nav.content a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  /* line 249, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.publications section.content:before, body.publications section.content:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.publications section.content:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.publications section.content {
    zoom: 1;
  }
  /* line 252, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications {
    float: left;
    display: inline;
    width: 60.41667%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 2.08333%;
    padding-right: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  /* line 259, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications > h1 {
    margin: -10px 0 0px 0;
    padding: 15px 0;
  }
  /* line 263, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications > nav {
    position: relative;
    padding: 20px 0;
    height: 50px;
  }
  /* line 268, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications > nav a {
    position: absolute;
  }
  /* line 271, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications > nav .next {
    right: 0;
  }
  /* line 274, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications > nav .prev {
    left: 0;
  }
  /* line 278, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications article {
    width: 96.55172%;
    margin-left: 0%;
    margin-right: 0%;
    padding: 15px 0 20px 0;
  }
  /* line 282, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications article > img {
    float: left;
    margin-left: -107px;
    padding: 3px;
  }
  /* line 287, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications article h1 {
    margin: 0;
  }
  /* line 290, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications article .meta {
    margin: 0 0 1em 0;
  }
  /* line 293, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications article nav {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.publications section.content section.publications article nav:before, body.publications section.content section.publications article nav:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.publications section.content section.publications article nav:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.publications section.content section.publications article nav {
    zoom: 1;
  }
  /* line 296, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications article nav a.more {
    float: left;
    display: inline;
    width: 46.42857%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
    padding-left: 20px;
  }
  /* line 304, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col {
    float: left;
    display: inline;
    width: 37.5%;
    margin-left: 0%;
    margin-right: 0%;
    padding-top: 40px;
    margin-bottom: 20px;
  }
  /* line 309, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col form, body.publications section.content nav.right-col div.recent, body.publications section.content nav.right-col div.section {
    padding: 5px 20px 20px 20px;
    margin-bottom: 10px;
  }
  /* line 313, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col form > h1, body.publications section.content nav.right-col div.recent > h1, body.publications section.content nav.right-col div.section > h1 {
    margin: 0 -15px 20px -15px;
    padding: 0 5px;
  }
  /* line 318, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col form.search {
    position: relative;
  }
  /* line 321, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col form.search input {
    width: 220px;
    height: 28px;
    padding-left: 14px;
    padding-right: 30px;
  }
  /* line 327, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col form.search button[type=submit] {
    position: absolute;
    right: 113px;
    top: 61px;
    width: 25px;
    height: 25px;
  }
  /* line 336, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col div.recent ul {
    padding: 0;
  }
  /* line 339, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col div.recent ul li {
    margin: 10px 0 20px 0;
    padding-left: 30px;
  }
  /* line 346, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col div.section nav {
    margin: 20px 0;
  }
  /* line 349, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col div.section nav h1 {
    display: none;
    margin: 0;
    top: 0;
    left: 0;
    padding: 0 5px;
    width: 100%;
  }
  /* line 357, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col div.section nav div {
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 100;
  }
  /* line 363, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col div.section nav div a {
    display: block;
    padding: 0 5px;
    width: 100%;
  }
  /* line 370, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col div.section nav.open div {
    display: block;
  }
  /* line 377, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication {
    float: left;
    display: inline;
    width: 60.41667%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 2.08333%;
    padding-right: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  /* line 384, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication > hgroup {
    margin: -10px 0 0px 0;
    padding: 5px 0;
  }
  /* line 388, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication > hgroup h2 {
    float: left;
    display: inline;
    width: 89.65517%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 6.25%;
    padding-bottom: 30px;
  }
  /* line 394, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication div.meta {
    margin-bottom: 20px;
  }
  /* line 397, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication div.meta ul.authors {
    margin: 0;
    padding: 0;
  }
  /* line 401, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication div.meta ul.authors li {
    display: inline;
  }
  /* line 406, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication .summary {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.publications section.content article.publication .summary:before, body.publications section.content article.publication .summary:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.publications section.content article.publication .summary:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.publications section.content article.publication .summary {
    zoom: 1;
  }
  /* line 409, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication .summary img {
    float: right;
  }
  /* line 413, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication nav.content {
    display: block;
    padding: 1em 0;
    margin-top: 100px;
  }
  /* line 418, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication nav.content a {
    display: block;
    padding-left: 25px;
  }
}
@media screen and (max-width: 768px) {
  /* line 428, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content .masthead {
    margin: 0 0 15px;
    overflow: hidden;
  }
  /* line 432, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content .masthead header {
    margin: 0 0 15px;
  }
  /* line 435, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content .masthead header h1, body.publications section.content .masthead header h2 {
    margin: 0;
  }
  /* line 439, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content .masthead .image {
    margin: 0 0 10px;
  }
  /* line 443, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication {
    margin: 0 0 15px;
  }
  /* line 446, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication p {
    margin: 0 0 10px;
  }
  /* line 450, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication .meta ul {
    margin: 15px 0;
    padding: 0;
  }
  /* line 454, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication .meta ul li {
    display: inline;
  }
  /* line 458, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication .meta .published {
    margin: 0 0 15px;
  }
  /* line 463, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication .content .st_facebook_custom,
  body.publications section.content article.publication .content .st_twitter_custom,
  body.publications section.content article.publication .content .st_linkedin_custom,
  body.publications section.content article.publication .content .st_email_custom {
    display: none;
  }
  /* line 469, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content article.publication .content a {
    display: block;
    margin: 5px 0 0;
    padding: 1px 0 5px 20px;
  }
  /* line 477, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications article {
    margin: 0 0 25px;
    padding: 10px 0 0;
  }
  /* line 481, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications article h1 {
    margin: 0 0 15px;
  }
  /* line 485, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications article nav a {
    display: block;
    padding-left: 25px;
  }
  /* line 490, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content section.publications article .meta {
    margin: 0 0 15px;
  }
  /* line 495, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col {
    margin: 0 0 25px;
    padding: 15px 0;
  }
  /* line 499, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col h1 {
    margin: 0 0 15px;
    padding: 0 4.16667% 10px;
  }
  /* line 503, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col ul {
    margin: 0 0 15px;
    padding: 0 4.16667%;
  }
  /* line 507, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col ul li {
    margin: 0 0 10px;
    padding-left: 20px;
  }
  /* line 512, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col form.search {
    position: relative;
    margin: 0 0 15px;
  }
  /* line 516, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col form.search input {
    width: 81.81818%;
    margin-left: 0%;
    margin-right: 0%;
    margin-left: 4.16667%;
    height: 27px;
    padding-left: 14px;
    padding-right: 30px;
  }
  /* line 523, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col form.search button[type=submit] {
    position: absolute;
    width: 9.09091%;
    margin-left: 0%;
    margin-right: 0%;
    right: 4.16667%;
    bottom: 0;
    height: 27px;
  }
  /* line 533, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col div.section nav h1 {
    margin: 0 0 15px;
  }
  /* line 536, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col div.section nav div {
    padding: 0 4.16667%;
  }
  /* line 539, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/publications.scss */
  body.publications section.content nav.right-col div.section nav div a {
    display: block;
    margin: 0 0 10px;
  }
}

/* line 2, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
body.search section.content div.left-col {
  border-top: 3px solid #004F8C;
}
/* line 5, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
body.search section.content div.left-col > h1 {
  text-transform: uppercase;
  color: #004F8C;
  font-size: 2.5em;
}
@media screen and (max-width: 768px) {
  /* line 5, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col > h1 {
    font-size: 22px;
    line-height: 1.5;
  }
}
/* line 15, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
body.search section.content div.left-col > h1 span {
  color: #545454;
}
/* line 19, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
body.search section.content div.left-col .num-results {
  border-top: 1px solid #B1B1B1;
}
@media screen and (max-width: 768px) {
  /* line 19, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col .num-results {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 28, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
body.search section.content div.left-col > nav a {
  font-family: "Helvetica", "Arial", "Sans-Serif";
  font-weight: bold;
  color: #333;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 28, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col > nav a {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 38, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
body.search section.content div.left-col article {
  border-bottom: 1px solid #EAEAEA;
}
/* line 41, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
body.search section.content div.left-col article h1 {
  font-size: 1em;
}
@media screen and (max-width: 768px) {
  /* line 41, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col article h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
@media screen and (max-width: 768px) {
  /* line 49, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col article nav {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 54, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
body.search section.content div.left-col article nav a {
  line-height: 15px;
  background: url(../i/right-arrow-small-grey.png) no-repeat 0 1px;
  font-family: "Helvetica", "Arial", "Sans-Serif";
  font-weight: bold;
  color: #333;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 54, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col article nav a {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 68, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
body.search section.content div.right-col {
  border-top: 3px solid #004F8C;
}
/* line 71, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
body.search section.content div.right-col section {
  background: #F7F7F7;
}
/* line 74, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
body.search section.content div.right-col section > h1 {
  border-bottom: 2px solid #004F8C;
  font-size: 1.25em;
  line-height: 40px;
}
/* line 79, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
body.search section.content div.right-col section a.more {
  color: #004F8C;
  background: #EDEDED url(../i/right-arrow-large-grey.png) no-repeat 10px 14px;
  line-height: 50px;
  font-size: 1.2em;
}
@media screen and (min-width: 769px) {
  /* line 1, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.search section.content:before, body.search section.content:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.search section.content:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.search section.content {
    zoom: 1;
  }
  /* line 90, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col {
    float: left;
    display: inline;
    width: 61.45833%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
  }
  /* line 94, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col .num-results {
    padding: 10px 0;
  }
  /* line 97, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col > nav {
    position: relative;
    padding: 20px 0;
    height: 50px;
  }
  /* line 102, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col > nav a {
    position: absolute;
  }
  /* line 105, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col > nav .next {
    right: 0;
  }
  /* line 106, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col > nav .prev {
    left: 0;
  }
  /* line 108, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col article {
    padding: 10px 0;
  }
  /* line 111, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col article h1 {
    margin: 0;
  }
  /* line 115, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col article nav a {
    float: right;
    display: block;
    padding-left: 20px;
    margin-top: 1px;
  }
  /* line 124, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.right-col {
    float: left;
    display: inline;
    width: 38.54167%;
    margin-left: 0%;
    margin-right: 0%;
    margin-left: 20px;
  }
  /* line 128, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.right-col section {
    padding: 5px;
    margin-bottom: 5px;
  }
  /* line 132, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.right-col section > h1 {
    margin: 0 0 7px 0;
  }
  /* line 135, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.right-col section a.more {
    display: block;
    margin: 0 -5px -5px -5px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  /* line 145, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col > nav {
    position: relative;
    margin: 10px 0;
    height: 16px;
  }
  /* line 150, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col > nav .next {
    position: absolute;
    right: 0;
  }
  /* line 155, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col article {
    position: relative;
    padding: 15px 0;
  }
  /* line 159, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col article nav a {
    position: absolute;
    padding-left: 20px;
    right: 0;
  }
  /* line 164, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col article h1 {
    margin: 0 0 8px;
  }
  /* line 168, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/search.scss */
  body.search section.content div.left-col .num-results {
    padding: 10px 0 0;
  }
}

/* line 3, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
body.section .masthead header {
  color: #FFFFFF;
  background-color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 3, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .masthead header {
    color: #004F8C;
    background-color: transparent;
  }
}
/* line 11, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
body.section .masthead header h1 {
  line-height: 38px;
  font-size: 1.3em;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  /* line 11, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .masthead header h1 {
    font-size: 22px;
    line-height: 1.4;
    color: #fff;
    background-color: #004F8C;
  }
}
/* line 23, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
body.section .masthead header h1 a {
  color: #fff;
}
/* line 28, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
body.section .masthead img {
  border-bottom: 12px solid #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 28, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .masthead img {
    border-bottom: none;
  }
}
/* line 35, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
body.section .masthead .caption {
  text-align: right;
  font-size: 9pt;
  line-height: 1.1em;
  color: #676767;
}
/* line 41, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
body.section .masthead .caption h2 {
  font-size: 9pt;
  line-height: 1.1em;
  color: #676767;
}
@media screen and (max-width: 768px) {
  /* line 48, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .masthead .caption, body.section .masthead .caption h2 {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    color: #004F8C;
    text-align: left;
  }
}
/* line 59, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
body.section .section-overview h1 {
  line-height: 1.0em;
  color: #004F8C;
  font-size: 25pt;
}
@media screen and (max-width: 768px) {
  /* line 59, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .section-overview h1 {
    font-size: 22px;
    line-height: 1.4;
  }
}
/* line 69, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
body.section .section-overview .summary {
  border-top: 3px solid #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 69, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .section-overview .summary {
    border-top: 2px solid #004F8C;
  }
}
/* line 76, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
body.section .section-overview .summary h1 {
  font-size: 16pt;
  line-height: 37pt;
  border-bottom: 2px solid #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 76, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .section-overview .summary h1 {
    font-size: 22px;
    line-height: 1.4;
  }
}
/* line 87, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
body.section .section-overview .summary .blurb p {
  font-size: 1.2em;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  /* line 87, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .section-overview .summary .blurb p {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 97, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
body.section .section-overview .summary .blurb p + p {
  font-size: 1em;
}
@media screen and (max-width: 768px) {
  /* line 97, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .section-overview .summary .blurb p + p {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 107, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
body.section .section-overview .summary section > ul {
  list-style: none;
  text-indent: 0;
}
/* line 111, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
body.section .section-overview .summary section > ul li {
  line-height: 20px;
  background: url(../i/right-arrow-grey.png) no-repeat 13px 2px;
}
@media screen and (max-width: 768px) {
  /* line 111, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .section-overview .summary section > ul li {
    line-height: 1.25;
    background: url(../i/right-arrow-grey.png) no-repeat 0 0;
  }
}
/* line 120, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
body.section .section-overview .summary section > ul li a {
  color: #888;
}
@media screen and (max-width: 768px) {
  /* line 120, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .section-overview .summary section > ul li a {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.25;
  }
}
/* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section section.summary.news article h1 {
  font-size: 1.1em;
}
@media screen and (max-width: 768px) {
  /* line 29, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary.news article h1 {
    font-size: 16px;
    line-height: 1.25;
  }
}
/* line 41, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section section.summary.research article h1 {
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  /* line 41, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary.research article h1 {
    font-size: 16px;
    line-height: 1.25;
  }
}
/* line 51, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section section.summary > h1 {
  font-size: 1.5em;
  line-height: 2;
  text-transform: uppercase;
  border-bottom: 5px solid #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 51, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary > h1 {
    border-top: 2px solid #004F8C;
    border-bottom: none;
    font-size: 22px;
    line-height: 1.4;
    background: #fff;
  }
}
/* line 65, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section section.summary > .more {
  line-height: 45px;
  font-size: .9em;
  background: #004F8C;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 65, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary > .more {
    font-size: 18px;
    line-height: 1.25;
  }
}
/* line 77, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section section.summary article {
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  /* line 77, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary article {
    background-color: transparent;
  }
}
/* line 84, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section section.summary article h1 {
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 84, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary article h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 92, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section section.summary article p {
  font-size: .9em;
  color: #545454;
}
@media screen and (max-width: 768px) {
  /* line 92, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary article p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.25;
    color: #484848;
  }
}
/* line 103, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section section.summary article .more {
  color: #004F8C;
  font-size: .9em;
  line-height: 26px;
  background: url("../i/right-arrow-grey.png") no-repeat 10px 15px;
  border-top: 1px solid #F5F5F5;
}
@media screen and (max-width: 768px) {
  /* line 103, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary article .more {
    background: url("../i/right-arrow-grey.png") no-repeat 0 0;
    border-top: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.25;
  }
}
@media screen and (min-width: 769px) {
  /* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    padding-bottom: 30px;
    margin: 0 -6px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section section.summary:before, body.section section.summary:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section section.summary:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section section.summary {
    zoom: 1;
  }
  /* line 125, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary.news article {
    float: left;
    display: inline;
    width: 24.0625%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
  }
  /* line 129, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary.news article:nth-child(3n+1) {
    margin-right: 1.25%;
  }
  /* line 132, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary.news article:nth-child(4n+1) {
    margin-right: 0;
  }
  /* line 138, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary.research article {
    float: left;
    display: inline;
    width: 32.5%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
  }
  /* line 142, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary.research article:nth-child(3n+1) {
    margin-right: 0;
  }
  /* line 148, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary > h1 {
    margin: 20px 6px 12px;
  }
  /* line 151, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary > .more {
    float: left;
    display: inline;
    width: 6.25%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
    clear: left;
    float: right;
    margin-right: 6px;
    display: none;
  }
  /* line 162, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary article {
    position: relative;
    float: left;
    display: inline;
    width: 32.5%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.25%;
    height: 370px;
    padding: 12px;
  }
  /* line 169, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary article:nth-child(3n+1) {
    margin-right: 0;
  }
  /* line 173, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary article .more {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding-left: 35px;
    padding-top: 10px;
    margin: 10px 0 10px -10px;
  }
}
@media screen and (max-width: 768px) {
  /* line 26, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    margin: 0 0 15px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section section.summary:before, body.section section.summary:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section section.summary:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section section.summary {
    zoom: 1;
  }
  /* line 188, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary > .more {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
    margin: 10px 0;
    padding: 15px 0;
  }
  /* line 194, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary > h1 {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    margin: 0 0 12px;
    padding: 8px 0 0;
  }
  /* line 200, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary.research article {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    min-height: 0;
    margin: 0 0 50px;
  }
  /* line 206, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary article {
    float: left;
    display: inline;
    width: 47.91667%;
    margin-left: 0%;
    margin-right: 0%;
    min-height: 385px;
    margin: 0 0 15px;
  }
  /* line 211, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary article:nth-child(2n+2) {
    margin-right: 4.16667%;
  }
  /* line 214, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary article h1 {
    margin: 0 0 8px;
  }
  /* line 217, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary article p {
    margin: 0 0 5px;
  }
  /* line 220, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary article .image {
    margin: 0 0 12px;
  }
  /* line 223, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.summary article .more {
    display: block;
    margin: 15px 0 0;
    padding-left: 20px;
  }
}
/* line 235, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section section.people > h1 {
  border-bottom: 5px solid #004F8C;
  line-height: 1.75;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 235, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people > h1 {
    font-size: 22px;
    line-height: 1.4;
    border-bottom: 3px solid #004F8C;
  }
}
/* line 246, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section section.people .heads {
  border-right: 1px solid #E9E9E9;
}
@media screen and (max-width: 768px) {
  /* line 246, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people .heads {
    border-right: none;
  }
}
/* line 254, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section section.people article hgroup {
  color: #004F8C;
}
/* line 257, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section section.people article hgroup h1 {
  font-size: 1.25em;
  line-height: 1.4em;
}
@media screen and (max-width: 768px) {
  /* line 257, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article hgroup h1 {
    font-size: 18px;
    line-height: 1.4;
  }
}
/* line 266, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section section.people article hgroup h2 {
  font-size: 1em;
  line-height: 1.4em;
}
@media screen and (max-width: 768px) {
  /* line 266, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article hgroup h2 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 275, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section section.people article hgroup h1 a, body.section section.people article hgroup h2 a {
  color: #004F8C;
  word-wrap: break-word;
}
/* line 280, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section section.people article .phone {
  phone-size: 1.1em;
}
@media screen and (max-width: 768px) {
  /* line 280, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article .phone {
    font-size: 14px;
    line-height: 1.25;
  }
}
@media screen and (max-width: 768px) {
  /* line 289, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article .contact, body.section section.people article .contact h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 297, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section section.people article nav a {
  background: url("../i/right-arrow-small-grey.png") no-repeat 2px 4px;
  line-height: 1.5;
  font-size: 1.1em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 297, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article nav a {
    font-size: 14px;
    line-height: 1.25;
    background: url("../i/right-arrow-small-grey.png") no-repeat 0 2px;
  }
}
/* line 311, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section section.people div.contact {
  font-size: 1.2em;
}
@media screen and (max-width: 768px) {
  /* line 311, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people div.contact {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 319, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section section.people div.contact h1 {
  font-size: 1em;
  color: #004F8C;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  /* line 319, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people div.contact h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 329, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.section section.people div.contact a {
  color: #004F8C;
}
@media screen and (min-width: 769px) {
  /* line 234, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people {
    position: relative;
    height: 400px;
    margin-right: 6px;
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section section.people:before, body.section section.people:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section section.people:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section section.people {
    zoom: 1;
  }
  /* line 339, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people .heads {
    float: left;
    display: inline;
    width: 50%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 4.16667%;
    border-right: 1px solid #E9E9E9;
  }
  /* line 344, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    margin: 0 0 30px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section section.people article:before, body.section section.people article:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section section.people article:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section section.people article {
    zoom: 1;
  }
  /* line 348, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article .image {
    float: left;
    display: inline;
    width: 50%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 2.08333%;
  }
  /* line 352, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article > div {
    float: left;
    display: inline;
    width: 47.91667%;
    margin-left: 0%;
    margin-right: 0%;
  }
  /* line 356, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article hgroup h1 {
    margin: 0;
  }
  /* line 359, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article hgroup h2 {
    margin: 0;
  }
  /* line 363, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article .phone {
    margin: 5px 0 10px 0;
  }
  /* line 366, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article nav {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section section.people article nav:before, body.section section.people article nav:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section section.people article nav:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section section.people article nav {
    zoom: 1;
  }
  /* line 369, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article nav a {
    display: block;
    padding: 0 0 0 25px;
    width: 195px;
  }
  /* line 376, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people div.contact {
    float: left;
    display: inline;
    width: 45.83333%;
    margin-left: 0%;
    margin-right: 0%;
  }
  /* line 379, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people div.contact h1 {
    margin: 5px 0 7px;
  }
}
@media screen and (max-width: 768px) {
  /* line 385, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people > h1 {
    margin: 0 0 15px;
    padding: 0 0 10px;
  }
  /* line 389, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article {
    margin: 0 0 15px;
  }
  /* line 392, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article p {
    margin: 0 0 10px;
  }
  /* line 397, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article hgroup h1 {
    margin: 0 0 10px;
  }
  /* line 400, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article hgroup h2 {
    margin: 0 0 5px;
  }
  /* line 404, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article nav {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section section.people article nav:before, body.section section.people article nav:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section section.people article nav:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section section.people article nav {
    zoom: 1;
  }
  /* line 407, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article nav a {
    display: block;
    padding: 0 0 0 25px;
  }
  /* line 412, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article .image {
    margin: 0 0 5px;
  }
  /* line 415, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people article .phone {
    margin: 0 0 10px;
  }
  /* line 419, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people div.contact {
    margin: 0 0 25px;
  }
  /* line 422, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.section section.people div.contact h1 {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 769px) {
  /* line 136, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .masthead {
    position: relative;
  }
  /* line 139, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .masthead header {
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 310px;
    height: 38px;
  }
  /* line 147, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .masthead header h1 {
    width: 100%;
    margin: 0;
    padding: 0 12px;
  }
  /* line 153, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .masthead .caption {
    float: left;
    display: inline;
    width: 14.58333%;
    margin-left: 0%;
    margin-right: 0%;
    position: absolute;
    bottom: -85px;
    right: 0;
    height: 85px;
    padding-top: 20px;
  }
  /* line 161, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .masthead .caption h2 {
    margin: 0;
  }
  /* line 166, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .section-overview {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section .section-overview:before, body.section .section-overview:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section .section-overview:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section .section-overview {
    zoom: 1;
  }
  /* line 169, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .section-overview h1 {
    float: left;
    display: inline;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 0;
  }
  /* line 173, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .section-overview .summary {
    float: left;
    display: inline;
    width: 83.33333%;
    margin-left: 0%;
    margin-right: 0%;
    margin-left: 16.66667%;
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    margin-top: 30px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section .section-overview .summary:before, body.section .section-overview .summary:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section .section-overview .summary:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.section .section-overview .summary {
    zoom: 1;
  }
  /* line 179, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .section-overview .summary > section {
    float: left;
    display: inline;
    width: 50%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
    padding: 5px;
  }
  /* line 185, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .section-overview .summary h1 {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
    float: none;
    padding: 5px 0 0 0;
    margin: 0;
  }
  /* line 192, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .section-overview .summary section > ul {
    margin-left: 0;
    padding-left: 0;
  }
  /* line 196, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .section-overview .summary section > ul li {
    padding-left: 40px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  /* line 1, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section {
    width: 95.83333%;
    margin-left: 0%;
    margin-right: 0%;
    margin: 0 auto;
  }
  /* line 208, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section p {
    margin: 0 0 10px;
  }
  /* line 211, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .masthead {
    margin: 0 0 15px;
    overflow: hidden;
  }
  /* line 216, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .masthead header h1, body.section .masthead header h2 {
    margin: 0;
  }
  /* line 219, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .masthead header h1 {
    padding: 5px 4.34783% 5px;
  }
  /* line 223, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .masthead .caption {
    display: none;
  }
  /* line 226, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .masthead .image {
    margin: 0 0 10px;
  }
  /* line 231, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .section-overview h1 {
    margin: 0;
    padding: 0 0 10px;
  }
  /* line 235, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .section-overview .summary {
    padding: 15px 0 0;
  }
  /* line 238, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .section-overview .summary section > ul {
    margin: 15px 0;
    padding-left: 0;
  }
  /* line 242, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/section.scss */
  body.section .section-overview .summary section > ul li {
    padding-left: 20px;
    margin-top: 10px;
  }
}

/* line 3, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
body.services section.content > section.service > header {
  border-top: 18px solid #003f70;
}
@media screen and (max-width: 768px) {
  /* line 3, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > header {
    border-top: 0;
  }
}
/* line 9, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
body.services section.content > section.service > header h1 {
  text-transform: uppercase;
  font-size: 15px;
  line-height: 48px;
  background: #004F8C;
}
/* line 15, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
body.services section.content > section.service > header h1, body.services section.content > section.service > header h1 a {
  color: #FFFFFF;
}
/* line 21, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
body.services section.content > section.service article > h1 {
  font-size: 2.5em;
}
/* line 24, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
body.services section.content > section.service article > h1 a {
  color: #004F8C;
}
/* line 701, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.services section.content > section.service article .captioned a, body.services section.content > section.service article .captioned span {
  text-align: right;
  line-height: 17px;
  font-style: italic;
  color: #999999;
}
@media screen and (max-width: 768px) {
  /* line 701, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content > section.service article .captioned a, body.services section.content > section.service article .captioned span {
    font-size: 14px;
    line-height: 1.25;
    color: #484848;
  }
}
/* line 713, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.services section.content > section.service article .captioned a {
  background: url("../i/right-arrow-large-grey.png") no-repeat 5px 2px;
  color: #545454;
  text-align: left;
}
@media screen and (max-width: 768px) {
  /* line 713, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content > section.service article .captioned a {
    color: #484848;
  }
}
/* line 722, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.services section.content > section.service article .captioned .image {
  box-sizing: content-box;
  border: 10px solid transparent;
}
@media screen and (max-width: 768px) {
  /* line 722, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content > section.service article .captioned .image {
    border: none;
  }
}
@media screen and (min-width: 769px) {
  /* line 700, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content > section.service article .captioned {
    float: left;
    display: inline;
    width: 48.33333%;
    margin-left: 0%;
    margin-right: 0%;
    float: right;
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content > section.service article .captioned:before, body.services section.content > section.service article .captioned:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content > section.service article .captioned:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content > section.service article .captioned {
    zoom: 1;
  }
  /* line 735, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content > section.service article .captioned a, body.services section.content > section.service article .captioned span {
    float: left;
    display: inline;
    width: 96.55172%;
    margin-left: 0%;
    margin-right: 0%;
    float: right;
    margin: 10px 0;
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  /* line 743, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content > section.service article .captioned a, body.services section.content > section.service article .captioned span {
    display: block;
    margin: 0 0 15px;
  }
  /* line 747, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content > section.service article .captioned .image {
    margin: 0 0 10px;
  }
}
/* line 32, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
body.services section.content > section.service article .content h1, body.services section.content > section.service article .content h2, body.services section.content > section.service article .content h3 {
  font-size: 2em;
  border-bottom: 1px solid #B6B6B6;
}
@media screen and (max-width: 768px) {
  /* line 36, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service article .content p, body.services section.content > section.service article .content li {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  /* line 43, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service article .captioned a, body.services section.content > section.service article .captioned span {
    font-size: 12px;
  }
}
/* line 51, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
body.services section.content > section.service nav.services .current {
  color: #a8a8a8;
}
/* line 56, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
body.services section.content > section.service nav.next > a {
  line-height: 1.3;
  font-size: 1em;
  color: #545454;
  background: url(../i/right-arrow-grey.png) no-repeat 0px 6px;
}
/* line 64, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
body.services section.content > section.service > nav .show-services {
  background: #004F8C;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}
/* line 70, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
body.services section.content > section.service > nav h1 {
  text-transform: none;
  color: #004F8C;
  border-bottom: 2px solid #004F8C;
}
/* line 75, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
body.services section.content > section.service > nav ul {
  list-style: none;
}
/* line 78, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
body.services section.content > section.service > nav ul li {
  background: url(../i/right-arrow-grey.png) no-repeat 0px 6px;
}
/* line 79, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
body.services section.content > section.service > nav ul li a {
  line-height: 1.3;
  font-size: 1em;
  color: #545454;
}
/* line 88, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
body.services section.content > section.service > nav ul li ul li {
  background: none;
}
/* line 91, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
body.services section.content > section.service > nav ul li ul li:before {
  font-weight: bold;
  font-size: 0.8em;
}
/* line 99, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
body.services section.content > section.service > nav > ul > li.has_children > a {
  background: url(../i/right-arrow-grey.png) no-repeat 10px 16px;
}
/* line 103, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
body.services section.content > section.service > nav > ul > li.open.has_children > a {
  background-image: url(../i/down-arrow-grey.png);
}
/* line 107, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
body.services section.content > section.service > nav ul + h1 {
  line-height: 1.1;
}
/* line 235, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.services section.content section.people > h1 {
  border-bottom: 5px solid #004F8C;
  line-height: 1.75;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 235, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people > h1 {
    font-size: 22px;
    line-height: 1.4;
    border-bottom: 3px solid #004F8C;
  }
}
/* line 246, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.services section.content section.people .heads {
  border-right: 1px solid #E9E9E9;
}
@media screen and (max-width: 768px) {
  /* line 246, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people .heads {
    border-right: none;
  }
}
/* line 254, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.services section.content section.people article hgroup {
  color: #004F8C;
}
/* line 257, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.services section.content section.people article hgroup h1 {
  font-size: 1.25em;
  line-height: 1.4em;
}
@media screen and (max-width: 768px) {
  /* line 257, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article hgroup h1 {
    font-size: 18px;
    line-height: 1.4;
  }
}
/* line 266, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.services section.content section.people article hgroup h2 {
  font-size: 1em;
  line-height: 1.4em;
}
@media screen and (max-width: 768px) {
  /* line 266, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article hgroup h2 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 275, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.services section.content section.people article hgroup h1 a, body.services section.content section.people article hgroup h2 a {
  color: #004F8C;
  word-wrap: break-word;
}
/* line 280, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.services section.content section.people article .phone {
  phone-size: 1.1em;
}
@media screen and (max-width: 768px) {
  /* line 280, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article .phone {
    font-size: 14px;
    line-height: 1.25;
  }
}
@media screen and (max-width: 768px) {
  /* line 289, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article .contact, body.services section.content section.people article .contact h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 297, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.services section.content section.people article nav a {
  background: url("../i/right-arrow-small-grey.png") no-repeat 2px 4px;
  line-height: 1.5;
  font-size: 1.1em;
  color: #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 297, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article nav a {
    font-size: 14px;
    line-height: 1.25;
    background: url("../i/right-arrow-small-grey.png") no-repeat 0 2px;
  }
}
/* line 311, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.services section.content section.people div.contact {
  font-size: 1.2em;
}
@media screen and (max-width: 768px) {
  /* line 311, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people div.contact {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 319, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.services section.content section.people div.contact h1 {
  font-size: 1em;
  color: #004F8C;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  /* line 319, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people div.contact h1 {
    font-size: 14px;
    line-height: 1.25;
  }
}
/* line 329, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
body.services section.content section.people div.contact a {
  color: #004F8C;
}
@media screen and (min-width: 769px) {
  /* line 234, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people {
    position: relative;
    height: 400px;
    margin-right: 6px;
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content section.people:before, body.services section.content section.people:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content section.people:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content section.people {
    zoom: 1;
  }
  /* line 339, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people .heads {
    float: left;
    display: inline;
    width: 50%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 4.16667%;
    border-right: 1px solid #E9E9E9;
  }
  /* line 344, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    margin: 0 0 30px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content section.people article:before, body.services section.content section.people article:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content section.people article:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content section.people article {
    zoom: 1;
  }
  /* line 348, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article .image {
    float: left;
    display: inline;
    width: 50%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 2.08333%;
  }
  /* line 352, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article > div {
    float: left;
    display: inline;
    width: 47.91667%;
    margin-left: 0%;
    margin-right: 0%;
  }
  /* line 356, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article hgroup h1 {
    margin: 0;
  }
  /* line 359, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article hgroup h2 {
    margin: 0;
  }
  /* line 363, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article .phone {
    margin: 5px 0 10px 0;
  }
  /* line 366, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article nav {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content section.people article nav:before, body.services section.content section.people article nav:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content section.people article nav:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content section.people article nav {
    zoom: 1;
  }
  /* line 369, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article nav a {
    display: block;
    padding: 0 0 0 25px;
    width: 195px;
  }
  /* line 376, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people div.contact {
    float: left;
    display: inline;
    width: 45.83333%;
    margin-left: 0%;
    margin-right: 0%;
  }
  /* line 379, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people div.contact h1 {
    margin: 5px 0 7px;
  }
}
@media screen and (max-width: 768px) {
  /* line 385, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people > h1 {
    margin: 0 0 15px;
    padding: 0 0 10px;
  }
  /* line 389, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article {
    margin: 0 0 15px;
  }
  /* line 392, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article p {
    margin: 0 0 10px;
  }
  /* line 397, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article hgroup h1 {
    margin: 0 0 10px;
  }
  /* line 400, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article hgroup h2 {
    margin: 0 0 5px;
  }
  /* line 404, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article nav {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content section.people article nav:before, body.services section.content section.people article nav:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content section.people article nav:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content section.people article nav {
    zoom: 1;
  }
  /* line 407, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article nav a {
    display: block;
    padding: 0 0 0 25px;
  }
  /* line 412, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article .image {
    margin: 0 0 5px;
  }
  /* line 415, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people article .phone {
    margin: 0 0 10px;
  }
  /* line 419, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people div.contact {
    margin: 0 0 25px;
  }
  /* line 422, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content section.people div.contact h1 {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 769px) {
  /* line 116, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service {
    position: relative;
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content > section.service:before, body.services section.content > section.service:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content > section.service:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content > section.service {
    zoom: 1;
  }
  /* line 120, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > header {
    float: left;
    display: inline;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: 0%;
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 1px;
  }
  /* line 127, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > header h1 {
    height: 48px;
    margin: 0;
    padding: 0 12px;
  }
  /* line 133, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service article {
    float: left;
    display: inline;
    width: 62.5%;
    margin-left: 0%;
    margin-right: 0%;
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content > section.service article:before, body.services section.content > section.service article:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content > section.service article:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.services section.content > section.service article {
    zoom: 1;
  }
  /* line 137, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service article > h1 {
    margin-top: 30px;
    margin-bottom: 40px;
  }
  /* line 141, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service article .content {
    float: left;
    display: inline;
    width: 50%;
    margin-left: 0%;
    margin-right: 0%;
  }
  /* line 144, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service article .content h1, body.services section.content > section.service article .content h2, body.services section.content > section.service article .content h3 {
    padding-bottom: 10px;
  }
  /* line 147, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service article .content .section-text, body.services section.content > section.service article .content .section-image, body.services section.content > section.service article .content .section-video {
    margin-bottom: 20px;
  }
  /* line 150, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service article .content .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content > section.service article .content .section-video.youtube, body.services section.content > section.service article .content .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content > section.service article .content .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content > section.service article .content .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content > section.service article .content .section-video .video-wrap .video-container .video-embed, body.services section.content > section.service article .content .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content > section.service article .content .section-video .caption {
    font-size: 0.8em;
  }
  /* line 155, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service nav.services {
    float: left;
    display: inline;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: 0%;
    margin: 80px 0 100px 4.16667%;
  }
  /* line 159, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service nav.next {
    float: left;
    display: inline;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: 0%;
    clear: both;
    float: right;
    margin: 0 0 50px 40px;
  }
  /* line 165, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service nav.next > a {
    padding: 5px 0 5px 30px;
  }
  /* line 172, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > nav ul {
    padding: 0;
    margin: 0 0 30px 0;
  }
  /* line 176, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > nav ul li {
    padding: 5px 0 5px 30px;
  }
  /* line 177, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > nav ul li a {
    width: 56.25%;
    margin-left: 0%;
    margin-right: 0%;
  }
  /* line 183, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > nav ul li ul {
    margin: 10px 0;
  }
  /* line 186, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > nav ul li ul li {
    padding: 0 0 5px 30px;
  }
  /* line 189, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > nav ul li ul li:before {
    content: '>';
    margin: 0 5px 0 0;
  }
  /* line 197, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > nav > ul > li > ul {
    display: none;
  }
  /* line 200, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > nav > ul > li.open > ul {
    display: block;
  }
  /* line 203, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > nav ul + h1 {
    margin: 10px 0;
  }
}
@media screen and (max-width: 768px) {
  /* line 212, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > header h1 {
    margin: 0;
    padding: 0 10px;
  }
  /* line 219, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service article .content .section-text, body.services section.content > section.service article .content .section-image, body.services section.content > section.service article .content .section-video {
    margin-bottom: 15px;
  }
  /* line 222, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service article .content .section-video {
    display: none;
    position: relative;
  }
  /* line 967, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content > section.service article .content .section-video.youtube, body.services section.content > section.service article .content .section-video.vimeo {
    display: block;
  }
  /* line 970, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content > section.service article .content .section-video .video-wrap {
    position: relative;
    padding-top: 56.25%;
  }
  /* line 974, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content > section.service article .content .section-video .video-wrap .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* line 981, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content > section.service article .content .section-video .video-wrap .video-container .video-embed, body.services section.content > section.service article .content .section-video .video-wrap .video-container iframe {
    width: 100%;
    height: 100%;
  }
  /* line 987, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_mixins.scss */
  body.services section.content > section.service article .content .section-video .caption {
    font-size: 0.8em;
  }
  /* line 230, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > nav.services.opened > ul {
    display: block;
  }
  /* line 233, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > nav.services.opened .show-services {
    display: none;
  }
  /* line 237, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > nav.services > ul {
    display: none;
  }
  /* line 241, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > nav .show-services {
    display: inline-block;
    margin: 0 0 25px;
    padding: 10px 20px;
  }
  /* line 246, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > nav > ul {
    padding: 0;
  }
  /* line 249, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > nav > ul > li {
    padding: 5px 0 5px 30px;
  }
  /* line 252, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > nav > ul > li > ul {
    margin: 0;
    padding: 0 20px 0;
  }
  /* line 256, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > nav > ul > li > ul > li {
    padding: 5px 0;
  }
  /* line 259, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service > nav > ul > li > ul > li:last-child {
    padding: 5px 0 0;
  }
  /* line 267, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/services.scss */
  body.services section.content > section.service nav.next {
    display: none;
  }
}

/* line 3, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content .masthead header {
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  /* line 3, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .masthead header {
    color: #004F8C;
  }
}
/* line 10, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content .masthead header h1, body.tascam section.content .masthead header h2, body.tascam section.content .masthead header h3 {
  line-height: 1;
}
/* line 13, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content .masthead header h1 {
  font-size: 5.75em;
}
@media screen and (max-width: 768px) {
  /* line 13, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .masthead header h1 {
    font-size: 18px;
    line-height: 1.25;
    background: transparent;
    color: #004F8C;
    text-transform: capitalize;
  }
}
@media screen and (max-width: 768px) {
  /* line 24, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .masthead header h2 {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    color: #004F8C;
  }
}
/* line 32, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content .masthead header h3 {
  font-size: 1.0em;
}
/* line 36, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content .masthead section.metdata {
  background: #004F8C;
}
/* line 39, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content .masthead section.metdata div {
  color: #FFFFFF;
  text-align: center;
  font-size: 2em;
}
/* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content .masthead section.metdata div span {
  font-size: 0.6em;
}
/* line 47, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content .masthead section.metdata div + div {
  border-left: 1px solid #014886;
}
/* line 51, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content .masthead section.metdata footer {
  color: #FFFFFF;
  font-size: 0.8em;
  opacity: 0.8;
}
/* line 59, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content article.story > h1 {
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  /* line 59, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content article.story > h1 {
    font-size: 18px;
    line-height: 1.25;
    background: transparent;
    color: #004F8C;
    text-transform: capitalize;
  }
}
/* line 69, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content article.story > h1 a {
  background: url(../i/down-arrow-tascam.png) no-repeat 5px 4px;
  color: #004F8C;
  text-transform: uppercase;
}
/* line 76, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content article.story .twitface a {
  background: url(../i/twitface.png) top left no-repeat;
  text-indent: -5000px;
}
/* line 80, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content article.story .twitface a.f {
  background-position: top right;
}
/* line 85, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content article.story section.story {
  border-top: 3px solid #004F8C;
}
/* line 88, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content article.story section.story h1 {
  color: #004F8C;
  text-transform: uppercase;
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  /* line 88, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content article.story section.story h1 {
    font-size: 18px;
    line-height: 1.25;
    background: transparent;
    color: #004F8C;
    text-transform: capitalize;
  }
}
/* line 101, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content article.story section.story div {
  font-size: 1.1em;
  color: #004F8C;
}
/* line 106, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content article.story section.main {
  border-top: 3px solid #004F8C;
}
@media screen and (max-width: 768px) {
  /* line 106, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content article.story section.main {
    border-top: 0;
  }
}
/* line 116, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content div.maps nav a {
  background: #004F8C;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.1em;
  line-height: 1em;
}
/* line 123, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content div.maps nav a em {
  text-transform: uppercase;
}
/* line 128, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content div.maps div.contact {
  font-size: 1.1em;
  color: #004F8C;
}
/* line 134, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content div#graphs article {
  border-top: 3px solid #004F8C;
}
/* line 138, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content div#graphs article > header h1 {
  font-size: 1.5em;
  color: #004F8C;
  text-transform: uppercase;
  border-right: 15px solid white;
}
/* line 147, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
body.tascam section.content div#graphs article section > header h1 {
  font-size: 1.25em;
  color: #004F8C;
}
@media screen and (min-width: 769px) {
  /* line 156, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .masthead {
    position: relative;
  }
  /* line 159, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .masthead header {
    position: absolute;
    left: 95px;
    top: 110px;
  }
  /* line 164, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .masthead header h1, body.tascam section.content .masthead header h2, body.tascam section.content .masthead header h3 {
    margin: 0;
  }
  /* line 167, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .masthead header h2 {
    padding-left: 12px;
  }
  /* line 170, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .masthead header h3 {
    padding: 4px 12px;
  }
  /* line 174, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .masthead section.metdata {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    position: relative;
    margin-bottom: 1px;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.tascam section.content .masthead section.metdata:before, body.tascam section.content .masthead section.metdata:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.tascam section.content .masthead section.metdata:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.tascam section.content .masthead section.metdata {
    zoom: 1;
  }
  /* line 179, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .masthead section.metdata div {
    float: left;
    display: inline;
    width: 16.66667%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
    padding-top: 35px;
    display: block;
    height: 155px;
  }
  /* line 186, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .masthead section.metdata div span {
    display: block;
  }
  /* line 190, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .masthead section.metdata footer {
    position: absolute;
    left: 640px;
    bottom: 10px;
    width: 320px;
    padding-left: 10px;
  }
  /* line 199, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content article.story {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    float: left;
    display: inline;
    width: 67.70833%;
    margin-left: 0%;
    margin-right: 0%;
    float: left;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.tascam section.content article.story:before, body.tascam section.content article.story:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.tascam section.content article.story:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.tascam section.content article.story {
    zoom: 1;
  }
  /* line 205, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content article.story > h1 {
    float: left;
    display: inline;
    width: 24.61538%;
    margin-left: 0%;
    margin-right: 0%;
    font-size: 1.5em;
  }
  /* line 209, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content article.story > h1 a {
    display: block;
    padding-left: 50px;
  }
  /* line 214, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content article.story .twitface {
    float: left;
    margin: 20px 0 0 10px;
  }
  /* line 218, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content article.story .twitface a {
    width: 37px;
    height: 37px;
    display: inline-block;
  }
  /* line 224, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content article.story section.story {
    float: left;
    display: inline;
    width: 24.61538%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.53846%;
  }
  /* line 228, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content article.story section.story div {
    margin-top: 175px;
  }
  /* line 232, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content article.story section.main {
    float: left;
    display: inline;
    width: 73.84615%;
    margin-left: 0%;
    margin-right: 0%;
  }
  /* line 235, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content article.story section.main div {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }
  /* line 240, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content div.maps {
    float: left;
    display: inline;
    width: 31.77083%;
    margin-left: 0%;
    margin-right: 0%;
    margin-left: 0.52083%;
  }
  /* line 244, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content div.maps #tascam_map {
    width: 100%;
    height: 410px;
  }
  /* line 249, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content div.maps nav {
    margin-top: -5px;
  }
  /* line 252, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content div.maps nav a {
    display: block;
    margin: 1px 0;
    height: 50px;
    padding-top: 10px;
  }
  /* line 258, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content div.maps nav a em {
    display: block;
    margin-bottom: 1px;
  }
  /* line 262, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content div.maps nav a + a {
    padding-top: 15px;
  }
  /* line 267, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content div.maps div.contact {
    margin: 30px 0;
  }
  /* line 271, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content div#graphs {
    float: left;
    display: inline;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    margin-bottom: 3em;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.tascam section.content div#graphs:before, body.tascam section.content div#graphs:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.tascam section.content div#graphs:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.tascam section.content div#graphs {
    zoom: 1;
  }
  /* line 276, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content div#graphs article {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.tascam section.content div#graphs article:before, body.tascam section.content div#graphs article:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.tascam section.content div#graphs article:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.tascam section.content div#graphs article {
    zoom: 1;
  }
  /* line 279, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content div#graphs article > header {
    float: left;
    display: inline;
    width: 16.66667%;
    margin-left: 0%;
    margin-right: 0%;
    margin-right: 1.04167%;
  }
  /* line 283, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content div#graphs article > header h1 {
    /* crazy times to punch a gap in the top border */
    margin-right: -15px;
    margin-top: -0.25em;
    padding-top: 1em;
  }
  /* line 290, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content div#graphs article aside {
    float: left;
    display: inline;
    width: 45.83333%;
    margin-left: 0%;
    margin-right: 0%;
    margin: 0;
    margin-bottom: 1em;
  }
  /* line 295, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content div#graphs article section {
    /* For modern browsers */
    /* For IE 6/7 (trigger hasLayout) */
    clear: left;
    margin-top: 1em;
  }
  /* line 44, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.tascam section.content div#graphs article section:before, body.tascam section.content div#graphs article section:after {
    content: "";
    display: table;
  }
  /* line 50, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.tascam section.content div#graphs article section:after {
    clear: both;
  }
  /* line 55, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/_constants.scss */
  body.tascam section.content div#graphs article section {
    zoom: 1;
  }
  /* line 301, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content div#graphs article section > header h1 {
    float: left;
    display: inline;
    width: 16.66667%;
    margin-left: 0%;
    margin-right: 0%;
    margin: 1em 15px 1em 0;
  }
  /* line 306, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content div#graphs article section > aside {
    margin-top: 0.25em;
  }
  /* line 309, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content div#graphs article section a {
    clear: left;
  }
  /* line 313, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content div#graphs article + article {
    margin-top: 2em;
  }
}
@media screen and (max-width: 768px) {
  /* line 320, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content p {
    margin: 0 0 10px;
  }
  /* line 323, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .masthead {
    margin: 0 0 15px;
    overflow: hidden;
  }
  /* line 327, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .masthead header {
    margin: 0 0 15px;
  }
  /* line 330, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .masthead header h1, body.tascam section.content .masthead header h2 {
    margin: 0;
  }
  /* line 334, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .masthead .image {
    margin: 0 0 10px;
  }
  /* line 337, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .masthead .metdata {
    padding: 15px 1.04167%;
  }
  /* line 340, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .masthead .metdata .wind-speed, body.tascam section.content .masthead .metdata .wind-dir, body.tascam section.content .masthead .metdata .sea-temp, body.tascam section.content .masthead .metdata .air-temp, body.tascam section.content .masthead .metdata .barometric {
    margin: 0 0 15px;
  }
  /* line 346, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content article.story > h1 {
    display: none;
  }
  /* line 349, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content article.story .twitface {
    margin: 0 0 10px;
  }
  /* line 352, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content article.story .twitface a {
    width: 37px;
    height: 37px;
    display: inline-block;
  }
  /* line 358, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content article.story section.story {
    padding: 10px 0 0;
  }
  /* line 361, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content article.story section.story h1 {
    margin: 0 0 15px;
  }
  /* line 365, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content article.story section.main {
    padding: 0;
  }
  /* line 369, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .maps {
    margin: 0 0 15px;
  }
  /* line 372, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .maps #tascam_map {
    position: relative;
    width: 100%;
    margin: 0 0 15px;
    padding-top: 100%;
  }
  /* line 379, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content .maps nav a {
    display: block;
    margin: 0 0 10px;
    padding: 15px;
  }
  /* line 386, /home/cawthron/webapps/cawthron_django/cawthron/static/src/scss/src/tascam.scss */
  body.tascam section.content #graphs {
    margin: 0 0 15px;
  }
}
