@charset "UTF-8";
/*! Adapted from Bones: http://themble.com/bones */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
/* line 12, ../scss/partials/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
/* line 31, ../scss/partials/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

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

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
/* line 52, ../scss/partials/_normalize.scss */
[hidden],
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/* line 67, ../scss/partials/_normalize.scss */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
/* line 77, ../scss/partials/_normalize.scss */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the grey background color from active links in IE 10.
 */
/* line 88, ../scss/partials/_normalize.scss */
a {
  background: transparent;
  outline: 0;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
/* line 97, ../scss/partials/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 105, ../scss/partials/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 119, ../scss/partials/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

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

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

/**
 * Address differences between Firefox and other browsers.
 */
/* line 156, ../scss/partials/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
/* line 166, ../scss/partials/_normalize.scss */
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

/*
 * Addresses margins set differently in IE6/7.
 */
/* line 177, ../scss/partials/_normalize.scss */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
/* line 185, ../scss/partials/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

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

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

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 212, ../scss/partials/_normalize.scss */
q:before,
q:after {
  content: '';
  content: none;
}

/* line 218, ../scss/partials/_normalize.scss */
small, .small {
  font-size: 75%;
}

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

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

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

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
/* line 250, ../scss/partials/_normalize.scss */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

/* line 257, ../scss/partials/_normalize.scss */
dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
/* line 265, ../scss/partials/_normalize.scss */
menu {
  padding: 0 0 0 40px;
}

/* line 269, ../scss/partials/_normalize.scss */
ol,
ul {
  padding: 0;
  list-style-type: none;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
/* line 279, ../scss/partials/_normalize.scss */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
/* line 293, ../scss/partials/_normalize.scss */
img {
  border: 0;
}

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

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

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
/* line 325, ../scss/partials/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
/* line 336, ../scss/partials/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
/* line 347, ../scss/partials/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 361, ../scss/partials/_normalize.scss */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 373, ../scss/partials/_normalize.scss */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
/* line 386, ../scss/partials/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
/* line 398, ../scss/partials/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
/* line 408, ../scss/partials/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

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

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 432, ../scss/partials/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 441, ../scss/partials/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 452, ../scss/partials/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 465, ../scss/partials/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 472, ../scss/partials/_normalize.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 479, ../scss/partials/_normalize.scss */
.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* line 487, ../scss/partials/_normalize.scss */
.clearfix, .cf {
  zoom: 1;
}
/* line 489, ../scss/partials/_normalize.scss */
.clearfix:before, .clearfix:after, .cf:before, .cf:after {
  content: "";
  display: table;
}
/* line 490, ../scss/partials/_normalize.scss */
.clearfix:after, .cf:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
/* line 497, ../scss/partials/_normalize.scss */
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
@font-face {
  font-family: 'blanch';
  src: url("/fonts/blanch/blanch_caps-webfont.eot");
  src: url("/fonts/blanch/blanch_caps-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/blanch/blanch_caps-webfont.woff2") format("woff2"), url("/fonts/blanch/blanch_caps-webfont.woff") format("woff"), url("/fonts/blanch/blanch_caps-webfont.ttf") format("truetype"), url("/fonts/blanch/blanch_caps-webfont.svg#blanchcaps") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'fontawesome';
  src: url("/fonts/font-awesome/fontawesome-webfont.eot");
  src: url("/fonts/font-awesome/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/font-awesome/fontawesome-webfont.woff") format("woff"), url("/fonts/font-awesome/fontawesome-webfont.woff2") format("woff2"), url("/fonts/font-awesome/fontawesome-webfont.ttf") format("truetype"), url("/fonts/font-awesome/fontawesome-webfont.svg#fontawesome") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/* line 88, ../scss/partials/_typography.scss */
p {
  -ms-word-break: break-all;
  -ms-word-wrap: break-all;
  word-break: break-word;
  word-break: break-word;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

/*!
 *  Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/font-awesome/fontawesome-webfont.eot");
  src: url("../fonts/font-awesome/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/font-awesome/fontawesome-webfont.woff2") format("woff2"), url("../fonts/font-awesome/fontawesome-webfont.woff") format("woff"), url("../fonts/font-awesome/fontawesome-webfont.ttf") format("truetype"), url("../fonts/font-awesome/fontawesome-webfont.svg#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 4, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_core.scss */
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
/* line 5, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_larger.scss */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

/* line 10, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_larger.scss */
.fa-2x {
  font-size: 2em;
}

/* line 11, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_larger.scss */
.fa-3x {
  font-size: 3em;
}

/* line 12, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_larger.scss */
.fa-4x {
  font-size: 4em;
}

/* line 13, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_larger.scss */
.fa-5x {
  font-size: 5em;
}

/* line 3, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_fixed-width.scss */
.fa-fw {
  width: 1.28571em;
  text-align: center;
}

/* line 4, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_list.scss */
.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none;
}
/* line 8, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_list.scss */
.fa-ul > li {
  position: relative;
}

/* line 10, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_list.scss */
.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center;
}
/* line 16, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_list.scss */
.fa-li.fa-lg {
  left: -1.85714em;
}

/* line 4, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

/* line 10, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */
.fa-pull-left {
  float: left;
}

/* line 11, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */
.fa-pull-right {
  float: right;
}

/* line 14, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */
.fa.fa-pull-left {
  margin-right: .3em;
}
/* line 15, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */
.fa.fa-pull-right {
  margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
/* line 19, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */
.pull-right {
  float: right;
}

/* line 20, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */
.pull-left {
  float: left;
}

/* line 23, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */
.fa.pull-left {
  margin-right: .3em;
}
/* line 24, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_bordered-pulled.scss */
.fa.pull-right {
  margin-left: .3em;
}

/* line 4, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_animated.scss */
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

/* line 9, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_animated.scss */
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* line 4, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* line 5, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* line 6, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

/* line 8, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

/* line 9, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

/* line 14, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_rotated-flipped.scss */
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

/* line 4, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_stacked.scss */
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

/* line 12, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_stacked.scss */
.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

/* line 18, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_stacked.scss */
.fa-stack-1x {
  line-height: inherit;
}

/* line 19, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_stacked.scss */
.fa-stack-2x {
  font-size: 2em;
}

/* line 20, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_stacked.scss */
.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
/* line 4, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-glass:before {
  content: "";
}

/* line 5, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-music:before {
  content: "";
}

/* line 6, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-search:before {
  content: "";
}

/* line 7, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-envelope-o:before {
  content: "";
}

/* line 8, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-heart:before {
  content: "";
}

/* line 9, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-star:before {
  content: "";
}

/* line 10, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-star-o:before {
  content: "";
}

/* line 11, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-user:before {
  content: "";
}

/* line 12, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-film:before {
  content: "";
}

/* line 13, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-th-large:before {
  content: "";
}

/* line 14, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-th:before {
  content: "";
}

/* line 15, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-th-list:before {
  content: "";
}

/* line 16, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-check:before {
  content: "";
}

/* line 17, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

/* line 20, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-search-plus:before {
  content: "";
}

/* line 21, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-search-minus:before {
  content: "";
}

/* line 22, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-power-off:before {
  content: "";
}

/* line 23, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-signal:before {
  content: "";
}

/* line 24, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-gear:before,
.fa-cog:before {
  content: "";
}

/* line 26, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-trash-o:before {
  content: "";
}

/* line 27, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-home:before {
  content: "";
}

/* line 28, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-o:before {
  content: "";
}

/* line 29, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-clock-o:before {
  content: "";
}

/* line 30, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-road:before {
  content: "";
}

/* line 31, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-download:before {
  content: "";
}

/* line 32, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-o-down:before {
  content: "";
}

/* line 33, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-o-up:before {
  content: "";
}

/* line 34, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-inbox:before {
  content: "";
}

/* line 35, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-play-circle-o:before {
  content: "";
}

/* line 36, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

/* line 38, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-refresh:before {
  content: "";
}

/* line 39, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-list-alt:before {
  content: "";
}

/* line 40, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-lock:before {
  content: "";
}

/* line 41, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-flag:before {
  content: "";
}

/* line 42, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-headphones:before {
  content: "";
}

/* line 43, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-volume-off:before {
  content: "";
}

/* line 44, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-volume-down:before {
  content: "";
}

/* line 45, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-volume-up:before {
  content: "";
}

/* line 46, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-qrcode:before {
  content: "";
}

/* line 47, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-barcode:before {
  content: "";
}

/* line 48, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-tag:before {
  content: "";
}

/* line 49, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-tags:before {
  content: "";
}

/* line 50, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-book:before {
  content: "";
}

/* line 51, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-bookmark:before {
  content: "";
}

/* line 52, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-print:before {
  content: "";
}

/* line 53, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-camera:before {
  content: "";
}

/* line 54, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-font:before {
  content: "";
}

/* line 55, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-bold:before {
  content: "";
}

/* line 56, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-italic:before {
  content: "";
}

/* line 57, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-text-height:before {
  content: "";
}

/* line 58, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-text-width:before {
  content: "";
}

/* line 59, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-align-left:before {
  content: "";
}

/* line 60, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-align-center:before {
  content: "";
}

/* line 61, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-align-right:before {
  content: "";
}

/* line 62, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-align-justify:before {
  content: "";
}

/* line 63, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-list:before {
  content: "";
}

/* line 64, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

/* line 66, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-indent:before {
  content: "";
}

/* line 67, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-video-camera:before {
  content: "";
}

/* line 68, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

/* line 71, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-pencil:before {
  content: "";
}

/* line 72, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-map-marker:before {
  content: "";
}

/* line 73, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-adjust:before {
  content: "";
}

/* line 74, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-tint:before {
  content: "";
}

/* line 75, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

/* line 77, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-share-square-o:before {
  content: "";
}

/* line 78, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-check-square-o:before {
  content: "";
}

/* line 79, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows:before {
  content: "";
}

/* line 80, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-step-backward:before {
  content: "";
}

/* line 81, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-fast-backward:before {
  content: "";
}

/* line 82, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-backward:before {
  content: "";
}

/* line 83, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-play:before {
  content: "";
}

/* line 84, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-pause:before {
  content: "";
}

/* line 85, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-stop:before {
  content: "";
}

/* line 86, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-forward:before {
  content: "";
}

/* line 87, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-fast-forward:before {
  content: "";
}

/* line 88, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-step-forward:before {
  content: "";
}

/* line 89, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-eject:before {
  content: "";
}

/* line 90, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-left:before {
  content: "";
}

/* line 91, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-right:before {
  content: "";
}

/* line 92, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-plus-circle:before {
  content: "";
}

/* line 93, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-minus-circle:before {
  content: "";
}

/* line 94, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-times-circle:before {
  content: "";
}

/* line 95, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-check-circle:before {
  content: "";
}

/* line 96, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-question-circle:before {
  content: "";
}

/* line 97, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-info-circle:before {
  content: "";
}

/* line 98, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-crosshairs:before {
  content: "";
}

/* line 99, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-times-circle-o:before {
  content: "";
}

/* line 100, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-check-circle-o:before {
  content: "";
}

/* line 101, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-ban:before {
  content: "";
}

/* line 102, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-left:before {
  content: "";
}

/* line 103, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-right:before {
  content: "";
}

/* line 104, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-up:before {
  content: "";
}

/* line 105, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-down:before {
  content: "";
}

/* line 106, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

/* line 108, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-expand:before {
  content: "";
}

/* line 109, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-compress:before {
  content: "";
}

/* line 110, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-plus:before {
  content: "";
}

/* line 111, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-minus:before {
  content: "";
}

/* line 112, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-asterisk:before {
  content: "";
}

/* line 113, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-exclamation-circle:before {
  content: "";
}

/* line 114, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-gift:before {
  content: "";
}

/* line 115, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-leaf:before {
  content: "";
}

/* line 116, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-fire:before {
  content: "";
}

/* line 117, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-eye:before {
  content: "";
}

/* line 118, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-eye-slash:before {
  content: "";
}

/* line 119, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

/* line 121, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-plane:before {
  content: "";
}

/* line 122, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar:before {
  content: "";
}

/* line 123, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-random:before {
  content: "";
}

/* line 124, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-comment:before {
  content: "";
}

/* line 125, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-magnet:before {
  content: "";
}

/* line 126, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-up:before {
  content: "";
}

/* line 127, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-down:before {
  content: "";
}

/* line 128, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-retweet:before {
  content: "";
}

/* line 129, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-shopping-cart:before {
  content: "";
}

/* line 130, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-folder:before {
  content: "";
}

/* line 131, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-folder-open:before {
  content: "";
}

/* line 132, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-v:before {
  content: "";
}

/* line 133, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-h:before {
  content: "";
}

/* line 134, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

/* line 136, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-twitter-square:before {
  content: "";
}

/* line 137, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-facebook-square:before {
  content: "";
}

/* line 138, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-camera-retro:before {
  content: "";
}

/* line 139, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-key:before {
  content: "";
}

/* line 140, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-gears:before,
.fa-cogs:before {
  content: "";
}

/* line 142, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-comments:before {
  content: "";
}

/* line 143, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-thumbs-o-up:before {
  content: "";
}

/* line 144, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-thumbs-o-down:before {
  content: "";
}

/* line 145, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-star-half:before {
  content: "";
}

/* line 146, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-heart-o:before {
  content: "";
}

/* line 147, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-sign-out:before {
  content: "";
}

/* line 148, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-linkedin-square:before {
  content: "";
}

/* line 149, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-thumb-tack:before {
  content: "";
}

/* line 150, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-external-link:before {
  content: "";
}

/* line 151, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-sign-in:before {
  content: "";
}

/* line 152, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-trophy:before {
  content: "";
}

/* line 153, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-github-square:before {
  content: "";
}

/* line 154, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-upload:before {
  content: "";
}

/* line 155, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-lemon-o:before {
  content: "";
}

/* line 156, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-phone:before {
  content: "";
}

/* line 157, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-o:before {
  content: "";
}

/* line 158, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-bookmark-o:before {
  content: "";
}

/* line 159, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-phone-square:before {
  content: "";
}

/* line 160, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-twitter:before {
  content: "";
}

/* line 161, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

/* line 163, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-github:before {
  content: "";
}

/* line 164, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-unlock:before {
  content: "";
}

/* line 165, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-credit-card:before {
  content: "";
}

/* line 166, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-feed:before,
.fa-rss:before {
  content: "";
}

/* line 168, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-hdd-o:before {
  content: "";
}

/* line 169, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-bullhorn:before {
  content: "";
}

/* line 170, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-bell:before {
  content: "";
}

/* line 171, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-certificate:before {
  content: "";
}

/* line 172, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-o-right:before {
  content: "";
}

/* line 173, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-o-left:before {
  content: "";
}

/* line 174, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-o-up:before {
  content: "";
}

/* line 175, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-o-down:before {
  content: "";
}

/* line 176, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-left:before {
  content: "";
}

/* line 177, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-right:before {
  content: "";
}

/* line 178, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-up:before {
  content: "";
}

/* line 179, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-down:before {
  content: "";
}

/* line 180, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-globe:before {
  content: "";
}

/* line 181, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-wrench:before {
  content: "";
}

/* line 182, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-tasks:before {
  content: "";
}

/* line 183, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-filter:before {
  content: "";
}

/* line 184, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-briefcase:before {
  content: "";
}

/* line 185, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-alt:before {
  content: "";
}

/* line 186, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-group:before,
.fa-users:before {
  content: "";
}

/* line 188, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-chain:before,
.fa-link:before {
  content: "";
}

/* line 190, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud:before {
  content: "";
}

/* line 191, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-flask:before {
  content: "";
}

/* line 192, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cut:before,
.fa-scissors:before {
  content: "";
}

/* line 194, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-copy:before,
.fa-files-o:before {
  content: "";
}

/* line 196, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-paperclip:before {
  content: "";
}

/* line 197, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

/* line 199, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-square:before {
  content: "";
}

/* line 200, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

/* line 203, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-list-ul:before {
  content: "";
}

/* line 204, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-list-ol:before {
  content: "";
}

/* line 205, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-strikethrough:before {
  content: "";
}

/* line 206, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-underline:before {
  content: "";
}

/* line 207, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-table:before {
  content: "";
}

/* line 208, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-magic:before {
  content: "";
}

/* line 209, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck:before {
  content: "";
}

/* line 210, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-pinterest:before {
  content: "";
}

/* line 211, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-pinterest-square:before {
  content: "";
}

/* line 212, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-google-plus-square:before {
  content: "";
}

/* line 213, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-google-plus:before {
  content: "";
}

/* line 214, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-money:before {
  content: "";
}

/* line 215, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-down:before {
  content: "";
}

/* line 216, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-up:before {
  content: "";
}

/* line 217, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-left:before {
  content: "";
}

/* line 218, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-right:before {
  content: "";
}

/* line 219, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-columns:before {
  content: "";
}

/* line 220, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

/* line 222, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

/* line 224, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

/* line 226, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-envelope:before {
  content: "";
}

/* line 227, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-linkedin:before {
  content: "";
}

/* line 228, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

/* line 230, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-legal:before,
.fa-gavel:before {
  content: "";
}

/* line 232, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

/* line 234, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-comment-o:before {
  content: "";
}

/* line 235, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-comments-o:before {
  content: "";
}

/* line 236, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-flash:before,
.fa-bolt:before {
  content: "";
}

/* line 238, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-sitemap:before {
  content: "";
}

/* line 239, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-umbrella:before {
  content: "";
}

/* line 240, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

/* line 242, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-lightbulb-o:before {
  content: "";
}

/* line 243, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-exchange:before {
  content: "";
}

/* line 244, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-download:before {
  content: "";
}

/* line 245, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-upload:before {
  content: "";
}

/* line 246, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-md:before {
  content: "";
}

/* line 247, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-stethoscope:before {
  content: "";
}

/* line 248, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-suitcase:before {
  content: "";
}

/* line 249, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-bell-o:before {
  content: "";
}

/* line 250, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-coffee:before {
  content: "";
}

/* line 251, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cutlery:before {
  content: "";
}

/* line 252, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-text-o:before {
  content: "";
}

/* line 253, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-building-o:before {
  content: "";
}

/* line 254, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-hospital-o:before {
  content: "";
}

/* line 255, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-ambulance:before {
  content: "";
}

/* line 256, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-medkit:before {
  content: "";
}

/* line 257, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-fighter-jet:before {
  content: "";
}

/* line 258, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-beer:before {
  content: "";
}

/* line 259, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-h-square:before {
  content: "";
}

/* line 260, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-plus-square:before {
  content: "";
}

/* line 261, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-double-left:before {
  content: "";
}

/* line 262, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-double-right:before {
  content: "";
}

/* line 263, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-double-up:before {
  content: "";
}

/* line 264, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-double-down:before {
  content: "";
}

/* line 265, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-left:before {
  content: "";
}

/* line 266, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-right:before {
  content: "";
}

/* line 267, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-up:before {
  content: "";
}

/* line 268, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-down:before {
  content: "";
}

/* line 269, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-desktop:before {
  content: "";
}

/* line 270, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-laptop:before {
  content: "";
}

/* line 271, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-tablet:before {
  content: "";
}

/* line 272, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

/* line 274, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-o:before {
  content: "";
}

/* line 275, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-quote-left:before {
  content: "";
}

/* line 276, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-quote-right:before {
  content: "";
}

/* line 277, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-spinner:before {
  content: "";
}

/* line 278, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle:before {
  content: "";
}

/* line 279, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

/* line 281, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-github-alt:before {
  content: "";
}

/* line 282, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-folder-o:before {
  content: "";
}

/* line 283, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-folder-open-o:before {
  content: "";
}

/* line 284, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-smile-o:before {
  content: "";
}

/* line 285, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-frown-o:before {
  content: "";
}

/* line 286, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-meh-o:before {
  content: "";
}

/* line 287, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-gamepad:before {
  content: "";
}

/* line 288, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-keyboard-o:before {
  content: "";
}

/* line 289, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-flag-o:before {
  content: "";
}

/* line 290, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-flag-checkered:before {
  content: "";
}

/* line 291, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-terminal:before {
  content: "";
}

/* line 292, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-code:before {
  content: "";
}

/* line 293, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

/* line 295, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

/* line 298, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-location-arrow:before {
  content: "";
}

/* line 299, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-crop:before {
  content: "";
}

/* line 300, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-code-fork:before {
  content: "";
}

/* line 301, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

/* line 303, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-question:before {
  content: "";
}

/* line 304, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-info:before {
  content: "";
}

/* line 305, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-exclamation:before {
  content: "";
}

/* line 306, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-superscript:before {
  content: "";
}

/* line 307, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-subscript:before {
  content: "";
}

/* line 308, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-eraser:before {
  content: "";
}

/* line 309, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-puzzle-piece:before {
  content: "";
}

/* line 310, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-microphone:before {
  content: "";
}

/* line 311, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-microphone-slash:before {
  content: "";
}

/* line 312, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-shield:before {
  content: "";
}

/* line 313, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-o:before {
  content: "";
}

/* line 314, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-fire-extinguisher:before {
  content: "";
}

/* line 315, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-rocket:before {
  content: "";
}

/* line 316, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-maxcdn:before {
  content: "";
}

/* line 317, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-circle-left:before {
  content: "";
}

/* line 318, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-circle-right:before {
  content: "";
}

/* line 319, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-circle-up:before {
  content: "";
}

/* line 320, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-circle-down:before {
  content: "";
}

/* line 321, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-html5:before {
  content: "";
}

/* line 322, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-css3:before {
  content: "";
}

/* line 323, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-anchor:before {
  content: "";
}

/* line 324, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-unlock-alt:before {
  content: "";
}

/* line 325, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-bullseye:before {
  content: "";
}

/* line 326, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-ellipsis-h:before {
  content: "";
}

/* line 327, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-ellipsis-v:before {
  content: "";
}

/* line 328, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-rss-square:before {
  content: "";
}

/* line 329, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-play-circle:before {
  content: "";
}

/* line 330, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-ticket:before {
  content: "";
}

/* line 331, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-minus-square:before {
  content: "";
}

/* line 332, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-minus-square-o:before {
  content: "";
}

/* line 333, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-level-up:before {
  content: "";
}

/* line 334, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-level-down:before {
  content: "";
}

/* line 335, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-check-square:before {
  content: "";
}

/* line 336, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-pencil-square:before {
  content: "";
}

/* line 337, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-external-link-square:before {
  content: "";
}

/* line 338, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-share-square:before {
  content: "";
}

/* line 339, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-compass:before {
  content: "";
}

/* line 340, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

/* line 342, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

/* line 344, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

/* line 346, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-euro:before,
.fa-eur:before {
  content: "";
}

/* line 348, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-gbp:before {
  content: "";
}

/* line 349, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-dollar:before,
.fa-usd:before {
  content: "";
}

/* line 351, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-rupee:before,
.fa-inr:before {
  content: "";
}

/* line 353, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

/* line 357, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

/* line 360, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-won:before,
.fa-krw:before {
  content: "";
}

/* line 362, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

/* line 364, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-file:before {
  content: "";
}

/* line 365, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-text:before {
  content: "";
}

/* line 366, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-alpha-asc:before {
  content: "";
}

/* line 367, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-alpha-desc:before {
  content: "";
}

/* line 368, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-amount-asc:before {
  content: "";
}

/* line 369, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-amount-desc:before {
  content: "";
}

/* line 370, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-numeric-asc:before {
  content: "";
}

/* line 371, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-numeric-desc:before {
  content: "";
}

/* line 372, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-thumbs-up:before {
  content: "";
}

/* line 373, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-thumbs-down:before {
  content: "";
}

/* line 374, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-youtube-square:before {
  content: "";
}

/* line 375, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-youtube:before {
  content: "";
}

/* line 376, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-xing:before {
  content: "";
}

/* line 377, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-xing-square:before {
  content: "";
}

/* line 378, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-youtube-play:before {
  content: "";
}

/* line 379, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-dropbox:before {
  content: "";
}

/* line 380, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-stack-overflow:before {
  content: "";
}

/* line 381, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-instagram:before {
  content: "";
}

/* line 382, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-flickr:before {
  content: "";
}

/* line 383, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-adn:before {
  content: "";
}

/* line 384, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-bitbucket:before {
  content: "";
}

/* line 385, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-bitbucket-square:before {
  content: "";
}

/* line 386, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-tumblr:before {
  content: "";
}

/* line 387, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-tumblr-square:before {
  content: "";
}

/* line 388, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-down:before {
  content: "";
}

/* line 389, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-up:before {
  content: "";
}

/* line 390, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-left:before {
  content: "";
}

/* line 391, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-right:before {
  content: "";
}

/* line 392, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-apple:before {
  content: "";
}

/* line 393, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-windows:before {
  content: "";
}

/* line 394, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-android:before {
  content: "";
}

/* line 395, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-linux:before {
  content: "";
}

/* line 396, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-dribbble:before {
  content: "";
}

/* line 397, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-skype:before {
  content: "";
}

/* line 398, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-foursquare:before {
  content: "";
}

/* line 399, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-trello:before {
  content: "";
}

/* line 400, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-female:before {
  content: "";
}

/* line 401, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-male:before {
  content: "";
}

/* line 402, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

/* line 404, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-sun-o:before {
  content: "";
}

/* line 405, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-moon-o:before {
  content: "";
}

/* line 406, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-archive:before {
  content: "";
}

/* line 407, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-bug:before {
  content: "";
}

/* line 408, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-vk:before {
  content: "";
}

/* line 409, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-weibo:before {
  content: "";
}

/* line 410, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-renren:before {
  content: "";
}

/* line 411, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-pagelines:before {
  content: "";
}

/* line 412, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-stack-exchange:before {
  content: "";
}

/* line 413, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-o-right:before {
  content: "";
}

/* line 414, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-o-left:before {
  content: "";
}

/* line 415, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

/* line 417, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-dot-circle-o:before {
  content: "";
}

/* line 418, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-wheelchair:before {
  content: "";
}

/* line 419, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-vimeo-square:before {
  content: "";
}

/* line 420, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

/* line 422, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-plus-square-o:before {
  content: "";
}

/* line 423, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-space-shuttle:before {
  content: "";
}

/* line 424, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-slack:before {
  content: "";
}

/* line 425, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-envelope-square:before {
  content: "";
}

/* line 426, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-wordpress:before {
  content: "";
}

/* line 427, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-openid:before {
  content: "";
}

/* line 428, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

/* line 431, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

/* line 433, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-yahoo:before {
  content: "";
}

/* line 434, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-google:before {
  content: "";
}

/* line 435, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-reddit:before {
  content: "";
}

/* line 436, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-reddit-square:before {
  content: "";
}

/* line 437, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-stumbleupon-circle:before {
  content: "";
}

/* line 438, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-stumbleupon:before {
  content: "";
}

/* line 439, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-delicious:before {
  content: "";
}

/* line 440, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-digg:before {
  content: "";
}

/* line 441, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-pied-piper:before {
  content: "";
}

/* line 442, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-pied-piper-alt:before {
  content: "";
}

/* line 443, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-drupal:before {
  content: "";
}

/* line 444, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-joomla:before {
  content: "";
}

/* line 445, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-language:before {
  content: "";
}

/* line 446, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-fax:before {
  content: "";
}

/* line 447, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-building:before {
  content: "";
}

/* line 448, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-child:before {
  content: "";
}

/* line 449, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-paw:before {
  content: "";
}

/* line 450, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-spoon:before {
  content: "";
}

/* line 451, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cube:before {
  content: "";
}

/* line 452, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cubes:before {
  content: "";
}

/* line 453, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-behance:before {
  content: "";
}

/* line 454, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-behance-square:before {
  content: "";
}

/* line 455, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-steam:before {
  content: "";
}

/* line 456, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-steam-square:before {
  content: "";
}

/* line 457, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-recycle:before {
  content: "";
}

/* line 458, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-automobile:before,
.fa-car:before {
  content: "";
}

/* line 460, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cab:before,
.fa-taxi:before {
  content: "";
}

/* line 462, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-tree:before {
  content: "";
}

/* line 463, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-spotify:before {
  content: "";
}

/* line 464, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-deviantart:before {
  content: "";
}

/* line 465, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-soundcloud:before {
  content: "";
}

/* line 466, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-database:before {
  content: "";
}

/* line 467, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-pdf-o:before {
  content: "";
}

/* line 468, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-word-o:before {
  content: "";
}

/* line 469, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-excel-o:before {
  content: "";
}

/* line 470, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-powerpoint-o:before {
  content: "";
}

/* line 471, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

/* line 474, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

/* line 476, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

/* line 478, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

/* line 480, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-code-o:before {
  content: "";
}

/* line 481, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-vine:before {
  content: "";
}

/* line 482, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-codepen:before {
  content: "";
}

/* line 483, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-jsfiddle:before {
  content: "";
}

/* line 484, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

/* line 489, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-o-notch:before {
  content: "";
}

/* line 490, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-ra:before,
.fa-rebel:before {
  content: "";
}

/* line 492, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-ge:before,
.fa-empire:before {
  content: "";
}

/* line 494, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-git-square:before {
  content: "";
}

/* line 495, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-git:before {
  content: "";
}

/* line 496, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

/* line 499, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-tencent-weibo:before {
  content: "";
}

/* line 500, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-qq:before {
  content: "";
}

/* line 501, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

/* line 503, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

/* line 505, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

/* line 507, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-history:before {
  content: "";
}

/* line 508, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-thin:before {
  content: "";
}

/* line 509, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-header:before {
  content: "";
}

/* line 510, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-paragraph:before {
  content: "";
}

/* line 511, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-sliders:before {
  content: "";
}

/* line 512, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-share-alt:before {
  content: "";
}

/* line 513, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-share-alt-square:before {
  content: "";
}

/* line 514, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-bomb:before {
  content: "";
}

/* line 515, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

/* line 517, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-tty:before {
  content: "";
}

/* line 518, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-binoculars:before {
  content: "";
}

/* line 519, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-plug:before {
  content: "";
}

/* line 520, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-slideshare:before {
  content: "";
}

/* line 521, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-twitch:before {
  content: "";
}

/* line 522, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-yelp:before {
  content: "";
}

/* line 523, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-newspaper-o:before {
  content: "";
}

/* line 524, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-wifi:before {
  content: "";
}

/* line 525, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-calculator:before {
  content: "";
}

/* line 526, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-paypal:before {
  content: "";
}

/* line 527, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-google-wallet:before {
  content: "";
}

/* line 528, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cc-visa:before {
  content: "";
}

/* line 529, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cc-mastercard:before {
  content: "";
}

/* line 530, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cc-discover:before {
  content: "";
}

/* line 531, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cc-amex:before {
  content: "";
}

/* line 532, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cc-paypal:before {
  content: "";
}

/* line 533, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cc-stripe:before {
  content: "";
}

/* line 534, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-bell-slash:before {
  content: "";
}

/* line 535, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-bell-slash-o:before {
  content: "";
}

/* line 536, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-trash:before {
  content: "";
}

/* line 537, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-copyright:before {
  content: "";
}

/* line 538, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-at:before {
  content: "";
}

/* line 539, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-eyedropper:before {
  content: "";
}

/* line 540, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-paint-brush:before {
  content: "";
}

/* line 541, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-birthday-cake:before {
  content: "";
}

/* line 542, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-area-chart:before {
  content: "";
}

/* line 543, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-pie-chart:before {
  content: "";
}

/* line 544, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-line-chart:before {
  content: "";
}

/* line 545, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-lastfm:before {
  content: "";
}

/* line 546, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-lastfm-square:before {
  content: "";
}

/* line 547, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-toggle-off:before {
  content: "";
}

/* line 548, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-toggle-on:before {
  content: "";
}

/* line 549, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-bicycle:before {
  content: "";
}

/* line 550, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-bus:before {
  content: "";
}

/* line 551, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-ioxhost:before {
  content: "";
}

/* line 552, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-angellist:before {
  content: "";
}

/* line 553, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cc:before {
  content: "";
}

/* line 554, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

/* line 557, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-meanpath:before {
  content: "";
}

/* line 558, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-buysellads:before {
  content: "";
}

/* line 559, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-connectdevelop:before {
  content: "";
}

/* line 560, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-dashcube:before {
  content: "";
}

/* line 561, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-forumbee:before {
  content: "";
}

/* line 562, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-leanpub:before {
  content: "";
}

/* line 563, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-sellsy:before {
  content: "";
}

/* line 564, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-shirtsinbulk:before {
  content: "";
}

/* line 565, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-simplybuilt:before {
  content: "";
}

/* line 566, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-skyatlas:before {
  content: "";
}

/* line 567, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cart-plus:before {
  content: "";
}

/* line 568, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cart-arrow-down:before {
  content: "";
}

/* line 569, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-diamond:before {
  content: "";
}

/* line 570, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-ship:before {
  content: "";
}

/* line 571, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-secret:before {
  content: "";
}

/* line 572, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-motorcycle:before {
  content: "";
}

/* line 573, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-street-view:before {
  content: "";
}

/* line 574, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-heartbeat:before {
  content: "";
}

/* line 575, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-venus:before {
  content: "";
}

/* line 576, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-mars:before {
  content: "";
}

/* line 577, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-mercury:before {
  content: "";
}

/* line 578, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

/* line 580, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-transgender-alt:before {
  content: "";
}

/* line 581, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-venus-double:before {
  content: "";
}

/* line 582, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-mars-double:before {
  content: "";
}

/* line 583, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-venus-mars:before {
  content: "";
}

/* line 584, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-mars-stroke:before {
  content: "";
}

/* line 585, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-mars-stroke-v:before {
  content: "";
}

/* line 586, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-mars-stroke-h:before {
  content: "";
}

/* line 587, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-neuter:before {
  content: "";
}

/* line 588, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-genderless:before {
  content: "";
}

/* line 589, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-facebook-official:before {
  content: "";
}

/* line 590, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-pinterest-p:before {
  content: "";
}

/* line 591, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-whatsapp:before {
  content: "";
}

/* line 592, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-server:before {
  content: "";
}

/* line 593, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-plus:before {
  content: "";
}

/* line 594, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-times:before {
  content: "";
}

/* line 595, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-hotel:before,
.fa-bed:before {
  content: "";
}

/* line 597, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-viacoin:before {
  content: "";
}

/* line 598, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-train:before {
  content: "";
}

/* line 599, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-subway:before {
  content: "";
}

/* line 600, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-medium:before {
  content: "";
}

/* line 601, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

/* line 603, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-optin-monster:before {
  content: "";
}

/* line 604, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-opencart:before {
  content: "";
}

/* line 605, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-expeditedssl:before {
  content: "";
}

/* line 606, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-4:before,
.fa-battery-full:before {
  content: "";
}

/* line 608, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

/* line 610, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

/* line 612, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

/* line 614, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

/* line 616, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-mouse-pointer:before {
  content: "";
}

/* line 617, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-i-cursor:before {
  content: "";
}

/* line 618, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-object-group:before {
  content: "";
}

/* line 619, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-object-ungroup:before {
  content: "";
}

/* line 620, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-sticky-note:before {
  content: "";
}

/* line 621, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-sticky-note-o:before {
  content: "";
}

/* line 622, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cc-jcb:before {
  content: "";
}

/* line 623, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-cc-diners-club:before {
  content: "";
}

/* line 624, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-clone:before {
  content: "";
}

/* line 625, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-balance-scale:before {
  content: "";
}

/* line 626, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-hourglass-o:before {
  content: "";
}

/* line 627, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

/* line 629, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

/* line 631, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

/* line 633, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-hourglass:before {
  content: "";
}

/* line 634, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

/* line 636, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

/* line 638, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-scissors-o:before {
  content: "";
}

/* line 639, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-lizard-o:before {
  content: "";
}

/* line 640, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-spock-o:before {
  content: "";
}

/* line 641, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-pointer-o:before {
  content: "";
}

/* line 642, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-peace-o:before {
  content: "";
}

/* line 643, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-trademark:before {
  content: "";
}

/* line 644, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-registered:before {
  content: "";
}

/* line 645, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-creative-commons:before {
  content: "";
}

/* line 646, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-gg:before {
  content: "";
}

/* line 647, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-gg-circle:before {
  content: "";
}

/* line 648, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-tripadvisor:before {
  content: "";
}

/* line 649, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-odnoklassniki:before {
  content: "";
}

/* line 650, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-odnoklassniki-square:before {
  content: "";
}

/* line 651, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-get-pocket:before {
  content: "";
}

/* line 652, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-wikipedia-w:before {
  content: "";
}

/* line 653, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-safari:before {
  content: "";
}

/* line 654, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-chrome:before {
  content: "";
}

/* line 655, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-firefox:before {
  content: "";
}

/* line 656, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-opera:before {
  content: "";
}

/* line 657, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-internet-explorer:before {
  content: "";
}

/* line 658, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-tv:before,
.fa-television:before {
  content: "";
}

/* line 660, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-contao:before {
  content: "";
}

/* line 661, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-500px:before {
  content: "";
}

/* line 662, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-amazon:before {
  content: "";
}

/* line 663, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-plus-o:before {
  content: "";
}

/* line 664, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-minus-o:before {
  content: "";
}

/* line 665, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-times-o:before {
  content: "";
}

/* line 666, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-check-o:before {
  content: "";
}

/* line 667, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-industry:before {
  content: "";
}

/* line 668, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-map-pin:before {
  content: "";
}

/* line 669, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-map-signs:before {
  content: "";
}

/* line 670, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-map-o:before {
  content: "";
}

/* line 671, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-map:before {
  content: "";
}

/* line 672, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-commenting:before {
  content: "";
}

/* line 673, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-commenting-o:before {
  content: "";
}

/* line 674, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-houzz:before {
  content: "";
}

/* line 675, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-vimeo:before {
  content: "";
}

/* line 676, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-black-tie:before {
  content: "";
}

/* line 677, ../../../../../Library/Ruby/Gems/2.0.0/gems/font-awesome-sass-4.4.0/assets/stylesheets/font-awesome/_icons.scss */
.fa-fonticons:before {
  content: "";
}

/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
/* line 15, ../scss/modules/_alerts.scss */
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}

/* line 21, ../scss/modules/_alerts.scss */
.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}

/* line 27, ../scss/modules/_alerts.scss */
.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

/* line 33, ../scss/modules/_alerts.scss */
.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}

