/*  ---------------------------------------------------		
	Author: Dylan Baumann
	Company: Corporate 3 Design
	Date: March 11, 2015
	---------------------------------------------------	
	
	---------------------------------------------------
	Table of Contents
	---------------------------------------------------
	:: Imports
	:: Page / General
	:: Typography
	:: Helper Classes
	:: Forms
	:: Header
	:: Promo
	:: Content
	:: Footer
	:: Foundation Overrides / Media Queries
	:: Debug Styling
	:: Post Includes
	------------------------------------------------ */
/*  ---------------------------------------------------
	:: Imports
	------------------------------------------------ */
/*	Be sure to use Partials (files named with a preceeding underscore "_")
		for imports because when you run Sass it won't output a corresponding
		.css file along with it so we have a simplified /css/ folder.
		
		Example:
		If we have a file named "normalize.scss" that gets imported 
		into "main.scss" then Sass will still create a file named
		"normalilze.css" in the /css/ folder.
		
		However, if we name it "_normalize.scss" then Sass will not
		create a "normalize.css" file since it is already imported into
		the "main.css" when we compile, making it so we don't have frivolous files.
		
		Note: when doing the actual "@import" the underscore doesn't need to be stated
		and will be automatically understood. Meaning 'partials/variables' is the same
		as saying 'partials/_variables'.
    */
/* Sass-Only Includes */
/*  ---------------------------------------------------
	:: _variables.scss
	------------------------------------------------ */
/* View Sizes */
/* 640px */
/* $LargeWidth: 75em; */
/* 1200px site */
/* 1024px site */
/* $LargeWidth: 60em; */
/* 960px  site */
/* Fonts */
/* Colors */
/*  ---------------------------------------------------
	:: _mixins.scss
	------------------------------------------------ */
/* Structural */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block; }

audio, canvas, video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden], template {
  display: none; }

script {
  display: none !important; }

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

a {
  background: transparent; }

a:focus {
  outline: thin dotted; }

a:active, a:hover {
  outline: 0; }

h1 {
  font-size: 2em;
  margin: .67em 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: 700; }

dfn {
  font-style: italic; }

hr {
  box-sizing: content-box;
  height: 0; }

mark {
  background: #ff0;
  color: #000; }

code, kbd, pre, samp {
  font-family: monospace,serif;
  font-size: 1em; }

pre {
  white-space: pre-wrap; }

q {
  quotes: "\201c" "\201d" "\2018" "\2019"; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 0; }

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em; }

legend {
  border: 0;
  padding: 0; }

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0; }

button, input {
  line-height: normal; }

button, select {
  text-transform: none; }

button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled], html input[disabled] {
  cursor: default; }

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto;
  vertical-align: top; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/*  ---------------------------------------------
	:: Meta Styles
	------------------------------------------ */
/*  Meta styles are included in all Foundation builds, as they are a dependancy of the Javascript.
		They are used to provide media query values for javascript components.
		Forward slash placed around everything to convince PhantomJS to read the value. 
	*/
meta.foundation-version {
  font-family: "/5.4.6/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:$MediumWidth)/";
  width: 40.063em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:$LargeWidth)/";
  width: 64.063em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:$XLWidth)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:$XXLWidth)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

/*  ---------------------------------------------
	:: Required Border-Box Styling
	------------------------------------------ */
/* Ensure widths are correct, regardless of padding! */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/*  ---------------------------------------------
	:: Choose Your Grid (REQUIRED)
	------------------------------------------ */
/*  1200px, 1000px, OR 960px? 
		Choose ONE and then comment out the other
		Also remember to update /partials/_variables.scss to reflect
		the $LargeWidth variable to whichever width you've chosen.  
	*/
/* @import 'partials/foundation/foundation-1200-wide-grid'; */
/* Begin 1000-Wide-Grid Partial */
.row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 64.063em; }

.row:before, .row:after {
  content: " ";
  display: table; }

.row:after {
  clear: both; }

.row.collapse > .column,
.row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

.row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

.row .row {
  width: auto;
  margin-left: -0.875em;
  margin-right: -0.875em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

.row .row:before, .row .row:after {
  content: " ";
  display: table; }

.row .row:after {
  clear: both; }

.row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

.row .row.collapse:before, .row .row.collapse:after {
  content: " ";
  display: table; }

.row .row.collapse:after {
  clear: both; }

.column,
.columns {
  padding-left: 0.875em;
  padding-right: 0.875em;
  width: 100%;
  float: left; }

[class*="column"] + [class*="column"]:last-child {
  float: right; }

[class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }
  .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }
  .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }
  .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }
  .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }
  .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }
  .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }
  .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }
  .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }
  .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }
  .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }
  .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }
  .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }
  .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }
  .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }
  .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }
  .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }
  .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }
  .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }
  .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }
  .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }
  .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }
  .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }
  .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
  .column,
  .columns {
    position: relative;
    padding-left: 0.875em;
    padding-right: 0.875em;
    float: left; }
  .small-1 {
    width: 8.33333%; }
  .small-2 {
    width: 16.66667%; }
  .small-3 {
    width: 25%; }
  .small-4 {
    width: 33.33333%; }
  .small-5 {
    width: 41.66667%; }
  .small-6 {
    width: 50%; }
  .small-7 {
    width: 58.33333%; }
  .small-8 {
    width: 66.66667%; }
  .small-9 {
    width: 75%; }
  .small-10 {
    width: 83.33333%; }
  .small-11 {
    width: 91.66667%; }
  .small-12 {
    width: 100%; }
  .small-offset-0 {
    margin-left: 0% !important; }
  .small-offset-1 {
    margin-left: 8.33333% !important; }
  .small-offset-2 {
    margin-left: 16.66667% !important; }
  .small-offset-3 {
    margin-left: 25% !important; }
  .small-offset-4 {
    margin-left: 33.33333% !important; }
  .small-offset-5 {
    margin-left: 41.66667% !important; }
  .small-offset-6 {
    margin-left: 50% !important; }
  .small-offset-7 {
    margin-left: 58.33333% !important; }
  .small-offset-8 {
    margin-left: 66.66667% !important; }
  .small-offset-9 {
    margin-left: 75% !important; }
  .small-offset-10 {
    margin-left: 83.33333% !important; }
  .small-offset-11 {
    margin-left: 91.66667% !important; }
  .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }
  .column.small-centered,
  .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }
  .column.small-uncentered,
  .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }
  .column.small-centered:last-child,
  .columns.small-centered:last-child {
    float: none; }
  .column.small-uncentered:last-child,
  .columns.small-uncentered:last-child {
    float: left; }
  .column.small-uncentered.opposite,
  .columns.small-uncentered.opposite {
    float: right; } }

@media only screen and (min-width: 40.063em) {
  .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }
  .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }
  .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }
  .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }
  .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }
  .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }
  .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }
  .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }
  .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }
  .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }
  .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }
  .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }
  .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }
  .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }
  .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }
  .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }
  .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }
  .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }
  .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }
  .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }
  .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }
  .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }
  .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }
  .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
  .column,
  .columns {
    position: relative;
    padding-left: 0.875em;
    padding-right: 0.875em;
    float: left; }
  .medium-1 {
    width: 8.33333%; }
  .medium-2 {
    width: 16.66667%; }
  .medium-3 {
    width: 25%; }
  .medium-4 {
    width: 33.33333%; }
  .medium-5 {
    width: 41.66667%; }
  .medium-6 {
    width: 50%; }
  .medium-7 {
    width: 58.33333%; }
  .medium-8 {
    width: 66.66667%; }
  .medium-9 {
    width: 75%; }
  .medium-10 {
    width: 83.33333%; }
  .medium-11 {
    width: 91.66667%; }
  .medium-12 {
    width: 100%; }
  .medium-offset-0 {
    margin-left: 0% !important; }
  .medium-offset-1 {
    margin-left: 8.33333% !important; }
  .medium-offset-2 {
    margin-left: 16.66667% !important; }
  .medium-offset-3 {
    margin-left: 25% !important; }
  .medium-offset-4 {
    margin-left: 33.33333% !important; }
  .medium-offset-5 {
    margin-left: 41.66667% !important; }
  .medium-offset-6 {
    margin-left: 50% !important; }
  .medium-offset-7 {
    margin-left: 58.33333% !important; }
  .medium-offset-8 {
    margin-left: 66.66667% !important; }
  .medium-offset-9 {
    margin-left: 75% !important; }
  .medium-offset-10 {
    margin-left: 83.33333% !important; }
  .medium-offset-11 {
    margin-left: 91.66667% !important; }
  .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }
  .column.medium-centered,
  .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }
  .column.medium-uncentered,
  .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }
  .column.medium-centered:last-child,
  .columns.medium-centered:last-child {
    float: none; }
  .column.medium-uncentered:last-child,
  .columns.medium-uncentered:last-child {
    float: left; }
  .column.medium-uncentered.opposite,
  .columns.medium-uncentered.opposite {
    float: right; }
  .push-0 {
    position: relative;
    left: 0%;
    right: auto; }
  .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }
  .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; } }

