/*
  Author:     Andrew Pautler (http://pautlerdesign.com/)
  Copyright:  (c) 2013 Pautler Design. All rights reserved.
*/
/*Imports*/
/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 *
 * Detailed information about this CSS: h5bp.com/css
 *
 * ==|== normalize ==========================================================
 */
/* =============================================================================
   HTML5 display definitions
   ========================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}
[hidden] {
  display: none;
}
/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 * 2. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
  color: #222;
}
body {
  margin: 0;
  font-size: 1em;
  line-height: 1.4;
}
/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate
 * Also: hot pink! (or customize the background color to match your design)
 */
::-moz-selection {
  background: #2ea3d3;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #2ea3d3;
  color: #fff;
  text-shadow: none;
}
/* =============================================================================
   Links
   ========================================================================== */
/* Improve readability when focused and hovered in all browsers: h5bp.com/h */
a:hover,
a:active {
  outline: 0;
}
/* =============================================================================
   Typography
   ========================================================================== */
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
blockquote {
  margin: 1em 40px;
}
dfn {
  font-style: italic;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
ins {
  background: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
/* Redeclare monospace font family: h5bp.com/j */
pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}
/* Improve readability of pre-formatted text in all browsers */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
q {
  quotes: none;
}
q:before,
q:after {
  content: "";
  content: none;
}
small {
  font-size: 85%;
}
/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* =============================================================================
   Lists
   ========================================================================== */
ul,
ol {
  margin: 1em 0;
  padding: 0 0 0 40px;
}
dd {
  margin: 0 0 0 40px;
}
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}
/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Improve image quality when scaled in IE7: h5bp.com/d
 * 2. Remove the gap between images and borders on image containers: h5bp.com/i/440
 */
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}
/*
 * Correct overflow not hidden in IE9
 */
svg:not(:root) {
  overflow: hidden;
}
/* =============================================================================
   Figures
   ========================================================================== */
figure {
  margin: 0;
}
/* =============================================================================
   Forms
   ========================================================================== */
form {
  margin: 0;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/* Indicate that 'label' will shift focus to the associated form element */
label {
  cursor: pointer;
}
/*
 * 1. Correct color not inheriting in IE6/7/8/9
 * 2. Correct alignment displayed oddly in IE6/7
 */
legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
  white-space: normal;
}
/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 */
button,
input {
  line-height: normal;
}
/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
 */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  *overflow: visible;
}
/*
 * Re-set default cursor for disabled elements
 */