/* line 39, ../scss/modules/_alerts.scss */
.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
/* line 27, ../scss/modules/_buttons.scss */
.blue-btn {
  display: inline-block;
  position: relative;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -moz-transition: background-color 0.14s ease-in-out;
  -o-transition: background-color 0.14s ease-in-out;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
}
/* line 44, ../scss/modules/_buttons.scss */
.blue-btn:hover, .blue-btn:focus {
  color: #FFFFFF;
  text-decoration: none;
}
/* line 50, ../scss/modules/_buttons.scss */
.blue-btn:active {
  top: 1px;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
/* line 61, ../scss/modules/_buttons.scss */
.blue-btn {
  background-color: #fbb111;
}
/* line 65, ../scss/modules/_buttons.scss */
.blue-btn:hover, .blue-btn:focus {
  background-color: #f4a804;
}
/* line 70, ../scss/modules/_buttons.scss */
.blue-btn:active {
  background-color: #eea404;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
/* line 23, ../scss/modules/_forms.scss */
::-webkit-input-placeholder {
  color: #906E23;
}

/* line 27, ../scss/modules/_forms.scss */
:-moz-placeholder {
  /* Firefox 18- */
  color: #906E23;
}

/* line 31, ../scss/modules/_forms.scss */
::-moz-placeholder {
  /* Firefox 19+ */
  color: #906E23;
}

/* line 35, ../scss/modules/_forms.scss */
:-ms-input-placeholder {
  color: #906E23;
}

/* line 40, ../scss/modules/_forms.scss */
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  background-color: #fbb111;
  border: 3px solid #fbb111;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 1px 15px;
  margin-bottom: 25px;
  font-size: 0.9em;
  color: #333333;
  vertical-align: middle;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  font-weight: 700;
  width: 100%;
  letter-spacing: 1px;
  font-family: "Open Sans", sans-serif;
  -moz-transition: background-color 0.24s ease-in-out;
  -o-transition: background-color 0.24s ease-in-out;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}
/* line 80, ../scss/modules/_forms.scss */
input[type="text"]:focus, input[type="text"]:active,
input[type="password"]:focus,
input[type="password"]:active,
input[type="datetime"]:focus,
input[type="datetime"]:active,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:active,
input[type="date"]:focus,
input[type="date"]:active,
input[type="month"]:focus,
input[type="month"]:active,
input[type="time"]:focus,
input[type="time"]:active,
input[type="week"]:focus,
input[type="week"]:active,
input[type="number"]:focus,
input[type="number"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="search"]:focus,
input[type="search"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="color"]:focus,
input[type="color"]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  outline: 0;
  border: 3px solid #FFFFFF;
}
/* line 88, ../scss/modules/_forms.scss */
input[type="text"].error, input[type="text"].is-invalid,
input[type="password"].error,
input[type="password"].is-invalid,
input[type="datetime"].error,
input[type="datetime"].is-invalid,
input[type="datetime-local"].error,
input[type="datetime-local"].is-invalid,
input[type="date"].error,
input[type="date"].is-invalid,
input[type="month"].error,
input[type="month"].is-invalid,
input[type="time"].error,
input[type="time"].is-invalid,
input[type="week"].error,
input[type="week"].is-invalid,
input[type="number"].error,
input[type="number"].is-invalid,
input[type="email"].error,
input[type="email"].is-invalid,
input[type="url"].error,
input[type="url"].is-invalid,
input[type="search"].error,
input[type="search"].is-invalid,
input[type="tel"].error,
input[type="tel"].is-invalid,
input[type="color"].error,
input[type="color"].is-invalid,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid,
.field.error,
.field.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: #FFFFFF;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #fbe3e4;
}
/* line 100, ../scss/modules/_forms.scss */
input[type="text"].success, input[type="text"].is-valid,
input[type="password"].success,
input[type="password"].is-valid,
input[type="datetime"].success,
input[type="datetime"].is-valid,
input[type="datetime-local"].success,
input[type="datetime-local"].is-valid,
input[type="date"].success,
input[type="date"].is-valid,
input[type="month"].success,
input[type="month"].is-valid,
input[type="time"].success,
input[type="time"].is-valid,
input[type="week"].success,
input[type="week"].is-valid,
input[type="number"].success,
input[type="number"].is-valid,
input[type="email"].success,
input[type="email"].is-valid,
input[type="url"].success,
input[type="url"].is-valid,
input[type="search"].success,
input[type="search"].is-valid,
input[type="tel"].success,
input[type="tel"].is-valid,
input[type="color"].success,
input[type="color"].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: #FFFFFF;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #e6efc2;
}
/* line 112, ../scss/modules/_forms.scss */
input[type="text"][disabled], input[type="text"].is-disabled,
input[type="password"][disabled],
input[type="password"].is-disabled,
input[type="datetime"][disabled],
input[type="datetime"].is-disabled,
input[type="datetime-local"][disabled],
input[type="datetime-local"].is-disabled,
input[type="date"][disabled],
input[type="date"].is-disabled,
input[type="month"][disabled],
input[type="month"].is-disabled,
input[type="time"][disabled],
input[type="time"].is-disabled,
input[type="week"][disabled],
input[type="week"].is-disabled,
input[type="number"][disabled],
input[type="number"].is-disabled,
input[type="email"][disabled],
input[type="email"].is-disabled,
input[type="url"][disabled],
input[type="url"].is-disabled,
input[type="search"][disabled],
input[type="search"].is-disabled,
input[type="tel"][disabled],
input[type="tel"].is-disabled,
input[type="color"][disabled],
input[type="color"].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
/* line 118, ../scss/modules/_forms.scss */
input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
input[type="password"][disabled]:focus,
input[type="password"][disabled]:active,
input[type="password"].is-disabled:focus,
input[type="password"].is-disabled:active,
input[type="datetime"][disabled]:focus,
input[type="datetime"][disabled]:active,
input[type="datetime"].is-disabled:focus,
input[type="datetime"].is-disabled:active,
input[type="datetime-local"][disabled]:focus,
input[type="datetime-local"][disabled]:active,
input[type="datetime-local"].is-disabled:focus,
input[type="datetime-local"].is-disabled:active,
input[type="date"][disabled]:focus,
input[type="date"][disabled]:active,
input[type="date"].is-disabled:focus,
input[type="date"].is-disabled:active,
input[type="month"][disabled]:focus,
input[type="month"][disabled]:active,
input[type="month"].is-disabled:focus,
input[type="month"].is-disabled:active,
input[type="time"][disabled]:focus,
input[type="time"][disabled]:active,
input[type="time"].is-disabled:focus,
input[type="time"].is-disabled:active,
input[type="week"][disabled]:focus,
input[type="week"][disabled]:active,
input[type="week"].is-disabled:focus,
input[type="week"].is-disabled:active,
input[type="number"][disabled]:focus,
input[type="number"][disabled]:active,
input[type="number"].is-disabled:focus,
input[type="number"].is-disabled:active,
input[type="email"][disabled]:focus,
input[type="email"][disabled]:active,
input[type="email"].is-disabled:focus,
input[type="email"].is-disabled:active,
input[type="url"][disabled]:focus,
input[type="url"][disabled]:active,
input[type="url"].is-disabled:focus,
input[type="url"].is-disabled:active,
input[type="search"][disabled]:focus,
input[type="search"][disabled]:active,
input[type="search"].is-disabled:focus,
input[type="search"].is-disabled:active,
input[type="tel"][disabled]:focus,
input[type="tel"][disabled]:active,
input[type="tel"].is-disabled:focus,
input[type="tel"].is-disabled:active,
input[type="color"][disabled]:focus,
input[type="color"][disabled]:active,
input[type="color"].is-disabled:focus,
input[type="color"].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
  background-color: #d5edf8;
}