@media only screen and (min-width: 64.063em) {
  .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }
  .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }
  .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }
  .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }
  .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }
  .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }
  .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }
  .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }
  .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }
  .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }
  .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }
  .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }
  .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }
  .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }
  .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }
  .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }
  .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }
  .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }
  .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }
  .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }
  .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }
  .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }
  .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }
  .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
  .column,
  .columns {
    position: relative;
    padding-left: 0.875em;
    padding-right: 0.875em;
    float: left; }
  .large-1 {
    width: 8.33333%; }
  .large-2 {
    width: 16.66667%; }
  .large-3 {
    width: 25%; }
  .large-4 {
    width: 33.33333%; }
  .large-5 {
    width: 41.66667%; }
  .large-6 {
    width: 50%; }
  .large-7 {
    width: 58.33333%; }
  .large-8 {
    width: 66.66667%; }
  .large-9 {
    width: 75%; }
  .large-10 {
    width: 83.33333%; }
  .large-11 {
    width: 91.66667%; }
  .large-12 {
    width: 100%; }
  .large-offset-0 {
    margin-left: 0% !important; }
  .large-offset-1 {
    margin-left: 8.33333% !important; }
  .large-offset-2 {
    margin-left: 16.66667% !important; }
  .large-offset-3 {
    margin-left: 25% !important; }
  .large-offset-4 {
    margin-left: 33.33333% !important; }
  .large-offset-5 {
    margin-left: 41.66667% !important; }
  .large-offset-6 {
    margin-left: 50% !important; }
  .large-offset-7 {
    margin-left: 58.33333% !important; }
  .large-offset-8 {
    margin-left: 66.66667% !important; }
  .large-offset-9 {
    margin-left: 75% !important; }
  .large-offset-10 {
    margin-left: 83.33333% !important; }
  .large-offset-11 {
    margin-left: 91.66667% !important; }
  .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }
  .column.large-centered,
  .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }
  .column.large-uncentered,
  .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }
  .column.large-centered:last-child,
  .columns.large-centered:last-child {
    float: none; }
  .column.large-uncentered:last-child,
  .columns.large-uncentered:last-child {
    float: left; }
  .column.large-uncentered.opposite,
  .columns.large-uncentered.opposite {
    float: right; }
  .push-0 {
    position: relative;
    left: 0%;
    right: auto; }
  .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }
  .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; } }

/* @import 'partials/foundation/foundation-960-wide-grid'; */
/*  ---------------------------------------------
	:: Required Imports 
	------------------------------------------ */
button,
.button {
  -webkit-appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: normal;
  line-height: normal;
  margin: 0 0 1.25rem;
  position: relative;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  padding: 1rem 2rem 1.0625rem;
  background: #5d7e95;
  font-size: 1rem;
  border: none;
  border-radius: 0;
  color: white;
  transition: background-color 300ms ease-out; }
  button:hover, button:focus,
  .button:hover,
  .button:focus {
    color: white;
    background-color: #54585a; }
  button.large,
  .button.large {
    padding: 1.125rem 2.25rem 1.1875rem;
    font-size: 1.25rem; }
  button.small,
  .button.small {
    padding: 0.875rem 1.75rem 0.9375rem;
    font-size: 0.8125rem; }
  button.tiny,
  .button.tiny {
    padding: 0.625rem 1.25rem 0.6875rem;
    font-size: 0.6875rem; }
  button.expand,
  .button.expand {
    padding-right: 0;
    padding-left: 0;
    width: 100%; }
  button.left-align,
  .button.left-align {
    text-align: left;
    text-indent: 0.75rem; }
  button.right-align,
  .button.right-align {
    text-align: left;
    text-indent: 0.75rem; }
  button.radius,
  .button.radius {
    border-radius: 3px; }
  button.round,
  .button.round {
    border-radius: 1000px; }
  button::-moz-focus-inner,
  .button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  @media only screen and (min-width: 40.063em) {
    button,
    .button {
      display: inline-block; } }

/* Begin Block-Grid Partial */
[class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

[class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

[class*="block-grid-"]:after {
  clear: both; }

[class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {
  .small-block-grid-1 > li {
    width: 100%;
    list-style: none; }
  .small-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  .small-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }
  .small-block-grid-2 > li {
    width: 50%;
    list-style: none; }
  .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }
  .small-block-grid-3 > li {
    width: 33.33333%;
    list-style: none; }
  .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }
  .small-block-grid-4 > li {
    width: 25%;
    list-style: none; }
  .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }
  .small-block-grid-5 > li {
    width: 20%;
    list-style: none; }
  .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }
  .small-block-grid-6 > li {
    width: 16.66667%;
    list-style: none; }
  .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }
  .small-block-grid-7 > li {
    width: 14.28571%;
    list-style: none; }
  .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }
  .small-block-grid-8 > li {
    width: 12.5%;
    list-style: none; }
  .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }
  .small-block-grid-9 > li {
    width: 11.11111%;
    list-style: none; }
  .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }
  .small-block-grid-10 > li {
    width: 10%;
    list-style: none; }
  .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }
  .small-block-grid-11 > li {
    width: 9.09091%;
    list-style: none; }
  .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }
  .small-block-grid-12 > li {
    width: 8.33333%;
    list-style: none; }
  .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

@media only screen and (min-width: 40.063em) {
  .medium-block-grid-1 > li {
    width: 100%;
    list-style: none; }
  .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }
  .medium-block-grid-2 > li {
    width: 50%;
    list-style: none; }
  .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }
  .medium-block-grid-3 > li {
    width: 33.33333%;
    list-style: none; }
  .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }
  .medium-block-grid-4 > li {
    width: 25%;
    list-style: none; }
  .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }
  .medium-block-grid-5 > li {
    width: 20%;
    list-style: none; }
  .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }
  .medium-block-grid-6 > li {
    width: 16.66667%;
    list-style: none; }
  .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }
  .medium-block-grid-7 > li {
    width: 14.28571%;
    list-style: none; }
  .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }
  .medium-block-grid-8 > li {
    width: 12.5%;
    list-style: none; }
  .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }
  .medium-block-grid-9 > li {
    width: 11.11111%;
    list-style: none; }
  .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }
  .medium-block-grid-10 > li {
    width: 10%;
    list-style: none; }
  .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }
  .medium-block-grid-11 > li {
    width: 9.09091%;
    list-style: none; }
  .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }
  .medium-block-grid-12 > li {
    width: 8.33333%;
    list-style: none; }
  .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

@media only screen and (min-width: 64.063em) {
  .large-block-grid-1 > li {
    width: 100%;
    list-style: none; }
  .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }
  .large-block-grid-2 > li {
    width: 50%;
    list-style: none; }
  .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }
  .large-block-grid-3 > li {
    width: 33.33333%;
    list-style: none; }
  .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }
  .large-block-grid-4 > li {
    width: 25%;
    list-style: none; }
  .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }
  .large-block-grid-5 > li {
    width: 20%;
    list-style: none; }
  .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }
  .large-block-grid-6 > li {
    width: 16.66667%;
    list-style: none; }
  .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }
  .large-block-grid-7 > li {
    width: 14.28571%;
    list-style: none; }
  .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }
  .large-block-grid-8 > li {
    width: 12.5%;
    list-style: none; }
  .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }
  .large-block-grid-9 > li {
    width: 11.11111%;
    list-style: none; }
  .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }
  .large-block-grid-10 > li {
    width: 10%;
    list-style: none; }
  .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }
  .large-block-grid-11 > li {
    width: 9.09091%;
    list-style: none; }
  .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }
  .large-block-grid-12 > li {
    width: 8.33333%;
    list-style: none; }
  .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

/* Begin Off-Canvas Partial */
.off-canvas-wrap {
  -webkit-backface-visibility: hidden;
  position: relative;
  width: 100%;
  overflow: hidden; }

.off-canvas-wrap.move-right, .off-canvas-wrap.move-left {
  min-height: 100%;
  -webkit-overflow-scrolling: touch; }

