/*
Theme Name: Gather Marketplace
Version: 0.1
*/

@charset "UTF-8";/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the top of the
* compiled file, but it's generally better to create a new file per style scope.
*



*/

/****************************************************************************************************


0.  SCSS Variables

These are variables made accessible to all requested style assets. They are semantically named
for ease of use. "Layout Sizing" variables are used for the Susy Grid gem which calculates the
master grid sizes (for example, when you use mixins like "@include span-columns()"). The
"Breakpoint" variables are simply semantic mixins for media queries. This makes managing various
screen format styles much easier. Everything else (colors/typography) should be
self-explanatory.


1.  Primary Cascade

These are the most universal styles which are applied to the most basic HTML elements. They
are intended to be few and very generic by their very nature.


2.  Utility Classes and Markup

These are some basic "toolkit" classes for use throughout the app to achieve some basic
functionality unique to our app. For instance, the whole site works on a paradigm of "stacked"
sections that all need to respond a certain way for various viewports. As such, we have included
utility classes, .ns-section-main and .ns-section-wrapper which address this need. They are
highly recyclable.


3.  Main Page Templating

These are page sections which require their own markup. They often are fixtures that appear on
generalized page templates. For example, the navigation, footer, and demo form.


* NOTES *

- Z-indices are tracked at the bottom of the SCSS document for ease of upkeep. Keeping the z-index
"stack" all in one place makes managing their stacking easier. The only exception to this includes
SCSS plugins, like "modals" which have been included from the "components" folder. We did not want
to overwrite the plugin source code, but rather override it - for obvious maintainability reasons.

- Documentation is also available below, accompanying particular discrete code blocks.

- In general, we use floats to position things, as the grid uses floats.

- In general, style rules are organized as follows:
1. Display property? If applicable.
2. Visibility property? If applicable.
3. Float property? If applicable.
4. Things that affect box model (e.g. widths, heights, paddings, etc.).
5. Ornamental styles, such as font styles.
6. Position property?
7. Things that affect positioning differently when relative/absolute/statically positioned (e.g.
left, top, etc.).
8. Mixins - UNLESS the mixin order needs to be elsewhere in the style rule because it is being
partially overriden by other styles.
9. Media queries.


****************************************************************************************************/
/****************************************************************************************************
0.  SCSS Variables
****************************************************************************************************/
/* Color Theme */
/************************************************/
/* Layout Sizing */
/************************************************/
/* Media Size Breakpoints */
/************************************************/
/* Susy Grid Settings */
/************************************************/
/* Font Stacks */
/************************************************/
/* Import Compass Assets */
/************************************************/
/* line 17, /Users/logan/.rvm/gems/ruby-2.0.0-p451/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

/* line 22, /Users/logan/.rvm/gems/ruby-2.0.0-p451/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
html {
    line-height: 1;
}

/* line 24, /Users/logan/.rvm/gems/ruby-2.0.0-p451/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
/*
    ol, ul {
        list-style: none;
    }
*/

/* line 26, /Users/logan/.rvm/gems/ruby-2.0.0-p451/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* line 28, /Users/logan/.rvm/gems/ruby-2.0.0-p451/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}

/* line 30, /Users/logan/.rvm/gems/ruby-2.0.0-p451/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
    quotes: none;
}
/* line 103, /Users/logan/.rvm/gems/ruby-2.0.0-p451/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none;
}

/* line 32, /Users/logan/.rvm/gems/ruby-2.0.0-p451/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
a img {
    border: none;
}

/* line 116, /Users/logan/.rvm/gems/ruby-2.0.0-p451/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
    display: block;
}

#ns-section-tos h1, #ns-section-terms h1, #ns-section-privacy-policy h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

#ns-section-tos h2, #ns-section-terms h2, #ns-section-privacy-policy h2 {
    font-size: 20px;
    font-weight: 500;
    margin: 15px 0 10px 0;
}

#ns-section-tos h5, #ns-section-terms h5, #ns-section-privacy-policy h5 {
    font-size: 14px;
    font-weight: 300;
    margin: 15px 0 0 0;
}

#ns-section-tos p, #ns-section-terms p, #ns-section-privacy-policy p {
    line-height: 24px;
    margin-bottom: 10px;
}

#ns-section-tos p:last-child, #ns-section-terms p:last-child, #ns-section-privacy-policy p:last-child {
    line-height: 24px;
    margin-bottom: 0px;
}

#ns-section-terms ol, #ns-section-privacy-policy ol {
    list-style: square outside none;
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#ns-section-tos ol {
    counter-reset: item;
}

#ns-section-tos li {
    display: block;
}

#ns-section-tos li:before {
    content: counters(item, ".") " ";
    counter-increment: item;
    width: 0px;
    position: relative;
    right: 35px;
    display: inline-block;
    font-weight: 700;
}

#ns-section-tos ol {
    margin-left: 35px;
}

#ns-section-tos ol ol > li:before {
    font-weight: 400;
}


/* Import Custom Assets */
/************************************************/
/* Buttons */
/************************************************/
/* line 9, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_button.css.scss */
.ns-button,
input[type="submit"],
input[type="button"],
input[type="reset"],
button {
    display: inline-block;
    padding: 9px 20px 11px 20px;
    margin: 0;
    border: none;
    color: white;
    background: #3ac0f0;
    font-size: 15px;
    line-height: 30px;
    /*font-family: "Adelle Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;*/
    font-family: "Dosis", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}

/* line 33, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_button.css.scss */
.ns-button:active,
/*input[type="submit"]:active,*/
input[type="button"]:active,
input[type="reset"]:active,
button:active {
    position: relative;
    top: 2px;
}

/* line 42, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_button.css.scss */
.ns-button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
button:hover {
    text-decoration: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=66);
    opacity: 0.66;
}

/* line 51, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_button.css.scss */
.ns-button:focus,
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
button:focus {
    outline: none;
}

/* line 59, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_button.css.scss */
.ns-button:before,
input[type="submit"]:before,
input[type="button"]:before,
input[type="reset"]:before,
button:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
}

/* line 72, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_button.css.scss */
.ns-button.ns-button-red,
input[type="submit"].ns-button-red,
input[type="button"].ns-button-red,
input[type="reset"].ns-button-red,
button.ns-button-red {
    background: #00365c;
    color: white;
}

/* line 81, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_button.css.scss */
.ns-button.ns-button-cta,
input[type="submit"].ns-button-cta,
input[type="button"].ns-button-cta,
input[type="reset"].ns-button-cta,
button.ns-button-cta {
    text-transform: uppercase;
    font-size: 36px;
    line-height: 50px;
    font-weight: 400;
    font-family: "Dosis", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

/* line 93, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_button.css.scss */
.ns-button.ns-button-line,
input[type="submit"].ns-button-line,
input[type="button"].ns-button-line,
input[type="reset"].ns-button-line,
button.ns-button-line {
    height: 34px;
    padding: 0 10px;
    border: 2px solid #3ac0f0;
    font-size: 13px;
    line-height: 30px;
    font-weight: bold;
    text-transform: uppercase;
    background: transparent;
    color: #3ac0f0;
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    -ms-border-radius: 27px;
    -o-border-radius: 27px;
    border-radius: 27px;
}

/* line 110, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_button.css.scss */
.ns-button.ns-button-special,
input[type="submit"].ns-button-special,
input[type="button"].ns-button-special,
input[type="reset"].ns-button-special,
button.ns-button-special {
    padding: 3px 20px 3px 20px;
    border: 2px solid #3ac0f0;
    background: transparent;
    color: #3ac0f0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

/* Forms */
/************************************************/
/* line 8, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_form.css.scss */
input,
textarea,
select,
label {
    display: inline-block;
    margin: 0;
    /*font-family: "Adelle Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;*/
    font-family: "Dosis", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 15px;
    line-height: 30px;
    color: #404040;
    -webkit-font-smoothing: antialiased;
}

/* line 18, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_form.css.scss */
label {
    padding: 6px 0 9px 0;
}

/* line 36, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_form.css.scss */
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select,
textarea {
    padding: 9px;
    border: 1px solid #e6e6e6;
    background: transparent;
    outline: 0px !important;
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}

/* line 60, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_form.css.scss */
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
select:focus,
textarea:focus {
    border-color: #3ac0f0;
}

/* line 73, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_form.css.scss */
form.ns-form-sbs,
form.ns-form-basic {
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}
/* line 75, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_form.css.scss */
form.ns-form-sbs .ns-form-row,
form.ns-form-basic .ns-form-row {
    margin: 0 0 20px 0;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}
/* line 78, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_form.css.scss */
form.ns-form-sbs .ns-form-row .ns-form-row-left,
form.ns-form-basic .ns-form-row .ns-form-row-left {
    width: 22%;
    float: left;
    margin-right: 4%;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 78, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_form.css.scss */
    form.ns-form-sbs .ns-form-row .ns-form-row-left,
    form.ns-form-basic .ns-form-row .ns-form-row-left {
        width: 100%;
    }
}
@media (max-width: 479px) {
    /* line 78, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_form.css.scss */
    form.ns-form-sbs .ns-form-row .ns-form-row-left,
    form.ns-form-basic .ns-form-row .ns-form-row-left {
        width: 100%;
    }
}
/* line 86, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_form.css.scss */
form.ns-form-sbs .ns-form-row .ns-form-row-left > label,
form.ns-form-basic .ns-form-row .ns-form-row-left > label {
    font-weight: 700;
    padding: 4px 9px 4px 9px;
}
/* line 91, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_form.css.scss */
form.ns-form-sbs .ns-form-row .ns-form-row-right,
form.ns-form-basic .ns-form-row .ns-form-row-right {
    width: 74%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 91, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_form.css.scss */
    form.ns-form-sbs .ns-form-row .ns-form-row-right,
    form.ns-form-basic .ns-form-row .ns-form-row-right {
        width: 100%;
    }
}
@media (max-width: 479px) {
    /* line 91, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_form.css.scss */
    form.ns-form-sbs .ns-form-row .ns-form-row-right,
    form.ns-form-basic .ns-form-row .ns-form-row-right {
        width: 100%;
    }
}
/* line 106, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_form.css.scss */
form.ns-form-sbs .ns-form-row .ns-form-row-right > input[type="date"], form.ns-form-sbs .ns-form-row .ns-form-row-right > input[type="datetime"],
form.ns-form-sbs .ns-form-row .ns-form-row-right > input[type="datetime-local"],
form.ns-form-sbs .ns-form-row .ns-form-row-right > input[type="email"], form.ns-form-sbs .ns-form-row .ns-form-row-right > input[type="month"],
form.ns-form-sbs .ns-form-row .ns-form-row-right > input[type="number"], form.ns-form-sbs .ns-form-row .ns-form-row-right > input[type="password"],
form.ns-form-sbs .ns-form-row .ns-form-row-right > input[type="search"], form.ns-form-sbs .ns-form-row .ns-form-row-right > input[type="tel"],
form.ns-form-sbs .ns-form-row .ns-form-row-right > input[type="text"], form.ns-form-sbs .ns-form-row .ns-form-row-right > input[type="time"],
form.ns-form-sbs .ns-form-row .ns-form-row-right > input[type="url"], form.ns-form-sbs .ns-form-row .ns-form-row-right > input[type="week"],
form.ns-form-sbs .ns-form-row .ns-form-row-right > select, form.ns-form-sbs .ns-form-row .ns-form-row-right > textarea,
form.ns-form-basic .ns-form-row .ns-form-row-right > input[type="date"],
form.ns-form-basic .ns-form-row .ns-form-row-right > input[type="datetime"],
form.ns-form-basic .ns-form-row .ns-form-row-right > input[type="datetime-local"],
form.ns-form-basic .ns-form-row .ns-form-row-right > input[type="email"],
form.ns-form-basic .ns-form-row .ns-form-row-right > input[type="month"],
form.ns-form-basic .ns-form-row .ns-form-row-right > input[type="number"],
form.ns-form-basic .ns-form-row .ns-form-row-right > input[type="password"],
form.ns-form-basic .ns-form-row .ns-form-row-right > input[type="search"],
form.ns-form-basic .ns-form-row .ns-form-row-right > input[type="tel"],
form.ns-form-basic .ns-form-row .ns-form-row-right > input[type="text"],
form.ns-form-basic .ns-form-row .ns-form-row-right > input[type="time"],
form.ns-form-basic .ns-form-row .ns-form-row-right > input[type="url"],
form.ns-form-basic .ns-form-row .ns-form-row-right > input[type="week"],
form.ns-form-basic .ns-form-row .ns-form-row-right > select,
form.ns-form-basic .ns-form-row .ns-form-row-right > textarea {
    width: 100%;
    padding: 4px 9px 4px 9px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/* line 113, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_form.css.scss */
form.ns-form-sbs .ns-form-row-submit,
form.ns-form-basic .ns-form-row-submit {
    margin: 0 0 20px 0;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}
/* line 120, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_form.css.scss */
form.ns-form-sbs .ns-form-row-submit > .ns-button,
form.ns-form-sbs .ns-form-row-submit > input[type="submit"],
form.ns-form-sbs .ns-form-row-submit > input[type="button"],
form.ns-form-sbs .ns-form-row-submit > input[type="reset"],
form.ns-form-sbs .ns-form-row-submit > button,
form.ns-form-basic .ns-form-row-submit > .ns-button,
form.ns-form-basic .ns-form-row-submit > input[type="submit"],
form.ns-form-basic .ns-form-row-submit > input[type="button"],
form.ns-form-basic .ns-form-row-submit > input[type="reset"],
form.ns-form-basic .ns-form-row-submit > button {
    font-weight: bold;
}

/* line 128, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_form.css.scss */
form.ns-form-basic .ns-form-row .ns-form-row-left {
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}
/* line 130, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_form.css.scss */
form.ns-form-basic .ns-form-row .ns-form-row-left > label {
    padding: 4px 0 4px 0;
}
/* line 134, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/shared/_form.css.scss */
form.ns-form-basic .ns-form-row .ns-form-row-right {
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}

/****************************************************************************************************
1.  Primary Cascade
****************************************************************************************************/
/* line 186, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
html {
    overflow-x: hidden;
}

/* line 190, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
body {
    width: 100%;
    /*font-family: "Adelle Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;*/
    font-family: "Dosis", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    color: #656b70;
    -webkit-font-smoothing: antialiased;
    background: white;
    overflow-x: hidden;
}

#ns-header-mobile {
    padding-top: 14px;
    display:block;
    margin:0 auto 0 auto;
    padding-right:30px;
}

/* line 204, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
h1.ns-header-basic {
    margin: 0 0 20px 0;
    font-family: "Dosis", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 72px;
    line-height: 80px;
    font-weight: 300;
    color: #464d55;
}

/* line 213, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
h2.ns-header-basic {
    margin: 0 0 20px 0;
    font-family: "Dosis", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 48px;
    line-height: 60px;
    font-weight: 400;
    color: #464d55;
}

/* line 222, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
h3.ns-header-basic {
    margin: 0 0 10px 0;
    font-family: "Dosis", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 24px;
    line-height: 35px;
    font-weight: 300;
    color: #464d55;
}

/* line 231, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
a {
    cursor: pointer;
    text-decoration: none;
    color: #3ac0f0;
}

/* line 236, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
a:hover {
    text-decoration: underline;
}

/* line 241, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
p.ns-paragraph-basic {
    margin: 0 0 10px 0;
}

/* line 245, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
strong {
    font-weight: 700;
}

/* line 248, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
em {
    font-style: italic;
}

/* line 257, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
hr {
    width: 100%;
    height: 1px;
    padding: 0;
    margin: 15px auto 24px auto;
    border: none;
    color: #e6e6e6;
    background: #e6e6e6;
}

/* line 268, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
hr.ns-line-short {
    width: 33%;
}

/****************************************************************************************************
2.  Utility Classes and Markup
****************************************************************************************************/
/* Scaffolding Tools */
/************************************************/
/* line 282, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.ns-section-main {
    display: inline-block;
    float: left;
    width: 100%;
}
/* line 286, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.ns-section-main > .ns-section-wrapper {
    display: block;
    padding: 0 20px;
    margin: 0 auto;
    *zoom: 1;
}
/* line 22, /Users/logan/.rvm/gems/ruby-2.0.0-p451/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
.ns-section-main > .ns-section-wrapper:after {
    content: "\0020";
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}
@media (min-width: 1200px) {
    /* line 286, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    .ns-section-main > .ns-section-wrapper {
        width: 1160px;
    }
}

/****************************************************************************************************
3.  Main Page Templating
****************************************************************************************************/
/* Main Page Section: Navigation */
/************************************************/
/* line 307, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
nav.ns-section-main {
    height: 60px;
    padding: 25px 0 0 0;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-timing-function: ease-in;
    -moz-transition-timing-function: ease-in;
    -o-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    -webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    -o-transition-delay: 0;
    transition-delay: 0;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 307, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    nav.ns-section-main {
        width: 100%;
        height: 100%;
        padding: 0;
        background: #00365c;
    }
}
@media (max-width: 479px) {
    /* line 307, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    nav.ns-section-main {
        width: 100%;
        height: 100%;
        padding: 0;
        background: #00365c;
    }
}
/* line 330, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
nav.ns-section-main a#ns-home {
    display: inline-block;
    float: left;
    width: 123px;
    height: 30px;
    margin: 5px 0 0 0;
    position: relative;
}
/* line 337, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
nav.ns-section-main a#ns-home > img {
    display: inline-block;
    float: left;
    width: 123px;
    height: 30px;
    position: absolute;
    top: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}
/* line 346, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
nav.ns-section-main a#ns-home > img#ns-home-logo-shadow {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
}
/* line 350, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
nav.ns-section-main ol#ns-navigation {
    display: inline-block;
    float: right;
    height: 60px;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 350, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    nav.ns-section-main ol#ns-navigation {
        width: 100%;
    }
}
@media (max-width: 479px) {
    /* line 350, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    nav.ns-section-main ol#ns-navigation {
        width: 100%;
    }
}
/* line 360, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
nav.ns-section-main ol#ns-navigation > li {
    display: inline-block;
    float: left;
    height: 60px;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 360, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    nav.ns-section-main ol#ns-navigation > li {
        width: 100%;
        height: 40px;
    }
}
@media (max-width: 479px) {
    /* line 360, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    nav.ns-section-main ol#ns-navigation > li {
        width: 100%;
        height: 40px;
    }
}
/* line 372, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
nav.ns-section-main ol#ns-navigation > li > a {
    display: inline-block;
    float: left;
    height: 60px;
    margin: 0 0 0 30px;
    font-size: 13px;
    line-height: 60px;
    color: white;
    font-family: "Dosis", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 372, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    nav.ns-section-main ol#ns-navigation > li > a {
        width: 100%;
        height: 40px;
        margin: 0;
    }
}
@media (max-width: 479px) {
    /* line 372, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    nav.ns-section-main ol#ns-navigation > li > a {
        width: 100%;
        height: 40px;
        margin: 0;
    }
}
/*
nav.ns-section-main ol#ns-navigation > li > a.ns-session {
display: none;
visibility: hidden;
}
*/
/*
@media (min-width: 480px) and (max-width: 767px) {
nav.ns-section-main ol#ns-navigation > li > a.ns-session {
display: inline;
visibility: visible;
}
}
@media (max-width: 479px) {
nav.ns-section-main ol#ns-navigation > li > a.ns-session {
display: inline;
visibility: visible;
}
}
*/
/* line 406, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
nav.ns-section-main ol#ns-navigation > li > a.ns-button.ns-button-special {
    display: inline;
    height: auto;
    visibility: visible;
    color: #3ac0f0;
    line-height: 30px;
    position: relative;
    top: 10px;
    width:auto;
}

@media (min-width: 480px) and (max-width: 767px) {
    nav.ns-section-main ol#ns-navigation > li > a.ns-button.ns-button-special {
        /* display: none; */
        /* visibility: hidden; */
        border:0;
        padding:0;
        color: #fff;
    }
    nav.ns-section-main ol#ns-navigation > li > a.ns-button.ns-button-special:hover {
        text-decoration: underline;
        color: #fff;
    }
}
@media (max-width: 479px) {
    nav.ns-section-main ol#ns-navigation > li > a.ns-button.ns-button-special {
        /* display: none; */
        /* visibility: hidden; */
        border:0;
        padding:0;
        color: #fff;
    }
    nav.ns-section-main ol#ns-navigation > li > a.ns-button.ns-button-special:hover {
        text-decoration: underline;
        color: #fff;
    }
}