/* line 128, ../scss/modules/_forms.scss */
input[type="password"] {
  letter-spacing: 0.3em;
}

/* line 133, ../scss/modules/_forms.scss */
textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}

/* line 140, ../scss/modules/_forms.scss */
select {
  -webkit-appearance: none;
  /* 1 */
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center;
}

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/* line 19, ../scss/breakpoints/_base.scss */
html {
  height: 100%;
}

/* line 23, ../scss/breakpoints/_base.scss */
body {
  height: 100%;
  position: relative;
}

/* line 28, ../scss/breakpoints/_base.scss */
body {
  font-family: "Open Sans", sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #444444;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

/* line 37, ../scss/breakpoints/_base.scss */
img {
  max-width: 100%;
}

/*********************
LAYOUT & GRID STYLES
*********************/
/* line 48, ../scss/breakpoints/_base.scss */
.wrapper,
.big-wrapper {
  width: 90%;
  margin: 0 auto;
}

/*********************
LINK STYLES
*********************/
/* line 59, ../scss/breakpoints/_base.scss */
a,
a:visited {
  /* on hover */
  /* on click */
  /* mobile tap color */
}
/* line 68, ../scss/breakpoints/_base.scss */
a:link,
a:visited:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/* line 78, ../scss/breakpoints/_base.scss */
.only-m {
  display: block;
}

/* line 82, ../scss/breakpoints/_base.scss */
.only-d {
  display: none !important;
}

/* line 86, ../scss/breakpoints/_base.scss */
a:hover,
a:active,
a:focus {
  outline: 0;
}

/* line 92, ../scss/breakpoints/_base.scss */
hr {
  border-top: 1px solid #EEEEEE;
  border-bottom: 0;
}

/* line 97, ../scss/breakpoints/_base.scss */
.hide {
  display: none;
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
/* line 106, ../scss/breakpoints/_base.scss */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  text-rendering: optimizelegibility;
  font-weight: normal;
  font-family: "blanch", sans-serif;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */
}
/* line 124, ../scss/breakpoints/_base.scss */
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a {
  text-decoration: none;
}

/* line 129, ../scss/breakpoints/_base.scss */
h1,
.h1 {
  font-family: "blanch", sans-serif;
  color: #333333;
  font-size: 2.8em;
  line-height: 0.8em;
  padding: 1em 0 0.2em;
  margin: 0;
}

/* line 139, ../scss/breakpoints/_base.scss */
h2,
.h2 {
  font-size: 2.65em;
  line-height: 0.75em;
  font-family: "blanch", sans-serif;
  margin: 0;
  padding: 0.3em 0 0.15em 0;
  color: #333333;
}

/* line 149, ../scss/breakpoints/_base.scss */
h3,
.h3 {
  font-size: 1.1em;
  font-family: "blanch", sans-serif;
  letter-spacing: -0.3px;
  color: #333333;
  margin-bottom: 0.375em;
}

/* line 158, ../scss/breakpoints/_base.scss */
h4,
.h4 {
  font-size: 1.1em;
  font-weight: 700;
}

/* line 164, ../scss/breakpoints/_base.scss */
h5,
.h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* line 172, ../scss/breakpoints/_base.scss */
p {
  color: #444444;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95em;
  line-height: 1.65em;
}
/* line 178, ../scss/breakpoints/_base.scss */
p b {
  font-weight: 700;
}
/* line 181, ../scss/breakpoints/_base.scss */
p a {
  color: #fbb111;
  font-weight: 700;
  text-decoration: none;
}
/* line 186, ../scss/breakpoints/_base.scss */
p small {
  color: #999999;
  font-weight: 600;
  font-size: 80%;
}

/*********************
HEADER STYLES
*********************/
/* line 198, ../scss/breakpoints/_base.scss */
.nav-copy {
  display: none;
}

/* line 202, ../scss/breakpoints/_base.scss */
.header-container {
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 0;
  background-color: #FFFFFF;
  -webkit-box-shadow: 1px 1px 5px rgba(50, 50, 50, 0.2);
  -moz-box-shadow: 1px 1px 5px rgba(50, 50, 50, 0.2);
  box-shadow: 1px 1px 5px rgba(50, 50, 50, 0.2);
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
/* line 212, ../scss/breakpoints/_base.scss */
.header-container header {
  position: relative;
  height: 60px;
}
/* line 216, ../scss/breakpoints/_base.scss */
.header-container #nav-toggle {
  position: absolute;
  right: 0;
  top: 0;
  padding: 28px 17px;
  font-size: 1em;
  margin-top: 0;
  cursor: pointer;
  background-color: #fbb111;
  width: 60px;
  height: 60px;
  color: #FFFFFF;
}

/* line 231, ../scss/breakpoints/_base.scss */
#logo {
  display: block;
  height: 60px;
  margin: 0 0 0 20px;
  padding: 17px 0;
  width: 140px;
  float: left;
}