.inner-wrap {
  -webkit-backface-visibility: hidden;
  position: relative;
  width: 100%;
  -webkit-transition: -webkit-transform 500ms ease;
  -moz-transition: -moz-transform 500ms ease;
  -ms-transition: -ms-transform 500ms ease;
  -o-transition: -o-transform 500ms ease;
  transition: transform 500ms ease; }

.inner-wrap:before, .inner-wrap:after {
  content: " ";
  display: table; }

.inner-wrap:after {
  clear: both; }

.tab-bar {
  -webkit-backface-visibility: hidden;
  background: #333333;
  color: white;
  height: 2.8125rem;
  line-height: 2.8125rem;
  position: relative; }

.tab-bar h1, .tab-bar h2, .tab-bar h3, .tab-bar h4, .tab-bar h5, .tab-bar h6 {
  color: white;
  font-weight: bold;
  line-height: 2.8125rem;
  margin: 0; }

.tab-bar h1, .tab-bar h2, .tab-bar h3, .tab-bar h4 {
  font-size: 1.125rem; }

.left-small {
  width: 2.8125rem;
  height: 2.8125rem;
  position: absolute;
  top: 0;
  border-right: solid 1px #1a1a1a;
  left: 0; }

.right-small {
  width: 2.8125rem;
  height: 2.8125rem;
  position: absolute;
  top: 0;
  border-left: solid 1px #1a1a1a;
  right: 0; }

.tab-bar-section {
  padding: 0 0.625rem;
  position: absolute;
  text-align: center;
  height: 2.8125rem;
  top: 0; }

@media only screen and (min-width: 40.063em) {
  .tab-bar-section.left, .tab-bar-section.right {
    text-align: left; } }

.tab-bar-section.left {
  left: 0;
  right: 2.8125rem; }

.tab-bar-section.right {
  left: 2.8125rem;
  right: 0; }

.tab-bar-section.middle {
  left: 2.8125rem;
  right: 2.8125rem; }

.tab-bar .menu-icon {
  text-indent: 2.1875rem;
  width: 2.8125rem;
  height: 2.8125rem;
  display: block;
  padding: 0;
  color: white;
  position: relative;
  transform: translate3d(0, 0, 0); }

.tab-bar .menu-icon span::after {
  content: "";
  position: absolute;
  display: block;
  height: 0;
  top: 50%;
  margin-top: -0.5rem;
  left: 0.90625rem;
  box-shadow: 0 0px 0 1px white, 0 7px 0 1px white, 0 14px 0 1px white;
  width: 1rem; }

.tab-bar .menu-icon span:hover:after {
  box-shadow: 0 0px 0 1px #b3b3b3, 0 7px 0 1px #b3b3b3, 0 14px 0 1px #b3b3b3; }

.left-off-canvas-menu {
  -webkit-backface-visibility: hidden;
  width: 15.625rem;
  top: 0;
  bottom: 0;
  position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
  background: #333333;
  z-index: 1001;
  box-sizing: content-box;
  transition: transform 500ms ease 0s;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -ms-transform: translate(-100.5%, 0);
  -webkit-transform: translate3d(-100.5%, 0, 0);
  -moz-transform: translate3d(-100.5%, 0, 0);
  -ms-transform: translate3d(-100.5%, 0, 0);
  -o-transform: translate3d(-100.5%, 0, 0);
  transform: translate3d(-100.5%, 0, 0);
  left: 0; }

.left-off-canvas-menu * {
  -webkit-backface-visibility: hidden; }

.right-off-canvas-menu {
  -webkit-backface-visibility: hidden;
  width: 15.625rem;
  top: 0;
  bottom: 0;
  position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
  background: #333333;
  z-index: 1001;
  box-sizing: content-box;
  transition: transform 500ms ease 0s;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -ms-transform: translate(100.5%, 0);
  -webkit-transform: translate3d(100.5%, 0, 0);
  -moz-transform: translate3d(100.5%, 0, 0);
  -ms-transform: translate3d(100.5%, 0, 0);
  -o-transform: translate3d(100.5%, 0, 0);
  transform: translate3d(100.5%, 0, 0);
  right: 0; }

.right-off-canvas-menu * {
  -webkit-backface-visibility: hidden; }

ul.off-canvas-list {
  list-style-type: none;
  padding: 0;
  margin: 0; }

ul.off-canvas-list li label {
  display: block;
  padding: 0.3rem 0.9375rem;
  color: #999999;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: bold;
  background: #444444;
  border-top: 1px solid #5e5e5e;
  border-bottom: none;
  margin: 0; }

ul.off-canvas-list li a {
  display: block;
  padding: 0.66667rem;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid #262626; }

.move-right > .inner-wrap {
  -ms-transform: translate(15.625rem, 0);
  -webkit-transform: translate3d(15.625rem, 0, 0);
  -moz-transform: translate3d(15.625rem, 0, 0);
  -ms-transform: translate3d(15.625rem, 0, 0);
  -o-transform: translate3d(15.625rem, 0, 0);
  transform: translate3d(15.625rem, 0, 0); }

.move-right .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  transition: background 300ms ease;
  cursor: pointer;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent; }

@media only screen and (min-width: 40.063em) {
  .move-right .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05); } }

.move-left > .inner-wrap {
  -ms-transform: translate(-15.625rem, 0);
  -webkit-transform: translate3d(-15.625rem, 0, 0);
  -moz-transform: translate3d(-15.625rem, 0, 0);
  -ms-transform: translate3d(-15.625rem, 0, 0);
  -o-transform: translate3d(-15.625rem, 0, 0);
  transform: translate3d(-15.625rem, 0, 0); }

.move-left .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  transition: background 300ms ease;
  cursor: pointer;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent; }

@media only screen and (min-width: 40.063em) {
  .move-left .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05); } }

.offcanvas-overlap .left-off-canvas-menu, .offcanvas-overlap .right-off-canvas-menu {
  -ms-transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
  z-index: 1003; }

.offcanvas-overlap .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  transition: background 300ms ease;
  cursor: pointer;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent; }

@media only screen and (min-width: 40.063em) {
  .offcanvas-overlap .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05); } }

.offcanvas-overlap-left .right-off-canvas-menu {
  -ms-transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
  z-index: 1003; }

.offcanvas-overlap-left .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  transition: background 300ms ease;
  cursor: pointer;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent; }

@media only screen and (min-width: 40.063em) {
  .offcanvas-overlap-left .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05); } }

.offcanvas-overlap-right .left-off-canvas-menu {
  -ms-transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
  z-index: 1003; }

.offcanvas-overlap-right .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  transition: background 300ms ease;
  cursor: pointer;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent; }

@media only screen and (min-width: 40.063em) {
  .offcanvas-overlap-right .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05); } }

.no-csstransforms .left-off-canvas-menu {
  left: -15.625rem; }

.no-csstransforms .right-off-canvas-menu {
  right: -15.625rem; }

.no-csstransforms .move-left > .inner-wrap {
  right: 15.625rem; }

.no-csstransforms .move-right > .inner-wrap {
  left: 15.625rem; }

.left-submenu {
  -webkit-backface-visibility: hidden;
  width: 15.625rem;
  top: 0;
  bottom: 0;
  position: absolute;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #333333;
  z-index: 1002;
  box-sizing: content-box;
  -webkit-overflow-scrolling: touch;
  -ms-transform: translate(-100%, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  left: 0;
  -webkit-transition: -webkit-transform 500ms ease;
  -moz-transition: -moz-transform 500ms ease;
  -ms-transition: -ms-transform 500ms ease;
  -o-transition: -o-transform 500ms ease;
  transition: transform 500ms ease; }

.left-submenu * {
  -webkit-backface-visibility: hidden; }

.left-submenu .back > a {
  padding: 0.3rem 0.9375rem;
  color: #999999;
  text-transform: uppercase;
  font-weight: bold;
  background: #444444;
  border-top: 1px solid #5e5e5e;
  border-bottom: none;
  margin: 0; }

.left-submenu .back > a:hover {
  background: #303030;
  border-top: 1px solid #5e5e5e;
  border-bottom: none; }

.left-submenu .back > a:before {
  content: "\AB";
  margin-right: 0.5rem;
  display: inline; }

.left-submenu.move-right {
  -ms-transform: translate(0%, 0);
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0); }