/* line 427, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
nav.ns-section-main.ns-nav-shadow-state, .gh-section-blog nav {
    padding: 0;
    background: #ffffff;
    color: #464d55;
    -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 427, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    nav.ns-section-main.ns-nav-shadow-state, .gh-section-blog nav {
        color: #ffffff;
        background: #00365c;
    }

    nav.ns-section-main a#ns-home {
        display: none !important;
    }

    nav.ns-section-main a#ns-home > img {
        display: none !important;

    }
}
@media (max-width: 479px) {
    /* line 427, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    nav.ns-section-main.ns-nav-shadow-state, .gh-section-blog nav {
        color: #ffffff;
        background: #00365c;
    }

    nav.ns-section-main a#ns-home {
        display: none !important;
    }

    nav.ns-section-main a#ns-home > img {
        display: none !important;

    }
}
/* line 441, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
@media (min-width: 768px) {
    nav.ns-section-main.ns-nav-shadow-state a#ns-home > img, .gh-section-blog nav a#ns-home > img {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0;
    }
}
/* line 444, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
@media (min-width: 768px) {
    nav.ns-section-main.ns-nav-shadow-state a#ns-home > img#ns-home-logo-shadow, .gh-section-blog nav a#ns-home > img#ns-home-logo-shadow {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
        opacity: 1;
        top: 9px;
    }
}
/* line 449, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
nav.ns-section-main.ns-nav-shadow-state ol#ns-navigation > li > a, .gh-section-blog nav ol#ns-navigation > li > a {
    color: #464d55;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 449, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    nav.ns-section-main.ns-nav-shadow-state ol#ns-navigation > li > a, .gh-section-blog nav ol#ns-navigation > li > a {
        color: #ffffff;
    }
}
@media (max-width: 479px) {
    /* line 449, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    nav.ns-section-main.ns-nav-shadow-state ol#ns-navigation > li > a, .gh-section-blog nav ol#ns-navigation > li > a {
        color: #ffffff;
    }
}

/* Signin Modal */
/************************************************/
/* line 465, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-signin-modal .modal-dialog {
    max-width: 600px;
}
/* line 467, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-signin-modal .modal-dialog span.close {
    display: inline-block;
    padding: 0;
    width: 15px;
    height: 15px;
    border: 2px solid #ffffff;
    line-height: 11px;
    background: #000000;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    position: absolute;
    right: -7px;
    top: -6px;
    cursor: pointer;
    font-size: 14px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
/* line 486, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-signin-modal .modal-dialog .modal-body {
    *zoom: 1;
}
/* line 22, /Users/logan/.rvm/gems/ruby-2.0.0-p451/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
#ns-signin-modal .modal-dialog .modal-body:after {
    content: "\0020";
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}
/* line 488, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-signin-modal .modal-dialog .modal-body > h3 {
    margin: 25px 0 25px 0;
    font-family: "Dosis", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 36px;
    line-height: 45px;
    font-weight: 300;
    color: #464d55;
    text-align: center;
}
/* line 497, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-signin-modal .modal-dialog .modal-body > p {
    margin: 0 0 20px 0;
    text-align: center;
    font-size: 12px;
    line-height: 20px;
}
/* line 503, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-signin-modal .modal-dialog .modal-body > form.ns-form-basic {
    margin: 0 0 20px 0;
}
/* line 505, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-signin-modal .modal-dialog .modal-body > form.ns-form-basic .ns-form-row {
    margin: 0 0 10px 0;
}
/* line 523, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-signin-modal .modal-dialog .modal-body > form.ns-form-basic .ns-form-row-submit {
    margin: 30px 0 10px 0;
}
/* line 529, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-signin-modal .modal-dialog .modal-body > form.ns-form-basic .ns-form-row-submit > .ns-button,
#ns-signin-modal .modal-dialog .modal-body > form.ns-form-basic .ns-form-row-submit > input[type="submit"],
#ns-signin-modal .modal-dialog .modal-body > form.ns-form-basic .ns-form-row-submit > input[type="button"],
#ns-signin-modal .modal-dialog .modal-body > form.ns-form-basic .ns-form-row-submit > input[type="reset"],
#ns-signin-modal .modal-dialog .modal-body > form.ns-form-basic .ns-form-row-submit > button {
    width: 100%;
}

/* Main Page */
/************************************************/
/* line 543, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-page-main {
    display: inline-block;
    float: left;
    width: 100%;
    background: white;
    position: relative;
    left: 0;
    -webkit-transition-property: left;
    -moz-transition-property: left;
    -o-transition-property: left;
    transition-property: left;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-timing-function: ease-in;
    -moz-transition-timing-function: ease-in;
    -o-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    -webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    -o-transition-delay: 0;
    transition-delay: 0;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 543, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    #ns-page-main {
        position: absolute;
    }
}
@media (max-width: 479px) {
    /* line 543, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    #ns-page-main {
        position: absolute;
    }
}

/* line 568, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
body.ns-slider-expanded #ns-page-main,
body.ns-slider-expanded #ns-slide-controls.ns-section-main {
    left: 80%;
}

/* line 572, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-slide-controls.ns-section-main {
    float: left;
    width: 100%;
    height: 60px;
    background: white;
    color: white;
    cursor: pointer;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    visibility: hidden;
    -webkit-transition-property: left;
    -moz-transition-property: left;
    -o-transition-property: left;
    transition-property: left;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-timing-function: ease-in;
    -moz-transition-timing-function: ease-in;
    -o-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    -webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    -o-transition-delay: 0;
    transition-delay: 0;
    -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 572, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    #ns-slide-controls.ns-section-main {
        display: inline-block;
        visibility: visible;
    }
}
@media (max-width: 479px) {
    /* line 572, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    #ns-slide-controls.ns-section-main {
        display: inline-block;
        visibility: visible;
    }
}
/* line 597, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-slide-controls.ns-section-main #ns-slide-control-left {
    display: inline-block;
    float: left;
    width: 30px;
    height: 25px;
    margin: 17px 0 0 0;
    background: transparent url("https://d1cn9y1dji338c.cloudfront.net/wp-content/themes/gh-marketing/assets/core/hamburger.svg") no-repeat 0 0;
}

/* line 608, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-banner.ns-section-main.ns-section-homepage {
    background: transparent url("https://d1cn9y1dji338c.cloudfront.net/wp-content/themes/gh-marketing/assets/backgrounds/background_index.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/* line 612, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-banner.ns-section-main.ns-section-catchall {
    background: transparent url("https://d1cn9y1dji338c.cloudfront.net/wp-content/themes/gh-marketing/assets/backgrounds/background_catchall.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/* line 616, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog #ns-banner.ns-section-main {
    background: transparent url("https://d1cn9y1dji338c.cloudfront.net/wp-content/themes/gh-marketing/assets/backgrounds/background-blog-icon-pattern.png") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/* line 620, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-banner.ns-section-main.ns-section-tourpage {
    background: transparent url("https://d1cn9y1dji338c.cloudfront.net/wp-content/themes/gh-marketing/assets/backgrounds/background_tour.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/* line 624, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-banner.ns-section-main.ns-section-customerpage {
    background: transparent url("https://d1cn9y1dji338c.cloudfront.net/wp-content/themes/gh-marketing/assets/backgrounds/background_customers.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/* line 628, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-banner.ns-section-main {
    padding: 95px 0 0 0;
    height: 605px;
    background: transparent url("https://d1cn9y1dji338c.cloudfront.net/wp-content/themes/gh-marketing/assets/placeholders/banner.jpg") no-repeat center center;
    color: white;
    text-align: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
/* line 635, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-banner.ns-section-main > .ns-section-wrapper {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
/* line 635, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-banner.ns-section-main.ns-section-team {
    background: transparent url("/wp-content/themes/gh-marketing/assets/backgrounds/team_gather.jpg") no-repeat center center / cover;
}
#ns-banner.ns-section-main.ns-section-team > .ns-section-wrapper {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-80%);
    -moz-transform: translateY(-80%);
    -ms-transform: translateY(-80%);
    -o-transform: translateY(-80%);
    transform: translateY(-80%);
}
/* line 639, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-banner.ns-section-main > .ns-section-wrapper h1.ns-header-basic {
    margin: 0 0 60px 0;
    color: white;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    padding-left: 17.33333%;
    padding-right: 17.33333%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* OVERRIDES TO BLOG PAGE: 14-08-15 */


/* Main blog page header image */
.gh-section-blog #ns-banner.ns-section-main {
    height: 220px;
}

.gh-section-blog #ns-banner.ns-section-main h1 {
    font-size: 60px;
}

@media (max-width: 480px) {
    .gh-section-blog .ns-section-main.ns-section-post {
        margin-top: 25%;
    }
}

@media (min-width: 480px) {
    .gh-section-blog .ns-section-main.ns-section-post {
        margin-top: 10%;
    }
}

.gh-section-blog .ns-section-main.ns-section-post .link--all-posts {
    margin-left: 60px;
}

.gh-section-blog .ns-section-main.ns-section-post .link--all-posts a {
    color: #3f4549;
}

.gh-section-blog .ns-section-main.ns-section-post h1.ns-header-basic {
    font-weight: 400;
    margin: 15px 0 20px 60px;
    color: #3f4549;
    font-size: 45px;
    line-height: 45px;
}

.gh-section-blog .ns-section-main.ns-section-post #ns-post-title {
    margin: -5px 0 100px 60px;
}

.gh-section-blog .ns-section-main.ns-section-post h1.ns-header-basic, #ns-banner.ns-section-main {
    color: #3f4549;
}

.gh-section-blog .ns-section-main.ns-section-post #ns-post-title #ns-post-thumbnail {
    border-color: rgba(0, 0, 0, 0.05);
}

.gh-section-blog .ns-section-main.ns-section-post p {
    padding-left: 60px !important;
}

.gh-section-blog .ns-section-main.ns-section-post p.imaged {
    padding-left: 0px !important;
}

.gh-section-blog .ns-section-main.ns-section-post p.imaged img {
    width: 100%;
}


@media (min-width: 480px) and (max-width: 767px) {
    /* line 639, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    #ns-banner.ns-section-main > .ns-section-wrapper h1.ns-header-basic {
        width: 100%;
        padding: 0;
        font-size: 54px;
        line-height: 65px;
    }
}
@media (max-width: 479px) {
    /* line 639, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    #ns-banner.ns-section-main > .ns-section-wrapper h1.ns-header-basic {
        width: 100%;
        padding: 0;
        font-size: 54px;
        line-height: 65px;
    }
}
/* line 659, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-banner.ns-section-main > .ns-section-wrapper h2.ns-header-basic, .ns-section-main.ns-section-post h2.ns-header-basic {
    margin: 0 0 20px 0;
    font-size: 28px;
    line-height: 40px;
    color: white;
    position: relative;
    top: -30px;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    padding-left: 17.33333%;
    padding-right: 17.33333%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 659, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    #ns-banner.ns-section-main > .ns-section-wrapper h2.ns-header-basic {
        width: 100%;
        padding: 0;
        font-size: 24px;
        line-height: 30px;
    }
}
@media (max-width: 479px) {
    /* line 659, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    #ns-banner.ns-section-main > .ns-section-wrapper h2.ns-header-basic {
        width: 100%;
        padding: 0;
        font-size: 24px;
        line-height: 30px;
    }
}

.gh-section-blog #ns-banner.ns-section-main > .ns-section-wrapper #ns-post-title {
    display:inline-block;
}

/* line 684, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-banner.ns-section-main > .ns-section-wrapper #ns-post-title #ns-post-thumbnail, .ns-section-main.ns-section-post #ns-post-title #ns-post-thumbnail {
    margin: -6px auto 17px auto;
    width: 56px;
    height: 56px;
    border: 4px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
    position: relative;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;
    -o-border-radius: 80px;
    border-radius: 80px;
}

.gh-section-blog .ns-section-main.ns-section-post #ns-post-title #ns-post-thumbnail {
    float: left;
    margin-right: 10px !important;
}

/* line 692, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-banner.ns-section-main > .ns-section-wrapper #ns-post-title #ns-post-thumbnail > img, .ns-section-main.ns-section-post #ns-post-title #ns-post-thumbnail > img {
    width: 100%;
    // -webkit-filter: grayscale(100%);
    // -moz-filter: grayscale(100%);
    // filter: grayscale(100%);
    background: #ffffff;
}

#ns-banner.ns-section-main > .ns-section-wrapper #ns-post-title #ns-post-thumbnail > img:hover, .ns-section-main.ns-section-post #ns-post-title #ns-post-thumbnail > img:hover {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    filter: grayscale(0%);
    transition-delay:0;
    transition: -webkit-filter 500ms linear;
    transition: -moz-filter 500ms linear;
    transition: filter 500ms linear;
}

/* line 698, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-banner.ns-section-main > .ns-section-wrapper #ns-post-title #ns-post-author {
    font-size: 28px;
    line-height: 35px;
}

.gh-section-blog .ns-section-main.ns-section-post #ns-post-title #ns-post-author {
    float:left;
    clear:both;
}

/* line 702, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog .ns-section-main.ns-section-post #ns-post-title #ns-post-date {
    line-height: 20px;
    font-weight: bold;
    text-transform: uppercase;
    float:left;
    clear:both;
    text-align:left;
    width: 100%;
    font-size: 14px
}

/* line 713, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main > .ns-section-wrapper > h2.ns-header-basic.ns-header-shortened {
    margin: 0 0 31px 0;
    font-weight: 300;
    text-align: center;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    padding-left: 17.33333%;
    padding-right: 17.33333%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 713, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main > .ns-section-wrapper > h2.ns-header-basic.ns-header-shortened {
        padding-left: 0%;
        padding-right: 0%;
    }
}
@media (max-width: 479px) {
    /* line 713, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main > .ns-section-wrapper > h2.ns-header-basic.ns-header-shortened {
        padding-left: 0%;
        padding-right: 0%;
    }
}
/* line 729, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main > .ns-section-wrapper > h2.ns-header-basic.ns-header-shortened > span {
    color: #3ac0f0;
}
/* line 733, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main > .ns-section-wrapper > p.ns-paragraph-shortened {
    margin: 0 0 30px 0;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    padding-left: 17.33333%;
    padding-right: 17.33333%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Dosis", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 733, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main > .ns-section-wrapper > p.ns-paragraph-shortened {
        padding-left: 0%;
        padding-right: 0%;
    }
}
@media (max-width: 479px) {
    /* line 733, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main > .ns-section-wrapper > p.ns-paragraph-shortened {
        padding-left: 0%;
        padding-right: 0%;
    }
}

/* line 751, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
footer.ns-section-main {
    padding: 70px 0;
    font-size: 13px;
    line-height: 20px;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 751, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    footer.ns-section-main {
        padding: 40px 0;
    }
}
@media (max-width: 479px) {
    /* line 751, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    footer.ns-section-main {
        padding: 40px 0;
    }
}
/* line 761, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
footer.ns-section-main ol#ns-footer-list {
    width: 65.33333%;
    float: left;
    margin-right: 4%;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 761, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    footer.ns-section-main ol#ns-footer-list {
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 761, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    footer.ns-section-main ol#ns-footer-list {
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
/* line 769, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
footer.ns-section-main ol#ns-footer-list > li {
    line-height: 30px;
    width: 20.40816%;
    float: left;
    margin-right: 6.12245%;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 769, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    footer.ns-section-main ol#ns-footer-list > li {
        text-align: center;
        margin: 0 0 20px 0;
        width: 48%;
        float: left;
        margin-right: 4%;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 769, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    footer.ns-section-main ol#ns-footer-list > li {
        text-align: center;
        margin: 0 0 20px 0;
        width: 48%;
        float: left;
        margin-right: 4%;
        display: inline;
    }
}
/* line 782, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
footer.ns-section-main ol#ns-footer-list > li > h3 {
    margin: 0 0 12px 0;
    font-size: 15px;
    text-transform: uppercase;
    font-family: "Dosis", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 500;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 782, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    footer.ns-section-main ol#ns-footer-list > li > h3 {
        margin: 0 0 7px 0;
    }
}
@media (max-width: 479px) {
    /* line 782, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    footer.ns-section-main ol#ns-footer-list > li > h3 {
        margin: 0 0 7px 0;
    }
}
/* line 797, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
footer.ns-section-main ol#ns-footer-list > li > ol#ns-footer-sublist > li a {
    color: inherit;
}
/* line 803, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
footer.ns-section-main ol#ns-footer-list > li:nth-child(4) {
    width: 20.40816%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 806, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    footer.ns-section-main ol#ns-footer-list > li:nth-child(2n) {
        width: 48%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 806, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    footer.ns-section-main ol#ns-footer-list > li:nth-child(2n) {
        width: 48%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
/* line 815, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
footer.ns-section-main #ns-footer-logo {
    padding: 11px 0 0 0;
    text-align: center;
    width: 30.66667%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 815, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    footer.ns-section-main #ns-footer-logo {
        margin: 20px 0 0 0;
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 815, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    footer.ns-section-main #ns-footer-logo {
        margin: 20px 0 0 0;
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
/* line 827, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
footer.ns-section-main #ns-footer-logo > a {
    display: block;
    margin: 0 0 10px 0;
}
/* line 831, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
footer.ns-section-main #ns-footer-logo > p {
    font-size: 12px;
    font-style: italic;
}

/* line 839, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-quote aside.ns-quote {
    padding: 60px 0 0 0;
    font-size: 36px;
    line-height: 45px;
    text-align: center;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    padding-left: 8.66667%;
    padding-right: 8.66667%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 839, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-quote aside.ns-quote {
        padding-left: 0%;
        padding-right: 0%;
    }
}
@media (max-width: 479px) {
    /* line 839, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-quote aside.ns-quote {
        padding-left: 0%;
        padding-right: 0%;
    }
}
/* line 856, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-quote aside.ns-quote > p {
    margin: 0 0 1px 0;
    font-style: italic;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=66);
    opacity: 0.66;
    font-family: "Crimson Text", "Georgia", "Times New Roman", serif;
}
/* line 862, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-quote aside.ns-quote > h3 {
    margin: 20px 0 68px 0;
    font-size: 24px;
    color: #464d55;
}
/* line 867, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-quote aside.ns-quote > h4 {
    margin: 0 0 80px 0;
    color: #464d55;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: bold;
}
/* line 874, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-quote aside.ns-quote > h4 > span {
    text-transform: none;
    font-weight: normal;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=66);
    opacity: 0.66;
}
/* line 880, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-quote aside.ns-quote > .ns-thumbnail {
    display: inline-block;
    width: 56px;
    height: 56px;
    margin: 30px 0 0 0;
    border: 4px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;
    -o-border-radius: 80px;
    border-radius: 80px;
}
/* line 888, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-quote aside.ns-quote > .ns-thumbnail > img {
    width: 100%;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
}

/* line 899, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-intro ol.ns-button-row > li > a {
    padding: 0 20px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
}
/* line 907, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-intro aside.ns-quote {
    font-family: "Crimson Text", "Georgia", "Times New Roman", serif;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    padding-left: 20%;
    padding-right: 20%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 907, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-intro aside.ns-quote {
        padding-left: 0%;
        padding-right: 0%;
    }
}
@media (max-width: 479px) {
    /* line 907, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-intro aside.ns-quote {
        padding-left: 0%;
        padding-right: 0%;
    }
}
/* line 924, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-intro aside.ns-quote > p {
    margin: 0 0 11px 0;
    font-style: italic;
    text-align: center;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=66);
    opacity: 0.66;
}
/* line 931, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-intro aside.ns-quote > h3 {
    margin: 0 0 98px 0;
    font-size: 24px;
    color: #464d55;
}
/* line 936, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-intro aside.ns-quote > .ns-thumbnail {
    display: inline-block;
    width: 56px;
    height: 56px;
    margin: 40px 0 0 0;
    border: 4px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;
    -o-border-radius: 80px;
    border-radius: 80px;
}
/* line 944, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-intro aside.ns-quote > .ns-thumbnail > img {
    width: 100%;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
}

/* line 952, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-team {
    padding: 91px 0 0 0;
    background: #f8f8f8;
    text-align: center;
}
/* line 956, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-team ol#ns-team-members {
    display: inline-block;
    width: 90%;
    padding: 48px 0 50px 0;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    *zoom: 1;
}
/* line 22, /Users/logan/.rvm/gems/ruby-2.0.0-p451/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
section.ns-section-main.ns-section-team ol#ns-team-members:after {
    content: "\0020";
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}
@media (min-width: 768px) and (max-width: 979px) {
    /* line 956, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-team ol#ns-team-members {
        width: 100%;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 956, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-team ol#ns-team-members {
        width: 100%;
    }
}
@media (max-width: 479px) {
    /* line 956, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-team ol#ns-team-members {
        width: 100%;
    }
}
/* line 972, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-team ol#ns-team-members > li {
    display: inline-block;
    float: left;
    width: 25%;
    margin: 0 0 58px 0;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 972, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-team ol#ns-team-members > li {
        width: 33%;
    }
}
@media (max-width: 479px) {
    /* line 972, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-team ol#ns-team-members > li {
        width: 50%;
    }
}
/* line 983, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-team ol#ns-team-members > li .ns-team-member-portrait {
    margin: 0 auto 17px auto;
    width: 160px;
    height: 160px;
    border: 5px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    -webkit-border-radius: 85px;
    -moz-border-radius: 85px;
    -ms-border-radius: 85px;
    -o-border-radius: 85px;
    border-radius: 85px;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 983, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-team ol#ns-team-members > li .ns-team-member-portrait {
        width: 120px;
        height: 120px;
        -webkit-border-radius: 65px;
        -moz-border-radius: 65px;
        -ms-border-radius: 65px;
        -o-border-radius: 65px;
        border-radius: 65px;
    }
}
@media (max-width: 479px) {
    /* line 983, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-team ol#ns-team-members > li .ns-team-member-portrait {
        width: 120px;
        height: 120px;
        -webkit-border-radius: 65px;
        -moz-border-radius: 65px;
        -ms-border-radius: 65px;
        -o-border-radius: 65px;
        border-radius: 65px;
    }
}
/* line 1000, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-team ol#ns-team-members > li .ns-team-member-portrait > img {
  width: 100%;
  -webkit-filter: grayscale(100%);
  -webkit-transition: 0.25s ease-in-out;
  -moz-filter: grayscale(100%);
  -moz-transition: 0.25s ease-in-out;
  filter: grayscale(100%);
  transition: 0.25s ease-in-out;
  border-radius:120px;
}

section.ns-section-main.ns-section-team ol#ns-team-members > li .ns-team-member-portrait > img:hover {
  width: 100%;
  -webkit-filter: grayscale(0%);
  -webkit-transition: .25s ease-in-out;
  -moz-filter: grayscale(0%);
  -moz-transition: .25s ease-in-out;
  filter: grayscale(0%);
  transition: .25s ease-in-out;
}

/* line 1010, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-team ol#ns-team-members > li > h3 {
    color: #464d55;
    font-size: 24px;
    line-height: 35px;
}
/* line 1015, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-team ol#ns-team-members > li > h4 {
    color: #464d55;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: bold;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=66);
    opacity: 0.66;
}

/* line 1027, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-news {
    padding: 91px 0 0 0;
    text-align: center;
}
/* line 1035, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-news > .ns-section-wrapper .ns-button.ns-button-line,
section.ns-section-main.ns-section-news > .ns-section-wrapper input[type="submit"].ns-button-line,
section.ns-section-main.ns-section-news > .ns-section-wrapper input[type="button"].ns-button-line,
section.ns-section-main.ns-section-news > .ns-section-wrapper input[type="reset"].ns-button-line,
section.ns-section-main.ns-section-news > .ns-section-wrapper button.ns-button-line {
    margin: 0 0 69px 0;
}
/* line 1039, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-news ol#ns-news-feed {
    padding-top: 35px;
    text-align: left;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    padding-left: 8.66667%;
    padding-right: 8.66667%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1039, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-news ol#ns-news-feed {
        padding-left: 0%;
        padding-right: 0%;
    }
}
@media (max-width: 479px) {
    /* line 1039, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-news ol#ns-news-feed {
        padding-left: 0%;
        padding-right: 0%;
    }
}
/* line 1054, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-news ol#ns-news-feed > li {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e6e6e6;
}

section.ns-section-main.ns-section-news ol#ns-news-feed > li:last-child {
    border:0;
}


/* line 1056, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-news ol#ns-news-feed > li > header {
    position: relative;
}
/* line 1058, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-news ol#ns-news-feed > li > header .ns-thumbnail {
    width: 56px;
    height: 56px;
    border: 4px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: absolute;
    top: -2px;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;
    -o-border-radius: 80px;
    border-radius: 80px;
}
/* line 1066, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-news ol#ns-news-feed > li > header .ns-thumbnail > img {
    width: 100%;
    // -webkit-filter: grayscale(100%);
    // -moz-filter: grayscale(100%);
    // filter: grayscale(100%);
}
/* line 1071, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-news ol#ns-news-feed > li > header > h3 {
    /*padding: 0 0 0 79px;*/
    color: #464d55;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 500;
}
/* line 1077, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-news ol#ns-news-feed > li > header > h4 {
    padding: 0 0 0 79px;
    margin: 0 0 20px 0;
    color: #464d55;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: bold;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=66);
    opacity: 0.66;
}
/* line 1088, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-news ol#ns-news-feed > li > .ns-news-snippet {
    margin: 0 0 0px 0;
}

.ns-news-snippet img {
    width: 100%;
    height: auto;
}

#ns-jump-press {
    padding-bottom: 91px
}

section.ns-section-main.ns-section-news ol#ns-news-feed > li > .ns-news-snippet > p {
    /*margin-left: 80px;*/
    line-height: 24px
}