button[disabled],
input[disabled] {
  cursor: default;
}
/*
 * Consistent box sizing and appearance
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *width: 13px;
  *height: 13px;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
/*
 * Remove inner padding and border in FF3/4: h5bp.com/l
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * 1. Remove default vertical scrollbar in IE6/7/8/9
 * 2. Allow only vertical resizing
 */
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}
/* Colors for form validity */
input:invalid,
textarea:invalid {
  background-color: #f0dddd;
}
/* =============================================================================
   Tables
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td {
  vertical-align: top;
}
/* =============================================================================
   Chrome Frame Prompt
   ========================================================================== */
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: black;
  padding: 0.2em 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  font-size: 100%;
}
body {
  background: white;
  color: #222222;
  padding: 0;
  margin: 0;
  font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  position: relative;
}
a:focus {
  outline: none;
}
img,
object,
embed {
  max-width: 100%;
  height: auto;
}
object,
embed {
  height: 100%;
}
img {
  -ms-interpolation-mode: bicubic;
}
#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important;
}
.left {
  float: left !important;
}
.right {
  float: right !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-justify {
  text-align: justify !important;
}
.hide {
  display: none;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
}
img {
  display: inline-block;
  vertical-align: middle;
}
textarea {
  height: auto;
  min-height: 50px;
}
select {
  width: 100%;
}
/* Grid HTML Classes */
.row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 62.5em;
  *zoom: 1;
}
.row:before,
.row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.row.collapse .column,
.row.collapse .columns {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  float: left;
}
.row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none;
  *zoom: 1;
}
.row .row:before,
.row .row:after {
  content: " ";
  display: table;
}
.row .row:after {
  clear: both;
}
.row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none;
  *zoom: 1;
}
.row .row.collapse:before,
.row .row.collapse:after {
  content: " ";
  display: table;
}
.row .row.collapse:after {
  clear: both;
}
.column,
.columns {
  position: relative;
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  width: 100%;
  float: left;
}
@media only screen {
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left;
  }
  .small-1 {
    position: relative;
    width: 8.33333%;
  }
  .small-2 {
    position: relative;
    width: 16.66667%;
  }
  .small-3 {
    position: relative;
    width: 25%;
  }
  .small-4 {
    position: relative;
    width: 33.33333%;
  }
  .small-5 {
    position: relative;
    width: 41.66667%;
  }
  .small-6 {
    position: relative;
    width: 50%;
  }
  .small-7 {
    position: relative;
    width: 58.33333%;
  }
  .small-8 {
    position: relative;
    width: 66.66667%;
  }
  .small-9 {
    position: relative;
    width: 75%;
  }
  .small-10 {
    position: relative;
    width: 83.33333%;
  }
  .small-11 {
    position: relative;
    width: 91.66667%;
  }
  .small-12 {
    position: relative;
    width: 100%;
  }
  .small-offset-1 {
    position: relative;
    margin-left: 8.33333%;
  }
  .small-offset-2 {
    position: relative;
    margin-left: 16.66667%;
  }
  .small-offset-3 {
    position: relative;
    margin-left: 25%;
  }
  .small-offset-4 {
    position: relative;
    margin-left: 33.33333%;
  }
  .small-offset-5 {
    position: relative;
    margin-left: 41.66667%;
  }
  .small-offset-6 {
    position: relative;
    margin-left: 50%;
  }
  .small-offset-7 {
    position: relative;
    margin-left: 58.33333%;
  }
  .small-offset-8 {
    position: relative;
    margin-left: 66.66667%;
  }
  .small-offset-9 {
    position: relative;
    margin-left: 75%;
  }
  .small-offset-10 {
    position: relative;
    margin-left: 83.33333%;
  }
  [class*="column"] + [class*="column"]:last-child {
    float: right;
  }
  [class*="column"] + [class*="column"].end {
    float: left;
  }
  .column.small-centered,
  .columns.small-centered {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    float: none !important;
  }
}
/* Styles for screens that are atleast 768px; */
@media only screen and (min-width: 48em) {
  .large-1 {
    position: relative;
    width: 8.33333%;
  }
  .large-2 {
    position: relative;
    width: 16.66667%;
  }
  .large-3 {
    position: relative;
    width: 25%;
  }
  .large-4 {
    position: relative;
    width: 33.33333%;
  }
  .large-5 {
    position: relative;
    width: 41.66667%;
  }
  .large-6 {
    position: relative;
    width: 50%;
  }
  .large-7 {
    position: relative;
    width: 58.33333%;
  }
  .large-8 {
    position: relative;
    width: 66.66667%;
  }
  .large-9 {
    position: relative;
    width: 75%;
  }
  .large-10 {
    position: relative;
    width: 83.33333%;
  }
  .large-11 {
    position: relative;
    width: 91.66667%;
  }
  .large-12 {
    position: relative;
    width: 100%;
  }
  .row .large-offset-1 {
    position: relative;
    margin-left: 8.33333%;
  }
  .row .large-offset-2 {
    position: relative;
    margin-left: 16.66667%;
  }
  .row .large-offset-3 {
    position: relative;
    margin-left: 25%;
  }
  .row .large-offset-4 {
    position: relative;
    margin-left: 33.33333%;
  }
  .row .large-offset-5 {
    position: relative;
    margin-left: 41.66667%;
  }
  .row .large-offset-6 {
    position: relative;
    margin-left: 50%;
  }
  .row .large-offset-7 {
    position: relative;
    margin-left: 58.33333%;
  }
  .row .large-offset-8 {
    position: relative;
    margin-left: 66.66667%;
  }
  .row .large-offset-9 {
    position: relative;
    margin-left: 75%;
  }
  .row .large-offset-10 {
    position: relative;
    margin-left: 83.33333%;
  }
  .row .large-offset-11 {
    position: relative;
    margin-left: 91.66667%;
  }
  .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }
  .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }
  .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }
  .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }
  .push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }
  .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }
  .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }
  .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }
  .push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }
  .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }
  .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }
  .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }
  .push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }
  .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }
  .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }
  .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }
  .small-push-1 {
    left: inherit;
  }
  .small-pull-1 {
    right: inherit;
  }
  .small-push-2 {
    left: inherit;
  }
  .small-pull-2 {
    right: inherit;
  }
  .small-push-3 {
    left: inherit;
  }
  .small-pull-3 {
    right: inherit;
  }
  .small-push-4 {
    left: inherit;
  }
  .small-pull-4 {
    right: inherit;
  }
  .small-push-5 {
    left: inherit;
  }
  .small-pull-5 {
    right: inherit;
  }
  .small-push-6 {
    left: inherit;
  }
  .small-pull-6 {
    right: inherit;
  }
  .small-push-7 {
    left: inherit;
  }
  .small-pull-7 {
    right: inherit;
  }
  .small-push-8 {
    left: inherit;
  }
  .small-pull-8 {
    right: inherit;
  }
  .small-push-9 {
    left: inherit;
  }
  .small-pull-9 {
    right: inherit;
  }
  .small-push-10 {
    left: inherit;
  }
  .small-pull-10 {
    right: inherit;
  }
  .small-push-11 {
    left: inherit;
  }
  .small-pull-11 {
    right: inherit;
  }
  .column.small-centered,
  .columns.small-centered {
    margin-left: 0;
    margin-right: 0;
    float: left !important;
  }
  .column.large-centered,
  .columns.large-centered {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    float: none !important;
  }
}
/*LESS Variables*/
/*Fonts*/
/*Colors*/
.text-shadow {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
}
/****************************************/
/*               Body                   */
/****************************************/
body {
  font-size: 100%;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  height: 100%;
  background: #fff;
  color: #282727;
  line-height: 1.4;
}
img,
a,
body,
footer,
* {
  -o-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}