.right-submenu {
  -webkit-backface-visibility: hidden;
  width: 15.625rem;
  top: 0;
  bottom: 0;
  position: absolute;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #333333;
  z-index: 1002;
  box-sizing: content-box;
  -webkit-overflow-scrolling: touch;
  -ms-transform: translate(100%, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  right: 0;
  -webkit-transition: -webkit-transform 500ms ease;
  -moz-transition: -moz-transform 500ms ease;
  -ms-transition: -ms-transform 500ms ease;
  -o-transition: -o-transform 500ms ease;
  transition: transform 500ms ease; }

.right-submenu * {
  -webkit-backface-visibility: hidden; }

.right-submenu .back > a {
  padding: 0.3rem 0.9375rem;
  color: #999999;
  text-transform: uppercase;
  font-weight: bold;
  background: #444444;
  border-top: 1px solid #5e5e5e;
  border-bottom: none;
  margin: 0; }

.right-submenu .back > a:after {
  content: "\BB";
  margin-left: 0.5rem;
  display: inline; }

.right-submenu.move-left {
  -ms-transform: translate(0%, 0);
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0); }

.left-off-canvas-menu ul.off-canvas-list li.has-submenu > a:after {
  content: "\BB";
  margin-left: 0.5rem;
  display: inline; }

.right-off-canvas-menu ul.off-canvas-list li.has-submenu > a:before {
  content: "\AB";
  margin-right: 0.5rem;
  display: inline; }

/* Begin Visibility Partial */
/* small displays */
@media only screen {
  .show-for-small-only,
  .show-for-small-up,
  .show-for-small,
  .show-for-small-down,
  .hide-for-medium-only,
  .hide-for-medium-up,
  .hide-for-medium,
  .show-for-medium-down,
  .hide-for-large-only,
  .hide-for-large-up,
  .hide-for-large,
  .show-for-large-down {
    display: inherit !important; }
  .hide-for-small-only,
  .hide-for-small-up,
  .hide-for-small,
  .hide-for-small-down,
  .show-for-medium-only,
  .show-for-medium-up,
  .show-for-medium,
  .hide-for-medium-down,
  .show-for-large-only,
  .show-for-large-up,
  .show-for-large,
  .hide-for-large-down {
    display: none !important; } }

/* medium displays */
@media only screen and (min-width: 40.063em) {
  .hide-for-small-only,
  .show-for-small-up,
  .hide-for-small,
  .hide-for-small-down,
  .show-for-medium-only,
  .show-for-medium-up,
  .show-for-medium,
  .show-for-medium-down,
  .hide-for-large-only,
  .hide-for-large-up,
  .hide-for-large,
  .show-for-large-down {
    display: inherit !important; }
  .show-for-small-only,
  .hide-for-small-up,
  .show-for-small,
  .show-for-small-down,
  .hide-for-medium-only,
  .hide-for-medium-up,
  .hide-for-medium,
  .hide-for-medium-down,
  .show-for-large-only,
  .show-for-large-up,
  .show-for-large,
  .hide-for-large-down {
    display: none !important; } }

/* large displays */
@media only screen and (min-width: 64.063em) {
  .hide-for-small-only,
  .show-for-small-up,
  .hide-for-small,
  .hide-for-small-down,
  .hide-for-medium-only,
  .show-for-medium-up,
  .hide-for-medium,
  .hide-for-medium-down,
  .show-for-large-only,
  .show-for-large-up,
  .show-for-large,
  .show-for-large-down {
    display: inherit !important; }
  .show-for-small-only,
  .hide-for-small-up,
  .show-for-small,
  .show-for-small-down,
  .show-for-medium-only,
  .hide-for-medium-up,
  .show-for-medium,
  .show-for-medium-down,
  .hide-for-large-only,
  .hide-for-large-up,
  .hide-for-large,
  .hide-for-large-down {
    display: none !important; } }

/* Orientation targeting */
.show-for-landscape,
.hide-for-portrait {
  display: inherit !important; }

.hide-for-landscape,
.show-for-portrait {
  display: none !important; }

@media only screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: inherit !important; }
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important; } }

@media only screen and (orientation: portrait) {
  .show-for-portrait,
  .hide-for-landscape {
    display: inherit !important; }
  .hide-for-portrait,
  .show-for-landscape {
    display: none !important; } }

/* Touch-enabled device targeting */
.show-for-touch {
  display: none !important; }

.hide-for-touch {
  display: inherit !important; }

.touch .show-for-touch {
  display: inherit !important; }

.touch .hide-for-touch {
  display: none !important; }

/* Print visibility */
@media print {
  .show-for-print {
    display: block; }
  .hide-for-print {
    display: none !important; } }

/* Begin Flex-Video Partial */
.flex-video {
  position: relative;
  padding-top: 1.5625rem;
  padding-bottom: 67.5%;
  height: 0;
  margin-bottom: 1rem;
  overflow: hidden; }

.flex-video.widescreen {
  padding-bottom: 56.34%; }

.flex-video.vimeo {
  padding-top: 0; }

.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/*  ---------------------------------------------
	:: Extra Includes (Situational)
	------------------------------------------ */
/*  The rest of these Imports still exist in '/scss/partials/',
		however if they are not called within this file they will
		never be compiled and sent to the front-end of the website.
		This is perfect. We only want to sent the least amount of 
		CSS possible to the site.

		There is a lot of tools that have been removed because
		we will rarely (if ever) use them on a live site. 
	
	@import 'partials/foundation/foundation-button-group';
	@import 'partials/foundation/foundation-top-bar';
	@import 'partials/foundation/foundation-breadcrumbs';
	@import 'partials/foundation/foundation-inline-list';
	@import 'partials/foundation/foundation-pricing-table';
	@import 'partials/foundation/foundation-magellan';
	@import 'partials/foundation/foundation-icon-bar';
	@import 'partials/foundation/foundation-tabs';
	@import 'partials/foundation/foundation-pagination';
	@import 'partials/foundation/foundation-reveal';
	@import 'partials/foundation/foundation-off-canvas';
	@import 'partials/foundation/foundation-dropdown';
	@import 'partials/foundation/foundation-switch';
	*/
/*  ---------------------------------------------------
	:: Page / General
	------------------------------------------------ */
html,
body {
  font-size: 100%; }

html {
  width: 100%;
  height: 100%;
  overflow-y: scroll; }

body {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  background: white;
  color: #54585a;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  background: white;
  -webkit-font-smoothing: antialiased; }

div {
  position: relative; }

/*  ---------------------------------------------------
	:: Typography 
	------------------------------------------------ */
/*  ---------------------------------------------------
	:: _typography.scss
	------------------------------------------------ */
/* Selectors for when you highlight text */
::selection {
  background: #5d7e95;
  color: white; }

::-moz-selection {
  background: #5d7e95;
  color: white; }