/* line 1091, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-news ol#ns-news-feed > li > .ns-news-snippet > p > a.ns-see-more {
    margin: 0 0 0 10px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}
/* line 1099, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-news ol#ns-news-feed > li > hr.ns-line-short {
    margin-top: 0;
    margin-bottom: 57px;
}

/* line 1107, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-apply {
    padding: 91px 0 0 0;
    text-align: center;
    background: #f8f8f8;
}
/* line 1111, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-apply ol#ns-perks {
    display: inline-block;
    width: 80%;
    margin: 74px auto 0 auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    *zoom: 1;
}
/* line 22, /Users/logan/.rvm/gems/ruby-2.0.0-p451/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
section.ns-section-main.ns-section-apply ol#ns-perks:after {
    content: "\0020";
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1111, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-apply ol#ns-perks {
        width: 100%;
    }
}
@media (max-width: 479px) {
    /* line 1111, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-apply ol#ns-perks {
        width: 100%;
    }
}
/* line 1123, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-apply ol#ns-perks > li {
    margin: 0 0 69px 0;
    width: 48%;
    float: left;
    margin-right: 4%;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1123, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-apply ol#ns-perks > li {
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 1123, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-apply ol#ns-perks > li {
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
/* line 1132, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-apply ol#ns-perks > li > .ns-perk-icon {
    margin: 0 0 21px 0;
    font-size: 90px;
    line-height: 100px;
    color: #3ac0f0;
    font-family: "SSStandard";
}
/* line 1139, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-apply ol#ns-perks > li > h3 {
    margin: 0 0 15px 0;
    color: #464d55;
    font-size: 24px;
    line-height: 35px;
}
/* line 1145, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-apply ol#ns-perks > li > p {
    text-align: left;
}
/* line 1149, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-apply ol#ns-perks > li:nth-child(2n) {
    width: 48%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1149, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-apply ol#ns-perks > li:nth-child(2n) {
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 1149, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-apply ol#ns-perks > li:nth-child(2n) {
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
/* line 1159, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-apply hr.ns-line-short {
    margin-bottom: 57px;
}
/* line 1167, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-apply > .ns-section-wrapper .ns-button.ns-button-line,
section.ns-section-main.ns-section-apply > .ns-section-wrapper input[type="submit"].ns-button-line,
section.ns-section-main.ns-section-apply > .ns-section-wrapper input[type="button"].ns-button-line,
section.ns-section-main.ns-section-apply > .ns-section-wrapper input[type="reset"].ns-button-line,
section.ns-section-main.ns-section-apply > .ns-section-wrapper button.ns-button-line {
    margin: 0 0 69px 0;
}

/* line 1173, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-contact {
    padding: 91px 0 94px 0;
    text-align: center;
    background: transparent url("/wp-content/themes/gh-marketing/assets/backgrounds/team_casual.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
}
section#ns-jump-contact::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255,255,255,.6);
}
/* line 1179, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-contact > .ns-section-wrapper {
    position: relative;
}
section.ns-section-main.ns-section-contact > .ns-section-wrapper > h2.ns-header-basic.ns-header-shortened {
    margin: 0 0 2px 0;
}
/* line 1182, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-contact > .ns-section-wrapper > h3.ns-header-basic.ns-header-shortened {
    margin: 0 0 42px 0;
}
/* line 1186, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-contact form {
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    padding-left: 26%;
    padding-right: 26%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1186, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-contact form {
        padding-left: 0%;
        padding-right: 0%;
    }
}
@media (max-width: 479px) {
    /* line 1186, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-contact form {
        padding-left: 0%;
        padding-right: 0%;
    }
}
/* line 1213, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-contact form input[type="date"],
section.ns-section-main.ns-section-contact form input[type="datetime"],
section.ns-section-main.ns-section-contact form input[type="datetime-local"],
section.ns-section-main.ns-section-contact form input[type="email"],
section.ns-section-main.ns-section-contact form input[type="month"],
section.ns-section-main.ns-section-contact form input[type="number"],
section.ns-section-main.ns-section-contact form input[type="password"],
section.ns-section-main.ns-section-contact form input[type="search"],
section.ns-section-main.ns-section-contact form input[type="tel"],
section.ns-section-main.ns-section-contact form input[type="text"],
section.ns-section-main.ns-section-contact form input[type="time"],
section.ns-section-main.ns-section-contact form input[type="url"],
section.ns-section-main.ns-section-contact form input[type="week"],
section.ns-section-main.ns-section-contact form select,
section.ns-section-main.ns-section-contact form textarea {
    width: 100%;
    margin: 0 0 20px 0;
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.95);
}
/* line 1219, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-contact form textarea {
    min-height: 328px;
}
/* line 1226, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-contact form .ns-button,
section.ns-section-main.ns-section-contact form input[type="submit"],
section.ns-section-main.ns-section-contact form input[type="button"],
section.ns-section-main.ns-section-contact form input[type="reset"],
section.ns-section-main.ns-section-contact form button {
    width: 100%;
}

/* line 1232, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
ol#ns-clients-signup {
    margin: 60px 0 0 0;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1232, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    ol#ns-clients-signup {
        height: auto;
        padding: 30px 0 15px 0;
    }
}
@media (max-width: 479px) {
    /* line 1232, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    ol#ns-clients-signup {
        height: auto;
        padding: 30px 0 15px 0;
    }
}
/* line 1243, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
ol#ns-clients-signup > li {
    text-align: center;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 13.33333%;
    float: left;
    margin-right: 4%;
    display: inline;
}
/* line 1247, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
ol#ns-clients-signup > li > a {
    width: 75%;
}
/* line 1249, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
ol#ns-clients-signup > li > a > img {
    width: 75%;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1243, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    ol#ns-clients-signup > li {
        padding: 10px 0;
        top: 0;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        width: 48%;
        float: left;
        margin-right: 4%;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 1243, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    ol#ns-clients-signup > li {
        padding: 10px 0;
        top: 0;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        width: 48%;
        float: left;
        margin-right: 4%;
        display: inline;
    }
}
/* line 1270, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
ol#ns-clients-signup > li:nth-child(6) {
    width: 13.33333%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1270, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    ol#ns-clients-signup > li:nth-child(6) {
        width: 48%;
        float: left;
        margin-right: 4%;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 1270, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    ol#ns-clients-signup > li:nth-child(6) {
        width: 48%;
        float: left;
        margin-right: 4%;
        display: inline;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1279, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    ol#ns-clients-signup > li:nth-child(2n) {
        width: 48%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 1279, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    ol#ns-clients-signup > li:nth-child(2n) {
        width: 48%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}

/* line 1289, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
ol#ns-clients-list {
    height: 230px;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1289, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    ol#ns-clients-list {
        height: auto;
        padding: 30px 0 15px 0;
    }
}
@media (max-width: 479px) {
    /* line 1289, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    ol#ns-clients-list {
        height: auto;
        padding: 30px 0 15px 0;
    }
}
/* line 1300, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
ol#ns-clients-list > li {
    text-align: center;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 13.33333%;
    float: left;
    margin-right: 4%;
    display: inline;
}
/* line 1304, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
ol#ns-clients-list > li > a {
    width: 75%;
}
/* line 1306, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
ol#ns-clients-list > li > a > img {
    width: 75%;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1300, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    ol#ns-clients-list > li {
        padding: 10px 0;
        top: 0;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        width: 48%;
        float: left;
        margin-right: 4%;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 1300, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    ol#ns-clients-list > li {
        padding: 10px 0;
        top: 0;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        width: 48%;
        float: left;
        margin-right: 4%;
        display: inline;
    }
}
/* line 1327, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
ol#ns-clients-list > li:nth-child(6) {
    width: 13.33333%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1327, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    ol#ns-clients-list > li:nth-child(6) {
        width: 48%;
        float: left;
        margin-right: 4%;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 1327, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    ol#ns-clients-list > li:nth-child(6) {
        width: 48%;
        float: left;
        margin-right: 4%;
        display: inline;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1336, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    ol#ns-clients-list > li:nth-child(2n) {
        width: 48%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 1336, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    ol#ns-clients-list > li:nth-child(2n) {
        width: 48%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}

/* line 1346, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-slide {
    padding: 116px 0 119px 0;
    position: relative;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1346, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide {
        padding: 46px 0 49px 0;
    }
}
@media (max-width: 479px) {
    /* line 1346, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide {
        padding: 46px 0 49px 0;
    }
}
/* line 1355, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-slide > .ns-section-wrapper {
    height: 595px;
}
/* line 1358, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-slide aside.ns-quote {
    position: relative;
    margin-top: -10px;
}
/* line 1361, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-slide aside.ns-quote .ns-logo-thumb {
    display: block;
    float: none;
    width: 100px;
    margin: 0 auto;
    position: relative;
    left: 40px;
}
/* line 1369, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-slide aside.ns-quote .ns-thumbnail {
    width: 56px;
    height: 56px;
    border: 4px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: absolute;
    top: 7px;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;
    -o-border-radius: 80px;
    border-radius: 80px;
}
/* line 1377, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-slide aside.ns-quote .ns-thumbnail > img {
    width: 100%;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
}
/* line 1382, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-slide aside.ns-quote > p {
    padding: 0 0 0 79px;
    margin: 0 0 15px 0;
    font-family: "Crimson Text", "Georgia", "Times New Roman", serif;
    font-size: 18px;
    line-height: 30px;
    font-style: italic;
}
/* line 1390, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-slide aside.ns-quote > h4 {
    padding: 0 0 0 79px;
    margin: 0 0 20px 0;
    color: #464d55;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: bold;
}
/* line 1400, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-slide .ns-section-slide-text-left {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 39.33333%;
    float: left;
    margin-right: 4%;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1400, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide .ns-section-slide-text-left {
        padding: 240px 0 0 0;
        width: 100%;
        top: 0;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
@media (max-width: 479px) {
    /* line 1400, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide .ns-section-slide-text-left {
        padding: 240px 0 0 0;
        width: 100%;
        top: 0;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
/* line 1418, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-slide .ns-section-slide-text-right {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 39.33333%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1418, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide .ns-section-slide-text-right {
        padding: 0;
        margin: 40px 0 0 0;
        width: 100%;
        top: 0;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
@media (max-width: 479px) {
    /* line 1418, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide .ns-section-slide-text-right {
        padding: 0;
        margin: 40px 0 0 0;
        width: 100%;
        top: 0;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
/* line 1438, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-slide .ns-section-slide-image-left {
    width: 48%;
    float: left;
    margin-right: 4%;
    display: inline;
    padding-right: 8.66667%;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1438, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide .ns-section-slide-image-left {
        padding: 0;
        width: 100%;
        top: 0;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
@media (max-width: 479px) {
    /* line 1438, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide .ns-section-slide-image-left {
        padding: 0;
        width: 100%;
        top: 0;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
/* line 1453, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-slide .ns-section-slide-image-left img.ns-hero-image {
    float: right;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1453, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide .ns-section-slide-image-left img.ns-hero-image {
        display: block;
        float: none;
        height: 200px;
        margin: 0 auto;
    }
}
@media (max-width: 479px) {
    /* line 1453, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide .ns-section-slide-image-left img.ns-hero-image {
        display: block;
        float: none;
        height: 200px;
        margin: 0 auto;
    }
}
/* line 1469, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-slide .ns-section-slide-image-right {
    width: 48%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    padding-left: 8.66667%;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1469, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide .ns-section-slide-image-right {
        width: 100%;
        height: 200px;
        padding: 0;
        position: absolute;
        top: 40px;
        left: 0;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
@media (max-width: 479px) {
    /* line 1469, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide .ns-section-slide-image-right {
        width: 100%;
        height: 200px;
        padding: 0;
        position: absolute;
        top: 40px;
        left: 0;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1490, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide .ns-section-slide-image-right img.ns-hero-image {
        display: block;
        float: none;
        height: 200px;
        margin: 0 auto;
    }
}
@media (max-width: 479px) {
    /* line 1490, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide .ns-section-slide-image-right img.ns-hero-image {
        display: block;
        float: none;
        height: 200px;
        margin: 0 auto;
    }
}
/* line 1505, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-slide h2.ns-header-basic {
    margin: 0 0 31px 0;
    font-size: 36px;
    line-height: 45px;
    text-align: left;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1505, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide h2.ns-header-basic {
        width: 100%;
        padding: 0;
        text-align: center;
    }
}
@media (max-width: 479px) {
    /* line 1505, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide h2.ns-header-basic {
        width: 100%;
        padding: 0;
        text-align: center;
    }
}
/* line 1521, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-slide p {
    margin: 0 0 40px 0;
    text-transform: none;
    font-family: "Dosis", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 20px;
    font-weight: 300;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1521, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide p {
        margin: 0 0 30px 0;
    }
}
@media (max-width: 479px) {
    /* line 1521, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide p {
        margin: 0 0 30px 0;
    }
}
/* line 1535, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-slide .ns-button.ns-button-cta,
section.ns-section-main.ns-section-slide input[type="submit"].ns-button-cta,
section.ns-section-main.ns-section-slide input[type="button"].ns-button-cta,
section.ns-section-main.ns-section-slide input[type="reset"].ns-button-cta,
section.ns-section-main.ns-section-slide button.ns-button-cta {
    padding: 5px 20px 13px 20px;
    font-size: 30px;
    line-height: 40px;
    text-transform: none;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1535, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide .ns-button.ns-button-cta,
    section.ns-section-main.ns-section-slide input[type="submit"].ns-button-cta,
    section.ns-section-main.ns-section-slide input[type="button"].ns-button-cta,
    section.ns-section-main.ns-section-slide input[type="reset"].ns-button-cta,
    section.ns-section-main.ns-section-slide button.ns-button-cta {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 479px) {
    /* line 1535, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-slide .ns-button.ns-button-cta,
    section.ns-section-main.ns-section-slide input[type="submit"].ns-button-cta,
    section.ns-section-main.ns-section-slide input[type="button"].ns-button-cta,
    section.ns-section-main.ns-section-slide input[type="reset"].ns-button-cta,
    section.ns-section-main.ns-section-slide button.ns-button-cta {
        width: 100%;
        text-align: center;
    }
}

/* line 1553, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-grey {
    background: #f8f8f8;
}

/* line 1557, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-form {
    padding: 101px 0 134px 0;
    background: #00365c;
    color: #ffffff;
    text-align: center;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1557, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-form {
        padding: 31px 0 44px 0;
    }
}
@media (max-width: 479px) {
    /* line 1557, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-form {
        padding: 31px 0 44px 0;
    }
}
/* line 1568, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-form h2.ns-header-basic {
    margin: 0 0 32px 0;
    color: #ffffff;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    padding-left: 16.33333%;
    padding-right: 16.33333%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1568, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-form h2.ns-header-basic {
        width: 100%;
        padding: 0;
    }
}
@media (max-width: 479px) {
    /* line 1568, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-form h2.ns-header-basic {
        width: 100%;
        padding: 0;
    }
}
/* line 1584, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-form form {
    margin: 0 0 102px 0;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1584, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-form form {
        margin: 0 0 42px 0;
    }
}
@media (max-width: 479px) {
    /* line 1584, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-form form {
        margin: 0 0 42px 0;
    }
}
/* line 1607, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-form form input[type="date"],
section.ns-section-main.ns-section-form form input[type="datetime"],
section.ns-section-main.ns-section-form form input[type="datetime-local"],
section.ns-section-main.ns-section-form form input[type="email"],
section.ns-section-main.ns-section-form form input[type="month"],
section.ns-section-main.ns-section-form form input[type="number"],
section.ns-section-main.ns-section-form form input[type="password"],
section.ns-section-main.ns-section-form form input[type="search"],
section.ns-section-main.ns-section-form form input[type="tel"],
section.ns-section-main.ns-section-form form input[type="text"],
section.ns-section-main.ns-section-form form input[type="time"],
section.ns-section-main.ns-section-form form input[type="url"],
section.ns-section-main.ns-section-form form input[type="week"],
section.ns-section-main.ns-section-form form select,
section.ns-section-main.ns-section-form form textarea {
    width: 100%;
    padding: 16px 14px 12px 14px;
    background: #ffffff;
    border-color: #ffffff;
    font-size: 24px;
    line-height: 24px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.hbspt-form .hs-form-field {
    float: left;
    width: 17.1%;
    margin: 0 2% 0 0;
    position: relative;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1607, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    .hbspt-form .hs-form-field {
        width: 100%;
        margin: 0 0 20px 0;
    }
}
@media (max-width: 479px) {
    /* line 1607, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    .hbspt-form .hs-form-field {
        width: 100%;
        margin: 0 0 20px 0;
    }
}
.hbspt-form label {
    display: none;
}
ul.hs-error-msgs.inputs-list {
    list-style: none;
}
@media (min-width: 768px) {
    ul.hs-error-msgs.inputs-list {
        position: absolute;
    }
}
.hbspt-form .hs-error-msgs label {
    color: #fff;
    display: inline-block;
    line-height: 1.3;
    text-align: left;
}
/* line 1630, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-form form .ns-button,
section.ns-section-main.ns-section-form form input[type="submit"],
section.ns-section-main.ns-section-form form input[type="button"],
section.ns-section-main.ns-section-form form input[type="reset"],
section.ns-section-main.ns-section-form form button {
    float: left;
    width: 23.5%;
    padding: 11px 20px 18px 20px;
    font-size: 30px;
    line-height: 30px;
    font-family: "Dosis", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    text-transform: none;
    font-weight: 300;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1630, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-form form .ns-button,
    section.ns-section-main.ns-section-form form input[type="submit"],
    section.ns-section-main.ns-section-form form input[type="button"],
    section.ns-section-main.ns-section-form form input[type="reset"],
    section.ns-section-main.ns-section-form form button {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 479px) {
    /* line 1630, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-form form .ns-button,
    section.ns-section-main.ns-section-form form input[type="submit"],
    section.ns-section-main.ns-section-form form input[type="button"],
    section.ns-section-main.ns-section-form form input[type="reset"],
    section.ns-section-main.ns-section-form form button {
        width: 100%;
        text-align: center;
    }
}
/* line 1650, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-form #ns-section-form-subheader {
    display: inline-block;
    margin: 0 0 41px 0;
    font-family: "Dosis", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 22px;
    line-height: 35px;
    font-weight: 400;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
}
/* line 1659, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
/* line 1659, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-form ol#ns-section-form-clients {
    height: 100px;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    padding-left: 17.33333%;
    padding-right: 17.33333%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1659, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-form ol#ns-section-form-clients {
        height: auto;
    }
}
@media (max-width: 479px) {
    /* line 1659, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-form ol#ns-section-form-clients {
        height: auto;
    }
}
/* line 1672, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-form ol#ns-section-form-clients > li {
    text-align: center;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 13.33333%;
    float: left;
    margin-right: 4%;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1672, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-form ol#ns-section-form-clients > li {
        padding: 10px 0;
        top: 0;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        width: 48%;
        float: left;
        margin-right: 4%;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 1672, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-form ol#ns-section-form-clients > li {
        top: 0;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        width: 48%;
        float: left;
        margin-right: 4%;
        display: inline;
    }
}
/* line 1690, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-form ol#ns-section-form-clients > li > a > img {
    width: 82%;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
    opacity: 0.9;
}
/* line 1697, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-form ol#ns-section-form-clients > li:nth-child(6) {
    width: 13.33333%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1697, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-form ol#ns-section-form-clients > li:nth-child(6) {
        width: 48%;
        float: left;
        margin-right: 4%;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 1697, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-form ol#ns-section-form-clients > li:nth-child(6) {
        width: 48%;
        float: left;
        margin-right: 4%;
        display: inline;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1706, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-form ol#ns-section-form-clients > li:nth-child(2n) {
        width: 48%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 1706, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-form ol#ns-section-form-clients > li:nth-child(2n) {
        width: 48%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
/* line 1717, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
ol.ns-button-row {
    padding: 66px 0 35px 0;
    text-align: center;
}
/* line 1720, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
ol.ns-button-row > li {
    display: inline-block;
    margin: 0 15px 10px 15px;
}

#ns-banner.ns-section-page {
    height:200px;
}

section.ns-section-main.ns-section-page {
    padding: 50px;
    width: 90%;
}

section.ns-section-main.ns-section-page {
    padding: 50px;
    width: 90%;
}

.gh-section-blog .press-page {
    height:180px !important;
}

.gh-section-blog aside .gh-social-media-icons {
    padding: 0 0 20px;
    display: block;
    float: left;
    margin-top: 25px;
}

.gh-section-blog aside .gh-social-media-icons a {
    margin: 0 10px;
    font-size: 30px;
    color: inherit;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    opacity: 0.3;
}

.gh-section-blog aside .gh-social-media-icons a:first-child {
    margin-left: 0;
}

.gh-section-blog aside .gh-social-media-icons a:hover {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    opacity: 1;
}

.gh-section-blog aside .gh-social-media-icons .ss-facebook {
    color: #3b5998;
}

.gh-section-blog aside .gh-social-media-icons .ss-twitter {
    color: #00aced;
}

.gh-section-blog aside .gh-social-media-icons .ss-instagram {
    color: #517fa4;
}

.gh-section-blog aside .gh-social-media-icons .ss-linkedin {
    color: #007bb6;
}


/* line 1727, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main.ns-section-blog {
    padding: 0 0 50px 0;
}
/* line 1730, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > main {
    width: 65.33333%;
    float: left;
    margin-right: 4%;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1730, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    .gh-section-blog section.ns-section-main > .ns-section-wrapper > main {
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 1730, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    .gh-section-blog section.ns-section-main > .ns-section-wrapper > main {
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
/* line 1738, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > main ol#ns-news-feed {
    padding-top: 68px;
    text-align: left;
    list-style-type: none;
}
/* line 1741, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > main ol#ns-news-feed > li {
    padding: 0 0 25px 0;
    margin: 0 0 25px 0;
    border-bottom: 1px solid #e6e6e6;
}

.gh-section-blog section.ns-section-main > .ns-section-wrapper > main ol#ns-news-feed > li:last-child {
    border-bottom:0;
}

/* line 1743, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > main ol#ns-news-feed > li > header {
    position: relative;
}
/* line 1745, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > main ol#ns-news-feed > li > header .ns-thumbnail {
    width: 56px;
    height: 56px;
    border: 4px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: absolute;
    top: 0;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;
    -o-border-radius: 80px;
    border-radius: 80px;
}
/* line 1753, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > main ol#ns-news-feed > li > header .ns-thumbnail > img {
    width: 100%;
    // -webkit-filter: grayscale(100%);
    // -moz-filter: grayscale(100%);
    // filter: grayscale(100%);
}
/* line 1758, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > main ol#ns-news-feed > li > header > h3 {
    padding: 0 0 0 78px;
    color: #464d55;
    font-size: 2.3em;
    line-height: 1em;
    font-weight: 500;
}
/* line 1763, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > main ol#ns-news-feed > li > header > h3 > a {
    color: inherit;
}
/* line 1766, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > main ol#ns-news-feed > li > header > h3 > a:hover {
    color: #3ac0f0;
}
/* line 1770, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > main ol#ns-news-feed > li > header > h4 {
    padding: 0 0 0 80px;
    margin: 7.7px 0 35px 0;
    color: #464d55;
    font-size: 15px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: bold;
}
/* line 1778, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > main ol#ns-news-feed > li > header > h4 > span {
    font-weight: normal;
    font-style: italic;
    text-transform: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=66);
    opacity: 0.66;
    display: none;
}
#ns-post-date {
    display: none;
}
/* line 1784, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > main ol#ns-news-feed > li > header > h4 > a {
    color: inherit;
}
/* line 1787, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > main ol#ns-news-feed > li > header > h4 > a:hover {
    color: #3ac0f0;
}
/* line 1792, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > main ol#ns-news-feed > li > .ns-news-snippet {
    margin: 0;
}

.gh-section-blog section.ns-section-main > .ns-section-wrapper > main ol#ns-news-feed > li > .ns-news-snippet > p {
    margin-left: 80px;
    margin-bottom: 15px;
    line-height: 1.5em;
    font-weight: 400;
    font-size:1.1em;
}

.gh-section-blog section.ns-section-main > .ns-section-wrapper > main ol#ns-news-feed > li > .ns-news-snippet > p:last-child {
    margin-bottom: 0px;
}

.gh-section-blog section.ns-section-main > .ns-section-wrapper > main ol#ns-news-feed > li > .ns-news-snippet > a.ns-see-more {
    margin-left: 80px;
}

/* line 1795, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > main ol#ns-news-feed > li > .ns-news-snippet > p > a.ns-see-more {
    margin: 0 0 0 10px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}
/* line 1803, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > main ol#ns-news-feed > li > hr.ns-line-short {
    margin-top: 0;
    margin-bottom: 57px;
}
/* line 1810, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside {
    padding: 92px 0 0 40px;
    width: 30.66667%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.gh-section-blog section.ns-section-main.ns-section-post > .ns-section-wrapper > aside {
    padding-top: 40px;
}

@media (min-width: 480px) and (max-width: 767px) {
    /* line 1810, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    .gh-section-blog section.ns-section-main > .ns-section-wrapper > aside {
        padding: 92px 0 0 0;
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 1810, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    .gh-section-blog section.ns-section-main > .ns-section-wrapper > aside {
        padding: 92px 0 0 0;
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
/* line 1822, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module {
    font-size: 13px;
    line-height: 25px;
}
/* line 1825, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > h3 {
    padding: 0 0 7px 0;
    border-bottom: 1px solid #e6e6e6;
    font-family: "Dosis", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 1.5em;
    line-height: 25px;
    font-weight: 300;
    text-transform: uppercase;
    color: #464d55;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    margin-bottom:0px;
}
/* line 1836, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form {
    padding: 7px 0 65px 0;
    position: relative;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    font-size: 1.4em;
}
/* line 1840, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form > p {
    margin: 10px 0 25px 0;
    font-size: 1em;
}
/* line 1857, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form input[type="date"],
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form input[type="datetime"],
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form input[type="datetime-local"],
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form input[type="email"],
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form input[type="month"],
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form input[type="number"],
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form input[type="password"],
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form input[type="search"],
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form input[type="tel"],
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form input[type="text"],
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form input[type="time"],
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form input[type="url"],
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form input[type="week"],
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form select,
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form textarea {
    width: 100%;
}
/* line 1864, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form .ns-button,
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form input[type="submit"],
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form input[type="button"],
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form input[type="reset"],
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > form button {
    position: absolute;
    right: 0;
    -webkit-border-radius: 0 2px 2px 0;
    -moz-border-radius: 0 2px 2px 0;
    -ms-border-radius: 0 2px 2px 0;
    -o-border-radius: 0 2px 2px 0;
    border-radius: 0 2px 2px 0;
}
/* line 1870, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module #ns-sidebar-social-links {
    margin: 18px 0 30px 0;
    font-size: 18px;
    line-height: 30px;
    color: #464d55;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}
/* line 1876, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module #ns-sidebar-social-links > a {
    display: inline-block;
    margin: 0 10px 0 0;
    color: inherit;
}
/* line 1882, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > ol#ns-popular-posts {
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    margin-top: 10px;
}
/* line 1884, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > ol#ns-popular-posts > li {
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    /*padding: 27px 0 26px 0;*/
    padding: 10px 0 0 0;
    /*background: transparent url("https://d1cn9y1dji338c.cloudfront.net/wp-content/themes/gh-marketing/assets/placeholders/popular-posts-divider.png") no-repeat center bottom;*/
}
/* line 1888, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > ol#ns-popular-posts > li > h3 {
    margin: 0 0 0.4em 0;
    color: #464d55;
    font-size: 1.5em;
    line-height: 1.2em;
}
/* line 1893, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > ol#ns-popular-posts > li > h3 > a {
    color: inherit;
}
/* line 1896, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > ol#ns-popular-posts > li > h3 > a:hover {
    color: #3ac0f0;
}
/* line 1900, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > ol#ns-popular-posts > li > h4 {
    margin: 0 0 13px 0;
    color: #464d55;
    font-size: 0.95em;
    line-height: 1.3em;
    text-transform: uppercase;
    font-weight: bold;
}
/* line 1907, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > ol#ns-popular-posts > li > h4 > a {
    color: inherit;
}
/* line 1910, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > ol#ns-popular-posts > li > h4 > a:hover {
    color: #3ac0f0;
}
/* line 1913, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > ol#ns-popular-posts > li > h4 > span {
    font-weight: normal;
    font-style: italic;
    text-transform: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=66);
    opacity: 0.66;
}
/* line 1922, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > ol#ns-popular-posts > li > .ns-news-snippet > p > a.ns-see-more {
    margin: 0 0 0 10px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}
/* line 1931, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
.gh-section-blog section.ns-section-main > .ns-section-wrapper > aside > .ns-sidebar-module > ol#ns-popular-posts > li:last-child {
    background: none;
}

/* line 1942, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-post > .ns-section-wrapper main #ns-post-actions {
    margin-top: 35px;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}

section.ns-section-main.ns-section-post > .ns-section-wrapper main #ns-post-actions a {
    font-size: 16px;
    font-weight: 400
}

/* line 1945, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-post > .ns-section-wrapper main #ns-post-actions #ns-post-actions-1 {
    font-size: 13px;
    line-height: 25px;
    text-align: left;
    width: 30.66667%;
    float: left;
    margin-right: 4%;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1945, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-post > .ns-section-wrapper main #ns-post-actions #ns-post-actions-1 {
        margin: 20px 0;
        text-align: center;
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 1945, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-post > .ns-section-wrapper main #ns-post-actions #ns-post-actions-1 {
        margin: 20px 0;
        text-align: center;
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
/* line 1961, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-post > .ns-section-wrapper main #ns-post-actions #ns-post-actions-2 {
    margin: 10px 0 20px 0;
    text-align: center;
    width: 30.66667%;
    float: left;
    margin-right: 4%;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1961, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-post > .ns-section-wrapper main #ns-post-actions #ns-post-actions-2 {
        margin: 10px 0 0 0;
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 1961, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-post > .ns-section-wrapper main #ns-post-actions #ns-post-actions-2 {
        margin: 10px 0 0 0;
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
/* line 1973, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-post > .ns-section-wrapper main #ns-post-actions #ns-post-actions-2 > a {
    margin: 0 10px;
    font-size: 30px;
    color: inherit;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    opacity: 0.4;
}
/* line 1980, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-post > .ns-section-wrapper main #ns-post-actions #ns-post-actions-3 {
    font-size: 13px;
    line-height: 25px;
    text-align: right;
    width: 30.66667%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1980, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-post > .ns-section-wrapper main #ns-post-actions #ns-post-actions-3 {
        margin: 20px 0 60px 0;
        text-align: center;
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 1980, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-post > .ns-section-wrapper main #ns-post-actions #ns-post-actions-3 {
        margin: 20px 0 60px 0;
        text-align: center;
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}

section.ns-section-main.ns-section-post > .ns-section-wrapper main .post-image-wrapper {
    height: 300px;
    overflow: hidden;
    width: 100%;
}


/* line 1997, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-post > .ns-section-wrapper main aside.ns-quote {
    margin: 0 0 10px 0;
    font-size: 30px;
    line-height: 40px;
    font-family: "Crimson Text", "Georgia", "Times New Roman", serif;
    font-style: italic;
    width: 30.66667%;
    float: left;
    margin-right: 4%;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 1997, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-post > .ns-section-wrapper main aside.ns-quote {
        font-size: 16px;
        line-height: 25px;
    }
}
@media (max-width: 479px) {
    /* line 1997, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-post > .ns-section-wrapper main aside.ns-quote {
        font-size: 16px;
        line-height: 25px;
    }
}
/* line 2013, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-post > .ns-section-wrapper main figure.ns-footnote {
    width: 30.66667%;
    float: left;
    margin-right: 4%;
    display: inline;
    padding-bottom: 10px;
}
/* line 2016, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-post > .ns-section-wrapper main figure.ns-footnote > img {
    width: 100%;
    margin: 10px 0 5px 0;
}
/* line 2020, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-post > .ns-section-wrapper main figure.ns-footnote > p {
    padding: 0 0 0 10px;
    border-left: 4px solid #e6e6e6;
    font-size: 12px;
    line-height: 20px;
}
/* line 2027, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-post > .ns-section-wrapper main figure.ns-post-feature {
    margin: 0 0 45px 0;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    padding-left: 17.33333%;
    padding-right: 17.33333%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 2027, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-post > .ns-section-wrapper main figure.ns-post-feature {
        padding-left: 0%;
        padding-right: 0%;
    }
}
@media (max-width: 479px) {
    /* line 2027, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-post > .ns-section-wrapper main figure.ns-post-feature {
        padding-left: 0%;
        padding-right: 0%;
    }
}
/* line 2041, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-post > .ns-section-wrapper main figure.ns-post-feature img {
    width: 100%;
    margin: 13px 0 4px 0;
}
/* line 2045, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-post > .ns-section-wrapper main figure.ns-post-feature p {
    padding: 0 0 0 10px;
    border-left: 4px solid #e6e6e6;
    font-size: 12px;
    line-height: 20px;
}
/* line 2052, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-post > .ns-section-wrapper main hr.ns-line-short {
    margin-bottom: 114px;
    position: relative;
    top: 38px;
}
/* line 2057, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-post > .ns-section-wrapper main h3 {
    margin: 0 0 40px 0;
    font-size: 24px;
    line-height: 35px;
    font-weight: bold;
    text-align: center;
    color: #464d55;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    padding-left: 26%;
    padding-right: 26%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/* line 2069, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-post > .ns-section-wrapper main p {
    margin: 0 0 30px 0;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    padding-left: 0%;
    padding-right: 0%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    float: none;
    font-weight: 400;
    font-size: 1.1em;
    line-height: 1.4em;
}

section.ns-section-main.ns-section-post > .ns-section-wrapper main ul,
section.ns-section-main.ns-section-post > .ns-section-wrapper main ol {
    // padding-left: 2%;
    padding-left: 80px !important;
    padding-right: 0%;
    margin: 0 0 30px 0;
    font-weight: 400;
}

section.ns-section-main.ns-section-post > .ns-section-wrapper main ul {
    list-style: square outside none;
}

@media (min-width: 480px) and (max-width: 767px) {
    /* line 2069, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-post > .ns-section-wrapper main p {
        padding-left: 0%;
        padding-right: 0%;
    }
}
@media (max-width: 479px) {
    /* line 2069, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-post > .ns-section-wrapper main p {
        padding-left: 0%;
        padding-right: 0%;
    }
}
/* line 2086, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-post > .ns-section-wrapper main #ns-disqus {
    margin: -12px 0 89px 60px;
    position: relative;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: 12px; /* Initially set to -48 */
    display: inline;
    padding-left: 0%;
    padding-right: 0%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 2086, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-post > .ns-section-wrapper main #ns-disqus {
        padding-left: 0%;
        padding-right: 0%;
    }
}
@media (max-width: 479px) {
    /* line 2086, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-post > .ns-section-wrapper main #ns-disqus {
        padding-left: 0%;
        padding-right: 0%;
    }
}

/* line 2105, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-clients {
    padding: 101px 0 93px 0;
}
/* line 2108, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-clients > .ns-section-wrapper ol.ns-clients {
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    padding-top: 20px;
}
/* line 2111, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-clients > .ns-section-wrapper ol.ns-clients > li {
    text-align: center;
    position: relative;
    width: 30.66667%;
    float: left;
    margin-right: 4%;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 2111, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-clients > .ns-section-wrapper ol.ns-clients > li {
        margin: 0 0 80px 0;
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 2111, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-clients > .ns-section-wrapper ol.ns-clients > li {
        margin: 0 0 80px 0;
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
/* line 2123, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-clients > .ns-section-wrapper ol.ns-clients > li > img {
    max-height: 100px;
    max-width: 160px;
    margin: 0 0 25px 0;
}
/* line 2128, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-clients > .ns-section-wrapper ol.ns-clients > li > p {
    margin: 0 0 19px 0;
    font-size: 22px;
    line-height: 30px;
    font-family: "Crimson Text", "Georgia", "Times New Roman", serif;
    font-style: italic;
    text-align: left;
}
/* line 2136, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-clients > .ns-section-wrapper ol.ns-clients > li > .ns-thumbnail {
    display: block;
    float: left;
    width: 56px;
    height: 56px;
    border: 4px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: absolute;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;
    -o-border-radius: 80px;
    border-radius: 80px;
}
/* line 2145, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-clients > .ns-section-wrapper ol.ns-clients > li > .ns-thumbnail > img {
    width: 100%;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
}
/* line 2150, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-clients > .ns-section-wrapper ol.ns-clients > li > h3 {
    padding: 0 0 0 74px;
    margin: 0 0 4px 0;
    font-size: 24px;
    line-height: 35px;
    color: #464d55;
    font-family: "Dosis", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    text-align: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/* line 2160, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-clients > .ns-section-wrapper ol.ns-clients > li > h4 {
    padding: 0 0 0 74px;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/* line 2170, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-clients > .ns-section-wrapper ol.ns-clients > li:nth-child(3n) {
    width: 30.66667%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 2170, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-clients > .ns-section-wrapper ol.ns-clients > li:nth-child(3n) {
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 2170, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-clients > .ns-section-wrapper ol.ns-clients > li:nth-child(3n) {
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}

/* line 2184, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-client > .ns-section-wrapper {
    position: relative;
    height: 750px;
    text-align: center;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 2184, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-client > .ns-section-wrapper {
        height: auto;
        padding-top: 80px;
    }
}
@media (max-width: 479px) {
    /* line 2184, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-client > .ns-section-wrapper {
        height: auto;
        padding-top: 80px;
    }
}
/* line 2196, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-client > .ns-section-wrapper > .ns-client-picture {
    position: relative;
    height: 750px;
    width: 39.33333%;
    float: left;
    margin-right: 4%;
    display: inline;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 2196, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-client > .ns-section-wrapper > .ns-client-picture {
        display: inline-block;
        float: none;
        width: 56px;
        height: 56px;
        margin: 80px auto 20px auto;
        border: 4px solid rgba(0, 0, 0, 0.05);
        overflow: hidden;
        position: absolute;
        bottom: 140px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-border-radius: 80px;
        -moz-border-radius: 80px;
        -ms-border-radius: 80px;
        -o-border-radius: 80px;
        border-radius: 80px;
    }
}
@media (max-width: 479px) {
    /* line 2196, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-client > .ns-section-wrapper > .ns-client-picture {
        display: inline-block;
        float: none;
        width: 56px;
        height: 56px;
        margin: 80px auto 20px auto;
        border: 4px solid rgba(0, 0, 0, 0.05);
        overflow: hidden;
        position: absolute;
        bottom: 140px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-border-radius: 80px;
        -moz-border-radius: 80px;
        -ms-border-radius: 80px;
        -o-border-radius: 80px;
        border-radius: 80px;
    }
}
/* line 2228, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-client > .ns-section-wrapper > .ns-client-picture > img {
    display: block;
    position: absolute;
    bottom: 0px;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 2228, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-client > .ns-section-wrapper > .ns-client-picture > img {
        width: 100%;
        position: relative;
        -webkit-filter: grayscale(100%);
        -moz-filter: grayscale(100%);
        filter: grayscale(100%);
    }
}
@media (max-width: 479px) {
    /* line 2228, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-client > .ns-section-wrapper > .ns-client-picture > img {
        width: 100%;
        position: relative;
        -webkit-filter: grayscale(100%);
        -moz-filter: grayscale(100%);
        filter: grayscale(100%);
    }
}
/* line 2245, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-client > .ns-section-wrapper > .ns-client-content {
    text-align: center;
    width: 56.66667%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 2245, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-client > .ns-section-wrapper > .ns-client-content {
        top: 0;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
@media (max-width: 479px) {
    /* line 2245, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-client > .ns-section-wrapper > .ns-client-content {
        top: 0;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
    }
}
/* line 2261, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-client > .ns-section-wrapper > .ns-client-content > img {
    margin: 0 0 24px 0;
    max-width: 200px;
}
/* line 2265, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-client > .ns-section-wrapper > .ns-client-content > p {
    margin: 0 0 37px 0;
    font-size: 24px;
    line-height: 35px;
    font-family: "Crimson Text", "Georgia", "Times New Roman", serif;
    font-style: italic;
    width: 100%;
    float: right;
    margin-right: 0;
    *margin-left: -48px;
    display: inline;
    padding-left: 17.33333%;
    padding-right: 17.33333%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 2265, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-client > .ns-section-wrapper > .ns-client-content > p {
        margin: 0 0 120px 0;
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
        padding-left: 0%;
        padding-right: 0%;
    }
}
@media (max-width: 479px) {
    /* line 2265, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-client > .ns-section-wrapper > .ns-client-content > p {
        margin: 0 0 120px 0;
        width: 100%;
        float: right;
        margin-right: 0;
        *margin-left: -48px;
        display: inline;
        padding-left: 0%;
        padding-right: 0%;
    }
}
/* line 2288, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-client > .ns-section-wrapper > .ns-client-content > h3 {
    font-size: 36px;
    line-height: 45px;
    font-family: "Dosis", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
/* line 2293, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
section.ns-section-main.ns-section-client > .ns-section-wrapper > .ns-client-content > h4 {
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: bold;
}
@media (min-width: 480px) and (max-width: 767px) {
    /* line 2293, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-client > .ns-section-wrapper > .ns-client-content > h4 {
        margin: 0 0 80px 0;
    }
}
@media (max-width: 479px) {
    /* line 2293, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    section.ns-section-main.ns-section-client > .ns-section-wrapper > .ns-client-content > h4 {
        margin: 0 0 80px 0;
    }
}

/* Z-Indices */
/************************************************/
/* line 2313, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
nav.ns-section-main {
    z-index: 400;
}

/* line 2314, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-page-main {
    z-index: 300;
}

@media (min-width: 480px) and (max-width: 767px) {
    /* line 2316, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    nav.ns-section-main {
        z-index: 200;
    }
}
@media (max-width: 479px) {
    /* line 2316, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
    nav.ns-section-main {
        z-index: 200;
    }
}

/* line 2323, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-slide-controls.ns-section-main {
    z-index: 500;
}

/* line 2327, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-signin-modal .modal-dialog {
    z-index: 1060;
}
/* line 2329, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-signin-modal .modal-dialog span.close {
    z-index: 1080;
}
/* line 2332, /Users/logan/Developer/gather/gatherhome/app/assets/stylesheets/main.css.scss */
#ns-signin-modal .modal-dialog .modal-body {
    z-index: 1070;
}
/*!
* Bootstrap v3.1.1 (http://getbootstrap.com)
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}
.fade.in {
    opacity: 1;
}
.collapse {
    display: none;
}
.collapse.in {
    display: block;
}
.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    transition: height 0.35s ease;
}
.modal-open {
    overflow: hidden;
}
.modal {
    display: none;
    overflow: auto;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}
.modal-content {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #999999;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.2);
    background-clip: padding-box;
    outline: none;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000000;
}
.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}
.modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 16.42857143px;
}
.modal-header .close {
    margin-top: -2px;
}
.modal-title {
    margin: 0;
    line-height: 1.42857143;
}
.modal-body {
    position: relative;
    padding: 20px;
}
.modal-footer {
    margin-top: 15px;
    padding: 19px 20px 20px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
    margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
    margin-left: 0;
}
@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }
    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    .modal-sm {
        width: 300px;
    }
}
@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}


/*
* Symbolset
* www.symbolset.com
* Copyright © 2013 Oak Studios LLC
*
* Upload this file to your web server
* and place this within your <head> tags.
* <link href="webfonts/ss-social-circle.css" rel="stylesheet" />
*/