/* line 240, ../scss/breakpoints/_base.scss */
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 25px;
  background: white;
  position: absolute;
  display: block;
  content: '';
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* line 258, ../scss/breakpoints/_base.scss */
#nav-toggle span:before {
  top: -8px;
}

/* line 262, ../scss/breakpoints/_base.scss */
#nav-toggle span:after {
  bottom: -8px;
}

/* line 266, ../scss/breakpoints/_base.scss */
#nav-toggle.active span {
  background-color: transparent;
}

/* line 270, ../scss/breakpoints/_base.scss */
#nav-toggle.active span:before,
#nav-toggle.active span:after {
  top: 2px;
}

/* line 275, ../scss/breakpoints/_base.scss */
#nav-toggle.active span:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #db9600;
}

/* line 284, ../scss/breakpoints/_base.scss */
#nav-toggle.active span:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #db9600;
}

/*********************
NAVIGATION STYLES
*********************/
/* line 298, ../scss/breakpoints/_base.scss */
.nav,
.nav-copy {
  font-family: "blanch", sans-serif;
  text-transform: uppercase;
}
/* line 302, ../scss/breakpoints/_base.scss */
.nav a,
.nav a:hover,
.nav-copy a,
.nav-copy a:hover {
  text-decoration: none;
}

/* line 308, ../scss/breakpoints/_base.scss */
.nav {
  border-bottom: 0;
  margin: 0;
  max-height: 0px;
  overflow: hidden;
  background-color: #fbb111;
  -moz-transition-property: max-height;
  -o-transition-property: max-height;
  -webkit-transition-property: max-height;
  transition-property: max-height;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  /* end .menu li */
}
/* line 316, ../scss/breakpoints/_base.scss */
.nav.expanded {
  max-height: 600px;
  -moz-transition-property: max-height;
  -o-transition-property: max-height;
  -webkit-transition-property: max-height;
  transition-property: max-height;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
/* line 321, ../scss/breakpoints/_base.scss */
.nav ul {
  margin: 0.8em 0 0 0;
}
/* line 325, ../scss/breakpoints/_base.scss */
.nav li a {
  display: block;
  color: #392f27;
  text-decoration: none;
  font-size: 2.15em;
  text-align: center;
  line-height: 1em;
  /*
  remember this is for mobile ONLY, so there's no need
  to even declare hover styles here, you can do it in
  the style.scss file where it's relevant. We want to
  keep this file as small as possible!
  */
}
/* line 343, ../scss/breakpoints/_base.scss */
.nav ul.social-media {
  clear: both;
  overflow: auto;
  width: 8em;
  margin: 0.4em auto;
}
/* line 348, ../scss/breakpoints/_base.scss */
.nav ul.social-media li {
  float: left;
  display: inline-block;
  width: 33.1%;
  text-align: center;
}
/* line 353, ../scss/breakpoints/_base.scss */
.nav ul.social-media li a {
  display: inline-block;
  color: #db9600;
  text-align: center;
}
/* line 357, ../scss/breakpoints/_base.scss */
.nav ul.social-media li a i {
  font-size: 0.7em;
}
/* line 363, ../scss/breakpoints/_base.scss */
.nav ul.more-links {
  margin: 0.6em 0 0 0;
}
/* line 366, ../scss/breakpoints/_base.scss */
.nav ul.more-links li a {
  font-size: 1.9em;
}
/* line 371, ../scss/breakpoints/_base.scss */
.nav .language {
  color: #FFFFFF;
}
/* line 374, ../scss/breakpoints/_base.scss */
.nav .mobile-nav-buttons {
  overflow: auto;
  clear: both;
  margin: 1.4em auto;
  text-align: center;
  max-width: 20em;
}
/* line 380, ../scss/breakpoints/_base.scss */
.nav .mobile-nav-buttons a {
  font-size: 0.9em;
  font-family: "Open Sans", sans-serif;
  color: #FFFFFF;
  font-weight: 700;
  border: 3px solid #FFFFFF;
  line-height: 2.3em;
  float: left;
  text-align: center;
  text-transform: none;
  width: 45%;
  margin-left: 3.5%;
}

/* end .nav */
/* line 399, ../scss/breakpoints/_base.scss */
#active-mobile {
  color: #FFFFFF;
}