/* Blockquotes */
blockquote {
  background: #f9f9f9;
  border-left: 10px solid #d9d9d9;
  margin: 1.5em 10px;
  padding: 0.5em 10px; }
  blockquote p {
    margin-bottom: 10px;
    color: #54585a; }

hr {
  display: block;
  float: none;
  clear: both;
  margin: 2.25em auto;
  border: none;
  height: 1px;
  padding: 0;
  background: #d9d9d9; }
  hr.show-for-medium-down {
    margin: 2.25em auto 2em; }

/* Helpful Typography Defaults */
em, i {
  font-style: italic;
  line-height: inherit; }

strong, b {
  font-weight: bold;
  line-height: inherit; }

small {
  font-size: 60%;
  line-height: inherit; }

sup, sub {
  height: 0;
  line-height: 1;
  vertical-align: baseline;
  position: relative; }

sup {
  bottom: 1ex; }

sub {
  top: .5ex; }

/* Images */
img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle; }
  img[align=left], img[style*=left] {
    float: left;
    padding: 0 1em .5em 0; }
  img[align=right], img[style*=right] {
    float: right;
    padding: 0 0 .5em 1em; }

/* Lists */
ul, ol {
  font-size: 1em;
  line-height: 1.6;
  margin-top: 8px;
  margin-bottom: 14px;
  font-family: inherit; }
  ul li ul, ul li ol, ol li ul, ol li ol {
    margin-left: 26px;
    font-size: 1em;
    margin-bottom: 14px; }

ul.square {
  list-style-type: square; }

ul.circle {
  list-style-type: circle; }

ul.disc {
  list-style-type: disc; }

ul.no-bullet {
  list-style: none; }

ul.square, ul.circle, ul.disc {
  margin-left: 1.125em; }
  ul.square li ul, ul.circle li ul, ul.disc li ul {
    list-style: inherit; }

/* Links */
a {
  color: #5d7e95;
  text-decoration: underline;
  line-height: inherit; }
  a:hover {
    color: #5d7e95;
    cursor: pointer; }
  a:active {
    color: #5d7e95; }
  a:focus {
    color: #5d7e95; }
  a img {
    border: none; }

/* Headlines */
h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #898c49;
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.2em; }

h1 {
  font-size: 25px;
  margin-bottom: 18px; }

h2 {
  color: #5d7e95;
  font-size: 22px; }

h3 {
  font-size: 20px;
  margin-bottom: 0; }

h4 {
  color: #5d7e95;
  font-size: 20px;
  margin-bottom: 0; }

h5 {
  font-size: 18px; }

h6 {
  font-size: 16px; }

/* Paragraphs */
p, li, address {
  font-family: inherit;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 17px;
  margin-top: 0; }

ul, ol {
  margin: 8px 0 14px 30px;
  padding-left: 0; }
  .McContent ul, .McContent ol {
    margin-bottom: 24px; }

li {
  margin-bottom: 6px;
  line-height: 1.25; }

/* Pagination */
ul.pagination {
  display: block;
  min-height: 1.5rem;
  margin-left: -0.3125rem; }
  ul.pagination li {
    height: 1.5rem;
    color: #222222;
    font-size: 0.875rem;
    margin-left: 0.3125rem;
    float: left;
    display: block;
    /* Default Styling */
    /* Unavailable Styling */
    /* Current Styling */ }
    ul.pagination li a {
      display: block;
      padding: 0.0625rem 0.625rem 0.0625rem;
      color: #999999;
      background: none;
      border-radius: 3px;
      font-weight: normal;
      font-size: 1em;
      text-decoration: none;
      line-height: inherit;
      transition: background-color 300ms ease-out; }
    ul.pagination li:hover a,
    ul.pagination li a:focus {
      background: #e6e6e6; }
    ul.pagination li.unavailable a {
      cursor: default;
      color: #999999; }
    ul.pagination li.unavailable:hover a,
    ul.pagination li.unavailable a:focus {
      background: transparent; }
    ul.pagination li.current a {
      background: #5d7e95;
      color: white;
      font-weight: bold;
      cursor: default; }
      ul.pagination li.current a:hover, ul.pagination li.current a:focus {
        background: #5d7e95; }

.pagination-centered {
  text-align: center; }

.pagination-centered ul.pagination li {
  float: none;
  display: inline-block; }

/* Tables! */
table {
  background: white;
  margin-bottom: 1.25rem;
  border: solid 1px #dddddd;
  table-layout: auto;
  /* Table Head & Footer */
  /* Normal TH and TDs */
  /* Style every-other child with different background */ }
  table caption {
    background: transparent;
    color: #222222;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 6px; }
  table thead, table tfoot {
    background: whitesmoke; }
    table thead tr th,
    table thead tr td, table tfoot tr th,
    table tfoot tr td {
      padding: 0.5rem 0.625rem 0.625rem;
      font-size: 0.875rem;
      font-weight: bold;
      color: #222222;
      display: table-cell;
      line-height: 1.125rem; }
  table tr th,
  table tr td {
    padding: 0.5625rem 0.625rem;
    font-size: 0.875rem;
    color: #222222;
    text-align: left;
    display: table-cell;
    line-height: 1.125rem; }
  table tr.even, table tr.alt, table tr:nth-of-type(even) {
    background: #f9f9f9; }

/* Panels */
.panel {
  border-style: solid;
  border-width: 1px;
  border-color: #d8d8d8;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: #f2f2f2; }
  .panel > :first-child {
    margin-top: 0; }
  .panel > :last-child {
    margin-bottom: 0; }

/* Foundation Typography */
.text-left {
  text-align: left !important; }

.text-right {
  text-align: right !important; }

.text-center {
  text-align: center !important; }

.text-justify {
  text-align: justify !important; }

@media only screen and (max-width: 40.063em) {
  .small-only-text-left {
    text-align: left !important; }
  .small-only-text-right {
    text-align: right !important; }
  .small-only-text-center {
    text-align: center !important; }
  .small-only-text-justify {
    text-align: justify !important; } }

@media only screen {
  .small-text-left {
    text-align: left !important; }
  .small-text-right {
    text-align: right !important; }
  .small-text-center {
    text-align: center !important; }
  .small-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 40.063em) and (max-width: 64.063em) {
  .medium-only-text-left {
    text-align: left !important; }
  .medium-only-text-right {
    text-align: right !important; }
  .medium-only-text-center {
    text-align: center !important; }
  .medium-only-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 40.063em) {
  .medium-text-left {
    text-align: left !important; }
  .medium-text-right {
    text-align: right !important; }
  .medium-text-center {
    text-align: center !important; }
  .medium-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 64.063em) {
  p, h1, h2, h3, h4, h5, h6 {
    text-rendering: optimizeLegibility; }
  .large-text-left {
    text-align: left !important; }
  .large-text-right {
    text-align: right !important; }
  .large-text-center {
    text-align: center !important; }
  .large-text-justify {
    text-align: justify !important; } }

/*  ---------------------------------------------------
	:: Helper Classes
	------------------------------------------------ */
#outdated {
  display: none; }

/* hide the outdated browswer warning by default */
.left {
  float: left !important; }

.right {
  float: right !important; }

.hide {
  display: none; }

.notice, .warning {
  color: white;
  padding: 6px;
  font-weight: bold; }

.notice {
  background: #5d7e95; }

.warning {
  background: #d76519; }

.error {
  color: #900; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.clear {
  clear: both !important;
  height: auto !important;
  width: auto !important;
  float: none !important; }

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.capitalize {
  text-transform: capitalize; }

/*  ---------------------------------------------------
	:: Forms
	------------------------------------------------ */
/*  ---------------------------------------------------
	:: Forms
	------------------------------------------------ */
/*  Set the defaults for Form margins as wel as 
		defautl styling for forms that have rows inside */
form {
  margin: 0 0 1rem; }
  form .row .row {
    margin: 0 -0.5rem; }
    form .row .row .column, form .row .row .columns {
      padding: 0 0.5rem; }
    form .row .row.collapse {
      margin: 0; }
      form .row .row.collapse .column, form .row .row.collapse .columns {
        padding: 0; }
      form .row .row.collapse input {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0; }

/* Label Styles */
label {
  cursor: pointer;
  display: block;
  font-size: 0.875rem;
  color: #54585a;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 0; }
  label .right {
    float: none !important;
    text-align: right; }
  label span {
    color: #5d7e95;
    font-size: inherit; }

/* We use this to get basic styling on most input elements */
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea {
  -webkit-appearance: none;
  display: block;
  background-color: white;
  font-family: inherit;
  border: 1px solid #cccccc;
  border-radius: 0px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  font-size: 16px;
  margin: 0 0 1rem 0;
  padding: 0.5rem;
  height: 2.3125rem;
  width: 100%;
  transition: box-shadow 0.2s, border-color 0.2s ease-in-out; }
  input[type="text"]:focus,
  input[type="password"]:focus,
  input[type="date"]:focus,
  input[type="datetime"]:focus,
  input[type="datetime-local"]:focus,
  input[type="month"]:focus,
  input[type="week"]:focus,
  input[type="email"]:focus,
  input[type="number"]:focus,
  input[type="search"]:focus,
  input[type="tel"]:focus,
  input[type="time"]:focus,
  input[type="url"]:focus,
  textarea:focus {
    box-shadow: 0 0 5px #999999;
    border-color: #999999;
    background: #fafafa;
    outline: none; }
  input[type="text"]:disabled, input[type="text"][disabled],
  input[type="password"]:disabled,
  input[type="password"][disabled],
  input[type="date"]:disabled,
  input[type="date"][disabled],
  input[type="datetime"]:disabled,
  input[type="datetime"][disabled],
  input[type="datetime-local"]:disabled,
  input[type="datetime-local"][disabled],
  input[type="month"]:disabled,
  input[type="month"][disabled],
  input[type="week"]:disabled,
  input[type="week"][disabled],
  input[type="email"]:disabled,
  input[type="email"][disabled],
  input[type="number"]:disabled,
  input[type="number"][disabled],
  input[type="search"]:disabled,
  input[type="search"][disabled],
  input[type="tel"]:disabled,
  input[type="tel"][disabled],
  input[type="time"]:disabled,
  input[type="time"][disabled],
  input[type="url"]:disabled,
  input[type="url"][disabled],
  textarea:disabled,
  textarea[disabled] {
    background-color: #dddddd;
    cursor: default; }

textarea {
  min-height: 150px;
  max-width: 100%;
  /* Not allow resize out of parent */
  /* Respect enforced amount of rows for textarea */ }
  textarea[rows] {
    height: auto; }

/* Style what their Placeholder text will look like */
.placeholder {
  color: #888; }

::-webkit-input-placeholder {
  color: #888; }

:-moz-placeholder {
  color: #888; }

::-moz-placeholder {
  color: #888; }

:-ms-input-placeholder {
  color: #888; }

/*  The background-image tag might look funky but that's because
		it's an inline SVG that makes a small gray down arrow */
select {
  -webkit-appearance: none !important;
  border-radius: 0px;
  background-color: #fafafa;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);
  background-position: 100% center;
  background-repeat: no-repeat;
  border: 1px solid #cccccc;
  padding: 0.5rem;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.75);
  line-height: normal;
  border-radius: 0;
  height: 2.3125rem;
  width: 100%; }
  select:hover {
    background-color: #f3f3f3;
    border-color: #999999; }
  select:disabled {
    background-color: #dddddd;
    cursor: default; }
  select::-ms-expand {
    display: none; }

/* Custom Checkbox styling to make them sit inline */
input[type="checkbox"] + label,
input[type="radio"] + label {
  display: inline-block;
  margin-left: 2px;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline; }

/* Misc Form Element Styling  */
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0px; }

input[type="file"],
input[type="checkbox"],
input[type="radio"],
select {
  margin: 0 0 1rem 0; }

input[type="file"] {
  width: 100%; }

fieldset {
  border: 1px solid #d9d9d9;
  padding: 0.8rem 1.25rem 0 1.25rem;
  margin: 1.125rem 0; }
  fieldset legend {
    font-weight: bold;
    background: white;
    padding: 0 0.1875rem;
    margin: 0;
    margin-left: -0.1875rem; }

/* Error Handling */
label.error {
  color: #c60f13; }

[data-abide] .error small.error,
[data-abide] .error span.error,
[data-abide] span.error,
[data-abide] small.error {
  display: block;
  padding: 0.375rem 0.5625rem 0.5625rem;
  margin-top: -1px;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  font-style: normal;
  background: #c60f13;
  color: white; }

[data-abide] span.error,
[data-abide] small.error {
  display: none; }

span.error, small.error {
  display: block;
  padding: 0.375rem 0.5625rem 0.5625rem;
  margin-top: -1px;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  font-style: normal;
  background: #c60f13;
  color: white; }

.error label,
.error label.error {
  color: #c60f13; }

.error input, .error textarea, .error select,
input.error, textarea.error, select.error {
  margin-bottom: 0; }

.error input[type="checkbox"],
.error input[type="radio"] {
  margin-bottom: 1rem; }

.error > label > small {
  color: #676767;
  background: transparent;
  padding: 0;
  text-transform: none;
  font-style: normal;
  font-size: 60%;
  margin: 0;
  display: inline; }

.error span.error-message {
  display: block; }

/* Honey Pot! */
.nameFirst {
  display: none; }

/*  Attach elements to the beginning/end of an input.
		It's likely not going to be used, but we are keeping
		it around because it is extremely nice/useful.
		.prefix,
		.postfix {
			display: block;
			position: relative;
			z-index: 2;
			text-align: center;
			width: 100%;
			padding-top: 0;
			padding-bottom: 0;
			border-style: solid;
			border-width: 1px;
			overflow: hidden;
			font-size: 0.875rem;
			height: 2.3125rem;
			line-height: 2.3125rem; 
			&.button {
				padding-left: 0;
				padding-right: 0;
				padding-top: 0;
				padding-bottom: 0;
				text-align: center;
				line-height: 2.125rem;
				border: none;
			}
		}
	*/
/*  ---------------------------------------------------
	:: Tab Bar
	------------------------------------------------ */
#topBar {
  display: none; }

.tab-bar {
  height: 47px;
  background: #5d7e95;
  box-shadow: 0 0 8px #999999;
  z-index: 100; }

.topTabButtons {
  margin: 0 0 0 27px;
  padding-top: 8px;
  height: 41px;
  float: left; }
  .topTabButtons a {
    display: inline-block;
    width: 27px;
    height: 27px;
    background: url(../images/main/social-icons_top.png) 0 0 no-repeat;
    text-indent: -999999px; }
  .topTabButtons .linkedin {
    background-position: 0 0; }
  .topTabButtons .facebook {
    background-position: -33px 0; }
  .topTabButtons .dashboard {
    background-position: -66px 0; }
  .topTabButtons .solar {
    background-position: -99px 0; }

.right-small {
  margin-right: 20px;
  border-left: 0; }

.right-off-canvas-toggle {
  /* the menu icon */ }
  .right-off-canvas-toggle span {
    display: block;
    width: 40px;
    height: 6px;
    background: white;
    border-radius: 10px;
    top: 20px;
    position: absolute;
    left: 2px; }
    .right-off-canvas-toggle span:before, .right-off-canvas-toggle span:after {
      content: '';
      display: block;
      width: 40px;
      height: 6px;
      background: white;
      border-radius: 10px;
      position: absolute; }
    .right-off-canvas-toggle span:before {
      top: -8px; }
    .right-off-canvas-toggle span:after {
      top: 8px; }

.right-off-canvas-menu,
.right-submenu {
  background: #5d7e95; }

.right-off-canvas-menu li {
  margin-bottom: 0; }

.right-submenu .back > a {
  background: #898c49;
  color: white;
  font-size: 14px;
  padding-left: 10px; }

.right-off-canvas-menu ul.off-canvas-list li.has-submenu > a {
  /* needed for absolute &before */
  position: relative;
  display: block; }
  .right-off-canvas-menu ul.off-canvas-list li.has-submenu > a:before {
    display: none; }
  .right-off-canvas-menu ul.off-canvas-list li.has-submenu > a:after {
    content: '';
    display: block;
    width: 12px;
    height: 20px;
    background: url(../images/main/slider-arrow-right.png) right center no-repeat;
    position: absolute;
    right: 6px;
    top: 11px; }

/* an unfortunate specificity needed to override foundation */
ul.off-canvas-list li a {
  font-size: 18px;
  text-transform: uppercase;
  padding: 10px 28px 10px 10px;
  color: white;
  text-decoration: none;
  border-bottom-color: #6e8a9c; }

ul.off-canvas-list .subMenu {
  list-style: none;
  margin: 26px 0 0; }
  ul.off-canvas-list .subMenu li a {
    font-size: 16px;
    line-height: 18px;
    border: none;
    padding: 5px 10px; }

/*  ---------------------------------------------------
	:: Header
	------------------------------------------------ */
#header {
  width: 100%;
  height: 80px;
  padding: 24px 0 0;
  background: white; }

#logo img {
  display: block;
  margin: 0 auto; }

/*  ---------------------------------------------------
	:: Promo
	------------------------------------------------ */
#homePromo {
  min-height: 110px;
  transition: height .5s ease-in-out; }
  #homePromo li {
    margin-bottom: 0; }
  #homePromo a {
    text-decoration: none; }

.imageTitle {
  display: none; }

.sliderInfo {
  position: absolute;
  bottom: 14px;
  width: 100%; }

.description {
  display: none; }

.learn-more {
  display: none; }

.linkTitle {
  font-size: 22px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center; }

/*  ---------------------------------------------------
	:: Content
	------------------------------------------------ */
#content {
  padding-top: 20px; }

body.home #copy h1 {
  text-align: center; }

#homeServices {
  margin-bottom: 20px; }
  #homeServices img {
    display: block;
    width: 119px;
    height: 119px;
    margin: 0 auto; }

.spinContainer {
  display: none; }

#homeLearnMore {
  padding: 35px 0;
  background: url(../images/main/blue-dot-pattern.png);
  margin-bottom: 8px; }
  #homeLearnMore h2 {
    text-align: center;
    color: white;
    margin-bottom: 14px;
    font-size: 25px; }
  #homeLearnMore .button {
    display: block;
    margin: 0 auto;
    background: white;
    color: #5d7e95;
    text-transform: uppercase;
    font-size: 22px;
    width: 214px;
    font-weight: 300;
    padding: 6px 0; }
    #homeLearnMore .button:hover {
      background: white;
      color: #5d7e95; }

.smallNews {
  display: block;
  background: #898c49;
  padding: 8px 0;
  color: white;
  text-decoration: none;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px; }
  .smallNews:before {
    content: '';
    display: block;
    margin: 0 auto 6px;
    width: 28px;
    height: 28px;
    background: url(../images/main/news-icon_small.png) center center no-repeat; }
  .smallNews:hover {
    color: white; }

#homeTools {
  display: none; }

#DashBoardImg {
  display: block;
  margin: 0 auto; }

/* Portfolio ------------------------------- */
#projectPromo {
  margin: -20px 0 0; }

#portfolioList {
  list-style: none;
  margin: 0; }
  #portfolioList li {
    padding-bottom: 0;
    margin-bottom: 18px; }
  #portfolioList img {
    display: block; }