@font-face {
    font-family: "SSSocialCircle";
    src: url('assets/ss-social-circle.eot');
    src: url('assets/ss-social-circle.eot?#iefix') format('embedded-opentype'),
        url('assets/ss-social-circle.woff') format('woff'),
        url('assets/ss-social-circle.ttf')  format('truetype'),
        url('assets/ss-social-circle.svg#SSSocialCircle') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* This triggers a redraw in IE to Fix IE8's :before content rendering. */
html:hover [class^="ss-"]{-ms-zoom: 1;}

.ss-icon, .ss-icon.ss-social-circle,
[class^="ss-"]:before, [class*=" ss-"]:before,
[class^="ss-"].ss-social-circle:before, [class*=" ss-"].ss-social-circle:before,
[class^="ss-"].right:after, [class*=" ss-"].right:after,
[class^="ss-"].ss-social-circle.right:after, [class*=" ss-"].ss-social-circle.right:after {
    font-family: "SSSocialCircle";
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    text-rendering: optimizeLegibility;
    white-space: nowrap;
    /*-webkit-font-feature-settings: "liga"; Currently broken in Chrome >= v22. Falls back to text-rendering. Safari is unaffected. */
    -moz-font-feature-settings: "liga=1";
    -moz-font-feature-settings: "liga";
    -ms-font-feature-settings: "liga" 1;
    -o-font-feature-settings: "liga";
    font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}

[class^="ss-"].right:before,
[class*=" ss-"].right:before{display:none;content:'';}

.ss-facebook:before,.ss-facebook.right:after{content:''}.ss-twitter:before,.ss-twitter.right:after{content:''}.ss-linkedin:before,.ss-linkedin.right:after{content:''}.ss-googleplus:before,.ss-googleplus.right:after{content:''}.ss-appdotnet:before,.ss-appdotnet.right:after{content:''}.ss-zerply:before,.ss-zerply.right:after{content:''}.ss-reddit:before,.ss-reddit.right:after{content:''}.ss-steam:before,.ss-steam.right:after{content:''}.ss-tumblr:before,.ss-tumblr.right:after{content:''}.ss-wordpress:before,.ss-wordpress.right:after{content:''}.ss-blogger:before,.ss-blogger.right:after{content:''}.ss-posterous:before,.ss-posterous.right:after{content:''}.ss-quora:before,.ss-quora.right:after{content:''}.ss-youtube:before,.ss-youtube.right:after{content:''}.ss-vimeo:before,.ss-vimeo.right:after{content:''}.ss-vine:before,.ss-vine.right:after{content:''}.ss-letterboxd:before,.ss-letterboxd.right:after{content:''}.ss-flickr:before,.ss-flickr.right:after{content:''}.ss-instagram:before,.ss-instagram.right:after{content:''}.ss-500px:before,.ss-500px.right:after{content:''}.ss-etsy:before,.ss-etsy.right:after{content:''}.ss-pinterest:before,.ss-pinterest.right:after{content:''}.ss-svpply:before,.ss-svpply.right:after{content:''}.ss-readmill:before,.ss-readmill.right:after{content:''}.ss-dropbox:before,.ss-dropbox.right:after{content:''}.ss-pinboard:before,.ss-pinboard.right:after{content:''}.ss-delicious:before,.ss-delicious.right:after{content:''}.ss-dribbble:before,.ss-dribbble.right:after{content:''}.ss-behance:before,.ss-behance.right:after{content:''}.ss-github:before,.ss-github.right:after{content:''}.ss-octocat:before,.ss-octocat.right:after{content:''}.ss-stackoverflow:before,.ss-stackoverflow.right:after{content:''}.ss-paypal:before,.ss-paypal.right:after{content:''}.ss-kickstarter:before,.ss-kickstarter.right:after{content:''}.ss-foursquare:before,.ss-foursquare.right:after{content:''}.ss-yelp:before,.ss-yelp.right:after{content:''}.ss-skype:before,.ss-skype.right:after{content:''}.ss-rdio:before,.ss-rdio.right:after{content:''}.ss-spotify:before,.ss-spotify.right:after{content:''}.ss-lastfm:before,.ss-lastfm.right:after{content:''}.ss-soundcloud:before,.ss-soundcloud.right:after{content:''}.ss-link:before,.ss-link.right:after{content:'🔗'}.ss-phone:before,.ss-phone.right:after{content:'📞'}.ss-mail:before,.ss-mail.right:after{content:'✉'}.ss-like:before,.ss-like.right:after{content:'👍'}.ss-rss:before,.ss-rss.right:after{content:''}.ss-share:before,.ss-share.right:after{content:''}.ss-apple:before,.ss-apple.right:after{content:''}.ss-microsoft:before,.ss-microsoft.right:after{content:''}.ss-windows:before,.ss-windows.right:after{content:''}.ss-android:before,.ss-android.right:after{content:''}.ss-blackberry:before,.ss-blackberry.right:after{content:''}

/* Legacy */
.ss-fivehundredpx:before,.ss-fivehundredpx.right:after{content:''}


/*
* Symbolset
* www.symbolset.com
* Copyright © 2013 Oak Studios LLC
*
* Upload this file to your web server
* and place this within your <head> tags.
* <link href="webfonts/ss-social-regular.css" rel="stylesheet" />
*/

@font-face {
    font-family: "SSSocialRegular";
    src: url('assets/ss-social-regular.eot');
    src: url('assets/ss-social-regular.eot?#iefix') format('embedded-opentype'),
        url('assets/ss-social-regular.woff') format('woff'),
        url('assets/ss-social-regular.ttf')  format('truetype'),
        url('assets/ss-social-regular.svg#SSSocialRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* This triggers a redraw in IE to Fix IE8's :before content rendering. */
html:hover [class^="ss-"]{-ms-zoom: 1;}

.ss-icon, .ss-icon.ss-social-regular,
[class^="ss-"]:before, [class*=" ss-"]:before,
[class^="ss-"].ss-social-regular:before, [class*=" ss-"].ss-social-regular:before,
[class^="ss-"].right:after, [class*=" ss-"].right:after,
[class^="ss-"].ss-social-regular.right:after, [class*=" ss-"].ss-social-regular.right:after {
    font-family: "SSSocialRegular";
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    text-rendering: optimizeLegibility;
    white-space: nowrap;
    /*-webkit-font-feature-settings: "liga"; Currently broken in Chrome >= v22. Falls back to text-rendering. Safari is unaffected. */
    -moz-font-feature-settings: "liga=1";
    -moz-font-feature-settings: "liga";
    -ms-font-feature-settings: "liga" 1;
    -o-font-feature-settings: "liga";
    font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}

[class^="ss-"].right:before,
[class*=" ss-"].right:before{display:none;content:'';}

.ss-facebook:before,.ss-facebook.right:after{content:''}.ss-twitter:before,.ss-twitter.right:after{content:''}.ss-linkedin:before,.ss-linkedin.right:after{content:''}.ss-googleplus:before,.ss-googleplus.right:after{content:''}.ss-appdotnet:before,.ss-appdotnet.right:after{content:''}.ss-zerply:before,.ss-zerply.right:after{content:''}.ss-reddit:before,.ss-reddit.right:after{content:''}.ss-steam:before,.ss-steam.right:after{content:''}.ss-tumblr:before,.ss-tumblr.right:after{content:''}.ss-wordpress:before,.ss-wordpress.right:after{content:''}.ss-blogger:before,.ss-blogger.right:after{content:''}.ss-posterous:before,.ss-posterous.right:after{content:''}.ss-quora:before,.ss-quora.right:after{content:''}.ss-youtube:before,.ss-youtube.right:after{content:''}.ss-vimeo:before,.ss-vimeo.right:after{content:''}.ss-vine:before,.ss-vine.right:after{content:''}.ss-letterboxd:before,.ss-letterboxd.right:after{content:''}.ss-flickr:before,.ss-flickr.right:after{content:''}.ss-instagram:before,.ss-instagram.right:after{content:''}.ss-500px:before,.ss-500px.right:after{content:''}.ss-etsy:before,.ss-etsy.right:after{content:''}.ss-pinterest:before,.ss-pinterest.right:after{content:''}.ss-svpply:before,.ss-svpply.right:after{content:''}.ss-readmill:before,.ss-readmill.right:after{content:''}.ss-dropbox:before,.ss-dropbox.right:after{content:''}.ss-pinboard:before,.ss-pinboard.right:after{content:''}.ss-delicious:before,.ss-delicious.right:after{content:''}.ss-dribbble:before,.ss-dribbble.right:after{content:''}.ss-behance:before,.ss-behance.right:after{content:''}.ss-github:before,.ss-github.right:after{content:''}.ss-octocat:before,.ss-octocat.right:after{content:''}.ss-stackoverflow:before,.ss-stackoverflow.right:after{content:''}.ss-paypal:before,.ss-paypal.right:after{content:''}.ss-kickstarter:before,.ss-kickstarter.right:after{content:''}.ss-foursquare:before,.ss-foursquare.right:after{content:''}.ss-yelp:before,.ss-yelp.right:after{content:''}.ss-skype:before,.ss-skype.right:after{content:''}.ss-rdio:before,.ss-rdio.right:after{content:''}.ss-spotify:before,.ss-spotify.right:after{content:''}.ss-lastfm:before,.ss-lastfm.right:after{content:''}.ss-soundcloud:before,.ss-soundcloud.right:after{content:''}.ss-link:before,.ss-link.right:after{content:'🔗'}.ss-phone:before,.ss-phone.right:after{content:'📞'}.ss-mail:before,.ss-mail.right:after{content:'✉'}.ss-like:before,.ss-like.right:after{content:'👍'}.ss-rss:before,.ss-rss.right:after{content:''}.ss-share:before,.ss-share.right:after{content:''}.ss-apple:before,.ss-apple.right:after{content:''}.ss-microsoft:before,.ss-microsoft.right:after{content:''}.ss-windows:before,.ss-windows.right:after{content:''}.ss-android:before,.ss-android.right:after{content:''}.ss-blackberry:before,.ss-blackberry.right:after{content:''}

/* Legacy */
.ss-fivehundredpx:before,.ss-fivehundredpx.right:after{content:''}


/*
* Symbolset
* www.symbolset.com
* Copyright © 2012 Oak Studios LLC
*
* Upload this file to your web server
* and place this within your <head> tags.
* <link href="webfonts/ss-symbolicons-block.css" rel="stylesheet" />
*/

@font-face {
    font-family: "SSSymbolicons";
    src: url('assets/ss-symbolicons-block.eot');
    src: url('assets/ss-symbolicons-block.eot?#iefix') format('embedded-opentype'),
        url('assets/ss-symbolicons-block.woff') format('woff'),
        url('assets/ss-symbolicons-block.ttf')  format('truetype'),
        url('assets/ss-symbolicons-block.svg#SSSymboliconsBlock') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* This triggers a redraw in IE to Fix IE8's :before content rendering. */
html:hover [class^="ss-"]{-ms-zoom: 1;}

.ss-icon, .ss-icon.ss-symbolicons-block,
[class^="ss-"]:before, [class*=" ss-"]:before,
[class^="ss-"].ss-symbolicons-block:before, [class*=" ss-"].ss-symbolicons-block:before,
[class^="ss-"].right:after, [class*=" ss-"].right:after,
[class^="ss-"].ss-symbolicons-block.right:after, [class*=" ss-"].ss-symbolicons-block.right:after {
    font-family: "SSSymbolicons";
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    text-rendering: optimizeLegibility;
    white-space: nowrap;
    /*-webkit-font-feature-settings: "liga"; Currently broken in Chrome >= v22. Falls back to text-rendering. Safari is unaffected. */
    -moz-font-feature-settings: "liga=1";
    -moz-font-feature-settings: "liga";
    -ms-font-feature-settings: "liga" 1;
    -o-font-feature-settings: "liga";
    font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}

[class^="ss-"].right:before,
[class*=" ss-"].right:before{display:none;content:'';}

.ss-crosshair:before,.ss-crosshair.right:after{content:'⌖'}.ss-search:before,.ss-search.right:after{content:'🔍'}.ss-zoomin:before,.ss-zoomin.right:after{content:''}.ss-zoomout:before,.ss-zoomout.right:after{content:''}.ss-binoculars:before,.ss-binoculars.right:after{content:''}.ss-raisedhand:before,.ss-raisedhand.right:after{content:'✋'}.ss-link:before,.ss-link.right:after{content:'🔗'}.ss-write:before,.ss-write.right:after{content:'✎'}.ss-compose:before,.ss-compose.right:after{content:'📝'}.ss-lock:before,.ss-lock.right:after{content:'🔒'}.ss-unlock:before,.ss-unlock.right:after{content:'🔓'}.ss-key:before,.ss-key.right:after{content:'🔑'}.ss-backspace:before,.ss-backspace.right:after{content:'⌫'}.ss-ban:before,.ss-ban.right:after{content:'🚫'}.ss-nosmoking:before,.ss-nosmoking.right:after{content:'🚭'}.ss-trash:before,.ss-trash.right:after{content:''}.ss-target:before,.ss-target.right:after{content:'◎'}.ss-stopsign:before,.ss-stopsign.right:after{content:''}.ss-radioactive:before,.ss-radioactive.right:after{content:'☢'}.ss-skull:before,.ss-skull.right:after{content:'💀'}.ss-lightning:before,.ss-lightning.right:after{content:'☇'}.ss-tag:before,.ss-tag.right:after{content:''}.ss-newtag:before,.ss-newtag.right:after{content:''}.ss-flag:before,.ss-flag.right:after{content:'⚑'}.ss-like:before,.ss-like.right:after{content:'👍'}.ss-dislike:before,.ss-dislike.right:after{content:'👎'}.ss-heart:before,.ss-heart.right:after{content:'♥'}.ss-addheart:before,.ss-addheart.right:after{content:''}.ss-deleteheart:before,.ss-deleteheart.right:after{content:'💔'}.ss-star:before,.ss-star.right:after{content:'⋆'}.ss-trophy:before,.ss-trophy.right:after{content:'🏆'}.ss-award:before,.ss-award.right:after{content:''}.ss-medal:before,.ss-medal.right:after{content:''}.ss-badge:before,.ss-badge.right:after{content:'📛'}.ss-crown:before,.ss-crown.right:after{content:'👑'}.ss-bullseye:before,.ss-bullseye.right:after{content:'🎯'}.ss-sample:before,.ss-sample.right:after{content:''}.ss-crop:before,.ss-crop.right:after{content:''}.ss-layers:before,.ss-layers.right:after{content:''}.ss-magicwand:before,.ss-magicwand.right:after{content:''}.ss-cut:before,.ss-cut.right:after{content:'✂'}.ss-cutpaste:before,.ss-cutpaste.right:after{content:''}.ss-clipboard:before,.ss-clipboard.right:after{content:'📋'}.ss-rules:before,.ss-rules.right:after{content:'📏'}.ss-rulerpencil:before,.ss-rulerpencil.right:after{content:''}.ss-gridlines:before,.ss-gridlines.right:after{content:''}.ss-pen:before,.ss-pen.right:after{content:'✒'}.ss-pencilbrush:before,.ss-pencilbrush.right:after{content:''}.ss-pencilbrushpen:before,.ss-pencilbrushpen.right:after{content:''}.ss-brush:before,.ss-brush.right:after{content:''}.ss-paintroller:before,.ss-paintroller.right:after{content:''}.ss-fill:before,.ss-fill.right:after{content:''}.ss-stroke:before,.ss-stroke.right:after{content:''}.ss-crayons:before,.ss-crayons.right:after{content:''}.ss-palette:before,.ss-palette.right:after{content:'🎨'}.ss-fliphorizontally:before,.ss-fliphorizontally.right:after{content:''}.ss-flipvertically:before,.ss-flipvertically.right:after{content:''}.ss-effects:before,.ss-effects.right:after{content:''}.ss-bezier:before,.ss-bezier.right:after{content:''}.ss-pixels:before,.ss-pixels.right:after{content:''}.ss-phone:before,.ss-phone.right:after{content:'📞'}.ss-rotaryphone:before,.ss-rotaryphone.right:after{content:'☎'}.ss-touchtonephone:before,.ss-touchtonephone.right:after{content:'☏'}.ss-phonebook:before,.ss-phonebook.right:after{content:''}.ss-voicemail:before,.ss-voicemail.right:after{content:'⌕'}.ss-megaphone:before,.ss-megaphone.right:after{content:'📢'}.ss-rss:before,.ss-rss.right:after{content:''}.ss-podcast:before,.ss-podcast.right:after{content:''}.ss-mailbox:before,.ss-mailbox.right:after{content:'📫'}.ss-send:before,.ss-send.right:after{content:''}.ss-mail:before,.ss-mail.right:after{content:'✉'}.ss-incomingmail:before,.ss-incomingmail.right:after{content:'📩'}.ss-inbox:before,.ss-inbox.right:after{content:'📥'}.ss-outbox:before,.ss-outbox.right:after{content:'📤'}.ss-stamp:before,.ss-stamp.right:after{content:''}.ss-chat:before,.ss-chat.right:after{content:'💬'}.ss-chats:before,.ss-chats.right:after{content:''}.ss-textchat:before,.ss-textchat.right:after{content:''}.ss-exclamationchat:before,.ss-exclamationchat.right:after{content:''}.ss-questionchat:before,.ss-questionchat.right:after{content:''}.ss-ellipsischat:before,.ss-ellipsischat.right:after{content:''}.ss-smile:before,.ss-smile.right:after{content:'☻'}.ss-frown:before,.ss-frown.right:after{content:'☹'}.ss-toothsmile:before,.ss-toothsmile.right:after{content:'😃'}.ss-toothlesssmile:before,.ss-toothlesssmile.right:after{content:'😀'}.ss-user:before,.ss-user.right:after{content:'👤'}.ss-users:before,.ss-users.right:after{content:'👥'}.ss-adduser:before,.ss-adduser.right:after{content:''}.ss-removeuser:before,.ss-removeuser.right:after{content:''}.ss-deleteuser:before,.ss-deleteuser.right:after{content:''}.ss-heartuser:before,.ss-heartuser.right:after{content:''}.ss-males:before,.ss-males.right:after{content:'👬'}.ss-females:before,.ss-females.right:after{content:'👭'}.ss-malefemale:before,.ss-malefemale.right:after{content:'👫'}.ss-userportrait:before,.ss-userportrait.right:after{content:''}.ss-userframe:before,.ss-userframe.right:after{content:''}.ss-usersframe:before,.ss-usersframe.right:after{content:''}.ss-baby:before,.ss-baby.right:after{content:'👶'}.ss-swaddledbaby:before,.ss-swaddledbaby.right:after{content:''}.ss-robot:before,.ss-robot.right:after{content:''}.ss-happyrobot:before,.ss-happyrobot.right:after{content:''}.ss-alien:before,.ss-alien.right:after{content:'👽'}.ss-ghost:before,.ss-ghost.right:after{content:'👻'}.ss-contacts:before,.ss-contacts.right:after{content:'📇'}.ss-addressbook:before,.ss-addressbook.right:after{content:'📑'}.ss-footsteps:before,.ss-footsteps.right:after{content:'👣'}.ss-cart:before,.ss-cart.right:after{content:''}.ss-shoppingbag:before,.ss-shoppingbag.right:after{content:''}.ss-gift:before,.ss-gift.right:after{content:'🎁'}.ss-store:before,.ss-store.right:after{content:'🏪'}.ss-safe:before,.ss-safe.right:after{content:''}.ss-bill:before,.ss-bill.right:after{content:''}.ss-creditcard:before,.ss-creditcard.right:after{content:'💳'}.ss-banknote:before,.ss-banknote.right:after{content:'💵'}.ss-moneybag:before,.ss-moneybag.right:after{content:'💰'}.ss-calculator:before,.ss-calculator.right:after{content:''}.ss-bank:before,.ss-bank.right:after{content:'🏦'}.ss-gavel:before,.ss-gavel.right:after{content:'🔨'}.ss-meeting:before,.ss-meeting.right:after{content:''}.ss-barchart:before,.ss-barchart.right:after{content:'📊'}.ss-piechart:before,.ss-piechart.right:after{content:''}.ss-activity:before,.ss-activity.right:after{content:'📈'}.ss-flowchart:before,.ss-flowchart.right:after{content:''}.ss-box:before,.ss-box.right:after{content:'📦'}.ss-crate:before,.ss-crate.right:after{content:''}.ss-home:before,.ss-home.right:after{content:'⌂'}.ss-fence:before,.ss-fence.right:after{content:''}.ss-buildings:before,.ss-buildings.right:after{content:'🏢'}.ss-bridge:before,.ss-bridge.right:after{content:''}.ss-barn:before,.ss-barn.right:after{content:''}.ss-lodging:before,.ss-lodging.right:after{content:'🏨'}.ss-earth:before,.ss-earth.right:after{content:'🌎'}.ss-globe:before,.ss-globe.right:after{content:'🌐'}.ss-compass:before,.ss-compass.right:after{content:''}.ss-signpost:before,.ss-signpost.right:after{content:''}.ss-map:before,.ss-map.right:after{content:''}.ss-location:before,.ss-location.right:after{content:''}.ss-pushpin:before,.ss-pushpin.right:after{content:'📌'}.ss-script:before,.ss-script.right:after{content:''}.ss-playscript:before,.ss-playscript.right:after{content:''}.ss-stopscript:before,.ss-stopscript.right:after{content:''}.ss-recordscript:before,.ss-recordscript.right:after{content:''}.ss-bug:before,.ss-bug.right:after{content:'🐛'}.ss-puzzle:before,.ss-puzzle.right:after{content:''}.ss-window:before,.ss-window.right:after{content:''}.ss-database:before,.ss-database.right:after{content:''}.ss-adddatabase:before,.ss-adddatabase.right:after{content:''}.ss-deletedatabase:before,.ss-deletedatabase.right:after{content:''}.ss-hdd:before,.ss-hdd.right:after{content:''}.ss-networkhdd:before,.ss-networkhdd.right:after{content:''}.ss-downloadhdd:before,.ss-downloadhdd.right:after{content:''}.ss-airplay:before,.ss-airplay.right:after{content:''}.ss-music:before,.ss-music.right:after{content:'♫'}.ss-mic:before,.ss-mic.right:after{content:'🎤'}.ss-headphones:before,.ss-headphones.right:after{content:'🎧'}.ss-volume:before,.ss-volume.right:after{content:'🔈'}.ss-radio:before,.ss-radio.right:after{content:'📻'}.ss-phonograph:before,.ss-phonograph.right:after{content:''}.ss-disc:before,.ss-disc.right:after{content:'💿'}.ss-discs:before,.ss-discs.right:after{content:''}.ss-playlist:before,.ss-playlist.right:after{content:''}.ss-musichome:before,.ss-musichome.right:after{content:''}.ss-itunes:before,.ss-itunes.right:after{content:''}.ss-camera:before,.ss-camera.right:after{content:'📷'}.ss-picture:before,.ss-picture.right:after{content:'🌄'}.ss-pictures:before,.ss-pictures.right:after{content:''}.ss-searchpicture:before,.ss-searchpicture.right:after{content:''}.ss-video:before,.ss-video.right:after{content:'📹'}.ss-clapboard:before,.ss-clapboard.right:after{content:'🎬'}.ss-film:before,.ss-film.right:after{content:''}.ss-playfilm:before,.ss-playfilm.right:after{content:''}.ss-tv:before,.ss-tv.right:after{content:'📺'}.ss-flatscreen:before,.ss-flatscreen.right:after{content:''}.ss-projector:before,.ss-projector.right:after{content:''}.ss-videogame:before,.ss-videogame.right:after{content:'🎮'}.ss-play:before,.ss-play.right:after{content:'▶'}.ss-pause:before,.ss-pause.right:after{content:''}.ss-stop:before,.ss-stop.right:after{content:'■'}.ss-record:before,.ss-record.right:after{content:'●'}.ss-rewind:before,.ss-rewind.right:after{content:'⏪'}.ss-fastforward:before,.ss-fastforward.right:after{content:'⏩'}.ss-skipback:before,.ss-skipback.right:after{content:'⏮'}.ss-skipforward:before,.ss-skipforward.right:after{content:'⏭'}.ss-eject:before,.ss-eject.right:after{content:'⏏'}.ss-shuffle:before,.ss-shuffle.right:after{content:'🔀'}.ss-filecabinet:before,.ss-filecabinet.right:after{content:''}.ss-storagebox:before,.ss-storagebox.right:after{content:''}.ss-books:before,.ss-books.right:after{content:'📚'}.ss-bookspencil:before,.ss-bookspencil.right:after{content:''}.ss-openbook:before,.ss-openbook.right:after{content:'📖'}.ss-bookinsert:before,.ss-bookinsert.right:after{content:''}.ss-notebook:before,.ss-notebook.right:after{content:'📓'}.ss-ledger:before,.ss-ledger.right:after{content:'📒'}.ss-album:before,.ss-album.right:after{content:''}.ss-newspaper:before,.ss-newspaper.right:after{content:'📰'}.ss-spiralbound:before,.ss-spiralbound.right:after{content:''}.ss-notepad:before,.ss-notepad.right:after{content:''}.ss-notice:before,.ss-notice.right:after{content:''}.ss-grid:before,.ss-grid.right:after{content:''}.ss-thumbnails:before,.ss-thumbnails.right:after{content:''}.ss-filter:before,.ss-filter.right:after{content:''}.ss-desktop:before,.ss-desktop.right:after{content:'💻'}.ss-laptop:before,.ss-laptop.right:after{content:''}.ss-tablet:before,.ss-tablet.right:after{content:''}.ss-cell:before,.ss-cell.right:after{content:'📱'}.ss-cellbars:before,.ss-cellbars.right:after{content:'📶'}.ss-battery:before,.ss-battery.right:after{content:'🔋'}.ss-mediumbattery:before,.ss-mediumbattery.right:after{content:''}.ss-emptybattery:before,.ss-emptybattery.right:after{content:''}.ss-chargingbattery:before,.ss-chargingbattery.right:after{content:''}.ss-screwdrivermobile:before,.ss-screwdrivermobile.right:after{content:''}.ss-brushmobile:before,.ss-brushmobile.right:after{content:''}.ss-pencilmobile:before,.ss-pencilmobile.right:after{content:''}.ss-door:before,.ss-door.right:after{content:'🚪'}.ss-washer:before,.ss-washer.right:after{content:''}.ss-dryer:before,.ss-dryer.right:after{content:''}.ss-fireplace:before,.ss-fireplace.right:after{content:''}.ss-toilet:before,.ss-toilet.right:after{content:'🚽'}.ss-toiletpaper:before,.ss-toiletpaper.right:after{content:''}.ss-lightbulb:before,.ss-lightbulb.right:after{content:'💡'}.ss-cfl:before,.ss-cfl.right:after{content:''}.ss-flashlight:before,.ss-flashlight.right:after{content:'🔦'}.ss-candle:before,.ss-candle.right:after{content:''}.ss-campfire:before,.ss-campfire.right:after{content:'🔥'}.ss-picnictable:before,.ss-picnictable.right:after{content:''}.ss-frame:before,.ss-frame.right:after{content:''}.ss-heartframe:before,.ss-heartframe.right:after{content:'💟'}.ss-starframe:before,.ss-starframe.right:after{content:''}.ss-treeframe:before,.ss-treeframe.right:after{content:''}.ss-flowerframe:before,.ss-flowerframe.right:after{content:''}.ss-questionframe:before,.ss-questionframe.right:after{content:''}.ss-utensilsframe:before,.ss-utensilsframe.right:after{content:''}.ss-atom:before,.ss-atom.right:after{content:'⚛'}.ss-fluxcapacitor:before,.ss-fluxcapacitor.right:after{content:''}.ss-rings:before,.ss-rings.right:after{content:'💍'}.ss-balloons:before,.ss-balloons.right:after{content:'🎈'}.ss-easteregg:before,.ss-easteregg.right:after{content:''}.ss-jackolantern:before,.ss-jackolantern.right:after{content:'🎃'}.ss-menorah:before,.ss-menorah.right:after{content:''}.ss-christmastree:before,.ss-christmastree.right:after{content:'🎄'}.ss-teddy:before,.ss-teddy.right:after{content:''}.ss-blocks:before,.ss-blocks.right:after{content:''}.ss-rattle:before,.ss-rattle.right:after{content:''}.ss-diaper:before,.ss-diaper.right:after{content:''}.ss-pailshovel:before,.ss-pailshovel.right:after{content:''}.ss-sweep:before,.ss-sweep.right:after{content:''}.ss-headstone:before,.ss-headstone.right:after{content:'⛼'}.ss-onedie:before,.ss-onedie.right:after{content:'⚀'}.ss-twodie:before,.ss-twodie.right:after{content:'⚁'}.ss-threedie:before,.ss-threedie.right:after{content:'⚂'}.ss-fourdie:before,.ss-fourdie.right:after{content:'⚃'}.ss-fivedie:before,.ss-fivedie.right:after{content:'⚄'}.ss-sixdie:before,.ss-sixdie.right:after{content:'⚅'}.ss-fuzzydice:before,.ss-fuzzydice.right:after{content:''}.ss-download:before,.ss-download.right:after{content:''}.ss-downloadbox:before,.ss-downloadbox.right:after{content:''}.ss-downloadcrate:before,.ss-downloadcrate.right:after{content:''}.ss-upload:before,.ss-upload.right:after{content:''}.ss-uploadbox:before,.ss-uploadbox.right:after{content:''}.ss-uploadcrate:before,.ss-uploadcrate.right:after{content:''}.ss-transfer:before,.ss-transfer.right:after{content:'⇆'}.ss-refresh:before,.ss-refresh.right:after{content:'↻'}.ss-sync:before,.ss-sync.right:after{content:''}.ss-wifi:before,.ss-wifi.right:after{content:''}.ss-connection:before,.ss-connection.right:after{content:''}.ss-usb:before,.ss-usb.right:after{content:''}.ss-files:before,.ss-files.right:after{content:''}.ss-addfile:before,.ss-addfile.right:after{content:''}.ss-removefile:before,.ss-removefile.right:after{content:''}.ss-deletefile:before,.ss-deletefile.right:after{content:''}.ss-searchfile:before,.ss-searchfile.right:after{content:''}.ss-folder:before,.ss-folder.right:after{content:'📁'}.ss-addfolder:before,.ss-addfolder.right:after{content:''}.ss-removefolder:before,.ss-removefolder.right:after{content:''}.ss-deletefolder:before,.ss-deletefolder.right:after{content:''}.ss-downloadfolder:before,.ss-downloadfolder.right:after{content:''}.ss-uploadfolder:before,.ss-uploadfolder.right:after{content:''}.ss-undo:before,.ss-undo.right:after{content:'↩'}.ss-redo:before,.ss-redo.right:after{content:'↪'}.ss-quote:before,.ss-quote.right:after{content:'“'}.ss-font:before,.ss-font.right:after{content:''}.ss-anchor:before,.ss-anchor.right:after{content:''}.ss-print:before,.ss-print.right:after{content:'⎙'}.ss-fax:before,.ss-fax.right:after{content:'📠'}.ss-shredder:before,.ss-shredder.right:after{content:''}.ss-typewriter:before,.ss-typewriter.right:after{content:''}.ss-list:before,.ss-list.right:after{content:''}.ss-action:before,.ss-action.right:after{content:''}.ss-redirect:before,.ss-redirect.right:after{content:'↗'}.ss-expand:before,.ss-expand.right:after{content:'⤢'}.ss-contract:before,.ss-contract.right:after{content:''}.ss-scaleup:before,.ss-scaleup.right:after{content:''}.ss-scaledown:before,.ss-scaledown.right:after{content:''}.ss-power:before,.ss-power.right:after{content:''}.ss-lifepreserver:before,.ss-lifepreserver.right:after{content:''}.ss-help:before,.ss-help.right:after{content:'❓'}.ss-info:before,.ss-info.right:after{content:'ℹ'}.ss-alert:before,.ss-alert.right:after{content:'⚠'}.ss-caution:before,.ss-caution.right:after{content:'⛔'}.ss-plus:before,.ss-plus.right:after{content:'+'}.ss-hyphen:before,.ss-hyphen.right:after{content:'-'}.ss-check:before,.ss-check.right:after{content:'✓'}.ss-delete:before,.ss-delete.right:after{content:'␡'}.ss-dogface:before,.ss-dogface.right:after{content:'🐶'}.ss-catface:before,.ss-catface.right:after{content:'🐱'}.ss-bearface:before,.ss-bearface.right:after{content:'🐻'}.ss-bird:before,.ss-bird.right:after{content:'🐦'}.ss-dog:before,.ss-dog.right:after{content:'🐕'}.ss-sheep:before,.ss-sheep.right:after{content:'🐑'}.ss-pig:before,.ss-pig.right:after{content:'🐖'}.ss-bone:before,.ss-bone.right:after{content:''}.ss-tooth:before,.ss-tooth.right:after{content:''}.ss-palmtree:before,.ss-palmtree.right:after{content:'🌴'}.ss-tree:before,.ss-tree.right:after{content:'🌲'}.ss-leaf:before,.ss-leaf.right:after{content:'🍂'}.ss-flower:before,.ss-flower.right:after{content:'⚘'}.ss-settings:before,.ss-settings.right:after{content:'⚙'}.ss-dashboard:before,.ss-dashboard.right:after{content:''}.ss-notifications:before,.ss-notifications.right:after{content:'🔔'}.ss-toggles:before,.ss-toggles.right:after{content:''}.ss-switch:before,.ss-switch.right:after{content:''}.ss-switchoff:before,.ss-switchoff.right:after{content:''}.ss-brightness:before,.ss-brightness.right:after{content:'🔆'}.ss-flashoff:before,.ss-flashoff.right:after{content:''}.ss-toolbox:before,.ss-toolbox.right:after{content:''}.ss-tools:before,.ss-tools.right:after{content:''}.ss-wrench:before,.ss-wrench.right:after{content:'🔧'}.ss-wrenches:before,.ss-wrenches.right:after{content:''}.ss-wrenchpencil:before,.ss-wrenchpencil.right:after{content:''}.ss-screwdriverpencil:before,.ss-screwdriverpencil.right:after{content:''}.ss-hammerscrewdriver:before,.ss-hammerscrewdriver.right:after{content:''}.ss-tapemeasure:before,.ss-tapemeasure.right:after{content:''}.ss-hourglass:before,.ss-hourglass.right:after{content:'⏳'}.ss-clock:before,.ss-clock.right:after{content:'⏲'}.ss-stopwatch:before,.ss-stopwatch.right:after{content:'⏱'}.ss-alarmclock:before,.ss-alarmclock.right:after{content:'⏰'}.ss-calendar:before,.ss-calendar.right:after{content:'📅'}.ss-keyboardup:before,.ss-keyboardup.right:after{content:''}.ss-keyboarddown:before,.ss-keyboarddown.right:after{content:''}.ss-heavyasterisk:before,.ss-heavyasterisk.right:after{content:'✱'}.ss-egg:before,.ss-egg.right:after{content:''}.ss-cheese:before,.ss-cheese.right:after{content:''}.ss-hotdog:before,.ss-hotdog.right:after{content:''}.ss-burger:before,.ss-burger.right:after{content:'🍔'}.ss-birthdaycake:before,.ss-birthdaycake.right:after{content:'🎂'}.ss-pancakes:before,.ss-pancakes.right:after{content:''}.ss-pizza:before,.ss-pizza.right:after{content:'🍕'}.ss-frenchfries:before,.ss-frenchfries.right:after{content:'🍟'}.ss-apple:before,.ss-apple.right:after{content:'🍏'}.ss-mug:before,.ss-mug.right:after{content:'☕'}.ss-coffee:before,.ss-coffee.right:after{content:''}.ss-growler:before,.ss-growler.right:after{content:''}.ss-beer:before,.ss-beer.right:after{content:'🍺'}.ss-bottle:before,.ss-bottle.right:after{content:''}.ss-wine:before,.ss-wine.right:after{content:''}.ss-wineglass:before,.ss-wineglass.right:after{content:'🍷'}.ss-cocktail:before,.ss-cocktail.right:after{content:'🍸'}.ss-soda:before,.ss-soda.right:after{content:''}.ss-cup:before,.ss-cup.right:after{content:''}.ss-babybottle:before,.ss-babybottle.right:after{content:'🍼'}.ss-jug:before,.ss-jug.right:after{content:''}.ss-oven:before,.ss-oven.right:after{content:''}.ss-takeout:before,.ss-takeout.right:after{content:''}.ss-paperbag:before,.ss-paperbag.right:after{content:''}.ss-utensils:before,.ss-utensils.right:after{content:'🍴'}.ss-tshirt:before,.ss-tshirt.right:after{content:'👕'}.ss-graduationcap:before,.ss-graduationcap.right:after{content:'🎓'}.ss-fabric:before,.ss-fabric.right:after{content:''}.ss-swatch:before,.ss-swatch.right:after{content:''}.ss-weave:before,.ss-weave.right:after{content:''}.ss-thread:before,.ss-thread.right:after{content:''}.ss-yarn:before,.ss-yarn.right:after{content:''}.ss-crochet:before,.ss-crochet.right:after{content:''}.ss-needles:before,.ss-needles.right:after{content:''}.ss-scissorsneedles:before,.ss-scissorsneedles.right:after{content:''}.ss-button:before,.ss-button.right:after{content:''}.ss-zipper:before,.ss-zipper.right:after{content:''}.ss-sun:before,.ss-sun.right:after{content:'☀'}.ss-partlycloudy:before,.ss-partlycloudy.right:after{content:'⛅'}.ss-rainbow:before,.ss-rainbow.right:after{content:'🌈'}.ss-umbrella:before,.ss-umbrella.right:after{content:'☂'}.ss-crescentmoon:before,.ss-crescentmoon.right:after{content:'🌙'}.ss-newmoon:before,.ss-newmoon.right:after{content:'🌑'}.ss-waxingcrescentmoon:before,.ss-waxingcrescentmoon.right:after{content:'🌒'}.ss-firstquartermoon:before,.ss-firstquartermoon.right:after{content:'🌓'}.ss-waxinggibbousmoon:before,.ss-waxinggibbousmoon.right:after{content:'🌔'}.ss-fullmoon:before,.ss-fullmoon.right:after{content:'🌕'}.ss-waninggibbousmoon:before,.ss-waninggibbousmoon.right:after{content:'🌖'}.ss-lastquartermoon:before,.ss-lastquartermoon.right:after{content:'🌗'}.ss-waningcrescentmoon:before,.ss-waningcrescentmoon.right:after{content:'🌘'}.ss-car:before,.ss-car.right:after{content:'🚘'}.ss-carrepair:before,.ss-carrepair.right:after{content:''}.ss-taxi:before,.ss-taxi.right:after{content:'🚖'}.ss-train:before,.ss-train.right:after{content:'🚆'}.ss-bus:before,.ss-bus.right:after{content:'🚍'}.ss-truck:before,.ss-truck.right:after{content:'🚚'}.ss-trailer:before,.ss-trailer.right:after{content:''}.ss-trailerdump:before,.ss-trailerdump.right:after{content:''}.ss-plane:before,.ss-plane.right:after{content:'✈'}.ss-bike:before,.ss-bike.right:after{content:'🚲'}.ss-motorcycle:before,.ss-motorcycle.right:after{content:''}.ss-boat:before,.ss-boat.right:after{content:'🚢'}.ss-rocket:before,.ss-rocket.right:after{content:'🚀'}.ss-ufo:before,.ss-ufo.right:after{content:''}.ss-squarekey:before,.ss-squarekey.right:after{content:''}.ss-tire:before,.ss-tire.right:after{content:''}.ss-fuel:before,.ss-fuel.right:after{content:'⛽'}.ss-parking:before,.ss-parking.right:after{content:''}.ss-wheelchair:before,.ss-wheelchair.right:after{content:'♿'}.ss-restroom:before,.ss-restroom.right:after{content:'🚻'}.ss-elevator:before,.ss-elevator.right:after{content:''}.ss-briefcase:before,.ss-briefcase.right:after{content:'💼'}.ss-theatre:before,.ss-theatre.right:after{content:'🎭'}.ss-ticket:before,.ss-ticket.right:after{content:'🎫'}.ss-golf:before,.ss-golf.right:after{content:''}.ss-billiards:before,.ss-billiards.right:after{content:'🎱'}.ss-baseball:before,.ss-baseball.right:after{content:'⚾'}.ss-tennis:before,.ss-tennis.right:after{content:'🎾'}.ss-basketball:before,.ss-basketball.right:after{content:'🏀'}.ss-football:before,.ss-football.right:after{content:'🏈'}.ss-soccer:before,.ss-soccer.right:after{content:'⚽'}.ss-flaginhole:before,.ss-flaginhole.right:after{content:'⛳'}.ss-paddles:before,.ss-paddles.right:after{content:''}.ss-skiboot:before,.ss-skiboot.right:after{content:''}.ss-skis:before,.ss-skis.right:after{content:'🎿'}.ss-hiker:before,.ss-hiker.right:after{content:''}.ss-runner:before,.ss-runner.right:after{content:'🏃'}.ss-hottub:before,.ss-hottub.right:after{content:''}.ss-exercise:before,.ss-exercise.right:after{content:''}.ss-hospital:before,.ss-hospital.right:after{content:'⛨'}.ss-medicalcross:before,.ss-medicalcross.right:after{content:''}.ss-medicalbag:before,.ss-medicalbag.right:after{content:''}.ss-bandage:before,.ss-bandage.right:after{content:''}.ss-flask:before,.ss-flask.right:after{content:''}.ss-testtube:before,.ss-testtube.right:after{content:''}.ss-up:before,.ss-up.right:after{content:'⬆'}.ss-right:before,.ss-right.right:after{content:'➡'}.ss-down:before,.ss-down.right:after{content:'⬇'}.ss-left:before,.ss-left.right:after{content:'⬅'}.ss-navigateup:before,.ss-navigateup.right:after{content:''}.ss-navigateright:before,.ss-navigateright.right:after{content:'▻'}.ss-navigatedown:before,.ss-navigatedown.right:after{content:''}.ss-navigateleft:before,.ss-navigateleft.right:after{content:'◅'}.ss-share:before,.ss-share.right:after{content:''}


/*
* Symbolset
* www.symbolset.com
* Copyright © 2012 Oak Studios LLC
*
* Upload this file to your web server
* and place this within your <head> tags.
* <link href="webfonts/ss-symbolicons-line.css" rel="stylesheet" />
*/

@font-face {
    font-family: "SSSymbolicons";
    src: url('assets/ss-symbolicons-line.eot');
    src: url('assets/ss-symbolicons-line.eot?#iefix') format('embedded-opentype'),
        url('assets/ss-symbolicons-line.woff') format('woff'),
        url('assets/ss-symbolicons-line.ttf')  format('truetype'),
        url('assets/ss-symbolicons-line.svg#SSSymboliconsLine') format('svg');
    font-weight: 300;
    font-style: normal;
}

/* This triggers a redraw in IE to Fix IE8's :before content rendering. */
html:hover [class^="ss-"]{-ms-zoom: 1;}

.ss-icon, .ss-icon.ss-symbolicons-line,
[class^="ss-"]:before, [class*=" ss-"]:before,
[class^="ss-"].ss-symbolicons-line:before, [class*=" ss-"].ss-symbolicons-line:before,
[class^="ss-"].right:after, [class*=" ss-"].right:after,
[class^="ss-"].ss-symbolicons-line.right:after, [class*=" ss-"].ss-symbolicons-line.right:after {
    font-family: "SSSymbolicons";
    font-style: normal;
    font-weight: 300;
    text-decoration: none;
    text-rendering: optimizeLegibility;
    white-space: nowrap;
    /*-webkit-font-feature-settings: "liga"; Currently broken in Chrome >= v22. Falls back to text-rendering. Safari is unaffected. */
    -moz-font-feature-settings: "liga=1";
    -moz-font-feature-settings: "liga";
    -ms-font-feature-settings: "liga" 1;
    -o-font-feature-settings: "liga";
    font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}

[class^="ss-"].right:before,
[class*=" ss-"].right:before{display:none;content:'';}

.ss-crosshair:before,.ss-crosshair.right:after{content:'⌖'}.ss-search:before,.ss-search.right:after{content:'🔍'}.ss-zoomin:before,.ss-zoomin.right:after{content:''}.ss-zoomout:before,.ss-zoomout.right:after{content:''}.ss-binoculars:before,.ss-binoculars.right:after{content:''}.ss-raisedhand:before,.ss-raisedhand.right:after{content:'✋'}.ss-link:before,.ss-link.right:after{content:'🔗'}.ss-write:before,.ss-write.right:after{content:'✎'}.ss-compose:before,.ss-compose.right:after{content:'📝'}.ss-lock:before,.ss-lock.right:after{content:'🔒'}.ss-unlock:before,.ss-unlock.right:after{content:'🔓'}.ss-key:before,.ss-key.right:after{content:'🔑'}.ss-backspace:before,.ss-backspace.right:after{content:'⌫'}.ss-ban:before,.ss-ban.right:after{content:'🚫'}.ss-nosmoking:before,.ss-nosmoking.right:after{content:'🚭'}.ss-trash:before,.ss-trash.right:after{content:''}.ss-target:before,.ss-target.right:after{content:'◎'}.ss-stopsign:before,.ss-stopsign.right:after{content:''}.ss-radioactive:before,.ss-radioactive.right:after{content:'☢'}.ss-skull:before,.ss-skull.right:after{content:'💀'}.ss-lightning:before,.ss-lightning.right:after{content:'☇'}.ss-tag:before,.ss-tag.right:after{content:''}.ss-newtag:before,.ss-newtag.right:after{content:''}.ss-flag:before,.ss-flag.right:after{content:'⚑'}.ss-like:before,.ss-like.right:after{content:'👍'}.ss-dislike:before,.ss-dislike.right:after{content:'👎'}.ss-heart:before,.ss-heart.right:after{content:'♥'}.ss-addheart:before,.ss-addheart.right:after{content:''}.ss-deleteheart:before,.ss-deleteheart.right:after{content:'💔'}.ss-star:before,.ss-star.right:after{content:'⋆'}.ss-trophy:before,.ss-trophy.right:after{content:'🏆'}.ss-award:before,.ss-award.right:after{content:''}.ss-medal:before,.ss-medal.right:after{content:''}.ss-badge:before,.ss-badge.right:after{content:'📛'}.ss-crown:before,.ss-crown.right:after{content:'👑'}.ss-bullseye:before,.ss-bullseye.right:after{content:'🎯'}.ss-sample:before,.ss-sample.right:after{content:''}.ss-crop:before,.ss-crop.right:after{content:''}.ss-layers:before,.ss-layers.right:after{content:''}.ss-magicwand:before,.ss-magicwand.right:after{content:''}.ss-cut:before,.ss-cut.right:after{content:'✂'}.ss-cutpaste:before,.ss-cutpaste.right:after{content:''}.ss-clipboard:before,.ss-clipboard.right:after{content:'📋'}.ss-rules:before,.ss-rules.right:after{content:'📏'}.ss-rulerpencil:before,.ss-rulerpencil.right:after{content:''}.ss-gridlines:before,.ss-gridlines.right:after{content:''}.ss-pen:before,.ss-pen.right:after{content:'✒'}.ss-pencilbrush:before,.ss-pencilbrush.right:after{content:''}.ss-pencilbrushpen:before,.ss-pencilbrushpen.right:after{content:''}.ss-brush:before,.ss-brush.right:after{content:''}.ss-paintroller:before,.ss-paintroller.right:after{content:''}.ss-fill:before,.ss-fill.right:after{content:''}.ss-stroke:before,.ss-stroke.right:after{content:''}.ss-crayons:before,.ss-crayons.right:after{content:''}.ss-palette:before,.ss-palette.right:after{content:'🎨'}.ss-fliphorizontally:before,.ss-fliphorizontally.right:after{content:''}.ss-flipvertically:before,.ss-flipvertically.right:after{content:''}.ss-effects:before,.ss-effects.right:after{content:''}.ss-bezier:before,.ss-bezier.right:after{content:''}.ss-pixels:before,.ss-pixels.right:after{content:''}.ss-phone:before,.ss-phone.right:after{content:'📞'}.ss-rotaryphone:before,.ss-rotaryphone.right:after{content:'☎'}.ss-touchtonephone:before,.ss-touchtonephone.right:after{content:'☏'}.ss-phonebook:before,.ss-phonebook.right:after{content:''}.ss-voicemail:before,.ss-voicemail.right:after{content:'⌕'}.ss-megaphone:before,.ss-megaphone.right:after{content:'📢'}.ss-rss:before,.ss-rss.right:after{content:''}.ss-podcast:before,.ss-podcast.right:after{content:''}.ss-mailbox:before,.ss-mailbox.right:after{content:'📫'}.ss-send:before,.ss-send.right:after{content:''}.ss-mail:before,.ss-mail.right:after{content:'✉'}.ss-incomingmail:before,.ss-incomingmail.right:after{content:'📩'}.ss-inbox:before,.ss-inbox.right:after{content:'📥'}.ss-outbox:before,.ss-outbox.right:after{content:'📤'}.ss-stamp:before,.ss-stamp.right:after{content:''}.ss-chat:before,.ss-chat.right:after{content:'💬'}.ss-chats:before,.ss-chats.right:after{content:''}.ss-textchat:before,.ss-textchat.right:after{content:''}.ss-exclamationchat:before,.ss-exclamationchat.right:after{content:''}.ss-questionchat:before,.ss-questionchat.right:after{content:''}.ss-ellipsischat:before,.ss-ellipsischat.right:after{content:''}.ss-smile:before,.ss-smile.right:after{content:'☻'}.ss-frown:before,.ss-frown.right:after{content:'☹'}.ss-toothsmile:before,.ss-toothsmile.right:after{content:'😃'}.ss-toothlesssmile:before,.ss-toothlesssmile.right:after{content:'😀'}.ss-user:before,.ss-user.right:after{content:'👤'}.ss-users:before,.ss-users.right:after{content:'👥'}.ss-adduser:before,.ss-adduser.right:after{content:''}.ss-removeuser:before,.ss-removeuser.right:after{content:''}.ss-deleteuser:before,.ss-deleteuser.right:after{content:''}.ss-heartuser:before,.ss-heartuser.right:after{content:''}.ss-males:before,.ss-males.right:after{content:'👬'}.ss-females:before,.ss-females.right:after{content:'👭'}.ss-malefemale:before,.ss-malefemale.right:after{content:'👫'}.ss-userportrait:before,.ss-userportrait.right:after{content:''}.ss-userframe:before,.ss-userframe.right:after{content:''}.ss-usersframe:before,.ss-usersframe.right:after{content:''}.ss-baby:before,.ss-baby.right:after{content:'👶'}.ss-swaddledbaby:before,.ss-swaddledbaby.right:after{content:''}.ss-robot:before,.ss-robot.right:after{content:''}.ss-happyrobot:before,.ss-happyrobot.right:after{content:''}.ss-alien:before,.ss-alien.right:after{content:'👽'}.ss-ghost:before,.ss-ghost.right:after{content:'👻'}.ss-contacts:before,.ss-contacts.right:after{content:'📇'}.ss-addressbook:before,.ss-addressbook.right:after{content:'📑'}.ss-footsteps:before,.ss-footsteps.right:after{content:'👣'}.ss-cart:before,.ss-cart.right:after{content:''}.ss-shoppingbag:before,.ss-shoppingbag.right:after{content:''}.ss-gift:before,.ss-gift.right:after{content:'🎁'}.ss-store:before,.ss-store.right:after{content:'🏪'}.ss-safe:before,.ss-safe.right:after{content:''}.ss-bill:before,.ss-bill.right:after{content:''}.ss-creditcard:before,.ss-creditcard.right:after{content:'💳'}.ss-banknote:before,.ss-banknote.right:after{content:'💵'}.ss-moneybag:before,.ss-moneybag.right:after{content:'💰'}.ss-calculator:before,.ss-calculator.right:after{content:''}.ss-bank:before,.ss-bank.right:after{content:'🏦'}.ss-gavel:before,.ss-gavel.right:after{content:'🔨'}.ss-meeting:before,.ss-meeting.right:after{content:''}.ss-barchart:before,.ss-barchart.right:after{content:'📊'}.ss-piechart:before,.ss-piechart.right:after{content:''}.ss-activity:before,.ss-activity.right:after{content:'📈'}.ss-flowchart:before,.ss-flowchart.right:after{content:''}.ss-box:before,.ss-box.right:after{content:'📦'}.ss-crate:before,.ss-crate.right:after{content:''}.ss-home:before,.ss-home.right:after{content:'⌂'}.ss-fence:before,.ss-fence.right:after{content:''}.ss-buildings:before,.ss-buildings.right:after{content:'🏢'}.ss-bridge:before,.ss-bridge.right:after{content:''}.ss-barn:before,.ss-barn.right:after{content:''}.ss-lodging:before,.ss-lodging.right:after{content:'🏨'}.ss-earth:before,.ss-earth.right:after{content:'🌎'}.ss-globe:before,.ss-globe.right:after{content:'🌐'}.ss-compass:before,.ss-compass.right:after{content:''}.ss-signpost:before,.ss-signpost.right:after{content:''}.ss-map:before,.ss-map.right:after{content:''}.ss-location:before,.ss-location.right:after{content:''}.ss-pushpin:before,.ss-pushpin.right:after{content:'📌'}.ss-script:before,.ss-script.right:after{content:''}.ss-playscript:before,.ss-playscript.right:after{content:''}.ss-stopscript:before,.ss-stopscript.right:after{content:''}.ss-recordscript:before,.ss-recordscript.right:after{content:''}.ss-bug:before,.ss-bug.right:after{content:'🐛'}.ss-puzzle:before,.ss-puzzle.right:after{content:''}.ss-window:before,.ss-window.right:after{content:''}.ss-database:before,.ss-database.right:after{content:''}.ss-adddatabase:before,.ss-adddatabase.right:after{content:''}.ss-deletedatabase:before,.ss-deletedatabase.right:after{content:''}.ss-hdd:before,.ss-hdd.right:after{content:''}.ss-networkhdd:before,.ss-networkhdd.right:after{content:''}.ss-downloadhdd:before,.ss-downloadhdd.right:after{content:''}.ss-airplay:before,.ss-airplay.right:after{content:''}.ss-music:before,.ss-music.right:after{content:'♫'}.ss-mic:before,.ss-mic.right:after{content:'🎤'}.ss-headphones:before,.ss-headphones.right:after{content:'🎧'}.ss-volume:before,.ss-volume.right:after{content:'🔈'}.ss-radio:before,.ss-radio.right:after{content:'📻'}.ss-phonograph:before,.ss-phonograph.right:after{content:''}.ss-disc:before,.ss-disc.right:after{content:'💿'}.ss-discs:before,.ss-discs.right:after{content:''}.ss-playlist:before,.ss-playlist.right:after{content:''}.ss-musichome:before,.ss-musichome.right:after{content:''}.ss-itunes:before,.ss-itunes.right:after{content:''}.ss-camera:before,.ss-camera.right:after{content:'📷'}.ss-picture:before,.ss-picture.right:after{content:'🌄'}.ss-pictures:before,.ss-pictures.right:after{content:''}.ss-searchpicture:before,.ss-searchpicture.right:after{content:''}.ss-video:before,.ss-video.right:after{content:'📹'}.ss-clapboard:before,.ss-clapboard.right:after{content:'🎬'}.ss-film:before,.ss-film.right:after{content:''}.ss-playfilm:before,.ss-playfilm.right:after{content:''}.ss-tv:before,.ss-tv.right:after{content:'📺'}.ss-flatscreen:before,.ss-flatscreen.right:after{content:''}.ss-projector:before,.ss-projector.right:after{content:''}.ss-videogame:before,.ss-videogame.right:after{content:'🎮'}.ss-play:before,.ss-play.right:after{content:'▶'}.ss-pause:before,.ss-pause.right:after{content:''}.ss-stop:before,.ss-stop.right:after{content:'■'}.ss-record:before,.ss-record.right:after{content:'●'}.ss-rewind:before,.ss-rewind.right:after{content:'⏪'}.ss-fastforward:before,.ss-fastforward.right:after{content:'⏩'}.ss-skipback:before,.ss-skipback.right:after{content:'⏮'}.ss-skipforward:before,.ss-skipforward.right:after{content:'⏭'}.ss-eject:before,.ss-eject.right:after{content:'⏏'}.ss-shuffle:before,.ss-shuffle.right:after{content:'🔀'}.ss-filecabinet:before,.ss-filecabinet.right:after{content:''}.ss-storagebox:before,.ss-storagebox.right:after{content:''}.ss-books:before,.ss-books.right:after{content:'📚'}.ss-bookspencil:before,.ss-bookspencil.right:after{content:''}.ss-openbook:before,.ss-openbook.right:after{content:'📖'}.ss-bookinsert:before,.ss-bookinsert.right:after{content:''}.ss-notebook:before,.ss-notebook.right:after{content:'📓'}.ss-ledger:before,.ss-ledger.right:after{content:'📒'}.ss-album:before,.ss-album.right:after{content:''}.ss-newspaper:before,.ss-newspaper.right:after{content:'📰'}.ss-spiralbound:before,.ss-spiralbound.right:after{content:''}.ss-notepad:before,.ss-notepad.right:after{content:''}.ss-notice:before,.ss-notice.right:after{content:''}.ss-grid:before,.ss-grid.right:after{content:''}.ss-thumbnails:before,.ss-thumbnails.right:after{content:''}.ss-filter:before,.ss-filter.right:after{content:''}.ss-desktop:before,.ss-desktop.right:after{content:'💻'}.ss-laptop:before,.ss-laptop.right:after{content:''}.ss-tablet:before,.ss-tablet.right:after{content:''}.ss-cell:before,.ss-cell.right:after{content:'📱'}.ss-cellbars:before,.ss-cellbars.right:after{content:'📶'}.ss-battery:before,.ss-battery.right:after{content:'🔋'}.ss-mediumbattery:before,.ss-mediumbattery.right:after{content:''}.ss-emptybattery:before,.ss-emptybattery.right:after{content:''}.ss-chargingbattery:before,.ss-chargingbattery.right:after{content:''}.ss-screwdrivermobile:before,.ss-screwdrivermobile.right:after{content:''}.ss-brushmobile:before,.ss-brushmobile.right:after{content:''}.ss-pencilmobile:before,.ss-pencilmobile.right:after{content:''}.ss-door:before,.ss-door.right:after{content:'🚪'}.ss-washer:before,.ss-washer.right:after{content:''}.ss-dryer:before,.ss-dryer.right:after{content:''}.ss-fireplace:before,.ss-fireplace.right:after{content:''}.ss-toilet:before,.ss-toilet.right:after{content:'🚽'}.ss-toiletpaper:before,.ss-toiletpaper.right:after{content:''}.ss-lightbulb:before,.ss-lightbulb.right:after{content:'💡'}.ss-cfl:before,.ss-cfl.right:after{content:''}.ss-flashlight:before,.ss-flashlight.right:after{content:'🔦'}.ss-candle:before,.ss-candle.right:after{content:''}.ss-campfire:before,.ss-campfire.right:after{content:'🔥'}.ss-picnictable:before,.ss-picnictable.right:after{content:''}.ss-frame:before,.ss-frame.right:after{content:''}.ss-heartframe:before,.ss-heartframe.right:after{content:'💟'}.ss-starframe:before,.ss-starframe.right:after{content:''}.ss-treeframe:before,.ss-treeframe.right:after{content:''}.ss-flowerframe:before,.ss-flowerframe.right:after{content:''}.ss-questionframe:before,.ss-questionframe.right:after{content:''}.ss-utensilsframe:before,.ss-utensilsframe.right:after{content:''}.ss-atom:before,.ss-atom.right:after{content:'⚛'}.ss-fluxcapacitor:before,.ss-fluxcapacitor.right:after{content:''}.ss-rings:before,.ss-rings.right:after{content:'💍'}.ss-balloons:before,.ss-balloons.right:after{content:'🎈'}.ss-easteregg:before,.ss-easteregg.right:after{content:''}.ss-jackolantern:before,.ss-jackolantern.right:after{content:'🎃'}.ss-menorah:before,.ss-menorah.right:after{content:''}.ss-christmastree:before,.ss-christmastree.right:after{content:'🎄'}.ss-teddy:before,.ss-teddy.right:after{content:''}.ss-blocks:before,.ss-blocks.right:after{content:''}.ss-rattle:before,.ss-rattle.right:after{content:''}.ss-diaper:before,.ss-diaper.right:after{content:''}.ss-pailshovel:before,.ss-pailshovel.right:after{content:''}.ss-sweep:before,.ss-sweep.right:after{content:''}.ss-headstone:before,.ss-headstone.right:after{content:'⛼'}.ss-onedie:before,.ss-onedie.right:after{content:'⚀'}.ss-twodie:before,.ss-twodie.right:after{content:'⚁'}.ss-threedie:before,.ss-threedie.right:after{content:'⚂'}.ss-fourdie:before,.ss-fourdie.right:after{content:'⚃'}.ss-fivedie:before,.ss-fivedie.right:after{content:'⚄'}.ss-sixdie:before,.ss-sixdie.right:after{content:'⚅'}.ss-fuzzydice:before,.ss-fuzzydice.right:after{content:''}.ss-download:before,.ss-download.right:after{content:''}.ss-downloadbox:before,.ss-downloadbox.right:after{content:''}.ss-downloadcrate:before,.ss-downloadcrate.right:after{content:''}.ss-upload:before,.ss-upload.right:after{content:''}.ss-uploadbox:before,.ss-uploadbox.right:after{content:''}.ss-uploadcrate:before,.ss-uploadcrate.right:after{content:''}.ss-transfer:before,.ss-transfer.right:after{content:'⇆'}.ss-refresh:before,.ss-refresh.right:after{content:'↻'}.ss-sync:before,.ss-sync.right:after{content:''}.ss-wifi:before,.ss-wifi.right:after{content:''}.ss-connection:before,.ss-connection.right:after{content:''}.ss-usb:before,.ss-usb.right:after{content:''}.ss-files:before,.ss-files.right:after{content:''}.ss-addfile:before,.ss-addfile.right:after{content:''}.ss-removefile:before,.ss-removefile.right:after{content:''}.ss-deletefile:before,.ss-deletefile.right:after{content:''}.ss-searchfile:before,.ss-searchfile.right:after{content:''}.ss-folder:before,.ss-folder.right:after{content:'📁'}.ss-addfolder:before,.ss-addfolder.right:after{content:''}.ss-removefolder:before,.ss-removefolder.right:after{content:''}.ss-deletefolder:before,.ss-deletefolder.right:after{content:''}.ss-downloadfolder:before,.ss-downloadfolder.right:after{content:''}.ss-uploadfolder:before,.ss-uploadfolder.right:after{content:''}.ss-undo:before,.ss-undo.right:after{content:'↩'}.ss-redo:before,.ss-redo.right:after{content:'↪'}.ss-quote:before,.ss-quote.right:after{content:'“'}.ss-font:before,.ss-font.right:after{content:''}.ss-anchor:before,.ss-anchor.right:after{content:''}.ss-print:before,.ss-print.right:after{content:'⎙'}.ss-fax:before,.ss-fax.right:after{content:'📠'}.ss-shredder:before,.ss-shredder.right:after{content:''}.ss-typewriter:before,.ss-typewriter.right:after{content:''}.ss-list:before,.ss-list.right:after{content:''}.ss-action:before,.ss-action.right:after{content:''}.ss-redirect:before,.ss-redirect.right:after{content:'↗'}.ss-expand:before,.ss-expand.right:after{content:'⤢'}.ss-contract:before,.ss-contract.right:after{content:''}.ss-scaleup:before,.ss-scaleup.right:after{content:''}.ss-scaledown:before,.ss-scaledown.right:after{content:''}.ss-power:before,.ss-power.right:after{content:''}.ss-lifepreserver:before,.ss-lifepreserver.right:after{content:''}.ss-help:before,.ss-help.right:after{content:'❓'}.ss-info:before,.ss-info.right:after{content:'ℹ'}.ss-alert:before,.ss-alert.right:after{content:'⚠'}.ss-caution:before,.ss-caution.right:after{content:'⛔'}.ss-plus:before,.ss-plus.right:after{content:'+'}.ss-hyphen:before,.ss-hyphen.right:after{content:'-'}.ss-check:before,.ss-check.right:after{content:'✓'}.ss-delete:before,.ss-delete.right:after{content:'␡'}.ss-dogface:before,.ss-dogface.right:after{content:'🐶'}.ss-catface:before,.ss-catface.right:after{content:'🐱'}.ss-bearface:before,.ss-bearface.right:after{content:'🐻'}.ss-bird:before,.ss-bird.right:after{content:'🐦'}.ss-dog:before,.ss-dog.right:after{content:'🐕'}.ss-sheep:before,.ss-sheep.right:after{content:'🐑'}.ss-pig:before,.ss-pig.right:after{content:'🐖'}.ss-bone:before,.ss-bone.right:after{content:''}.ss-tooth:before,.ss-tooth.right:after{content:''}.ss-palmtree:before,.ss-palmtree.right:after{content:'🌴'}.ss-tree:before,.ss-tree.right:after{content:'🌲'}.ss-leaf:before,.ss-leaf.right:after{content:'🍂'}.ss-flower:before,.ss-flower.right:after{content:'⚘'}.ss-settings:before,.ss-settings.right:after{content:'⚙'}.ss-dashboard:before,.ss-dashboard.right:after{content:''}.ss-notifications:before,.ss-notifications.right:after{content:'🔔'}.ss-toggles:before,.ss-toggles.right:after{content:''}.ss-switch:before,.ss-switch.right:after{content:''}.ss-switchoff:before,.ss-switchoff.right:after{content:''}.ss-brightness:before,.ss-brightness.right:after{content:'🔆'}.ss-flashoff:before,.ss-flashoff.right:after{content:''}.ss-toolbox:before,.ss-toolbox.right:after{content:''}.ss-tools:before,.ss-tools.right:after{content:''}.ss-wrench:before,.ss-wrench.right:after{content:'🔧'}.ss-wrenches:before,.ss-wrenches.right:after{content:''}.ss-wrenchpencil:before,.ss-wrenchpencil.right:after{content:''}.ss-screwdriverpencil:before,.ss-screwdriverpencil.right:after{content:''}.ss-hammerscrewdriver:before,.ss-hammerscrewdriver.right:after{content:''}.ss-tapemeasure:before,.ss-tapemeasure.right:after{content:''}.ss-hourglass:before,.ss-hourglass.right:after{content:'⏳'}.ss-clock:before,.ss-clock.right:after{content:'⏲'}.ss-stopwatch:before,.ss-stopwatch.right:after{content:'⏱'}.ss-alarmclock:before,.ss-alarmclock.right:after{content:'⏰'}.ss-calendar:before,.ss-calendar.right:after{content:'📅'}.ss-keyboardup:before,.ss-keyboardup.right:after{content:''}.ss-keyboarddown:before,.ss-keyboarddown.right:after{content:''}.ss-heavyasterisk:before,.ss-heavyasterisk.right:after{content:'✱'}.ss-egg:before,.ss-egg.right:after{content:''}.ss-cheese:before,.ss-cheese.right:after{content:''}.ss-hotdog:before,.ss-hotdog.right:after{content:''}.ss-burger:before,.ss-burger.right:after{content:'🍔'}.ss-birthdaycake:before,.ss-birthdaycake.right:after{content:'🎂'}.ss-pancakes:before,.ss-pancakes.right:after{content:''}.ss-pizza:before,.ss-pizza.right:after{content:'🍕'}.ss-frenchfries:before,.ss-frenchfries.right:after{content:'🍟'}.ss-apple:before,.ss-apple.right:after{content:'🍏'}.ss-mug:before,.ss-mug.right:after{content:'☕'}.ss-coffee:before,.ss-coffee.right:after{content:''}.ss-growler:before,.ss-growler.right:after{content:''}.ss-beer:before,.ss-beer.right:after{content:'🍺'}.ss-bottle:before,.ss-bottle.right:after{content:''}.ss-wine:before,.ss-wine.right:after{content:''}.ss-wineglass:before,.ss-wineglass.right:after{content:'🍷'}.ss-cocktail:before,.ss-cocktail.right:after{content:'🍸'}.ss-soda:before,.ss-soda.right:after{content:''}.ss-cup:before,.ss-cup.right:after{content:''}.ss-babybottle:before,.ss-babybottle.right:after{content:'🍼'}.ss-jug:before,.ss-jug.right:after{content:''}.ss-oven:before,.ss-oven.right:after{content:''}.ss-takeout:before,.ss-takeout.right:after{content:''}.ss-paperbag:before,.ss-paperbag.right:after{content:''}.ss-utensils:before,.ss-utensils.right:after{content:'🍴'}.ss-tshirt:before,.ss-tshirt.right:after{content:'👕'}.ss-graduationcap:before,.ss-graduationcap.right:after{content:'🎓'}.ss-fabric:before,.ss-fabric.right:after{content:''}.ss-swatch:before,.ss-swatch.right:after{content:''}.ss-weave:before,.ss-weave.right:after{content:''}.ss-thread:before,.ss-thread.right:after{content:''}.ss-yarn:before,.ss-yarn.right:after{content:''}.ss-crochet:before,.ss-crochet.right:after{content:''}.ss-needles:before,.ss-needles.right:after{content:''}.ss-scissorsneedles:before,.ss-scissorsneedles.right:after{content:''}.ss-button:before,.ss-button.right:after{content:''}.ss-zipper:before,.ss-zipper.right:after{content:''}.ss-sun:before,.ss-sun.right:after{content:'☀'}.ss-partlycloudy:before,.ss-partlycloudy.right:after{content:'⛅'}.ss-rainbow:before,.ss-rainbow.right:after{content:'🌈'}.ss-umbrella:before,.ss-umbrella.right:after{content:'☂'}.ss-crescentmoon:before,.ss-crescentmoon.right:after{content:'🌙'}.ss-newmoon:before,.ss-newmoon.right:after{content:'🌑'}.ss-waxingcrescentmoon:before,.ss-waxingcrescentmoon.right:after{content:'🌒'}.ss-firstquartermoon:before,.ss-firstquartermoon.right:after{content:'🌓'}.ss-waxinggibbousmoon:before,.ss-waxinggibbousmoon.right:after{content:'🌔'}.ss-fullmoon:before,.ss-fullmoon.right:after{content:'🌕'}.ss-waninggibbousmoon:before,.ss-waninggibbousmoon.right:after{content:'🌖'}.ss-lastquartermoon:before,.ss-lastquartermoon.right:after{content:'🌗'}.ss-waningcrescentmoon:before,.ss-waningcrescentmoon.right:after{content:'🌘'}.ss-car:before,.ss-car.right:after{content:'🚘'}.ss-carrepair:before,.ss-carrepair.right:after{content:''}.ss-taxi:before,.ss-taxi.right:after{content:'🚖'}.ss-train:before,.ss-train.right:after{content:'🚆'}.ss-bus:before,.ss-bus.right:after{content:'🚍'}.ss-truck:before,.ss-truck.right:after{content:'🚚'}.ss-trailer:before,.ss-trailer.right:after{content:''}.ss-trailerdump:before,.ss-trailerdump.right:after{content:''}.ss-plane:before,.ss-plane.right:after{content:'✈'}.ss-bike:before,.ss-bike.right:after{content:'🚲'}.ss-motorcycle:before,.ss-motorcycle.right:after{content:''}.ss-boat:before,.ss-boat.right:after{content:'🚢'}.ss-rocket:before,.ss-rocket.right:after{content:'🚀'}.ss-ufo:before,.ss-ufo.right:after{content:''}.ss-squarekey:before,.ss-squarekey.right:after{content:''}.ss-tire:before,.ss-tire.right:after{content:''}.ss-fuel:before,.ss-fuel.right:after{content:'⛽'}.ss-parking:before,.ss-parking.right:after{content:''}.ss-wheelchair:before,.ss-wheelchair.right:after{content:'♿'}.ss-restroom:before,.ss-restroom.right:after{content:'🚻'}.ss-elevator:before,.ss-elevator.right:after{content:''}.ss-briefcase:before,.ss-briefcase.right:after{content:'💼'}.ss-theatre:before,.ss-theatre.right:after{content:'🎭'}.ss-ticket:before,.ss-ticket.right:after{content:'🎫'}.ss-golf:before,.ss-golf.right:after{content:''}.ss-billiards:before,.ss-billiards.right:after{content:'🎱'}.ss-baseball:before,.ss-baseball.right:after{content:'⚾'}.ss-tennis:before,.ss-tennis.right:after{content:'🎾'}.ss-basketball:before,.ss-basketball.right:after{content:'🏀'}.ss-football:before,.ss-football.right:after{content:'🏈'}.ss-soccer:before,.ss-soccer.right:after{content:'⚽'}.ss-flaginhole:before,.ss-flaginhole.right:after{content:'⛳'}.ss-paddles:before,.ss-paddles.right:after{content:''}.ss-skiboot:before,.ss-skiboot.right:after{content:''}.ss-skis:before,.ss-skis.right:after{content:'🎿'}.ss-hiker:before,.ss-hiker.right:after{content:''}.ss-runner:before,.ss-runner.right:after{content:'🏃'}.ss-hottub:before,.ss-hottub.right:after{content:''}.ss-exercise:before,.ss-exercise.right:after{content:''}.ss-hospital:before,.ss-hospital.right:after{content:'⛨'}.ss-medicalcross:before,.ss-medicalcross.right:after{content:''}.ss-medicalbag:before,.ss-medicalbag.right:after{content:''}.ss-bandage:before,.ss-bandage.right:after{content:''}.ss-flask:before,.ss-flask.right:after{content:''}.ss-testtube:before,.ss-testtube.right:after{content:''}.ss-up:before,.ss-up.right:after{content:'⬆'}.ss-right:before,.ss-right.right:after{content:'➡'}.ss-down:before,.ss-down.right:after{content:'⬇'}.ss-left:before,.ss-left.right:after{content:'⬅'}.ss-navigateup:before,.ss-navigateup.right:after{content:''}.ss-navigateright:before,.ss-navigateright.right:after{content:'▻'}.ss-navigatedown:before,.ss-navigatedown.right:after{content:''}.ss-navigateleft:before,.ss-navigateleft.right:after{content:'◅'}.ss-share:before,.ss-share.right:after{content:''}


.load_more_posts {
    text-align: center
}

#disqus_thread {
    margin-top: 20px
}

ol#ns-footer-sublist {
    list-style: none;
}

ol.list-style-none {
    list-style: none;
}