/* line 403, ../scss/breakpoints/_base.scss */
main.container {
  width: 100%;
  margin-top: 60px;
}

/*********************
    IMAGE SLIDER
*********************/
/* line 413, ../scss/breakpoints/_base.scss */
.image-viewer {
  position: relative;
}
/* line 415, ../scss/breakpoints/_base.scss */
.image-viewer .header-buttons {
  bottom: 25px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  text-align: center;
  width: 100%;
  z-index: 9;
}

/* line 427, ../scss/breakpoints/_base.scss */
.button {
  font-size: 0.8em;
  border: 2px solid #FFFFFF;
  color: #fff;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 2.5em;
  margin: 0 auto;
  max-width: 11em;
  text-align: center;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.2);
}

/* line 442, ../scss/breakpoints/_base.scss */
.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
  background: #292618;
}
/* line 450, ../scss/breakpoints/_base.scss */
.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
}
/* line 458, ../scss/breakpoints/_base.scss */
.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
}
/* line 463, ../scss/breakpoints/_base.scss */
.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
  opacity: 0.8;
}

/* line 472, ../scss/breakpoints/_base.scss */
.content {
  background-image: url(/img/bkgd-pattern-fade.jpg);
  background-repeat: repeat-x;
  background-size: auto;
  background-position: 0 0;
}