.projectlink {
  text-decoration: none; }

.imagePlate {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }

.namePlate {
  display: none;
  color: white;
  background: #5d7e95;
  padding: 12px 14px;
  font-size: 18px;
  font-weight: 300; }

.imagePlate + .namePlate {
  display: block; }

/* Project Level */
#projectRight {
  background: #5d7e95;
  padding: 14px; }
  #projectRight h1, #projectRight h2, #projectRight h3, #projectRight h4, #projectRight h5, #projectRight h6, #projectRight p {
    color: white; }

/* Blog and News */
.entry {
  margin-bottom: 34px; }
  .entry a {
    text-decoration: none; }
  .entry h2 {
    margin-top: -4px;
    margin-bottom: 0; }

/*  ---------------------------------------------------
	:: Footer
	------------------------------------------------ */
#footer {
  height: 67px;
  background: url(../images/main/footer_bg-repeat.png); }

#footerButtons {
  margin: 0 auto;
  padding-top: 12px;
  height: 41px;
  width: 92px; }
  #footerButtons a {
    display: inline-block;
    width: 27px;
    height: 27px;
    background: url(../images/main/social-icons_bottom.png) 0 0 no-repeat;
    text-indent: -999999px; }
  #footerButtons .linkedin {
    background-position: 0 0; }
  #footerButtons .facebook {
    background-position: -33px 0; }
  #footerButtons .dashboard {
    background-position: -66px 0; }
  #footerButtons .solar {
    background-position: -99px 0; }