/****************************************/
/*             Header/Nav               */
/****************************************/
.brand-bar {
  color: #fff;
  font-family: "adobe-garamond-pro", Georgia, Times, serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: bold;
  background-color: #0D407B;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 5px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0 -3px 5px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 -3px 5px rgba(0, 0, 0, 0.5);
  /* inner shadow */
  background-image: -moz-linear-gradient(top, #0d407b 0%, #0d407b 0.24%, #002b5b 100%);
  background-image: -o-linear-gradient(top, #0d407b 0%, #0d407b 0.24%, #002b5b 100%);
  background-image: -webkit-linear-gradient(top, #0d407b 0%, #0d407b 0.24%, #002b5b 100%);
  /* gradient overlay */
  background-image: linear-gradient(top, #0d407b 0%, #0d407b 0.24%, #002b5b 100%);
  /* gradient overlay */

}
.brand-bar em {
  text-transform: none;
  letter-spacing: 0.1em;
}
#logo {
  float: left;
  background: url('../../assets/logo.png');
  width: 319px;
  height: 54px;
}
#logo a {
  height: 103px;
}
header form {
  display: none;
  position: relative;
  margin: 2em auto 0;
  float: right;
  max-width: 300px;
}
header form input {
  width: 260px;
  border: 1px solid #9c9c9c;
  border-radius: 20px;
  padding: 7px 12px;
  font-family: "adobe-garamond-pro", Georgia, Times, serif;
  font-style: italic;
}
header form i {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 1em;
}
/*Main Nav*/
.nav-main {
  z-index: 1000;
}
a.menu-link {
  display: block;
  margin: 0 0 1em;
  padding: 1em 1.25em 0.75em;
  border: 2px solid #696969;
  border-radius: 3px;
  background: #9c9c9c;
  color: #fff;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
a.menu-link i {
  font-size: 80%;
  margin-left: 10px;
}
a.menu-link:hover {
  color: #fff;
  background: #696969;
  text-decoration: none;
}
.menu,
.menu > ul ul {
  clear: both;
  transition: all 0.3s ease-out;
}
.js .menu,
.js .menu > ul ul {
  overflow: hidden;
  max-height: 0;
  background: rgba(0, 0, 0, 0.2);
}
.menu.active,
.js .menu > ul ul.active {
  max-height: 55em;
}
.menu > ul {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin: 0 0 1em;
}
.menu li a {
  color: #002b5b;
  display: block;
  padding: 0.8em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
}
.menu li a:hover {
  background: rgba(0, 0, 0, 0.4);
  text-decoration: none;
}
.menu li.has-subnav > a:after {
  content: '+';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  font-size: 1.5em;
  padding: 0.25em 0.5em;
}
.menu li.has-subnav > a.active:after {
  content: "-";
}
/****************************************/
/*               General                */
/****************************************/
.page-image {
  max-height: 380px;
  overflow: hidden;
  position: relative;
  background: #002b5b;
}
.page-image .gradient {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: url('../../assets/image-overlay-gradient.png') bottom repeat-x;
  height: 150px;
}
.page-image img {
  width: 100%;
  margin: 0 auto;
  display: block;
}
.page-image .color-bar {
  height: 6px;
  position: absolute;
  z-index: 1000;
  bottom: 0;
  width: 100%;
}
.page-image .color-bar span {
  height: 6px;
  display: block;
  float: left;
}
.page-image .color-bar .lightblue {
  width: 15%;
  background: #5aabbc;
}
.page-image .color-bar .brown {
  width: 4%;
  background: #302205;
}
.page-image .color-bar .lightgreen {
  width: 25%;
  background: #999623;
}
.page-image .color-bar .cream {
  width: 12%;
  background: #f6e7a1;
}
.page-image .color-bar .gold {
  width: 5%;
  background: #5aabbc;
}
.page-image .color-bar .green {
  width: 10%;
  background: #465510;
}
.page-image .color-bar .blue {
  width: 14%;
  background: #002b5b;
}
.image-text {
  margin-top: -1.75em;
  margin-bottom: 0;
  font-size: 1.5em;
  letter-spacing: 0.1em;
  color: #fff;
  opacity: 0.7;
  z-index: 1000;
  font-family: "adobe-garamond-pro", Georgia, Times, serif;
  text-transform: uppercase;
  font-weight: bold;
}
.image-text em {
  text-transform: lowercase;
  letter-spacing: 0;
  font-weight: normal;
}
.image-text .no-caps {
  text-transform: none;
}
#main {
  margin-top: 2em;
}
/*Headings*/
h2 {
  font-size: 1.25em;
  text-transform: uppercase;
  padding-bottom: 0.25em;
  border-bottom: 2px solid #b2bfcd;
  border-color: opacity(#002b5b, 30%);
  letter-spacing: 0.1em;
}
h2 .volume {
  font-family: "adobe-garamond-pro", Georgia, Times, serif;
  font-size: 0.75em;
  text-transform: lowercase;
  font-style: italic;
  padding-left: 1em;
  letter-spacing: 0;
}
.main-content h3 {
  font-family: "adobe-garamond-pro", Georgia, Times, serif;
  color: #465510;
  font-size: 1.5em;
  margin: 0;
}
/*Text & Links*/
a {
  color: #5aabbc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
p {
  line-height: 1.4;
}
i {
  font-size: 80%;
}
ul {
  list-style-type: square;
}
.preview {
  margin: 0;
}
.author,
.title {
  font-size: 1em;
  color: #9c9c9c;
  margin: 0.25em 0;
  font-weight: bold;
}
.author em,
.title em {
  font-family: "adobe-garamond-pro", Georgia, Times, serif;
  font-weight: normal;
}
.state {
  font-family: "adobe-garamond-pro", Georgia, Times, serif;
  font-style: italic;
  color: #9c9c9c;
}
/*Buttons*/
.button {
  background: #b18d03;
  color: #fff;
  border-radius: 3px;
  padding: 0.5em 1.25em;
  font-weight: bold;
  font-size: 0.875em;
  text-transform: uppercase;
  float: right;
  display: block;
  margin: 1em 0;
  letter-spacing: 0.1em;
}
.button:hover {
  text-decoration: none;
  background: #7f6502;
}
/*Forms*/
form div {
  margin-bottom: 0.5em;
}
form label {
  display: block;
  width: 100%;
  color: #002b5b;
  font-weight: bold;
  text-transform: uppercase;
}
form input,
form textarea {
  padding: 2%;
  border-radius: 3px;
  border: 2px solid #cfcfcf;
  width: 96%;
}
form input[type="submit"] {
  width: inherit;
  border: none;
  float: left;
}
/*Images*/
img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}
img.alignleft {
  float: right;
  margin: 0 0 1em 1em;
}
/****************************************/
/*                Home                  */
/****************************************/
.home .page-image {
  max-height: 300px;
}
.home .page-image .image-text em {
  text-transform: none;
}
section {
  clear: both;
  margin: 1em 0;
  padding: 1em 0;
}
section.article {
  margin: 0;
}
section.article + .article {
  border-top: 1px solid #e8e8e8;
}
/****************************************/
/*              Subpages                */
/****************************************/
.subpage .page-image {
  max-height: 210px;
}
.masthead .container .main-content table {
  text-align: center;
  color: #9c9c9c;
}
.masthead .container h3 {
  font-size: 1.25em;
}
.masthead .container td {
  padding: 10px 0;
}
.masthead .container p {
  margin: 0;
}
.masthead .container .title {
  text-transform: uppercase;
}
.masthead .container .name {
  font-family: "adobe-garamond-pro", Georgia, Times, serif;
  font-weight: bold;
}
.archives ul {
  list-style: none;
}
/****************************************/
/*                Blog                  */
/****************************************/
.blog.single .page-image {
  margin-top: 0;
}
.blog .previous-link {
  float: left;
  width: 45%;
  display: block;
}
.blog .next-link {
  float: right;
  text-align: right;
  width: 45%;
  display: block;
}
/*Contact Form*/
div.wpcf7-response-output {
  clear: both;
  margin-top: 1em;
}
div.wpcf7-mail-sent-ok {
  border: none !important;
  background: #999623;
  color: #fff;
}
/****************************************/
/*              Sidebar                 */
/****************************************/
aside {
  margin-top: -0.75em;
}
aside section {
  color: #fff;
  border-radius: 4px;
  padding: 0.75em 0 0;
  overflow: hidden;
}
aside section .blog-post,
aside section .content {
  padding: 0 0.75em;
}
aside section .blog-post + .blog-post,
aside section .content + .content {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
aside section h2 {
  margin: 0 0.75em 1em;
  border-color: rgba(255, 255, 255, 0.3);
}
aside section h3 {
  margin: 0;
}
aside section ul {
  padding: 0;
}
aside section ul li {
  list-style-type: none;
}
aside section ul li a {
  padding: 10px 0;
  display: block;
}
aside section ul li + li a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
aside section .author {
  color: #fff;
}
aside section .read-more {
  text-transform: uppercase;
  font-weight: bold;
}
aside section.blue {
  background: #66809d;
}
aside section.blue a {
  color: #002b5b;
}
aside section.blue .sidebar-link {
  background: rgba(0, 43, 91, 0.4);
}
aside section.blue .sidebar-link:hover {
  background: rgba(0, 43, 91, 0.6);
}
aside section.green {
  background: #909970;
}
aside section.green a {
  color: #465510;
}
aside section.green .sidebar-link {
  background: rgba(70, 85, 16, 0.4);
}
aside section.green .sidebar-link:hover {
  background: rgba(70, 85, 16, 0.6);
}
aside section.brown {
  background: #837a69;
}
aside section.brown a {
  color: #302205;
}
aside section.brown .sidebar-link {
  background: rgba(48, 34, 5, 0.4);
}
aside section.brown .sidebar-link:hover {
  background: rgba(48, 34, 5, 0.6);
}
aside section.gold {
  background: #d0bb68;
}
aside section.gold a {
  color: #b18d03;
}
aside section.gold .sidebar-link {
  background: rgba(177, 141, 3, 0.4);
}
aside section.gold .sidebar-link:hover {
  background: rgba(177, 141, 3, 0.6);
}
aside section a.sidebar-link {
  text-align: center;
  display: block;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.875em;
  margin-top: 1em;
  padding: 1em;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
aside section a.sidebar-link:hover {
  text-decoration: none;
}
aside section.contact h3 {
  text-transform: uppercase;
}
aside section.news a,
aside section.archives a,
aside section.blog a {
  color: #fff;
  font-weight: bold;
}
aside section p {
  margin: 0;
}
/****************************************/
/*               Footer                 */
/****************************************/
footer {
  margin: 3em 0;
  color: #686767;
}
footer .row {
  padding-top: 1em;
  border-top: 1px solid #ebebeb;
}
footer p {
  font-size: 0.85em;
}
footer p a {
  color: #686767;
  text-decoration: underline;
  padding-right: 10px;
}
footer p a:hover {
  color: #002b5b;
}
footer .footnote {
  font-style: italic;
  font-family: "adobe-garamond-pro", Georgia, Times, serif;
  color: #b5b5b5;
}
footer img {
  margin-top: 1em;
}
/*Media Queries*/
/*480px __________________________________________________________________________________________________________ */
@media only screen and (min-width: 480px) {
  /****************************************/
  /*               Body                   */
  /****************************************/
  /****************************************/
  /*             Header/Nav               */
  /****************************************/
  /****************************************/
  /*              Homepage                */
  /****************************************/
  /****************************************/
  /*              Subpages                */
  /****************************************/
  /****************************************/
  /*               Footer                 */
  /****************************************/
}
/*768px __________________________________________________________________________________________________________ */
@media only screen and (min-width: 768px) {
  /****************************************/
  /*               Body                   */
  /****************************************/
  /****************************************/
  /*             Header/Nav               */
  /****************************************/
  .brand-bar {
    text-align: left;
  }
  header form {
    display: block;
  }
  /****************************************/
  /*              General                 */
  /****************************************/
  .image-text {
    margin-top: -1.75em;
    font-size: 2.5em;
    letter-spacing: 0.2em;
  }
  /*Forms*/
  form div {
    margin-bottom: 1em;
  }
  form label {
    float: left;
    width: 20%;
    text-align: right;
    margin-right: 3%;
    margin-top: 0.25em;
  }
  form input,
  form textarea {
    padding: 1%;
    width: 77%;
  }
  form input[type="submit"] {
    padding: 2%;
    float: right;
  }
  /****************************************/
  /*              Homepage                */
  /****************************************/
  /****************************************/
  /*              Subpages                */
  /****************************************/
  /****************************************/
  /*               Footer                 */
  /****************************************/
}
/*992px __________________________________________________________________________________________________________ */
@media only screen and (min-width: 979px) {
  /****************************************/
  /*               Body                   */
  /****************************************/
  /****************************************/
  /*             Header/Nav               */
  /****************************************/
  /*Main Nav*/
  .nav-main {
    overflow: visible;
    transition: none;
  }
  #menu {
    float: right;
    clear: none;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    margin: 0 auto;
    width: 100%;
    position: relative;
  }
  a.menu-link {
    display: none;
  }
  .js .menu,
  .js .menu > ul ul {
    max-height: none;
    overflow: visible;
    background: none;
  }
  .js .menu > ul ul {
    background: #ebebeb;
    display: none;
  }
  .js .menu > ul li:hover ul {
    display: block;
  }
  .menu ul {
    border: 0;
    width: 960px;
    margin: 0 auto;
  }
  .menu li a {
    display: block;
    font-family: "adobe-garamond-pro", Georgia, Times, serif;
    font-weight: bold;
    font-size: 1em;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: none;
  }
  .level-1 > li > a {
    padding: 1em 1em;
    margin: 0 0 0 0em;
  }
  .ie8 .level-1 > li > a {
    padding: 1em 0.75em;
  }
  .level-1 > li.has-subnav > a {
    background-orgin: bottom right;
  }
  .level-1 > li {
    margin-left: -0.3em;
  }
  .level-1 > li > a:hover {
    background: #f8f8f8;
  }
  .level-1 > li.has-subnav > a:hover,
  .level-1 > li.active.has-subnav > a {
    background: #f8f8f8;
  }
  .level-1 > li.current-menu-item,
  .level-1 > li.current-menu-ancestor,
  .level-1 > li.current-page-ancestor,
  .level-1 > li.current-menu-item > a:hover,
  .level-1 > li.current-menu-ancestor > a:hover,
  .level-1 > li.current-page-ancestor > a:hover,
  .level-1 > li.active.has-subnav.current-menu-item > a,
  .level-1 > li.active.has-subnav.current-menu-ancestor > a,
  .level-1 > li.active.has-subnav.current-page-ancestor > a {
    background: #ebebeb;
  }
  .menu .mobile-only {
    display: none;
  }
  .menu .has-subnav > a:after {
    content: "";
    font-size: 1em;
    padding: 0.8em 0.5em;
  }
  .menu .level-1 > li.has-subnav > a:after,
  .menu li.has-subnav > a:after {
    content: "";
  }
  .menu > ul > li {
    display: inline-block;
  }
  .menu > ul ul {
    position: absolute;
    transition: none;
  }
  .menu > ul ul.level-2 {
    top: 3.4em;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: #f8f8f8;
  }
  .menu > ul ul.level-2 li {
    float: left;
  }
  .menu > ul ul.level-2 li.has-subnav > a {
    cursor: default;
  }
  .menu > ul ul.level-2 li.has-subnav > a:hover {
    background: none;
  }
  .menu > ul ul.level-2 li a {
    font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 0.875em;
    text-transform: none;
    font-style: normal;
    letter-spacing: 0;
  }
  .menu > ul ul.level-2 li a:hover {
    background: rgba(0, 0, 0, 0.07);
  }
  .menu > ul ul.level-2 li.current-menu-item a {
    font-weight: bold;
    background: rgba(0, 0, 0, 0.1);
  }
  /*.level-1 > li.current-menu-item ul,
  .level-1 > li.current-menu-parent ul,
  .level-1 > li.current-page-ancestor ul    {display: block; z-index: 10; background: #ebebeb;}*/
  .menu > ul ul.level-3 {
    position: relative;
    margin-bottom: 0.5em;
  }
  .menu > ul ul.level-3 li {
    margin-left: 0.8em;
  }
  .menu > ul ul.level-3 li a {
    font-weight: normal;
    border-top: none;
    padding: 0.4em 0.4em 0.4em 0.8em;
  }
  /*Hover Menu*/
  .menu > ul > li.active {
    position: relative;
  }
  .menu > ul li.active ul.level-2 {
    top: 54px;
    left: 0;
    width: 300px;
  }
  .menu > ul li.active ul.level-2 li {
    float: none;
    display: block;
  }
  /*Current Menu*/
  /*.menu > ul > li.active.current-menu-parent          {position: inherit;}
  .menu > ul li.active.current-menu-parent ul.level-2 {top: 3.4em; left: 0; width: 100%;
  	li 																							  {float: left;}
  }
  */
  /****************************************/
  /*              Homepage                */
  /****************************************/
  /*.home .page-image 	  		{
  	.image-text 						{margin-top: -3em;}
  }*/
  /****************************************/
  /*              Subpages                */
  /****************************************/
  /*.subpage                                {
    .page-image                           {margin-top: 41px;}
  }*/
  /****************************************/
  /*               Footer                 */
  /****************************************/
  /****************************************/
  /*              IE8 Styles              */
  /****************************************/
}
/*1382px __________________________________________________________________________________________________________ */
@media only screen and (min-width: 1200px) {
  /****************************************/
  /*               Body                   */
  /****************************************/
  /****************************************/
  /*             Header/Nav               */
  /****************************************/
  /****************************************/
  /*              General                 */
  /****************************************/
  /****************************************/
  /*              Homepage                */
  /****************************************/
  /*.home .page-image         {
    .image-text             {margin-top: -4em;}
  }*/
  /****************************************/
  /*              Subpages                */
  /****************************************/
  /****************************************/
  /*               Footer                 */
  /****************************************/
}
/*Retina CSS Styles*/
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #logo {
    background: url('../../assets/logo@2x.png');
    background-size: 319px 54px;
    width: 319px;
    height: 54px;
    padding: 0;
  }
}
/*Imports*/
/* ==|== non-semantic helper classes ========================================
   Please define your styles before this section.
   ========================================================================== */
/* For image replacement */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
}
.ir br {
  display: none;
}
/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden {
  display: none !important;
  visibility: hidden;
}
/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden;
}
/* Contain floats: h5bp.com/q */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
/* ==|== print styles =======================================================
   Print styles.
   ========================================================================== */
.print-only {
  display: none !important;
}
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  /* Black prints faster: h5bp.com/s */
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  /* Don't show links for images, or javascript/internal links */
  pre,
  blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  /* h5bp.com/t */
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page  {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .hide-on-print {
    display: none !important;
  }
  .print-only {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  .show-for-print {
    display: inherit !important;
  }
  /*Custom Print Styles*/
  aside {
    display: none !important;
  }
  nav {
    display: none !important;
  }
}