/* line 479, ../scss/breakpoints/_base.scss */
.grey-bkgd {
  background: url(/img/rustic-bkgd.jpg);
  background-position: 0 -200px;
  background-repeat: repeat;
  margin-top: 2em;
  margin-bottom: 2em;
  padding: 1.5em 0;
}

/* line 488, ../scss/breakpoints/_base.scss */
.testimonials {
  background: url(/img/rustic-bkgd.jpg);
  background-position: 0 -200px;
  background-repeat: repeat;
  min-height: 22em;
  width: 100%;
  margin: 3em 0;
  padding: 3em 0;
  overflow: hidden;
}

/* line 499, ../scss/breakpoints/_base.scss */
#tml-container div {
  display: none;
}
/* line 501, ../scss/breakpoints/_base.scss */
#tml-container div img {
  width: 80px;
  height: auto;
  border: 3px solid #FFFFFF;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  text-align: center;
  display: block;
  margin: 0 auto 0.3em auto;
}
/* line 512, ../scss/breakpoints/_base.scss */
#tml-container div span {
  margin-top: 0.1em;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 0.8em;
  text-align: center;
}
/* line 520, ../scss/breakpoints/_base.scss */
#tml-container div p {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  text-align: center;
  color: #777777;
}

/*********************
    	BUTTONS
*********************/
/* line 534, ../scss/breakpoints/_base.scss */
.two-split {
  width: 100%;
  clear: both;
  overflow: auto;
  margin: 2em 0;
}

/* line 541, ../scss/breakpoints/_base.scss */
.first-button,
.second-button {
  font-size: 0.9em;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  border: 3px solid #FFFFFF;
  background: #FFFFFF;
  line-height: 2.5em;
  float: left;
  text-align: center;
  text-transform: none;
  width: 48%;
  display: block;
  margin: 0;
  max-width: 13.5em;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/* line 564, ../scss/breakpoints/_base.scss */
.first-button {
  border: 3px solid #fbb111;
  color: #fbb111;
}

/* line 569, ../scss/breakpoints/_base.scss */
.second-button {
  border: 3px solid #999999;
  color: #999999;
  margin-left: 3.5%;
}

/* line 575, ../scss/breakpoints/_base.scss */
.warning {
  color: #da4104;
}

/**************************************
        COST CALCULATOR STYLES
**************************************/
/* line 585, ../scss/breakpoints/_base.scss */
form {
  text-align: center;
  margin-bottom: 3em;
}
/* line 588, ../scss/breakpoints/_base.scss */
form .fa-asterisk {
  color: #da4104;
  font-size: 0.5em;
  vertical-align: 7px;
}
/* line 593, ../scss/breakpoints/_base.scss */
form p.fineprint {
  color: #999999;
  font-size: 70%;
  line-height: 1.5em;
}

/* line 600, ../scss/breakpoints/_base.scss */
input[type="radio"],
input[type="checkbox"] {
  display: none;
}

/* line 605, ../scss/breakpoints/_base.scss */
input[type="radio"] + span:before {
  font-family: "fontawesome";
  padding-right: 7px;
  font-size: 1em;
  color: #333333;
}

/* line 612, ../scss/breakpoints/_base.scss */
input[type="checkbox"] + span:before {
  font-family: "fontawesome";
  padding-left: 7px;
  font-size: 1em;
  color: #333333;
}

/* line 619, ../scss/breakpoints/_base.scss */
input[type="radio"] + span:before {
  content: "\f10c";
  /* circle-blank */
}

/* line 624, ../scss/breakpoints/_base.scss */
input[type="radio"]:checked + span:before {
  content: "\f111";
  /* circle */
}

/* line 629, ../scss/breakpoints/_base.scss */
input[type="checkbox"] + span:before {
  content: "\f096";
  /* check-empty */
}

/* line 634, ../scss/breakpoints/_base.scss */
input[type="checkbox"]:checked + span:before {
  content: "\f046";
  /* check */
}

/* line 639, ../scss/breakpoints/_base.scss */
label.radiolabel {
  float: none;
  display: block;
  margin-bottom: 1em;
  text-align: left;
  margin: 0 auto;
}

/* line 647, ../scss/breakpoints/_base.scss */
.type-radio label {
  width: 4em;
}

/* line 651, ../scss/breakpoints/_base.scss */
.inches-radio label {
  width: 3em;
}

/* line 655, ../scss/breakpoints/_base.scss */
#submit {
  float: none;
  text-align: center;
  margin: 0 auto;
}
/* line 659, ../scss/breakpoints/_base.scss */
#submit.recalculate {
  margin-bottom: 1.5em;
  opacity: 0.4;
}

/* line 665, ../scss/breakpoints/_base.scss */
input:focus,
button:focus {
  outline: 0;
}

/* line 670, ../scss/breakpoints/_base.scss */
#totalPrice {
  display: none;
  text-align: center;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: #fbb111;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 683, ../scss/breakpoints/_base.scss */
#totalPrice span {
  display: block;
  text-align: center;
  font-size: 3em;
  line-height: 1.2em;
}

/* line 691, ../scss/breakpoints/_base.scss */
#errorInForm {
  display: none;
  font-weight: bold;
  margin-top: 1em;
}

/**************************************
        FAQ SECTION STYLES
**************************************/
/* line 702, ../scss/breakpoints/_base.scss */
.faq-section {
  margin-left: -5.5%;
  margin-top: 2em;
  margin-bottom: 5em;
}