#footerNav,
#footerSubNav {
  display: none; }

/*  ---------------------------------------------------
	:: Foundation Overrides / Media Queries
	------------------------------------------------ */
/* For Small Only */
@media only screen and (max-width: 40.063em) {
  /* makes floated images clear for small devices */
  .McContent img[style*=height],
  .McContent img[style*=float] {
    float: none !important;
    clear: both;
    margin: 14px auto;
    display: block;
    max-width: 100%;
    height: auto !important;
    padding: 0; } }

/* for Medium and Down */
/* for Medium and Up */
@media only screen and (min-width: 40.063em) {
  /* medium typography --------------------- */
  h1 {
    font-size: 30px; }
  h2 {
    font-size: 28px; }
  h3 {
    font-size: 22px; }
  /* medium header --------------------- */
  #header {
    padding-top: 22px;
    background: url(../images/main/footer_bg-repeat.png); }
  #homeLearnMore h2 {
    line-height: 44px;
    margin-bottom: 20px; }
  #homeLearnMore .button {
    width: 170px;
    padding: 2px 0; }
  #homeTools {
    padding: 40px 0; }
  /* medium home Promo  --------------------- */
  .linkTitle {
    font-size: 44px; }
  /* medium Subpage Promo  --------------------- */
  /* medium portfolio --------------------- */
  .namePlate {
    min-height: 68px;
    /* makes 1 and 2 line heights equal, but allows 3s to lengthen if necessary. */ }
  /* Project-Level */
  #projectLeft,
  #projectRight {
    padding-left: 14px;
    padding-right: 14px; }
  #footer {
    padding-top: 20px;
    height: 260px; }
    #footer p {
      text-align: center;
      margin-bottom: 0; } }

/* For Large */
@media only screen and (min-width: 64.063em) {
  .right-off-canvas-menu {
    width: 0; }
  /* large topBar --------------------- */
  #topBar {
    display: block;
    height: 42px;
    background: #5d7e95; }
    #topBar form {
      float: right;
      width: 366px;
      height: 33px;
      margin: 4px 20px 0 0; }
    #topBar input {
      height: 33px;
      background: #7d98aa url(../images/main/search-icon.png) 336px center no-repeat;
      color: white;
      border: none;
      padding: 6px 36px 4px 6px;
      margin: 0; }
    #topBar #topBarSubmit {
      text-indent: -999999px;
      position: absolute;
      right: 21px;
      top: 4px;
      padding: 0;
      margin: 0;
      background: transparent;
      width: 40px;
      height: 33px; }
  #topNav {
    list-style: none;
    margin: 10px 0 0 20px;
    float: left; }
    #topNav li {
      float: left;
      margin-left: 8px; }
      #topNav li:first-child {
        margin-left: 0; }
      #topNav li a {
        color: white;
        font-size: 12px;
        text-transform: uppercase;
        text-decoration: none; }
  /* large header --------------------- */
  #header {
    height: 110px;
    background-image: url(../images/main/footer_bg-repeat.png);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    position: absolute; }
  .lrgLogoBg {
    background-image: url(../images/main/footer_bg-repeat.png);
    background-color: rgba(255, 255, 255, 0.9);
    height: 100%;
    width: 1200px;
    right: 50%;
    position: absolute;
    margin-right: 148px;
    top: 0; }
  #logo {
    width: 295px;
    margin: 10px 42px 0 27px;
    float: left; }
  #mainnav {
    list-style: none;
    float: left;
    margin: 20px 0 0 53px; }
    #mainnav li {
      float: left;
      margin-left: 26px;
      transition: all .15s ease-in-out; }
      #mainnav li:first-child {
        margin-left: 0; }
      #mainnav li a {
        text-decoration: none;
        font-size: 24px;
        font-weight: 300;
        color: white;
        text-transform: uppercase; }
        #mainnav li a:focus {
          outline: none; }
      #mainnav li.active, #mainnav li:hover {
        border-bottom: 4px solid white; }
  #padding-for-header {
    height: 110px; }
  /* large promo --------------------- */
  #homePromo li {
    margin-bottom: 0; }
  .imageTitle {
    display: block;
    position: absolute;
    left: 50%;
    top: 130px;
    margin-left: -486px;
    padding-left: 38px;
    padding-top: 3px;
    background: url(../images/main/imageTitle.png) left top no-repeat;
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
    color: white;
    min-height: 30px; }
  .sliderInfo {
    left: 50%;
    margin-left: -54px;
    width: 568px;
    bottom: 70px; }
  .description {
    background: #898c49;
    position: absolute;
    bottom: 52px;
    right: 105px;
    display: block;
    color: transparent;
    text-indent: -999999px;
    width: 12px;
    height: 12px;
    transition: all 0.15s ease-in-out; }
    .description:hover {
      color: white;
      text-indent: 0;
      width: 426px;
      height: 90px;
      padding: 10px; }
  .learn-more {
    display: block;
    text-align: right;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 0;
    text-shadow: 0 0 30px #444444; }
  .linkTitle {
    text-align: right;
    margin-top: -6px;
    text-shadow: 0 0 30px #444444; }
  /* large Subpage Promo  --------------------- */
  #subpagePromo,
  #projectPromo {
    min-height: 110px; }
    body.experience #subpagePromo, body.experience
    #projectPromo {
      margin-top: -130px; }
  .projectInfo {
    position: absolute;
    bottom: 0;
    padding-top: 8px;
    background: rgba(0, 0, 0, 0.2);
    height: 105px;
    width: 100%; }
    .projectInfo h1 {
      font-size: 34px;
      color: white;
      font-weight: 700;
      text-transform: uppercase;
      text-align: right; }
  #projectLeft {
    padding-top: 20px; }
  /* large content --------------------- */
  /* home content */
  body.home #copy h1 {
    margin-bottom: 50px; }
  body.experience #copy {
    padding-top: 30px;
    /* can't use Content's padding since we offset it in the promo */ }
  #homeServices {
    margin-bottom: 60px;
    list-style: none;
    text-align: center; }
    #homeServices img {
      display: none; }
    #homeServices li {
      width: 128px;
      height: 128px;
      display: inline-block;
      padding: 0;
      margin-left: 46px; }
      #homeServices li:first-child {
        margin-left: 0; }
  .spinContainer {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    cursor: default;
    perspective: 900px; }
    .spinContainer:hover .front {
      -webkit-transform: translate3d(0, 128px, 0) rotate3d(1, 0, 0, -90deg);
      transform: translate3d(0, 128px, 0) rotate3d(1, 0, 0, -90deg);
      opacity: 0; }
    .spinContainer:hover .back {
      -webkit-transform: rotate3d(1, 0, 0, 0deg);
      transform: rotate3d(1, 0, 0, 0deg);
      opacity: 1; }
    .spinContainer a {
      color: white;
      text-decoration: none;
      text-transform: uppercase;
      display: block;
      height: 100%;
      padding-top: 54px; }
  .info {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d; }
    .info > div {
      display: block;
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background-position: center center;
      transition: all 0.15s linear;
      -webkit-transform-origin: 50% 0%;
      transform-origin: 50% 0%; }
    .info .mechanical {
      background-image: url(../images/main/mechanical.svg); }
    .info .electrical {
      background-image: url(../images/main/electrical.svg); }
    .info .technology {
      background-image: url(../images/main/technology.svg); }
    .info .commissioning {
      background-image: url(../images/main/commissioning.svg); }
    .info .lighting {
      background-image: url(../images/main/lighting.svg); }
  .back {
    -webkit-transform: translate3d(0, 0, -128px) rotate3d(1, 0, 0, 90deg);
    transform: translate3d(0, 0, -128px) rotate3d(1, 0, 0, 90deg);
    background: #55595b;
    opacity: 0; }
  #homeLearnMore {
    margin-bottom: 0; }
    #homeLearnMore h2 {
      font-size: 33px;
      line-height: 48px;
      margin-bottom: 30px; }
    #homeLearnMore .button {
      margin-bottom: 15px; }
  #homeNews {
    padding: 75px 0 34px;
    background: #f0f0f0; }
    #homeNews .newsLink {
      display: none; }
    #homeNews h2 {
      font-size: 18px;
      margin-bottom: 6px; }
    #homeNews p {
      font-size: 14px;
      margin-bottom: 14px; }
    #homeNews .more {
      text-decoration: none;
      color: #898c49;
      margin-top: -10px;
      display: block; }
  .smallNews {
    display: none; }
  #homeTools {
    display: block;
    padding: 75px 0; }
  #sidenav {
    margin: 0 0 40px 0;
    list-style: none; }
    #sidenav li {
      margin-bottom: 10px; }
      #sidenav li:last-child {
        margin-bottom: 0; }
      #sidenav li a {
        text-decoration: none;
        color: #5d7e95;
        font-size: 20px;
        line-height: 24px;
        font-weight: 300; }
      #sidenav li.active {
        /* children */ }
        #sidenav li.active a {
          color: #898c49; }
        #sidenav li.active ul {
          list-style: none;
          margin-left: 18px; }
        #sidenav li.active li {
          margin-bottom: 4px; }
          #sidenav li.active li a {
            color: #333333;
            font-size: 17px; }
          #sidenav li.active li.active a {
            color: #898c49; }
  /* Portfolio */
  .blue-cover {
    position: absolute;
    height: 0;
    width: 100%;
    background: #5d7e95;
    opacity: 0.6;
    bottom: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out; }
    .imagePlate:hover .blue-cover {
      height: 100%; }
  /* large footer --------------------- */
  #footer {
    padding-top: 30px; }
    #footer p {
      text-align: left;
      padding-left: 86px;
      line-height: 18px;
      font-weight: 300; }
  #footerLogo {
    width: 224px;
    height: 37px;
    margin-bottom: 10px; }
    #footerLogo a {
      display: block;
      height: 100%;
      background: url(../images/main/footer-logo.png); }
  /* shared styles */
  #footerNav,
  #footerSubNav {
    display: block;
    float: right;
    list-style: none;
    margin-bottom: 0; }
    #footerNav li,
    #footerSubNav li {
      float: left; }
      #footerNav li:first-child,
      #footerSubNav li:first-child {
        margin-left: 0; }
      #footerNav li a,
      #footerSubNav li a {
        text-decoration: none;
        text-transform: uppercase; }
  /* specific styling that isn't shared */
  #footerNav {
    margin-top: 14px; }
    #footerNav li {
      margin-left: 20px; }
      #footerNav li a {
        font-size: 20px;
        font-weight: 300; }
  #footerSubNav li {
    margin-bottom: 0;
    margin-left: 10px; }
    #footerSubNav li a {
      font-size: 13px; }
  #footerButtons {
    float: right;
    margin: 0;
    width: 130px; }
    #footerButtons a.solar {
      display: inline-block !important; } }