/* line 708, ../scss/breakpoints/_base.scss */
.faq-div {
  cursor: pointer;
  padding: 0;
  margin: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* line 717, ../scss/breakpoints/_base.scss */
.faq-div:nth-child(2n+1) {
  border-left: 5px solid #fbb111;
}
/* line 719, ../scss/breakpoints/_base.scss */
.faq-div:nth-child(2n+1):hover {
  border-left: 10px solid #fbb111;
}
/* line 723, ../scss/breakpoints/_base.scss */
.faq-div:nth-child(2n) {
  border-left: 5px solid #999999;
}
/* line 725, ../scss/breakpoints/_base.scss */
.faq-div:nth-child(2n):hover {
  border-left: 10px solid #999999;
}
/* line 729, ../scss/breakpoints/_base.scss */
.faq-div:hover {
  margin-right: -4px;
  background-color: #FBFBFB;
}
/* line 733, ../scss/breakpoints/_base.scss */
.faq-div:last-child {
  border-bottom: 1px solid #EEEEEE;
}
/* line 737, ../scss/breakpoints/_base.scss */
.faq-div.visible {
  background: #f9f9f9;
  background: -moz-linear-gradient(left, #f9f9f9 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #f9f9f9), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, #f9f9f9 0%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, #f9f9f9 0%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(left, #f9f9f9 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, #f9f9f9 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#ffffff', GradientType=1);
}

/* line 749, ../scss/breakpoints/_base.scss */
p.question {
  font-weight: 700;
  padding: 1.3em 0.5em 1.3em 1em;
  margin: 0;
  border-top: 1px solid #EEEEEE;
}

/* line 756, ../scss/breakpoints/_base.scss */
p.answer {
  margin: 0;
  padding: 0 0.5em 1.5em 1.5em;
}

/**************************************
        GALLERY PAGE STYLES
**************************************/
/* line 766, ../scss/breakpoints/_base.scss */
.center-fb {
  margin: 0.2em auto 0.8em;
  text-align: center;
  min-height: 1.5em;
}

/* line 772, ../scss/breakpoints/_base.scss */
.fb-like {
  width: 150px;
  margin: 0 auto;
  text-align: center;
}

/* line 779, ../scss/breakpoints/_base.scss */
.big-wrapper img {
  margin: 0.4em 0;
}

/**************************************
        CONTACT PAGE STYLES
**************************************/
/* line 789, ../scss/breakpoints/_base.scss */
.contact-viewer {
  height: 19em;
  background-image: url("/img/contact-map.jpg");
  background-position: 56% 58%;
  background-size: 400% auto;
  width: 100%;
  -webkit-filter: grayscale(0.2);
  filter: grayscale(0.2);
}

/* line 799, ../scss/breakpoints/_base.scss */
.contact-email .second-button {
  font-size: 0.7em;
  line-height: 3.3em;
  width: 48%;
  max-width: 18em;
}

/* line 806, ../scss/breakpoints/_base.scss */
.montreal-business {
  width: 100%;
  border: 2px solid #EEE;
  padding: 1em 2em 2em;
  margin: 1em 0 2em 0;
}
/* line 811, ../scss/breakpoints/_base.scss */
.montreal-business a {
  color: #fbb111;
  font-weight: bold;
  text-decoration: none;
  display: block;
}

/* line 819, ../scss/breakpoints/_base.scss */
.contact-footer {
  margin: 2em 0 3em;
}
/* line 821, ../scss/breakpoints/_base.scss */
.contact-footer h2 {
  text-align: center;
}
/* line 824, ../scss/breakpoints/_base.scss */
.contact-footer p.center {
  text-align: center;
  margin: 0.5em 0 1em 0;
}
/* line 829, ../scss/breakpoints/_base.scss */
.contact-footer .email-us {
  margin-top: 1em;
}
/* line 832, ../scss/breakpoints/_base.scss */
.contact-footer .call-or-text,
.contact-footer .email-us {
  text-align: center;
}
/* line 835, ../scss/breakpoints/_base.scss */
.contact-footer .call-or-text p,
.contact-footer .email-us p {
  margin: 0 0 -0.4em 0;
}
/* line 838, ../scss/breakpoints/_base.scss */
.contact-footer .call-or-text a,
.contact-footer .email-us a {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 1.5em;
  color: #fbb111;
  text-decoration: none;
}
/* line 846, ../scss/breakpoints/_base.scss */
.contact-footer .mailchimp-box {
  border: 9px double #fbb111;
  margin: 1em auto 3em;
  padding: 1em;
}
/* line 850, ../scss/breakpoints/_base.scss */
.contact-footer .mailchimp-box form {
  margin-left: 0 !important;
  margin-bottom: 1em;
}
/* line 853, ../scss/breakpoints/_base.scss */
.contact-footer .mailchimp-box form input {
  max-width: 400px;
  margin: 0.3em auto 1em;
}
/* line 858, ../scss/breakpoints/_base.scss */
.contact-footer .mailchimp-box #mc-embedded-subscribe {
  float: none !important;
  margin: 0 auto;
  text-align: center;
  max-width: 14em;
}

/**************************************
        FOOTER  STYLES
**************************************/
/* line 872, ../scss/breakpoints/_base.scss */
.footer-container {
  background-image: url("/img/footer.jpg");
  background-position: 50% center;
  background-size: cover;
  height: 14em;
  text-align: center;
  margin-top: 4em;
}
/* line 879, ../scss/breakpoints/_base.scss */
.footer-container p {
  color: #FFFFFF;
  text-align: center;
  margin: 0;
}
/* line 884, ../scss/breakpoints/_base.scss */
.footer-container p.credits {
  color: #FFFFFF;
  font-size: 0.8em;
  font-weight: 600;
}
/* line 888, ../scss/breakpoints/_base.scss */
.footer-container p.credits a {
  font-weight: 600;
}
/* line 892, ../scss/breakpoints/_base.scss */
.footer-container p.copywrite {
  font-size: 0.6em;
}

/* line 897, ../scss/breakpoints/_base.scss */
.big-footer-logo {
  background-image: url("/img/big-logo-white.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 16em auto;
  height: 7.5em;
  margin: 0 auto 3em;
  width: 100%;
}

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: 481px and Up Stylesheet
  
  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.
  
  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.
  
  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
  /*********************
  NAVIGATION STYLES
  *********************/
  /* line 31, ../scss/breakpoints/_481up.scss */
  .contact-viewer {
    height: 24em;
    background-size: 280% auto;
  }
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Tablet & Small Desktop Stylesheet
  
  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!
  
  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /* line 21, ../scss/breakpoints/_768up.scss */
  .wrapper, .big-wrapper {
    max-width: 650px;
  }

  /* line 26, ../scss/breakpoints/_768up.scss */
  .only-m {
    display: none !important;
  }

  /* line 29, ../scss/breakpoints/_768up.scss */
  .only-d {
    display: block !important;
  }

  /* line 35, ../scss/breakpoints/_768up.scss */
  h1 {
    font-size: 3em;
    padding-top: 1.3em;
  }

  /* line 40, ../scss/breakpoints/_768up.scss */
  h2 {
    font-size: 2.73em;
  }

  /* line 45, ../scss/breakpoints/_768up.scss */
  p {
    font-size: 1em;
    font-weight: 500;
    line-height: 1.8em;
  }
  /* line 50, ../scss/breakpoints/_768up.scss */
  p b {
    font-weight: 600;
  }
  /* line 54, ../scss/breakpoints/_768up.scss */
  p a {
    font-weight: 600;
  }
  /* line 58, ../scss/breakpoints/_768up.scss */
  p small {
    font-weight: 500;
  }

  /* line 66, ../scss/breakpoints/_768up.scss */
  p a, .call-or-text a, .email-us a {
    display: inline-block;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  /* line 75, ../scss/breakpoints/_768up.scss */
  p a:after, .call-or-text a:after, .email-us a:after {
    content: '';
    display: block;
    height: 3px;
    width: 0;
    margin-top: -3px;
    background: transparent;
    -webkit-transition: width 0.5s ease, background-color 0.5s ease;
    -moz-transition: width 0.5s ease, background-color 0.5s ease;
    -ms-transition: width 0.5s ease, background-color 0.5s ease;
    -o-transition: width 0.5s ease, background-color 0.5s ease;
    transition: width 0.5s ease, background-color 0.5s ease;
  }
  /* line 90, ../scss/breakpoints/_768up.scss */
  p a:hover:after, .call-or-text a:hover:after, .email-us a:hover:after {
    width: 100%;
    background: #fbb111;
  }

  /* line 103, ../scss/breakpoints/_768up.scss */
  .header-container {
    width: 200px;
    height: 110%;
    background-color: #fbb111;
  }
  /* line 108, ../scss/breakpoints/_768up.scss */
  .header-container header {
    height: 110px;
  }
  /* line 112, ../scss/breakpoints/_768up.scss */
  .header-container .menu-btn {
    display: none;
  }

  /* line 118, ../scss/breakpoints/_768up.scss */
  main.container {
    margin-left: 200px;
    margin-top: 0;
    width: auto;
  }

  /* line 124, ../scss/breakpoints/_768up.scss */
  .content {
    background-position: 0 0;
  }

  /* line 128, ../scss/breakpoints/_768up.scss */
  #logo {
    background: #FFFFFF;
    display: block;
    float: none;
    height: 110px;
    margin: 0;
    padding: 40px 20px;
    width: 200px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  /* line 142, ../scss/breakpoints/_768up.scss */
  #logo:hover {
    -webkit-box-shadow: 0 0 15px rgba(100, 100, 100, 0.3) inset;
    -moz-box-shadow: 0 0 15px rgba(100, 100, 100, 0.3) inset;
    box-shadow: 0 0 15px rgba(100, 100, 100, 0.3) inset;
  }

  /*********************
  NAVIGATION STYLES
  *********************/
  /* line 154, ../scss/breakpoints/_768up.scss */
  .nav {
    display: none;
  }

  /* line 158, ../scss/breakpoints/_768up.scss */
  .nav-copy {
    border-bottom: 0;
    margin: 0;
    display: block;
    overflow-y: auto;
    background-color: #fbb111;
    /* end .menu li */
  }
  /* line 166, ../scss/breakpoints/_768up.scss */
  .nav-copy ul {
    margin: 1em 0 0 0;
  }
  /* line 172, ../scss/breakpoints/_768up.scss */
  .nav-copy li a {
    display: block;
    color: #392f27;
    text-decoration: none;
    font-size: 2em;
    text-align: center;
    line-height: 1.2em;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    /*
    remember this is for mobile ONLY, so there's no need
    to even declare hover styles here, you can do it in
    the style.scss file where it's relevant. We want to
    keep this file as small as possible!
    */
  }
  /* line 190, ../scss/breakpoints/_768up.scss */
  .nav-copy li a:hover, .nav-copy li a:focus {
    color: #FFFFFF;
  }
  /* line 199, ../scss/breakpoints/_768up.scss */
  .nav-copy ul.social-media {
    clear: both;
    overflow: auto;
    width: 8em;
    margin: 0.5em auto;
  }
  /* line 205, ../scss/breakpoints/_768up.scss */
  .nav-copy ul.social-media li {
    float: left;
    display: inline-block;
    width: 33.1%;
    text-align: center;
  }
  /* line 211, ../scss/breakpoints/_768up.scss */
  .nav-copy ul.social-media li a {
    display: inline-block;
    color: #db9600;
    text-align: center;
  }
  /* line 215, ../scss/breakpoints/_768up.scss */
  .nav-copy ul.social-media li a i {
    font-size: 0.9em;
  }
  /* line 219, ../scss/breakpoints/_768up.scss */
  .nav-copy ul.social-media li a:hover {
    color: #392f27;
  }
  /* line 227, ../scss/breakpoints/_768up.scss */
  .nav-copy ul.more-links {
    margin: 0.6em 0 0 0;
  }
  /* line 232, ../scss/breakpoints/_768up.scss */
  .nav-copy .language {
    color: #FFFFFF;
  }

  /* end .nav */
  /* line 241, ../scss/breakpoints/_768up.scss */
  #active-mobile {
    color: #db9600;
    text-decoration: line-through;
  }

  /*********************
      IMAGE SLIDER
  *********************/
  /* line 256, ../scss/breakpoints/_768up.scss */
  .home-viewer .rslides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
    max-height: 30em;
  }
  /* line 265, ../scss/breakpoints/_768up.scss */
  .home-viewer .rslides li {
    width: 100%;
    left: 0;
    top: 0;
  }
  /* line 271, ../scss/breakpoints/_768up.scss */
  .home-viewer .rslides img {
    height: auto;
    float: left;
    width: 100%;
  }

  /* line 285, ../scss/breakpoints/_768up.scss */
  #tml-container div {
    display: none;
  }
  /* line 289, ../scss/breakpoints/_768up.scss */
  #tml-container div img {
    width: 7em;
    text-align: left;
    display: block;
    margin: 1em 0 0 3em;
  }
  /* line 296, ../scss/breakpoints/_768up.scss */
  #tml-container div span {
    margin: -4.0em 0 4em 11.5em;
    font-size: 1em;
    text-align: left;
  }
  /* line 302, ../scss/breakpoints/_768up.scss */
  #tml-container div p {
    font-size: 1.1em;
    text-align: left;
    color: #999999;
    margin: 0 1em;
  }

  /* line 314, ../scss/breakpoints/_768up.scss */
  .grey-bkgd {
    margin-top: 3em;
    margin-bottom: 4em;
    padding: 2em 0;
  }

  /* line 323, ../scss/breakpoints/_768up.scss */
  .contact-footer {
    margin: 4em 0 4em;
    overflow: auto;
    clear: both;
  }
  /* line 328, ../scss/breakpoints/_768up.scss */
  .contact-footer h2 {
    text-align: center;
  }
  /* line 332, ../scss/breakpoints/_768up.scss */
  .contact-footer p.center {
    text-align: center;
    margin: 0;
  }
  /* line 337, ../scss/breakpoints/_768up.scss */
  .contact-footer .clearfix {
    margin-top: 2em;
    max-width: 31.2em;
    margin-left: auto;
    margin-right: auto;
  }
  /* line 344, ../scss/breakpoints/_768up.scss */
  .contact-footer .call-or-text, .contact-footer .email-us {
    text-align: left;
  }
  /* line 347, ../scss/breakpoints/_768up.scss */
  .contact-footer .call-or-text p, .contact-footer .email-us p {
    margin: 0 0 -0.4em 0;
  }
  /* line 351, ../scss/breakpoints/_768up.scss */
  .contact-footer .call-or-text a, .contact-footer .email-us a {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 1.5em;
    color: #fbb111;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  /* line 367, ../scss/breakpoints/_768up.scss */
  .contact-footer .call-or-text {
    float: left;
    margin-left: 0.7em;
  }
  /* line 372, ../scss/breakpoints/_768up.scss */
  .contact-footer .email-us {
    margin-top: 0;
    float: left;
    margin-left: 4.5em;
  }
  /* line 379, ../scss/breakpoints/_768up.scss */
  .contact-footer .mailchimp-box {
    margin: 1em auto 4em;
    padding: 2em;
  }

  /*********************
      	BUTTONS
  *********************/
  /* line 395, ../scss/breakpoints/_768up.scss */
  .three-split {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    clear: both;
    overflow: auto;
    max-width: 45em;
    padding: 5px 0 0 0;
  }
  /* line 404, ../scss/breakpoints/_768up.scss */
  .three-split a.button {
    border: 3px solid #FFFFFF;
    width: 29%;
    margin: 0 2%;
    font-size: 1em;
    display: block;
    float: left;
    max-width: 13em;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  /* line 418, ../scss/breakpoints/_768up.scss */
  .three-split a.button:hover {
    background: rgba(0, 0, 0, 0.5);
    margin-top: -3px;
  }

  /* line 428, ../scss/breakpoints/_768up.scss */
  .first-button, .second-button {
    font-size: 1em;
  }

  /* line 434, ../scss/breakpoints/_768up.scss */
  .first-button:hover {
    color: #FFFFFF;
    background: #fbb111;
  }

  /* line 440, ../scss/breakpoints/_768up.scss */
  .second-button:hover {
    color: #FFFFFF;
    background: #999999;
  }

  /**************************************
          COST CALCULATOR STYLES
  **************************************/
  /* line 460, ../scss/breakpoints/_768up.scss */
  form {
    text-align: left;
    margin-left: 2em;
    margin-bottom: 3em;
  }
  /* line 465, ../scss/breakpoints/_768up.scss */
  form p {
    margin-top: 1.5em;
  }
  /* line 469, ../scss/breakpoints/_768up.scss */
  form .clearfix {
    position: relative;
  }

  /* line 475, ../scss/breakpoints/_768up.scss */
  label.radiolabel {
    float: left;
    display: block;
    text-align: left;
    margin: 0 3em 1em 0;
  }

  /* line 482, ../scss/breakpoints/_768up.scss */
  .type-radio label, .inches-radio label {
    width: auto;
  }

  /* line 486, ../scss/breakpoints/_768up.scss */
  #submit {
    text-align: center;
    margin: 0;
  }

  /* line 491, ../scss/breakpoints/_768up.scss */
  #totalPrice {
    display: none;
    text-align: left;
  }
  /* line 495, ../scss/breakpoints/_768up.scss */
  #totalPrice span {
    text-align: left;
    font-size: 3em;
    line-height: 1.2em;
  }

  /**************************************
          FAQ SECTION STYLES
  **************************************/
  /* line 512, ../scss/breakpoints/_768up.scss */
  .faq-section {
    margin-left: 0;
    margin-top: 3em;
  }

  /* line 518, ../scss/breakpoints/_768up.scss */
  p.question {
    font-size: 1.2em;
    padding: 1em 0.5em 0.9em 1.5em;
    line-height: 1.5em;
  }

  /* line 524, ../scss/breakpoints/_768up.scss */
  p.answer {
    padding: 0 0.5em 1em 2em;
  }

  /**************************************
         CONTACT PAGE STYLES
  **************************************/
  /* line 536, ../scss/breakpoints/_768up.scss */
  .montreal-business {
    width: 64%;
    padding: 0.7em 2em 2em;
  }
  /* line 542, ../scss/breakpoints/_768up.scss */
  .montreal-business a:hover {
    text-decoration: underline;
  }

  /* line 551, ../scss/breakpoints/_768up.scss */
  .contact-viewer {
    height: 25em;
    background-image: url(/img/contact-map.jpg);
    background-position: 60% 55%;
    background-size: auto;
    -webkit-filter: grayscale(0.3);
    filter: grayscale(0.3);
  }

  /* line 560, ../scss/breakpoints/_768up.scss */
  .contact-email .second-button {
    font-size: 1em;
    line-height: 2.5em;
    width: 48%;
    max-width: 13.5em;
  }

  /**************************************
          FOOTER  STYLES
  **************************************/
  /* line 576, ../scss/breakpoints/_768up.scss */
  .footer-container {
    background-position: 50% center;
    height: 17em;
    margin-top: 5em;
  }
  /* line 581, ../scss/breakpoints/_768up.scss */
  .footer-container p.copywrite {
    font-size: 0.7em;
  }

  /* line 587, ../scss/breakpoints/_768up.scss */
  .big-footer-logo {
    background-size: 20em auto;
    height: 10em;
    margin: 0 auto 3em;
  }
}
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.
  
  ******************************************************************/
  /* line 18, ../scss/breakpoints/_1030up.scss */
  .wrapper {
    max-width: 700px;
  }

  /* line 23, ../scss/breakpoints/_1030up.scss */
  .big-wrapper {
    max-width: 850px;
  }

  /* line 28, ../scss/breakpoints/_1030up.scss */
  h1 {
    font-size: 3.9em;
  }

  /* line 34, ../scss/breakpoints/_1030up.scss */
  h2 {
    font-size: 3.5em;
  }

  /* line 38, ../scss/breakpoints/_1030up.scss */
  p {
    font-size: 1em;
    font-weight: 500;
    line-height: 1.8em;
  }

  /* line 47, ../scss/breakpoints/_1030up.scss */
  #logo {
    background: #FFFFFF;
    display: block;
    float: none;
    height: 150px;
    margin: 0;
    padding: 50px 30px;
    width: 300px;
  }

  /* line 59, ../scss/breakpoints/_1030up.scss */
  .header-container {
    width: 300px;
  }
  /* line 62, ../scss/breakpoints/_1030up.scss */
  .header-container header {
    height: 160px;
  }

  /* line 69, ../scss/breakpoints/_1030up.scss */
  main.container {
    margin-left: 300px;
  }

  /* line 75, ../scss/breakpoints/_1030up.scss */
  .nav-copy {
    /* end .menu li */
  }
  /* line 79, ../scss/breakpoints/_1030up.scss */
  .nav-copy li a {
    font-size: 2.3em;
    line-height: 1.2em;
  }
  /* line 88, ../scss/breakpoints/_1030up.scss */
  .nav-copy ul.social-media {
    width: 9em;
    margin: 0.6em auto;
  }
  /* line 92, ../scss/breakpoints/_1030up.scss */
  .nav-copy ul.social-media li {
    width: 33.1%;
  }
  /* line 103, ../scss/breakpoints/_1030up.scss */
  .nav-copy ul.more-links {
    margin: 0.6em 0 0 0;
  }

  /* end .nav */
  /*********************
      IMAGE SLIDER
  *********************/
  /* line 121, ../scss/breakpoints/_1030up.scss */
  .image-viewer .header-buttons {
    bottom: 50px;
  }

  /* line 129, ../scss/breakpoints/_1030up.scss */
  .home-viewer .rslides {
    max-height: 90vh;
    min-height: 450px;
  }
  /* line 133, ../scss/breakpoints/_1030up.scss */
  .home-viewer .rslides li {
    width: 100%;
    left: 0;
    top: 0;
  }
  /* line 139, ../scss/breakpoints/_1030up.scss */
  .home-viewer .rslides img {
    height: auto;
    float: left;
    width: 100%;
    margin-top: -5%;
  }

  /**************************************
         CONTACT PAGE STYLES
  **************************************/
  /* line 160, ../scss/breakpoints/_1030up.scss */
  .contact-viewer {
    height: 30em;
    background-size: auto;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Super Large Monitor Stylesheet
  
  You can add some advanced styles here if you like. This kicks in
  on larger screens.
  
  ******************************************************************/
  /* line 14, ../scss/breakpoints/_1240up.scss */
  .wrapper {
    max-width: 830px;
  }

  /* line 18, ../scss/breakpoints/_1240up.scss */
  h1 {
    font-size: 4.8em;
  }

  /* line 22, ../scss/breakpoints/_1240up.scss */
  p {
    font-size: 1.1em;
  }

  /***********************************
  	        IMAGE GALLERY      
  ************************************/
  /* line 33, ../scss/breakpoints/_1240up.scss */
  .big-wrapper {
    max-width: 1400px;
  }
  /* line 36, ../scss/breakpoints/_1240up.scss */
  .big-wrapper img {
    margin-bottom: 1%;
  }

  /* line 41, ../scss/breakpoints/_1240up.scss */
  .twoByTwo {
    clear: both;
    overflow: auto;
  }
  /* line 45, ../scss/breakpoints/_1240up.scss */
  .twoByTwo img {
    float: left;
    width: 49%;
  }
  /* line 49, ../scss/breakpoints/_1240up.scss */
  .twoByTwo img:first-child {
    margin-right: 2%;
  }

  /**************************************
         CONTACT PAGE STYLES
  **************************************/
  /* line 63, ../scss/breakpoints/_1240up.scss */
  .contact-viewer {
    height: 35em;
    background-size: auto;
  }
}
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Retina Screens & Devices Stylesheet
  
  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.
  
  ******************************************************************/
  /* 
  
  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:
  
  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }
  
  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:
  
  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }
  
  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 
  
  */
  /* line 46, ../scss/breakpoints/_2x.scss */
  .content {
    background-image: url(/img/bkgd-pattern-fade@2x.jpg);
    background-repeat: repeat-x;
    background-size: auto;
    background-position: 0px -100px;
  }
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Print Stylesheet
  
  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.
  
  ******************************************************************/
  /* line 13, ../scss/partials/_print.scss */
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* line 21, ../scss/partials/_print.scss */
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  /* line 26, ../scss/partials/_print.scss */
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  /* line 31, ../scss/partials/_print.scss */
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 36, ../scss/partials/_print.scss */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  /* line 42, ../scss/partials/_print.scss */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 47, ../scss/partials/_print.scss */
  thead {
    display: table-header-group;
  }

  /* line 51, ../scss/partials/_print.scss */
  tr, img {
    page-break-inside: avoid;
  }

  /* line 55, ../scss/partials/_print.scss */
  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  /* line 63, ../scss/partials/_print.scss */
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 68, ../scss/partials/_print.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }

  /* line 74, ../scss/partials/_print.scss */
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