/*  -------------------------------------------------
	:: Debug Styling
	--------------------------------------------- */
.cfdump_struct {
  margin-bottom: 1px; }

table.cfdump_struct tbody tr th.struct,
table.cfdump_struct tr th, table.cfdump_struct tr td {
  font-size: 10px; }

/*  ---------------------------------------------------
	:: Post-Includes
	------------------------------------------------ */
.print-only {
  display: none !important; }

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  #sidebar,
  #footer .nav,
  #header {
    display: none; }
  #copy {
    width: auto;
    float: none; }
  #copy a:link:after, #copy a:visited:after {
    content: " (" attr(href) ") ";
    font-size: 90%; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  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; } }

/*  ---------------------------------------------
	jQuery FlexSlider v2.0
	http://www.woothemes.com/flexslider/
	Copyright 2012 WooThemes
	------------------------------------------ */
.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none; }

/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0;
  margin: 0 0 0;
  background: none;
  border: none;
  position: relative;
  zoom: 1; }
  .flexslider .slides {
    zoom: 1; }
    .flexslider .slides > li {
      display: none;
      -webkit-backface-visibility: hidden;
      /* Hide the slides before the JS is loaded. Avoids image jumping */ }
      .no-js .flexslider .slides > li:first-child {
        display: block; }
    .flexslider .slides li {
      margin-bottom: 0; }
    .flexslider .slides img {
      width: 100%;
      display: block; }
  .flexslider a:focus {
    outline: none !important; }

.flex-pauseplay span {
  text-transform: capitalize; }

/* Clearfix for the .slides element */
.slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

html[xmlns] .slides {
  display: block; }

* html .slides {
  height: 1%; }

/* FlexSlider Default Theme
*********************************/
.flex-viewport {
  max-height: 2000px;
  transition: all 1s ease; }
  .loading .flex-viewport {
    max-height: 300px; }

.carousel li {
  margin-right: 5px; }

/* Direction Nav */
.flex-direction-nav {
  *height: 0; }
  .flex-direction-nav a {
    width: 30px;
    height: 30px;
    margin: -20px 0 0;
    display: block;
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    text-indent: -9999px;
    opacity: 1; }
  .flex-direction-nav li {
    margin-bottom: 0; }
  .flex-direction-nav .flex-next {
    right: 10px;
    background: url(../images/main/slider-arrow-right.png) center center no-repeat; }
  .flex-direction-nav .flex-prev {
    left: 10px;
    background: url(../images/main/slider-arrow-left.png) center center no-repeat; }
  .flex-direction-nav .flex-disabled {
    opacity: 0.3 !important;
    filter: alpha(opacity=30);
    cursor: default; }

/* Control Nav */
.flex-control-nav {
  width: 100%;
  position: absolute;
  top: 20px;
  text-align: center;
  z-index: 100; }
  .flex-control-nav li {
    margin: 0 6px;
    display: inline-block;
    zoom: 1;
    *display: inline; }

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3); }

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7); }

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default; }

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden; }

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0; }

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer; }

.flex-control-thumbs img:hover {
  opacity: 1; }

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default; }

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 0; }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 0; } }

@media screen and (min-width: 64.063em) {
  .flex-direction-nav {
    /* center it */
    width: 64.063em;
    margin: 0 auto;
    /* position: absolute; */
    /* Causes the link w/n the slider to become untargetable bc it overlays the image */
    top: 0;
    height: 100%;
    left: 50%;
    margin-left: -512px; }
    .flex-direction-nav a {
      width: 23px;
      height: 44px; }
    .flex-direction-nav .flex-next {
      right: 50px;
      background: url(../images/main/slider-arrow-large.png) right center no-repeat; }
      .flex-direction-nav .flex-next:hover {
        right: 48px; }
    .flex-direction-nav .flex-prev {
      left: 50px;
      background: url(../images/main/slider-arrow-large.png) left center no-repeat; }
      .flex-direction-nav .flex-prev:hover {
        left: 48px; } }

/*
	@import 'partials/landings';
	@import 'partials/locations';
	@import 'partials/news';
	*/
