@charset "utf-8";
/* CSS Document */
/* ====================================================================================================
	Table of Content

	Misc Inlcudes
	Variables
	1. Typography - Copy into admin.css
	2. Header
	3. Navigation
		a. Navigation
		b. Sub Navigation
	4. Content
		a. Homepage Styles
		b. Page Styles
	5. Blog
	6. Print
	7. Buttons
	8. Footer
*/
.hide-text {
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
}
.hide-text a {
  display: block;
  height: 100%;
}

/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

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

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

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

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

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

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

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
  height: auto !important;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

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

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

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

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

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

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

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

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

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

meta.foundation-version {
  font-family: "/5.2.3/";
}

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em;
}

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em;
}

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em;
}

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em;
}

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em;
}

meta.foundation-data-attribute-namespace {
  font-family: false;
}

html, body {
  height: 100%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  font-size: 100%;
}

body {
  background: white;
  color: #222222;
  padding: 0;
  margin: 0;
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1;
  position: relative;
  cursor: default;
}

a:hover {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto !important;
}

img {
  -ms-interpolation-mode: bicubic;
}

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important;
}

.left {
  float: left !important;
}

.right {
  float: right !important;
}

.clearfix:before, #v65-subscribeWidget form:before, .clearfix:after, #v65-subscribeWidget form:after {
  content: " ";
  display: table;
}
.clearfix:after, #v65-subscribeWidget form:after {
  clear: both;
}

.hide {
  display: none;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
}

textarea {
  height: auto;
  min-height: 50px;
}

select {
  width: 100%;
}

.row, .v65-blogPostWrapper, .v65-commentWrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 990px;
}
.row:before, .v65-blogPostWrapper:before, .v65-commentWrapper:before, .row:after, .v65-blogPostWrapper:after, .v65-commentWrapper:after {
  content: " ";
  display: table;
}
.row:after, .v65-blogPostWrapper:after, .v65-commentWrapper:after {
  clear: both;
}
.row.collapse > .column, .collapse.v65-blogPostWrapper > .column, .collapse.v65-commentWrapper > .column,
.row.collapse > .columns,
.collapse.v65-blogPostWrapper > .columns,
.collapse.v65-commentWrapper > .columns {
  padding-left: 0;
  padding-right: 0;
}
.row.collapse .row, .collapse.v65-blogPostWrapper .row, .collapse.v65-commentWrapper .row, .row.collapse .v65-blogPostWrapper, .collapse.v65-blogPostWrapper .v65-blogPostWrapper, .collapse.v65-commentWrapper .v65-blogPostWrapper, .row.collapse .v65-commentWrapper, .collapse.v65-blogPostWrapper .v65-commentWrapper, .collapse.v65-commentWrapper .v65-commentWrapper {
  margin-left: 0;
  margin-right: 0;
}
.row .row, .v65-blogPostWrapper .row, .v65-commentWrapper .row, .row .v65-blogPostWrapper, .v65-blogPostWrapper .v65-blogPostWrapper, .v65-commentWrapper .v65-blogPostWrapper, .row .v65-commentWrapper, .v65-blogPostWrapper .v65-commentWrapper, .v65-commentWrapper .v65-commentWrapper {
  width: auto;
  margin-left: -30px;
  margin-right: -30px;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none;
}
.row .row:before, .v65-blogPostWrapper .row:before, .v65-commentWrapper .row:before, .row .v65-blogPostWrapper:before, .v65-blogPostWrapper .v65-blogPostWrapper:before, .v65-commentWrapper .v65-blogPostWrapper:before, .row .v65-commentWrapper:before, .v65-blogPostWrapper .v65-commentWrapper:before, .v65-commentWrapper .v65-commentWrapper:before, .row .row:after, .v65-blogPostWrapper .row:after, .v65-commentWrapper .row:after, .row .v65-blogPostWrapper:after, .v65-blogPostWrapper .v65-blogPostWrapper:after, .v65-commentWrapper .v65-blogPostWrapper:after, .row .v65-commentWrapper:after, .v65-blogPostWrapper .v65-commentWrapper:after, .v65-commentWrapper .v65-commentWrapper:after {
  content: " ";
  display: table;
}
.row .row:after, .v65-blogPostWrapper .row:after, .v65-commentWrapper .row:after, .row .v65-blogPostWrapper:after, .v65-blogPostWrapper .v65-blogPostWrapper:after, .v65-commentWrapper .v65-blogPostWrapper:after, .row .v65-commentWrapper:after, .v65-blogPostWrapper .v65-commentWrapper:after, .v65-commentWrapper .v65-commentWrapper:after {
  clear: both;
}
.row .row.collapse, .v65-blogPostWrapper .row.collapse, .v65-commentWrapper .row.collapse, .row .collapse.v65-blogPostWrapper, .v65-blogPostWrapper .collapse.v65-blogPostWrapper, .v65-commentWrapper .collapse.v65-blogPostWrapper, .row .collapse.v65-commentWrapper, .v65-blogPostWrapper .collapse.v65-commentWrapper, .v65-commentWrapper .collapse.v65-commentWrapper {
  width: auto;
  margin: 0;
  max-width: none;
}
.row .row.collapse:before, .v65-blogPostWrapper .row.collapse:before, .v65-commentWrapper .row.collapse:before, .row .collapse.v65-blogPostWrapper:before, .v65-blogPostWrapper .collapse.v65-blogPostWrapper:before, .v65-commentWrapper .collapse.v65-blogPostWrapper:before, .row .collapse.v65-commentWrapper:before, .v65-blogPostWrapper .collapse.v65-commentWrapper:before, .v65-commentWrapper .collapse.v65-commentWrapper:before, .row .row.collapse:after, .v65-blogPostWrapper .row.collapse:after, .v65-commentWrapper .row.collapse:after, .row .collapse.v65-blogPostWrapper:after, .v65-blogPostWrapper .collapse.v65-blogPostWrapper:after, .v65-commentWrapper .collapse.v65-blogPostWrapper:after, .row .collapse.v65-commentWrapper:after, .v65-blogPostWrapper .collapse.v65-commentWrapper:after, .v65-commentWrapper .collapse.v65-commentWrapper:after {
  content: " ";
  display: table;
}
.row .row.collapse:after, .v65-blogPostWrapper .row.collapse:after, .v65-commentWrapper .row.collapse:after, .row .collapse.v65-blogPostWrapper:after, .v65-blogPostWrapper .collapse.v65-blogPostWrapper:after, .v65-commentWrapper .collapse.v65-blogPostWrapper:after, .row .collapse.v65-commentWrapper:after, .v65-blogPostWrapper .collapse.v65-commentWrapper:after, .v65-commentWrapper .collapse.v65-commentWrapper:after {
  clear: both;
}

.column,
.columns {
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  float: left;
}

@media only screen {
  .small-push-0 {
    position: relative;
    left: 0%;
    right: auto;
  }

  .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto;
  }

  .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }

  .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }

  .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }

  .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }

  .small-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }

  .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }

  .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }

  .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }

  .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }

  .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }

  .small-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }

  .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }

  .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }

  .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }

  .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }

  .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }

  .small-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }

  .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }

  .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }

  .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }

  .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }

  .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }

  .column,
  .columns {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
    float: left;
  }

  .small-1 {
    width: 8.33333%;
  }

  .small-2 {
    width: 16.66667%;
  }

  .small-3 {
    width: 25%;
  }

  .small-4 {
    width: 33.33333%;
  }

  .small-5 {
    width: 41.66667%;
  }

  .small-6 {
    width: 50%;
  }

  .small-7 {
    width: 58.33333%;
  }

  .small-8 {
    width: 66.66667%;
  }

  .small-9 {
    width: 75%;
  }

  .small-10 {
    width: 83.33333%;
  }

  .small-11 {
    width: 91.66667%;
  }

  .small-12 {
    width: 100%;
  }

  [class*="column"] + [class*="column"]:last-child {
    float: right;
  }

  [class*="column"] + [class*="column"].end {
    float: left;
  }

  .small-offset-0 {
    margin-left: 0% !important;
  }

  .small-offset-1 {
    margin-left: 8.33333% !important;
  }

  .small-offset-2 {
    margin-left: 16.66667% !important;
  }

  .small-offset-3 {
    margin-left: 25% !important;
  }

  .small-offset-4 {
    margin-left: 33.33333% !important;
  }

  .small-offset-5 {
    margin-left: 41.66667% !important;
  }

  .small-offset-6 {
    margin-left: 50% !important;
  }

  .small-offset-7 {
    margin-left: 58.33333% !important;
  }

  .small-offset-8 {
    margin-left: 66.66667% !important;
  }

  .small-offset-9 {
    margin-left: 75% !important;
  }

  .small-offset-10 {
    margin-left: 83.33333% !important;
  }

  .small-offset-11 {
    margin-left: 91.66667% !important;
  }

  .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left;
  }

  .column.small-centered,
  .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none !important;
  }

  .column.small-uncentered,
  .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left !important;
  }

  .column.small-uncentered.opposite,
  .columns.small-uncentered.opposite {
    float: right;
  }
}
@media only screen and (min-width: 40.063em) {
  .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto;
  }

  .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto;
  }

  .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }

  .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }

  .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }

  .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }

  .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }

  .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }

  .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }

  .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }

  .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }

  .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }

  .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }

  .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }

  .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }

  .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }

  .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }

  .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }

  .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }

  .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }

  .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }

  .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }

  .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }

  .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }

  .column,
  .columns {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
    float: left;
  }

  .medium-1 {
    width: 8.33333%;
  }

  .medium-2 {
    width: 16.66667%;
  }

  .medium-3 {
    width: 25%;
  }

  .medium-4 {
    width: 33.33333%;
  }

  .medium-5 {
    width: 41.66667%;
  }

  .medium-6 {
    width: 50%;
  }

  .medium-7 {
    width: 58.33333%;
  }

  .medium-8 {
    width: 66.66667%;
  }

  .medium-9 {
    width: 75%;
  }

  .medium-10 {
    width: 83.33333%;
  }

  .medium-11 {
    width: 91.66667%;
  }

  .medium-12 {
    width: 100%;
  }

  [class*="column"] + [class*="column"]:last-child {
    float: right;
  }

  [class*="column"] + [class*="column"].end {
    float: left;
  }

  .medium-offset-0 {
    margin-left: 0% !important;
  }

  .medium-offset-1 {
    margin-left: 8.33333% !important;
  }

  .medium-offset-2 {
    margin-left: 16.66667% !important;
  }

  .medium-offset-3 {
    margin-left: 25% !important;
  }

  .medium-offset-4 {
    margin-left: 33.33333% !important;
  }

  .medium-offset-5 {
    margin-left: 41.66667% !important;
  }

  .medium-offset-6 {
    margin-left: 50% !important;
  }

  .medium-offset-7 {
    margin-left: 58.33333% !important;
  }

  .medium-offset-8 {
    margin-left: 66.66667% !important;
  }

  .medium-offset-9 {
    margin-left: 75% !important;
  }

  .medium-offset-10 {
    margin-left: 83.33333% !important;
  }

  .medium-offset-11 {
    margin-left: 91.66667% !important;
  }

  .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left;
  }

  .column.medium-centered,
  .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none !important;
  }

  .column.medium-uncentered,
  .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left !important;
  }

  .column.medium-uncentered.opposite,
  .columns.medium-uncentered.opposite {
    float: right;
  }

  .push-0 {
    position: relative;
    left: 0%;
    right: auto;
  }

  .pull-0 {
    position: relative;
    right: 0%;
    left: auto;
  }

  .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }

  .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }

  .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }

  .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }

  .push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }

  .pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }

  .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }

  .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }

  .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }

  .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }

  .push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }

  .pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }

  .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }

  .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }

  .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }

  .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }

  .push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }

  .pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }

  .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }

  .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }

  .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }

  .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }
}
@media only screen and (min-width: 64.063em) {
  .large-push-0 {
    position: relative;
    left: 0%;
    right: auto;
  }

  .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto;
  }

  .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }

  .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }

  .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }

  .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }

  .large-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }

  .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }

  .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }

  .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }

  .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }

  .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }

  .large-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }

  .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }

  .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }

  .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }

  .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }

  .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }

  .large-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }

  .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }

  .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }

  .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }

  .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }

  .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }

  .column,
  .columns {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
    float: left;
  }

  .large-1 {
    width: 8.33333%;
  }

  .large-2 {
    width: 16.66667%;
  }

  .large-3 {
    width: 25%;
  }

  .large-4 {
    width: 33.33333%;
  }

  .large-5 {
    width: 41.66667%;
  }

  .large-6 {
    width: 50%;
  }

  .large-7 {
    width: 58.33333%;
  }

  .large-8 {
    width: 66.66667%;
  }

  .large-9 {
    width: 75%;
  }

  .large-10 {
    width: 83.33333%;
  }

  .large-11 {
    width: 91.66667%;
  }

  .large-12 {
    width: 100%;
  }

  [class*="column"] + [class*="column"]:last-child {
    float: right;
  }

  [class*="column"] + [class*="column"].end {
    float: left;
  }

  .large-offset-0 {
    margin-left: 0% !important;
  }

  .large-offset-1 {
    margin-left: 8.33333% !important;
  }

  .large-offset-2 {
    margin-left: 16.66667% !important;
  }

  .large-offset-3 {
    margin-left: 25% !important;
  }

  .large-offset-4 {
    margin-left: 33.33333% !important;
  }

  .large-offset-5 {
    margin-left: 41.66667% !important;
  }

  .large-offset-6 {
    margin-left: 50% !important;
  }

  .large-offset-7 {
    margin-left: 58.33333% !important;
  }

  .large-offset-8 {
    margin-left: 66.66667% !important;
  }

  .large-offset-9 {
    margin-left: 75% !important;
  }

  .large-offset-10 {
    margin-left: 83.33333% !important;
  }

  .large-offset-11 {
    margin-left: 91.66667% !important;
  }

  .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left;
  }

  .column.large-centered,
  .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none !important;
  }

  .column.large-uncentered,
  .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left !important;
  }

  .column.large-uncentered.opposite,
  .columns.large-uncentered.opposite {
    float: right;
  }

  .push-0 {
    position: relative;
    left: 0%;
    right: auto;
  }

  .pull-0 {
    position: relative;
    right: 0%;
    left: auto;
  }

  .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }

  .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }

  .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }

  .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }

  .push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }

  .pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }

  .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }

  .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }

  .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }

  .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }

  .push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }

  .pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }

  .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }

  .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }

  .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }

  .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }

  .push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }

  .pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }

  .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }

  .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }

  .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }

  .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }
}
.alert-box, form .error ul li {
  border-style: solid;
  border-width: 1px;
  display: block;
  font-weight: 300;
  margin-bottom: 1.25rem;
  position: relative;
  padding: 0.875rem 1.5rem 0.875rem 0.875rem;
  font-size: 0.9375rem;
  transition: opacity 300ms ease-out;
  background-color: #0099cc;
  border-color: #0084af;
  color: white;
}
.alert-box .close, form .error ul li .close {
  font-size: 1.375rem;
  padding: 9px 6px 4px;
  line-height: 0;
  position: absolute;
  top: 50%;
  margin-top: -0.6875rem;
  right: 0.25rem;
  color: #333333;
  opacity: 0.3;
}
.alert-box .close:hover, form .error ul li .close:hover, .alert-box .close:focus, form .error ul li .close:focus {
  opacity: 0.5;
}
.alert-box.radius, form .error ul li.radius {
  border-radius: 3px;
}
.alert-box.round, form .error ul li.round {
  border-radius: 1000px;
}
.alert-box.success, form .error ul li.success {
  background-color: #43ac6a;
  border-color: #3a945b;
  color: white;
}
.alert-box.alert, form .error ul li {
  background-color: #f04124;
  border-color: #de2d0f;
  color: white;
}
.alert-box.secondary, form .error ul li.secondary {
  background-color: #acacac;
  border-color: #949494;
  color: white;
}
.alert-box.warning, form .error ul li.warning {
  background-color: #f5cf47;
  border-color: #f3c41d;
  color: white;
}
.alert-box.info, form .error ul li.info {
  background-color: #a0d3e8;
  border-color: #74bfdd;
  color: #3a3a3a;
}
.alert-box.alert-close, form .error ul li.alert-close {
  opacity: 0;
}

button, .button {
  border-style: solid;
  border-width: 0px;
  cursor: pointer;
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 1.25rem;
  position: relative;
  text-decoration: none;
  text-align: center;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  display: inline-block;
  padding-top: 1rem;
  padding-right: 2rem;
  padding-bottom: 1.0625rem;
  padding-left: 2rem;
  font-size: 1rem;
  background-color: #a0a0a0;
  border-color: #909090;
  color: white;
  transition: background-color 300ms ease-out;
}
button:hover, button:focus, .button:hover, .button:focus {
  background-color: #909090;
}
button:hover, button:focus, .button:hover, .button:focus {
  color: white;
}
button.secondary, .button.secondary {
  background-color: #acacac;
  border-color: #9b9b9b;
  color: white;
}
button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  background-color: #9b9b9b;
}
button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  color: white;
}
button.primary, button.defaultBtn, .button.primary, .button.defaultBtn {
  background-color: #0099cc;
  border-color: #008ab8;
  color: white;
}
button.primary:hover, button.primary:focus, button.defaultBtn:hover, button.defaultBtn:focus, .button.primary:hover, .button.primary:focus, .button.defaultBtn:hover, .button.defaultBtn:focus {
  background-color: #008ab8;
}
button.primary:hover, button.primary:focus, button.defaultBtn:hover, button.defaultBtn:focus, .button.primary:hover, .button.primary:focus, .button.defaultBtn:hover, .button.defaultBtn:focus {
  color: white;
}
button.success, .button.success {
  background-color: #43ac6a;
  border-color: #3c9b5f;
  color: white;
}
button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  background-color: #3c9b5f;
}
button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  color: white;
}
button.alert, .button.alert, form .error ul li.button {
  background-color: #f04124;
  border-color: #e82f10;
  color: white;
}
button.alert:hover, button.alert:focus, .button.alert:hover, form .error ul li.button:hover, .button.alert:focus, form .error ul li.button:focus {
  background-color: #e82f10;
}
button.alert:hover, button.alert:focus, .button.alert:hover, form .error ul li.button:hover, .button.alert:focus, form .error ul li.button:focus {
  color: white;
}
button.large, .button.large {
  padding-top: 1.125rem;
  padding-right: 2.25rem;
  padding-bottom: 1.1875rem;
  padding-left: 2.25rem;
  font-size: 1.25rem;
}
button.small, #v65-subscribeWidget button, .button.small, #v65-subscribeWidget button.button {
  padding-top: 0.875rem;
  padding-right: 1.75rem;
  padding-bottom: 0.9375rem;
  padding-left: 1.75rem;
  font-size: 0.8125rem;
}
button.tiny, .button.tiny {
  padding-top: 0.625rem;
  padding-right: 1.25rem;
  padding-bottom: 0.6875rem;
  padding-left: 1.25rem;
  font-size: 0.6875rem;
}
button.expand, #v65-subscribeWidget button, .button.expand, #v65-subscribeWidget button.button {
  padding-right: 0;
  padding-left: 0;
  width: 100%;
}
button.left-align, .button.left-align {
  text-align: left;
  text-indent: 0.75rem;
}
button.right-align, .button.right-align {
  text-align: right;
  padding-right: 0.75rem;
}
button.radius, .button.radius {
  border-radius: 3px;
}
button.round, .button.round {
  border-radius: 1000px;
}
button.disabled, button[disabled], .button.disabled, .button[disabled] {
  background-color: #a0a0a0;
  border-color: #909090;
  color: white;
  cursor: default;
  opacity: 0.7;
  box-shadow: none;
}
button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  background-color: #909090;
}
button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  color: white;
}
button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  background-color: #a0a0a0;
}
button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
  background-color: #acacac;
  border-color: #9b9b9b;
  color: white;
  cursor: default;
  opacity: 0.7;
  box-shadow: none;
}
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  background-color: #9b9b9b;
}
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  color: white;
}
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  background-color: #acacac;
}
button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
  background-color: #43ac6a;
  border-color: #3c9b5f;
  color: white;
  cursor: default;
  opacity: 0.7;
  box-shadow: none;
}
button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  background-color: #3c9b5f;
}
button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  color: white;
}
button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  background-color: #43ac6a;
}
button.disabled.alert, button[disabled].alert, .button.disabled.alert, form .error ul li.button.disabled, .button[disabled].alert, form .error ul li.button[disabled] {
  background-color: #f04124;
  border-color: #e82f10;
  color: white;
  cursor: default;
  opacity: 0.7;
  box-shadow: none;
}
button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, form .error ul li.button.disabled:hover, .button.disabled.alert:focus, form .error ul li.button.disabled:focus, .button[disabled].alert:hover, form .error ul li.button[disabled]:hover, .button[disabled].alert:focus, form .error ul li.button[disabled]:focus {
  background-color: #e82f10;
}
button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, form .error ul li.button.disabled:hover, .button.disabled.alert:focus, form .error ul li.button.disabled:focus, .button[disabled].alert:hover, form .error ul li.button[disabled]:hover, .button[disabled].alert:focus, form .error ul li.button[disabled]:focus {
  color: white;
}
button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, form .error ul li.button.disabled:hover, .button.disabled.alert:focus, form .error ul li.button.disabled:focus, .button[disabled].alert:hover, form .error ul li.button[disabled]:hover, .button[disabled].alert:focus, form .error ul li.button[disabled]:focus {
  background-color: #f04124;
}

@media only screen and (min-width: 40.063em) {
  button, .button {
    display: inline-block;
  }
}
/* Clearing Styles */
.clearing-thumbs, [data-clearing] {
  margin-bottom: 0;
  margin-left: 0;
  list-style: none;
}
.clearing-thumbs:before, .clearing-thumbs:after, [data-clearing]:before, [data-clearing]:after {
  content: " ";
  display: table;
}
.clearing-thumbs:after, [data-clearing]:after {
  clear: both;
}
.clearing-thumbs li, [data-clearing] li {
  float: left;
  margin-right: 10px;
}
.clearing-thumbs[class*="block-grid-"] li, [data-clearing][class*="block-grid-"] li {
  margin-right: 0;
}

.clearing-blackout {
  background: #333333;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 998;
}
.clearing-blackout .clearing-close {
  display: block;
}

.clearing-container {
  position: relative;
  z-index: 998;
  height: 100%;
  overflow: hidden;
  margin: 0;
}

.clearing-touch-label {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #aaa;
  font-size: 0.6em;
}

.visible-img {
  height: 95%;
  position: relative;
}
.visible-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50%;
  max-height: 100%;
  max-width: 100%;
}

.clearing-caption {
  color: #cccccc;
  font-size: 0.875em;
  line-height: 1.3;
  margin-bottom: 0;
  text-align: center;
  bottom: 0;
  background: #333333;
  width: 100%;
  padding: 10px 30px 20px;
  position: absolute;
  left: 0;
}

.clearing-close {
  z-index: 999;
  padding-left: 20px;
  padding-top: 10px;
  font-size: 30px;
  line-height: 1;
  color: #cccccc;
  display: none;
}
.clearing-close:hover, .clearing-close:focus {
  color: #ccc;
}

.clearing-assembled .clearing-container {
  height: 100%;
}
.clearing-assembled .clearing-container .carousel > ul {
  display: none;
}

.clearing-feature li {
  display: none;
}
.clearing-feature li.clearing-featured-img {
  display: block;
}

@media only screen and (min-width: 40.063em) {
  .clearing-main-prev,
  .clearing-main-next {
    position: absolute;
    height: 100%;
    width: 40px;
    top: 0;
  }
  .clearing-main-prev > span,
  .clearing-main-next > span {
    position: absolute;
    top: 50%;
    display: block;
    width: 0;
    height: 0;
    border: solid 12px;
  }
  .clearing-main-prev > span:hover,
  .clearing-main-next > span:hover {
    opacity: 0.8;
  }

  .clearing-main-prev {
    left: 0;
  }
  .clearing-main-prev > span {
    left: 5px;
    border-color: transparent;
    border-right-color: #cccccc;
  }

  .clearing-main-next {
    right: 0;
  }
  .clearing-main-next > span {
    border-color: transparent;
    border-left-color: #cccccc;
  }

  .clearing-main-prev.disabled,
  .clearing-main-next.disabled {
    opacity: 0.3;
  }

  .clearing-assembled .clearing-container .carousel {
    background: rgba(51, 51, 51, 0.8);
    height: 120px;
    margin-top: 10px;
    text-align: center;
  }
  .clearing-assembled .clearing-container .carousel > ul {
    display: inline-block;
    z-index: 999;
    height: 100%;
    position: relative;
    float: none;
  }
  .clearing-assembled .clearing-container .carousel > ul li {
    display: block;
    width: 120px;
    min-height: inherit;
    float: left;
    overflow: hidden;
    margin-right: 0;
    padding: 0;
    position: relative;
    cursor: pointer;
    opacity: 0.4;
    clear: none;
  }
  .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
    height: 100%;
    max-width: none;
  }
  .clearing-assembled .clearing-container .carousel > ul li a.th {
    border: none;
    box-shadow: none;
    display: block;
  }
  .clearing-assembled .clearing-container .carousel > ul li img {
    cursor: pointer !important;
    width: 100% !important;
  }
  .clearing-assembled .clearing-container .carousel > ul li.visible {
    opacity: 1;
  }
  .clearing-assembled .clearing-container .carousel > ul li:hover {
    opacity: 0.8;
  }
  .clearing-assembled .clearing-container .visible-img {
    background: #333333;
    overflow: hidden;
    height: 85%;
  }

  .clearing-close {
    position: absolute;
    top: 10px;
    right: 20px;
    padding-left: 0;
    padding-top: 0;
  }
}
.flex-video {
  position: relative;
  padding-top: 1.5625rem;
  padding-bottom: 53.5%;
  height: 0;
  margin-bottom: 1rem;
  overflow: hidden;
}
.flex-video.widescreen {
  padding-bottom: 56.34%;
}
.flex-video.vimeo {
  padding-top: 0;
}
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Standard Forms */
form {
  margin: 0 0 1rem;
}

/* Using forms within rows, we need to set some defaults */
form .row .row, form .v65-blogPostWrapper .row, form .v65-commentWrapper .row, form .row .v65-blogPostWrapper, form .v65-blogPostWrapper .v65-blogPostWrapper, form .v65-commentWrapper .v65-blogPostWrapper, form .row .v65-commentWrapper, form .v65-blogPostWrapper .v65-commentWrapper, form .v65-commentWrapper .v65-commentWrapper {
  margin: 0 -0.5rem;
}
form .row .row .column, form .v65-blogPostWrapper .row .column, form .v65-commentWrapper .row .column, form .row .v65-blogPostWrapper .column, form .v65-blogPostWrapper .v65-blogPostWrapper .column, form .v65-commentWrapper .v65-blogPostWrapper .column, form .row .v65-commentWrapper .column, form .v65-blogPostWrapper .v65-commentWrapper .column, form .v65-commentWrapper .v65-commentWrapper .column,
form .row .row .columns,
form .v65-blogPostWrapper .row .columns,
form .v65-commentWrapper .row .columns,
form .row .v65-blogPostWrapper .columns,
form .v65-blogPostWrapper .v65-blogPostWrapper .columns,
form .v65-commentWrapper .v65-blogPostWrapper .columns,
form .row .v65-commentWrapper .columns,
form .v65-blogPostWrapper .v65-commentWrapper .columns,
form .v65-commentWrapper .v65-commentWrapper .columns {
  padding: 0 0.5rem;
}
form .row .row.collapse, form .v65-blogPostWrapper .row.collapse, form .v65-commentWrapper .row.collapse, form .row .collapse.v65-blogPostWrapper, form .v65-blogPostWrapper .collapse.v65-blogPostWrapper, form .v65-commentWrapper .collapse.v65-blogPostWrapper, form .row .collapse.v65-commentWrapper, form .v65-blogPostWrapper .collapse.v65-commentWrapper, form .v65-commentWrapper .collapse.v65-commentWrapper {
  margin: 0;
}
form .row .row.collapse .column, form .v65-blogPostWrapper .row.collapse .column, form .v65-commentWrapper .row.collapse .column, form .row .collapse.v65-blogPostWrapper .column, form .v65-blogPostWrapper .collapse.v65-blogPostWrapper .column, form .v65-commentWrapper .collapse.v65-blogPostWrapper .column, form .row .collapse.v65-commentWrapper .column, form .v65-blogPostWrapper .collapse.v65-commentWrapper .column, form .v65-commentWrapper .collapse.v65-commentWrapper .column,
form .row .row.collapse .columns,
form .v65-blogPostWrapper .row.collapse .columns,
form .v65-commentWrapper .row.collapse .columns,
form .row .collapse.v65-blogPostWrapper .columns,
form .v65-blogPostWrapper .collapse.v65-blogPostWrapper .columns,
form .v65-commentWrapper .collapse.v65-blogPostWrapper .columns,
form .row .collapse.v65-commentWrapper .columns,
form .v65-blogPostWrapper .collapse.v65-commentWrapper .columns,
form .v65-commentWrapper .collapse.v65-commentWrapper .columns {
  padding: 0;
}
form .row .row.collapse input, form .v65-blogPostWrapper .row.collapse input, form .v65-commentWrapper .row.collapse input, form .row .collapse.v65-blogPostWrapper input, form .v65-blogPostWrapper .collapse.v65-blogPostWrapper input, form .v65-commentWrapper .collapse.v65-blogPostWrapper input, form .row .collapse.v65-commentWrapper input, form .v65-blogPostWrapper .collapse.v65-commentWrapper input, form .v65-commentWrapper .collapse.v65-commentWrapper input {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
form .row input.column, form .v65-blogPostWrapper input.column, form .v65-commentWrapper input.column,
form .row input.columns,
form .v65-blogPostWrapper input.columns,
form .v65-commentWrapper input.columns,
form .row textarea.column,
form .v65-blogPostWrapper textarea.column,
form .v65-commentWrapper textarea.column,
form .row textarea.columns,
form .v65-blogPostWrapper textarea.columns,
form .v65-commentWrapper textarea.columns {
  padding-left: 0.5rem;
}

/* Label Styles */
label {
  font-size: 0.875rem;
  color: #4d4d4d;
  cursor: pointer;
  display: block;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0;
  /* Styles for required inputs */
}
label.right {
  float: none !important;
  text-align: right;
}
label.inline {
  margin: 0 0 1rem 0;
  padding: 0.5625rem 0;
}
label small {
  text-transform: capitalize;
  color: #676767;
}

select::-ms-expand {
  display: none;
}

@-moz-document url-prefix() {
  select {
    background: #fafafa;
  }

  select:hover {
    background: #f3f3f3;
  }
}

/* Attach elements to the beginning or end of an input */
.prefix,
.postfix {
  display: block;
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  font-size: 0.875rem;
  height: 2.3125rem;
  line-height: 2.3125rem;
}

/* Adjust padding, alignment and radius if pre/post element is a button */
.postfix.button {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  line-height: 2.125rem;
  border: none;
}

.prefix.button {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  line-height: 2.125rem;
  border: none;
}

.prefix.button.radius {
  border-radius: 0;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.postfix.button.radius {
  border-radius: 0;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.prefix.button.round {
  border-radius: 0;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}

.postfix.button.round {
  border-radius: 0;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}

/* Separate prefix and postfix styles when on span or label so buttons keep their own */
span.prefix, label.prefix {
  background: #f2f2f2;
  border-right: none;
  color: #333333;
  border-color: #cccccc;
}
span.prefix.radius, label.prefix.radius {
  border-radius: 0;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

span.postfix, label.postfix {
  background: #f2f2f2;
  border-left: none;
  color: #333333;
  border-color: #cccccc;
}
span.postfix.radius, label.postfix.radius {
  border-radius: 0;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

/* We use this to get basic styling on all basic form elements */
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea {
  -webkit-appearance: none;
  background-color: white;
  font-family: inherit;
  border: 1px solid #cccccc;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  display: block;
  font-size: 0.875rem;
  margin: 0 0 1rem 0;
  padding: 0.5rem;
  height: 2.3125rem;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: box-shadow 0.45s, border-color 0.45s ease-in-out;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
textarea:focus {
  box-shadow: 0 0 5px #999999;
  border-color: #999999;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
textarea:focus {
  background: #fafafa;
  border-color: #999999;
  outline: none;
}
input[type="text"][disabled], fieldset[disabled] input[type="text"],
input[type="password"][disabled], fieldset[disabled]
input[type="password"],
input[type="date"][disabled], fieldset[disabled]
input[type="date"],
input[type="datetime"][disabled], fieldset[disabled]
input[type="datetime"],
input[type="datetime-local"][disabled], fieldset[disabled]
input[type="datetime-local"],
input[type="month"][disabled], fieldset[disabled]
input[type="month"],
input[type="week"][disabled], fieldset[disabled]
input[type="week"],
input[type="email"][disabled], fieldset[disabled]
input[type="email"],
input[type="number"][disabled], fieldset[disabled]
input[type="number"],
input[type="search"][disabled], fieldset[disabled]
input[type="search"],
input[type="tel"][disabled], fieldset[disabled]
input[type="tel"],
input[type="time"][disabled], fieldset[disabled]
input[type="time"],
input[type="url"][disabled], fieldset[disabled]
input[type="url"],
textarea[disabled], fieldset[disabled]
textarea {
  background-color: #dddddd;
}
input[type="text"].radius,
input[type="password"].radius,
input[type="date"].radius,
input[type="datetime"].radius,
input[type="datetime-local"].radius,
input[type="month"].radius,
input[type="week"].radius,
input[type="email"].radius,
input[type="number"].radius,
input[type="search"].radius,
input[type="tel"].radius,
input[type="time"].radius,
input[type="url"].radius,
textarea.radius {
  border-radius: 3px;
}

input[type="submit"] {
  -webkit-appearance: none;
}

/* Respect enforced amount of rows for textarea */
textarea[rows] {
  height: auto;
}

/* Add height value for select elements to match text input height */
select {
  -webkit-appearance: none !important;
  background-color: #fafafa;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iM3B4IiB2aWV3Qm94PSIwIDAgNiAzIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA2IDMiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwb2x5Z29uIHBvaW50cz0iNS45OTIsMCAyLjk5MiwzIC0wLjAwOCwwICIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: 97% center;
  border: 1px solid #cccccc;
  padding: 0.5rem;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.75);
  line-height: normal;
  border-radius: 0;
  height: 2.3125rem;
}
select.radius {
  border-radius: 3px;
}
select:hover {
  background-color: #f3f3f3;
  border-color: #999999;
}

/* Adjust margin for form elements below */
input[type="file"],
input[type="checkbox"],
input[type="radio"],
select {
  margin: 0 0 1rem 0;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline;
}

/* Normalize file input width */
input[type="file"] {
  width: 100%;
}

/* We add basic fieldset styling */
fieldset {
  border: 1px solid #dddddd;
  padding: 20px;
  margin: 18px 0;
}
fieldset legend {
  font-weight: bold;
  background: white;
  padding: 0 0.1875rem;
  margin: 0;
  margin-left: -0.1875rem;
}

/* Error Handling */
[data-abide] .error small.error, [data-abide] span.error, [data-abide] small.error {
  display: block;
  padding: 0.375rem 0.5625rem 0.5625rem;
  margin-top: -1px;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 300;
  font-style: italic;
  background: #f04124;
  color: white;
}
[data-abide] span.error, [data-abide] small.error {
  display: none;
}

span.error, small.error {
  display: block;
  padding: 0.375rem 0.5625rem 0.5625rem;
  margin-top: -1px;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 300;
  font-style: italic;
  background: #f04124;
  color: white;
}

.error input,
.error textarea,
.error select {
  margin-bottom: 0;
}
.error input[type="checkbox"],
.error input[type="radio"] {
  margin-bottom: 1rem;
}
.error label,
.error label.error {
  color: #f04124;
}
.error small.error {
  display: block;
  padding: 0.375rem 0.5625rem 0.5625rem;
  margin-top: -1px;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 300;
  font-style: italic;
  background: #f04124;
  color: white;
}
.error > label > small {
  color: #676767;
  background: transparent;
  padding: 0;
  text-transform: capitalize;
  font-style: normal;
  font-size: 60%;
  margin: 0;
  display: inline;
}
.error span.error-message {
  display: block;
}

label.error {
  color: #f04124;
}

.label {
  font-weight: 300;
  font-family: "proxima-nova", sans-serif;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  margin-bottom: inherit;
  padding: 0.25rem 0.5rem 0.375rem;
  font-size: 0.6875rem;
  background-color: #0099cc;
  color: white;
}
.label.radius {
  border-radius: 3px;
}
.label.round {
  border-radius: 1000px;
}
.label.alert, form .error ul li.label {
  background-color: #f04124;
  color: white;
}
.label.success {
  background-color: #43ac6a;
  color: white;
}
.label.secondary {
  background-color: #acacac;
  color: white;
}

ul.pagination {
  display: block;
  min-height: 1.5rem;
  margin-left: -0.3125rem;
}
ul.pagination li {
  height: 1.5rem;
  color: #222222;
  font-size: 0.875rem;
  margin-left: 0.3125rem;
}
ul.pagination li a {
  display: block;
  padding: 0.0625rem 0.625rem 0.0625rem;
  color: #999999;
  border-radius: 3px;
}
ul.pagination li:hover a,
ul.pagination li a:focus {
  background: #e6e6e6;
}
ul.pagination li.unavailable a {
  cursor: default;
  color: #999999;
}
ul.pagination li.unavailable:hover a, ul.pagination li.unavailable a:focus {
  background: transparent;
}
ul.pagination li.current a {
  background: #0099cc;
  color: white;
  font-weight: bold;
  cursor: default;
}
ul.pagination li.current a:hover, ul.pagination li.current a:focus {
  background: #0099cc;
}
ul.pagination li {
  float: left;
  display: block;
}

/* Pagination centred wrapper */
.pagination-centered {
  text-align: center;
}
.pagination-centered ul.pagination li {
  float: none;
  display: inline-block;
}

/* Pricing Tables */
.pricing-table-border {
  border: solid 1px #dddddd;
}

.pricing-table-noborder {
  border: 0 !important;
}

.pricing-table, .pricingTable {
  margin-left: 0;
  margin-bottom: 1.25rem;
  border: solid 1px #dddddd;
}
.pricing-table *, .pricingTable * {
  list-style: none;
  line-height: 1;
}
.pricing-table .title, .pricingTable .title {
  background-color: #333333;
  padding: 0.9375rem 1.25rem;
  text-align: center;
  color: #eeeeee;
  font-weight: 300;
  font-size: 1rem;
  font-family: "proxima-nova", sans-serif;
}
.pricing-table .price, .pricingTable .price {
  background-color: #f6f6f6;
  padding: 0.9375rem 1.25rem;
  text-align: center;
  color: #333333;
  font-weight: 300;
  font-size: 2rem;
  font-family: "proxima-nova", sans-serif;
}
.pricing-table .description, .pricingTable .description {
  background-color: none;
  padding: 0.5rem 0.625rem;
  text-align: center;
  color: #777777;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.4;
  border-bottom: none;
}
.pricing-table .bullet-item, .pricingTable .bullet-item {
  background-color: none;
  padding: 0.5rem 0.625rem;
  text-align: center;
  color: #333333;
  font-size: 0.875rem;
  font-weight: 300;
  border-bottom: none;
  position: relative;
}
.pricing-table .bullet-item-icon-left, .pricingTable .bullet-item-icon-left {
  padding-top: 5px;
  background-size: 20px auto;
  background-position: 85% 118%;
  text-indent: -999999px;
}
.pricing-table .bullet-item-icon-right, .pricingTable .bullet-item-icon-right {
  padding-top: 5px;
  background-size: 18px auto;
  background-position: 85% 118%;
  text-indent: -999999px;
}
.pricing-table span.bullet-item-icon-right.infoCon, .pricing-table span.bullet-item-icon-left.ecommerce, .pricing-table span.bullet-item-icon-left.point-of-sale, .pricingTable span.bullet-item-icon-right.infoCon, .pricingTable span.bullet-item-icon-left.ecommerce, .pricingTable span.bullet-item-icon-left.point-of-sale {
  width: 25px;
  height: 18px;
  position: absolute;
  margin-top: -3px;
}
.pricing-table span.bullet-item-icon-right.infoCon, .pricingTable span.bullet-item-icon-right.infoCon {
  margin-left: 0;
}
.pricing-table span.bullet-item-icon-left.ecommerce,
.pricing-table span.bullet-item-icon-left.point-of-sale, .pricingTable span.bullet-item-icon-left.ecommerce,
.pricingTable span.bullet-item-icon-left.point-of-sale {
  margin-left: -30px;
}
.pricing-table .cta-button, .pricingTable .cta-button {
  background-color: white;
  text-align: center;
  padding: 1.25rem 1.25rem 0;
}

.reveal-modal-bg {
  position: fixed;
  height: 100%;
  width: 100%;
  background: black;
  background: rgba(0, 0, 0, 0.45);
  z-index: 99;
  display: none;
  top: 0;
  left: 0;
}

dialog, .reveal-modal {
  visibility: hidden;
  display: none;
  position: absolute;
  z-index: 100;
  width: 100vw;
  top: 0;
  left: 0;
  background-color: white;
  padding: 1.25rem;
  border: solid 1px #666666;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 40em) {
  dialog, .reveal-modal {
    min-height: 100vh;
  }
}
@media only screen and (min-width: 40.063em) {
  dialog, .reveal-modal {
    left: 50%;
  }
}
dialog .column,
dialog .columns, .reveal-modal .column,
.reveal-modal .columns {
  min-width: 0;
}
dialog > :first-child, .reveal-modal > :first-child {
  margin-top: 0;
}
dialog > :last-child, .reveal-modal > :last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 40.063em) {
  dialog, .reveal-modal {
    margin-left: -40%;
    width: 80%;
  }
}
@media only screen and (min-width: 40.063em) {
  dialog, .reveal-modal {
    top: 6.25rem;
  }
}
dialog .close-reveal-modal, .reveal-modal .close-reveal-modal {
  font-size: 2.5rem;
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  right: 0.6875rem;
  color: #aaaaaa;
  font-weight: bold;
  cursor: pointer;
}

dialog[open] {
  display: block;
  visibility: visible;
}

@media only screen and (min-width: 40.063em) {
  dialog, .reveal-modal {
    padding: 1.875rem;
  }
  dialog.radius, .reveal-modal.radius {
    border-radius: 3px;
  }
  dialog.round, .reveal-modal.round {
    border-radius: 1000px;
  }
  dialog.collapse, .reveal-modal.collapse {
    padding: 0;
  }
  dialog.full, .reveal-modal.full {
    top: 0;
    left: 0;
    height: 100vh;
    min-height: 100vh;
    margin-left: 0 !important;
  }
}
@media only screen and (min-width: 40.063em) and (min-width: 40.063em) {
  dialog.tiny, .reveal-modal.tiny {
    margin-left: -15%;
    width: 30%;
  }
}
@media only screen and (min-width: 40.063em) and (min-width: 40.063em) {
  dialog.small, .reveal-modal.small, #v65-subscribeWidget button.reveal-modal {
    margin-left: -20%;
    width: 40%;
  }
}
@media only screen and (min-width: 40.063em) and (min-width: 40.063em) {
  dialog.medium, .reveal-modal.medium {
    margin-left: -30%;
    width: 60%;
  }
}
@media only screen and (min-width: 40.063em) and (min-width: 40.063em) {
  dialog.large, .reveal-modal.large {
    margin-left: -35%;
    width: 70%;
  }
}
@media only screen and (min-width: 40.063em) and (min-width: 40.063em) {
  dialog.xlarge, .reveal-modal.xlarge {
    margin-left: -47.5%;
    width: 95%;
  }
}

@media only screen and (min-width: 40.063em) and (min-width: 40.063em) {
  dialog.full, .reveal-modal.full {
    margin-left: -50vw;
    width: 100vw;
  }
}

@media print {
  dialog, .reveal-modal {
    background: #fff !important;
  }
}
table {
  background: white;
  margin-bottom: 1.25rem;
  border: solid 1px #dddddd;
}
table caption {
  background: transparent;
  color: #222222;
  font-size: 1rem;
  font-weight: bold;
}
table thead {
  background: whitesmoke;
}
table thead tr th,
table thead tr td {
  padding: 0.5rem 0.625rem 0.625rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: #222222;
}
table tfoot {
  background: whitesmoke;
}
table tfoot tr th,
table tfoot tr td {
  padding: 0.5rem 0.625rem 0.625rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: #222222;
}
table tr th,
table tr td {
  padding: 0.5625rem 0.625rem;
  font-size: 0.875rem;
  color: #222222;
  text-align: left;
}
table tr.even, table tr.alt, table tr:nth-of-type(even) {
  background: #f9f9f9;
}
table thead tr th,
table tfoot tr th,
table tfoot tr td,
table tbody tr th,
table tbody tr td,
table tr td {
  display: table-cell;
  line-height: 1.125rem;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-justify {
  text-align: justify !important;
}

@media only screen and (max-width: 40em) {
  .small-only-text-left {
    text-align: left !important;
  }

  .small-only-text-right {
    text-align: right !important;
  }

  .small-only-text-center {
    text-align: center !important;
  }

  .small-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen {
  .small-text-left {
    text-align: left !important;
  }

  .small-text-right {
    text-align: right !important;
  }

  .small-text-center {
    text-align: center !important;
  }

  .small-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width: 40.063em) and (max-width: 64em) {
  .medium-only-text-left {
    text-align: left !important;
  }

  .medium-only-text-right {
    text-align: right !important;
  }

  .medium-only-text-center {
    text-align: center !important;
  }

  .medium-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width: 40.063em) {
  .medium-text-left {
    text-align: left !important;
  }

  .medium-text-right {
    text-align: right !important;
  }

  .medium-text-center {
    text-align: center !important;
  }

  .medium-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width: 64.063em) and (max-width: 90em) {
  .large-only-text-left {
    text-align: left !important;
  }

  .large-only-text-right {
    text-align: right !important;
  }

  .large-only-text-center {
    text-align: center !important;
  }

  .large-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width: 64.063em) {
  .large-text-left {
    text-align: left !important;
  }

  .large-text-right {
    text-align: right !important;
  }

  .large-text-center {
    text-align: center !important;
  }

  .large-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width: 90.063em) and (max-width: 120em) {
  .xlarge-only-text-left {
    text-align: left !important;
  }

  .xlarge-only-text-right {
    text-align: right !important;
  }

  .xlarge-only-text-center {
    text-align: center !important;
  }

  .xlarge-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width: 90.063em) {
  .xlarge-text-left {
    text-align: left !important;
  }

  .xlarge-text-right {
    text-align: right !important;
  }

  .xlarge-text-center {
    text-align: center !important;
  }

  .xlarge-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width: 120.063em) and (max-width: 99999999em) {
  .xxlarge-only-text-left {
    text-align: left !important;
  }

  .xxlarge-only-text-right {
    text-align: right !important;
  }

  .xxlarge-only-text-center {
    text-align: center !important;
  }

  .xxlarge-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width: 120.063em) {
  .xxlarge-text-left {
    text-align: left !important;
  }

  .xxlarge-text-right {
    text-align: right !important;
  }

  .xxlarge-text-center {
    text-align: center !important;
  }

  .xxlarge-text-justify {
    text-align: justify !important;
  }
}
/* Typography resets */
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

/* Default Link Styles */
a {
  color: #0099cc;
  text-decoration: none;
  line-height: inherit;
}
a:hover, a:focus {
  color: #0084af;
}
a img {
  border: none;
}

/* Default paragraph styles */
p {
  font-family: inherit;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  text-rendering: optimizeLegibility;
}
p.lead {
  font-size: 1.21875rem;
  line-height: 1.6;
}
p aside {
  font-size: 0.875rem;
  line-height: 1.35;
  font-style: italic;
}

/* Default header styles */
h1, h2, h3, h4, h5, h6 {
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: black;
  text-rendering: optimizeLegibility;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  font-size: 60%;
  color: #595959;
  line-height: 0;
}

h1 {
  font-size: 1.875rem;
}

h2 {
  font-size: 0.875rem;
}

h3 {
  font-size: 1.0625rem;
}

h4 {
  font-size: 0.9375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

.subheader {
  line-height: 1.4;
  color: #0099cc;
  font-weight: 300;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
}

hr {
  border: solid #dddddd;
  border-width: 1px 0 0;
  clear: both;
  margin: 1.25rem 0 1.1875rem;
  height: 0;
}

/* Helpful Typography Defaults */
em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 60%;
  line-height: inherit;
}

code {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: bold;
  color: #bd260d;
}

/* Lists */
ul,
ol,
dl {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  list-style-position: outside;
  font-family: inherit;
}

ul {
  margin-left: 1.1rem;
}
ul.no-bullet {
  margin-left: 0;
}
ul.no-bullet li ul,
ul.no-bullet li ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
  list-style: none;
}

/* Unordered Lists */
ul li ul,
ul li ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}
ul.square li ul, ul.circle li ul, ul.disc li ul {
  list-style: inherit;
}
ul.square {
  list-style-type: square;
  margin-left: 1.1rem;
}
ul.circle {
  list-style-type: circle;
  margin-left: 1.1rem;
}
ul.disc {
  list-style-type: disc;
  margin-left: 1.1rem;
}
ul.no-bullet {
  list-style: none;
}

/* Ordered Lists */
ol {
  margin-left: 1.4rem;
}
ol li ul,
ol li ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

/* Definition Lists */
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}
dl dd {
  margin-bottom: 0.75rem;
}

/* Abbreviations */
abbr,
acronym {
  text-transform: uppercase;
  font-size: 90%;
  color: #222222;
  border-bottom: 1px dotted #dddddd;
  cursor: help;
}

abbr {
  text-transform: none;
}

/* Blockquotes */
blockquote {
  margin: 0 0 1.25rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #dddddd;
}
blockquote cite {
  display: block;
  font-size: 0.8125rem;
  color: #3b3b3b;
}
blockquote cite:before {
  content: "\2014 \0020";
}
blockquote cite a,
blockquote cite a:visited {
  color: #3b3b3b;
}

blockquote,
blockquote p {
  line-height: 1.6;
  color: #595959;
}

/* Microformats */
.vcard {
  display: inline-block;
  margin: 0 0 1.25rem 0;
  border: 1px solid #dddddd;
  padding: 0.625rem 0.75rem;
}
.vcard li {
  margin: 0;
  display: block;
}
.vcard .fn {
  font-weight: bold;
  font-size: 0.9375rem;
}

.vevent .summary {
  font-weight: bold;
}
.vevent abbr {
  cursor: default;
  text-decoration: none;
  font-weight: bold;
  border: none;
  padding: 0 0.0625rem;
}

@media only screen and (min-width: 40.063em) {
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.375rem;
  }

  h4 {
    font-size: 1.25rem;
  }
}
/*
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
*/
.print-only {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
}

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .hide-on-print {
    display: none !important;
  }

  .print-only {
    display: block !important;
  }

  .hide-for-print {
    display: none !important;
  }

  .show-for-print {
    display: inherit !important;
  }
}
/* small displays */
@media only screen {
  .show-for-small-only, .show-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xxlarge-only, .hide-for-xxlarge-up {
    display: inherit !important;
  }

  .hide-for-small-only, .hide-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xxlarge-only, .show-for-xxlarge-up {
    display: none !important;
  }

  .visible-for-small-only, .visible-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }

  .hidden-for-small-only, .hidden-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xxlarge-only, .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }

  table.show-for-small-only, table.show-for-small-up, table.show-for-small, table.show-for-small-down, table.hide-for-medium-only, table.hide-for-medium-up, table.hide-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up {
    display: table;
  }

  thead.show-for-small-only, thead.show-for-small-up, thead.show-for-small, thead.show-for-small-down, thead.hide-for-medium-only, thead.hide-for-medium-up, thead.hide-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up {
    display: table-header-group !important;
  }

  tbody.show-for-small-only, tbody.show-for-small-up, tbody.show-for-small, tbody.show-for-small-down, tbody.hide-for-medium-only, tbody.hide-for-medium-up, tbody.hide-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up {
    display: table-row-group !important;
  }

  tr.show-for-small-only, tr.show-for-small-up, tr.show-for-small, tr.show-for-small-down, tr.hide-for-medium-only, tr.hide-for-medium-up, tr.hide-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up {
    display: table-row !important;
  }

  th.show-for-small-only, td.show-for-small-only, th.show-for-small-up, td.show-for-small-up, th.show-for-small, td.show-for-small, th.show-for-small-down, td.show-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.hide-for-medium-up, td.hide-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up {
    display: table-cell !important;
  }
}
/* medium displays */
@media only screen and (min-width: 40.063em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xxlarge-only, .hide-for-xxlarge-up {
    display: inherit !important;
  }

  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xxlarge-only, .show-for-xxlarge-up {
    display: none !important;
  }

  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }

  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xxlarge-only, .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }

  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.show-for-medium-only, table.show-for-medium-up, table.show-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up {
    display: table;
  }

  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.show-for-medium-only, thead.show-for-medium-up, thead.show-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up {
    display: table-header-group !important;
  }

  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.show-for-medium-only, tbody.show-for-medium-up, tbody.show-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up {
    display: table-row-group !important;
  }

  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.show-for-medium-only, tr.show-for-medium-up, tr.show-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up {
    display: table-row !important;
  }

  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.show-for-medium-only, td.show-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.show-for-medium, td.show-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up {
    display: table-cell !important;
  }
}
/* large displays */
@media only screen and (min-width: 64.063em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xxlarge-only, .hide-for-xxlarge-up {
    display: inherit !important;
  }

  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xxlarge-only, .show-for-xxlarge-up {
    display: none !important;
  }

  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }

  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xxlarge-only, .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }

  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.show-for-large-only, table.show-for-large-up, table.show-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up {
    display: table;
  }

  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.show-for-large-only, thead.show-for-large-up, thead.show-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up {
    display: table-header-group !important;
  }

  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.show-for-large-only, tbody.show-for-large-up, tbody.show-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up {
    display: table-row-group !important;
  }

  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.show-for-large-only, tr.show-for-large-up, tr.show-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up {
    display: table-row !important;
  }

  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.show-for-large-only, td.show-for-large-only, th.show-for-large-up, td.show-for-large-up, th.show-for-large, td.show-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up {
    display: table-cell !important;
  }
}
/* xlarge displays */
@media only screen and (min-width: 90.063em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .hide-for-xxlarge-only, .hide-for-xxlarge-up {
    display: inherit !important;
  }

  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .show-for-xxlarge-only, .show-for-xxlarge-up {
    display: none !important;
  }

  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }

  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .visible-for-xxlarge-only, .visible-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }

  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.show-for-xlarge-only, table.show-for-xlarge-up, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up {
    display: table;
  }

  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.show-for-xlarge-only, thead.show-for-xlarge-up, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up {
    display: table-header-group !important;
  }

  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.show-for-xlarge-only, tbody.show-for-xlarge-up, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up {
    display: table-row-group !important;
  }

  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.show-for-xlarge-only, tr.show-for-xlarge-up, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up {
    display: table-row !important;
  }

  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.show-for-xlarge-only, td.show-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up {
    display: table-cell !important;
  }
}
/* xxlarge displays */
@media only screen and (min-width: 120.063em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .hide-for-xlarge-only, .show-for-xlarge-up, .show-for-xxlarge-only, .show-for-xxlarge-up {
    display: inherit !important;
  }

  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .show-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xxlarge-only, .hide-for-xxlarge-up {
    display: none !important;
  }

  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .hidden-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xxlarge-only, .visible-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }

  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .visible-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }

  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.hide-for-xlarge-only, table.show-for-xlarge-up, table.show-for-xxlarge-only, table.show-for-xxlarge-up {
    display: table;
  }

  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.hide-for-xlarge-only, thead.show-for-xlarge-up, thead.show-for-xxlarge-only, thead.show-for-xxlarge-up {
    display: table-header-group !important;
  }

  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.hide-for-xlarge-only, tbody.show-for-xlarge-up, tbody.show-for-xxlarge-only, tbody.show-for-xxlarge-up {
    display: table-row-group !important;
  }

  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.hide-for-xlarge-only, tr.show-for-xlarge-up, tr.show-for-xxlarge-only, tr.show-for-xxlarge-up {
    display: table-row !important;
  }

  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.show-for-xxlarge-only, td.show-for-xxlarge-only, th.show-for-xxlarge-up, td.show-for-xxlarge-up {
    display: table-cell !important;
  }
}
/* Orientation targeting */
.show-for-landscape,
.hide-for-portrait {
  display: inherit !important;
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}

/* Specific visibility for tables */
table.hide-for-landscape, table.show-for-portrait {
  display: table;
}

thead.hide-for-landscape, thead.show-for-portrait {
  display: table-header-group !important;
}

tbody.hide-for-landscape, tbody.show-for-portrait {
  display: table-row-group !important;
}

tr.hide-for-landscape, tr.show-for-portrait {
  display: table-row !important;
}

td.hide-for-landscape, td.show-for-portrait,
th.hide-for-landscape,
th.show-for-portrait {
  display: table-cell !important;
}

@media only screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: inherit !important;
  }

  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }

  /* Specific visibility for tables */
  table.show-for-landscape, table.hide-for-portrait {
    display: table;
  }

  thead.show-for-landscape, thead.hide-for-portrait {
    display: table-header-group !important;
  }

  tbody.show-for-landscape, tbody.hide-for-portrait {
    display: table-row-group !important;
  }

  tr.show-for-landscape, tr.hide-for-portrait {
    display: table-row !important;
  }

  td.show-for-landscape, td.hide-for-portrait,
  th.show-for-landscape,
  th.hide-for-portrait {
    display: table-cell !important;
  }
}
@media only screen and (orientation: portrait) {
  .show-for-portrait,
  .hide-for-landscape {
    display: inherit !important;
  }

  .hide-for-portrait,
  .show-for-landscape {
    display: none !important;
  }

  /* Specific visibility for tables */
  table.show-for-portrait, table.hide-for-landscape {
    display: table;
  }

  thead.show-for-portrait, thead.hide-for-landscape {
    display: table-header-group !important;
  }

  tbody.show-for-portrait, tbody.hide-for-landscape {
    display: table-row-group !important;
  }

  tr.show-for-portrait, tr.hide-for-landscape {
    display: table-row !important;
  }

  td.show-for-portrait, td.hide-for-landscape,
  th.show-for-portrait,
  th.hide-for-landscape {
    display: table-cell !important;
  }
}
/* Touch-enabled device targeting */
.show-for-touch {
  display: none !important;
}

.hide-for-touch {
  display: inherit !important;
}

.touch .show-for-touch {
  display: inherit !important;
}

.touch .hide-for-touch {
  display: none !important;
}

/* Specific visibility for tables */
table.hide-for-touch {
  display: table;
}

.touch table.show-for-touch {
  display: table;
}

thead.hide-for-touch {
  display: table-header-group !important;
}

.touch thead.show-for-touch {
  display: table-header-group !important;
}

tbody.hide-for-touch {
  display: table-row-group !important;
}

.touch tbody.show-for-touch {
  display: table-row-group !important;
}

tr.hide-for-touch {
  display: table-row !important;
}

.touch tr.show-for-touch {
  display: table-row !important;
}

td.hide-for-touch {
  display: table-cell !important;
}

.touch td.show-for-touch {
  display: table-cell !important;
}

th.hide-for-touch {
  display: table-cell !important;
}

.touch th.show-for-touch {
  display: table-cell !important;
}

/* Print visibility */
@media print {
  .show-for-print {
    display: block;
  }

  .hide-for-print {
    display: none;
  }

  table.show-for-print {
    display: table;
  }

  thead.show-for-print {
    display: table-header-group !important;
  }

  tbody.show-for-print {
    display: table-row-group !important;
  }

  tr.show-for-print {
    display: table-row !important;
  }

  td.show-for-print {
    display: table-cell !important;
  }

  th.show-for-print {
    display: table-cell !important;
  }
}
/*   ===================================================================================================
     1. Typography - These get copied into the admin.css
======================================================================================================== */
/*   ===================================================================================================
     2. Header
======================================================================================================== */
header.primary-header {
  padding-bottom: 1rem;
  padding-top: 21px;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 1000px) and (min-width: 641px) {
  header.primary-header {
    width: 90%;
  }
}
header.primary-header.row, header.primary-header.v65-blogPostWrapper, header.primary-header.v65-commentWrapper {
  max-width: 1200px;
}

.login {
  color: #3e3e3e;
  font-size: 0.95em;
  font-weight: 400;
  padding-top: 0.65rem;
  padding-right: 1.25rem;
  padding-bottom: 0.65rem;
  -webkit-font-smoothing: antialiased;
}
.login:hover, .login:focus, .login:active {
  color: #3e3e3e;
}

@media only screen and (min-width: 40.063em) {
  .user-tools {
    float: right;
    margin-top: 0;
    text-align: right;
    width: 300px;
  }
}
@media only screen and (min-width: 40.063em) {
  .user-tools .small-6.columns {
    padding-right: 0;
  }
}
@media only medium-up {
  .user-tools .button {
    margin: 0 0 0 0.5rem;
    width: auto;
  }
}

.overlay {
  background-color: rgba(0, 0, 0, 0.47);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.logo {
  background: url('../images/Vin65-logo.svg?1430937891') top left no-repeat;
  background-size: contain;
  float: left;
  height: 92px;
  margin: 0;
  width: 157px;
}

.logo-small {
  background: url('../images/Vin65-logo.svg?1430937891') top left no-repeat;
  background-size: contain;
  float: right;
  height: 50px;
  margin: 10px 20px;
  width: 80px;
}

/*   ===================================================================================================
     3. Navigation
======================================================================================================== */
/* ================================================
	 Primary Navigation
================================================ */
.main-menu {
  clear: right;
  float: right;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  margin: 2px 0 5px;
}
.main-menu ul {
  font-size: 15px;
  float: left;
  margin: 0;
  padding: 0;
}
.main-menu ul ul {
  display: none;
  position: absolute;
  left: -10px;
  background: #fff;
  min-width: 100%;
  margin: 0;
  padding: 0;
  z-index: 999;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.main-menu li {
  display: inline-block;
  position: relative;
  -webkit-transition: margin 0.5s;
  transition: margin 0.5s;
}
@media only screen and (min-width: 40.063em) {
  .main-menu li {
    height: 32px;
    line-height: 2;
    margin: 0 0 0 16px;
  }
}
@media only screen and (min-width: 64.063em) {
  .main-menu li {
    margin: 0 0 0 20px;
  }
}
.main-menu li.resources-nav:hover ul, .main-menu li.features-nav:hover ul, .main-menu li.about-us-nav:hover ul {
  display: block;
}
.main-menu li.press-nav {
  display: none;
}
.main-menu li li {
  padding: 8px 16px;
  margin: 0;
  width: 100%;
  white-space: nowrap;
  min-width: 110px;
  border-top: 1px solid rgba(172, 172, 172, 0.4);
  line-height: 1;
  height: auto;
}
.main-menu a {
  color: #3e3e3e;
  display: block;
}
.main-menu a:hover {
  color: #010101;
}
.main-menu .v65-home {
  display: none;
}
.main-menu .v65-selected {
  color: #010101;
}

.search {
  float: right;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  width: 191px;
}
.search #v65-contentSearchInput {
  width: 72%;
  margin-right: 3%;
  display: inline-block;
  float: left;
}
.search #v65-contentSearchButton {
  width: 25%;
  display: inline-block;
  float: left;
}
.search fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.search input {
  font-size: 10px;
  height: auto;
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
}
.search .button-wrapper.columns {
  padding: 8px;
}
.search button {
  width: 56px;
  font-size: 10px;
  margin-bottom: 0;
  padding: 0;
  padding-top: 7px;
  padding-bottom: 7px;
}

/* ================================================
	 Sub Navigation
================================================ */
.sub-navigation {
  background: #efefef;
  text-align: center;
}
.sub-navigation:first-of-type a {
  border-bottom: 3px solid #efefef;
}
.sub-navigation:first-of-type a:hover {
  border-bottom-color: #666666;
}
.sub-navigation:first-of-type a.active {
  border-bottom-color: #0099cc;
  color: black;
}
.sub-navigation:last-of-type {
  border-top: 1px solid #cccccc;
}
.sub-navigation:last-of-type a {
  border-top: 3px solid #efefef;
}
.sub-navigation:last-of-type a:hover {
  border-top-color: #666666;
}
.sub-navigation:last-of-type a.active {
  border-top-color: #0099cc;
  color: black;
}
.sub-navigation:only-of-type {
  border-top: 0;
}
.sub-navigation:only-of-type a {
  border-top: 0;
}
.sub-navigation ul {
  font-size: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sub-navigation li {
  display: inline-block;
  margin: 0 15px;
}
.sub-navigation a {
  background-size: auto 35px;
  background-position: center 22px;
  color: #666666;
  display: inline-block;
  min-width: 50px;
  padding: 64px 0 22px;
}

/* Mobile Menu */
.mobile-menu-wrapper {
  background: #fff;
  position: absolute;
  top: 0;
  left: -250px;
  z-index: 100;
  width: 250px;
  padding-top: 15px;
  overflow-y: scroll;
}
.mobile-menu-wrapper li.events-nav ul, .mobile-menu-wrapper li.contact-us-nav ul, .mobile-menu-wrapper li.press-nav ul {
  display: none;
}
.mobile-menu-wrapper ul li {
  list-style-type: none;
  padding: 10px 0;
}
.mobile-menu-wrapper ul li a {
  display: block;
  width: 100%;
}

.noScroll {
  position: fixed;
  overflow: hidden;
}

.mobile-menu-wrapper.menu-visible {
  left: 0 !important;
}

.mobile-menu-wrapper {
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
}

.animating, .menu-visible {
  display: block;
}

.animating {
  transition: transform .25s ease-in-out;
  -webkit-transition: -webkit-transform .25s ease-in-out;
  -moz-transition: -moz-transform .25s ease-in-out;
  -ms-transition: -ms-transform .25s ease-in-out;
}

.mobile-menu-wrapper.animating.leftAnimate {
  transition: translate(-250px, 0);
  -webkit-transform: translate(-250px, 0);
  -moz-transform: translate(-250px, 0);
  -ms-transform: translate(-250px, 0);
}

.mobile-menu-wrapper.animating.rightAnimate {
  transform: translate(250px, 0);
  -webkit-transform: translate(250px, 0);
  -moz-transform: translate(250px, 0);
  -ms-transform: translate(250px, 0);
}

/*   ===================================================================================================
     4. Content
======================================================================================================== */
/* ================================================
	 General
================================================ */
.wrapper {
  max-width: 990px;
  margin: 0 auto;
}

@media only screen and (min-width: 40.063em) {
  .overflow-image {
    margin: -5% -3%;
    width: 55%;
  }
}

.overlay-wrapper {
  position: relative;
}
.overlay-wrapper .overlay {
  background-color: rgba(0, 0, 0, 0.47);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: opacity 0.1s linear;
  -moz-transition: opacity 0.1s linear;
  -ms-transition: opacity 0.1s linear;
  -o-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}
.overlay-wrapper .overlay:hover {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .overlay-wrapper .overlay {
    background-color: transparent;
    position: relative;
    opacity: 1;
  }
}
.overlay-wrapper .overlay-button {
  margin: 27% 0 24%;
  line-height: 25px;
  padding-top: 0.625rem;
  padding-right: 1.25rem;
  padding-bottom: 0.6875rem;
  padding-left: 1.25rem;
  font-size: 1rem;
}
@media screen and (max-width: 1024px) {
  .overlay-wrapper .overlay-button {
    margin: 1.25rem 0 0;
    background: none;
    padding: 0;
    color: #0099cc;
  }
}

.description-under-overlay {
  display: block;
  text-align: left;
  margin-top: 1em;
}

.no-bottom-padding {
  padding-bottom: 0 !important;
}

.no-top-padding {
  padding-top: 0 !important;
}

.no-left-padding {
  padding-left: 0 !important;
}

.no-right-padding {
  padding-right: 0 !important;
}

.no-bottom-margin {
  margin-bottom: 0 !important;
}

.no-top-margin {
  margin-top: 0 !important;
}

.no-left-margin {
  margin-left: 0 !important;
}

.no-right-margin {
  margin-right: 0 !important;
}

.centered-text {
  text-align: center;
}

.name {
  color: black;
  font-size: 22px;
  font-weight: 100;
}

.price-wrapper {
  color: black;
  padding-left: 5px;
  margin-bottom: 0;
  margin-top: 20px;
}

.pink {
  background-color: #ff8dbe;
}

.orange {
  background-color: #ffc582;
}

.green {
  background-color: #b9e59a;
}

.error {
  color: #ff0000;
}

strong, b {
  color: #111;
  font-weight: 600;
}

a.image-wrapper {
  display: block;
}

.mobile-image {
  display: none;
}

.feature-image, .image-wrapper {
  margin-bottom: 0px;
}
@media screen and (max-width: 640px) {
  .feature-image, .image-wrapper {
    margin-bottom: 30px;
  }
}
.feature-image img, .image-wrapper img {
  width: 100%;
}

.wideFeatureImage {
  margin-top: 60px;
}

@media screen and (min-width: 901px) {
  .feature-content {
    margin: 1.5em 0 0.5em;
  }
}
.feature-content.small-12.medium-11 {
  margin-top: 0;
}

.largeImageContainer {
  position: relative;
}
.largeImageContainer .feature-image {
  position: relative;
  bottom: 0;
}
@media screen and (max-width: 640px) {
  .largeImageContainer .feature-image {
    margin-bottom: 0;
  }
  .largeImageContainer .feature-image img {
    max-height: 450px;
    width: auto;
  }
}
.largeImageContainer .feature-image.imageContent {
  margin-top: 1.25em;
}
@media screen and (max-width: 640px) {
  .largeImageContainer .feature-image.imageContent {
    text-align: center;
  }
}
.largeImageContainer .largeImageContent {
  margin-bottom: 1em;
}
@media screen and (min-width: 901px) {
  .largeImageContainer .largeImageContent.largeImageContentMargin {
    margin-top: 7em;
  }
}
@media screen and (min-width: 720px) and (max-width: 900px) {
  .largeImageContainer .largeImageContent.largeImageContentMargin {
    margin-top: 3em;
  }
}
.largeImageContainer .largeImageContent.imagePositionRight {
  float: left;
}
@media screen and (max-width: 640px) {
  .largeImageContainer .largeImageContent.imagePositionRight {
    float: none;
  }
}
.largeImageContainer .largeImageContent.imagePositionLeft {
  float: right;
}
@media screen and (max-width: 640px) {
  .largeImageContainer .largeImageContent.imagePositionLeft {
    float: none;
  }
}
.largeImageContainer .largeImageContent a.play-button.modal-video-disabled {
  display: none;
}

.grey-text {
  color: #666666;
}

.black-text {
  color: #000000;
}

.reveal-modal {
  display: none;
}

.clearFix {
  clear: both;
}

.thin {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 100;
}

.payment-gateways ul {
  margin: 0;
  padding: 0;
}
.payment-gateways ul li {
  display: inline-block;
  width: 20%;
  float: left;
  text-align: center;
}
.payment-gateways ul li a {
  text-align: center;
}
@media only screen and (max-width: 40em) {
  .payment-gateways ul li {
    width: 100%;
  }
}

.system-icon {
  position: relative;
}
.system-icon .system-icon-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  padding-left: 30px;
}
.system-icon a:hover h1 {
  color: #444;
}

.linkImgWrap {
  border: 1px solid #eeeeee;
  display: inline-block;
}

.imageHover {
  display: none;
}

.v65-colWrapper {
  margin-bottom: 2em;
  width: 100%;
}

.v65-colWrapper:before, .v65-colWrapper:after {
  content: "";
  display: table;
}

.v65-colWrapper:after {
  clear: both;
}

.v65-col2 {
  float: left;
  margin-left: 6%;
  width: 47%;
}

.v65-col2:first-child {
  float: left;
  margin-left: 0%;
  width: 47%;
}

.v65-col2Right {
  float: left;
  margin-left: 6%;
  width: 29%;
}

.v65-col2Right:first-child {
  float: left;
  margin-left: 0;
  width: 65%;
}

.v65-col2Left {
  float: left;
  margin-right: 0;
  width: 65%;
}

.v65-col2Left:first-child {
  float: left;
  margin-right: 6%;
  width: 29%;
}

.v65-col3 {
  float: left;
  margin-left: 5%;
  width: 30%;
}

.v65-col3:first-child {
  float: left;
  margin-left: 0%;
  width: 30%;
}

.v65-col4 {
  float: left;
  margin-left: 3%;
  width: 22.7%;
}

.v65-col4:first-child {
  margin-left: 0;
}

@media screen and (max-width: 850px) {
  .v65-col4 {
    margin: 0 2% 3em;
    width: 46%;
  }

  .v65-col4:first-child {
    margin-left: 2%;
  }
}
@media screen and (max-width: 750px) {
  .v65-col2Right,
  .v65-col2Right:first-child,
  .v65-col2Left,
  .v65-col2Left:first-child {
    float: none;
    margin: 0 0 2em;
    width: 100%;
  }

  .v65-col3 {
    float: none;
    margin-left: 0;
    margin-bottom: 1.5em;
    width: 100%;
  }

  .v65-col3:first-child {
    float: none;
    width: 100%;
  }
}
@media screen and (max-width: 580px) {
  .v65-col2 {
    float: none;
    margin-left: 0;
    margin-bottom: 1.5em;
    width: 100%;
  }

  .v65-col2:first-child {
    float: none;
    width: 100%;
  }

  .v65-col4,
  .v65-col4:first-child {
    float: none;
    margin: 0 0 2em;
    width: 100%;
  }
}
.v65-col2 img, .v65-col2Right img,
.v65-col2Left img, .v65-col3 img, .v65-col4 img {
  height: auto !important;
  max-width: 100%;
}

.v65-group {
  zoom: 1;
}
.v65-group:before {
  content: "";
  display: table;
}
.v65-group:after {
  clear: both;
  content: "";
  display: table;
}

/* ---------------------- Product Drilldown ---------------------- */
.v65-productWrapper .v65-title {
  text-align: center;
}
.v65-productWrapper .v65-product-subtitle {
  font-size: 0.7em;
  font-weight: 100;
}

.v65-product-leftCol {
  float: left;
  margin: 1.5em 0;
  width: 100%;
}
@media screen and (min-width: 901px) {
  .v65-product-leftCol {
    margin: 3em 5% 3em 0;
    width: 54%;
  }
}

.v65-product-rightCol {
  float: left;
  margin: 1.5em 0;
  width: 100%;
}
@media screen and (min-width: 901px) {
  .v65-product-rightCol {
    margin: 3em 0;
    width: 41%;
  }
}
.v65-product-rightCol .v65-product-reviewStats {
  margin-bottom: 1em;
}
.v65-product-rightCol .v65-product-availability {
  margin-bottom: 0.5em;
}

.v65-product-addToCart fieldset {
  border: 0;
  margin: 0;
  padding: 1em 0 0;
}
.v65-product-addToCart legend {
  display: none;
}
.v65-product-addToCart .v65-product-addToCart-selectBox select {
  max-width: 100%;
  width: 32em !important;
}
.v65-product-addToCart .v65-product-addToCart-quantity {
  display: inline-block;
}
.v65-product-addToCart .v65-product-addToCart-quantity input {
  max-width: 100%;
  padding: 1.7em;
  width: 4em !important;
}
.v65-product-addToCart .v65-product-addToCart-priceWrapper {
  margin-bottom: 1em;
}
.v65-product-addToCart .v65-product-addToCart-priceWrapper .v65-product-addToCart-price {
  display: inline-block;
  font-size: 1.4em;
  margin-bottom: 0.5em;
}
.v65-product-addToCart .v65-product-addToCart-priceWrapper .v65-product-addToCart-originalPrice {
  color: #cc1919;
  display: inline-block;
  margin-right: 5px;
  text-decoration: line-through;
}
.v65-product-addToCart .v65-product-addToCart-priceWrapper .v65-product-addToCart-salePrice {
  display: inline-block;
}
.v65-product-addToCart .v65-product-addToCart-priceWrapper .v65-product-addToCart-unitDescription {
  color: #666;
  font-size: 1em;
}
.v65-product-addToCart .v65-product-addToCart-priceWrapper .v65-product-addToCart-productSKU {
  display: none;
}
.v65-product-addToCart .v65-product-addToCart-button {
  display: inline-block;
}

.v65-product-details {
  float: left;
  width: 100%;
}

#productReviewsAnchor,
.v65-product-relatedProducts-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin: 2em 0 1em;
  text-align: center;
}

.v65-ProductRating {
  max-width: 400px;
  margin: 0 auto;
}

.v65-product-relatedProducts {
  text-align: center;
}

.v65-product-relatedProducts-product {
  display: inline-block;
  margin: 2em 2%;
}
@media screen and (min-width: 781px) {
  .v65-product-relatedProducts-product {
    width: 29.33%;
  }
}
@media screen and (min-width: 561px) and (max-width: 780px) {
  .v65-product-relatedProducts-product {
    width: 45.33%;
  }
}
@media screen and (max-width: 560px) {
  .v65-product-relatedProducts-product {
    display: block;
    width: 100%;
  }
}
.v65-product-relatedProducts-product .v65-product-title {
  font-size: 1.3em;
  line-height: 1.2;
  margin: 1em 0 0.25em;
}
.v65-product-relatedProducts-product .v65-product-title a {
  color: #000;
}
.v65-product-relatedProducts-product .v65-product-addToCart .v65-product-addToCart-priceWrapper .v65-product-addToCart-price {
  font-size: 1.2em;
}

/* ---------------------- Cart + Checkout ---------------------- */
/* -------------- Buttons -------------- */
.largeLinkBtn, .largeBtn {
  background: #0099cc;
  border-radius: 3px;
  color: white;
  padding: 1rem 2rem 1.0625rem;
}
.largeLinkBtn:hover, .largeLinkBtn:focus, .largeLinkBtn:active, .largeBtn:hover, .largeBtn:focus, .largeBtn:active {
  background: #0086b3;
  color: white;
}
@media screen and (max-width: 640px) {
  .largeLinkBtn, .largeBtn {
    text-align: center;
    display: block;
  }
}

.modalBtn {
  background: #0099cc;
  border-radius: 3px;
  color: white;
  display: inline-block;
  font-size: 0.9em;
  padding: 0.7em 1rem 0.6em;
}
.modalBtn:hover, .modalBtn:focus, .modalBtn:active {
  background: #0086b3;
  color: white;
}

a.linkAltBtn {
  text-decoration: underline;
  padding: 1rem 1rem 1.0625rem;
}

.modalLinkAltBtn {
  text-decoration: underline;
  padding: 1em 0;
}

/* -------------- Forms -------------- */
#v65-cartHeader {
  padding-top: 1em;
}

@media screen and (min-width: 701px) {
  #v65-cartCheckOutCoupons {
    float: left;
    max-width: 21em;
  }
}
#v65-cartCheckOutCoupons fieldset {
  border: 0;
  padding: 1em 0 0 0;
  margin: 0;
}
#v65-cartCheckOutCoupons #v65-CouponCode {
  display: inline-block;
}
@media screen and (min-width: 641px) {
  #v65-cartCheckOutCoupons #v65-CouponCode {
    max-width: 9em;
  }
}
#v65-cartCheckOutCoupons .modalBtn {
  background: #acacac;
}
#v65-cartCheckOutCoupons .modalBtn:hover, #v65-cartCheckOutCoupons .modalBtn:focus, #v65-cartCheckOutCoupons .modalBtn:active {
  background: #9f9f9f;
}

.v65-cartCheckOutButtons {
  margin: 2em 0 4em;
}
@media screen and (min-width: 701px) {
  .v65-cartCheckOutButtons {
    float: right;
  }
}
@media screen and (max-width: 640px) {
  .v65-cartCheckOutButtons a.linkAltBtn {
    display: none;
  }
}

table#v65-cartTable {
  border: 0;
}
table#v65-cartTable td.v65-cartItemAmount fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
table#v65-cartTable td.v65-cartItemAmount input {
  display: inline-block;
  height: 2em;
  margin: 1em 0.75em 0.5em;
  text-align: center;
  width: 3em;
}
table#v65-cartTable td.v65-cartItemAmount button {
  display: inline-block;
  font-size: 0.9em;
  padding: 0.5em 0.75em;
}
table#v65-cartTable td.v65-cartItemAmount button.modalBtn {
  background: #acacac;
}
table#v65-cartTable td.v65-cartItemAmount button.modalBtn:hover, table#v65-cartTable td.v65-cartItemAmount button.modalBtn:focus, table#v65-cartTable td.v65-cartItemAmount button.modalBtn:active {
  background: #9f9f9f;
}
table#v65-cartTable th {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 640px) {
  table#v65-cartTable th {
    font-size: 0.8em;
    padding: 1em 0.2em;
  }
}
table#v65-cartTable .right {
  float: none !important;
}
table#v65-cartTable tr {
  border-bottom: 1px solid #eee;
}
table#v65-cartTable tr.even, table#v65-cartTable tr.alt, table#v65-cartTable tr:nth-of-type(even) {
  background: white;
}
@media screen and (max-width: 640px) {
  table#v65-cartTable tr td {
    font-size: 0.8em;
    padding: 1em 0.2em;
  }
}

td.alert {
  color: #e01818;
}

#v65-checkoutFormWrapper fieldset {
  border: 0;
  padding: 10px 0;
  margin: 0;
}
#v65-checkoutFormWrapper legend {
  border-top: 1px solid #ddd;
  font-size: 1.7em;
  font-weight: 400;
  margin: 0 0 0.5em;
  padding: 1em 0 0;
  width: 100%;
}
@media screen and (min-width: 751px) {
  #v65-checkoutFormWrapper #v65-checkoutCartSummaryWrapper {
    float: right;
    width: 30%;
  }
}
#v65-checkoutFormWrapper #v65-checkoutCartSummaryWrapper #v65-checkoutCartSummaryMini table {
  border: 0;
}
#v65-checkoutFormWrapper #v65-checkoutCartSummaryWrapper #v65-checkoutCartSummaryMini table tr {
  border-bottom: 1px solid #eee;
}
#v65-checkoutFormWrapper #v65-checkoutCartSummaryWrapper #v65-checkoutCartSummaryMini table tr.even, #v65-checkoutFormWrapper #v65-checkoutCartSummaryWrapper #v65-checkoutCartSummaryMini table tr.alt, #v65-checkoutFormWrapper #v65-checkoutCartSummaryWrapper #v65-checkoutCartSummaryMini table tr:nth-of-type(even) {
  background: white;
}
#v65-checkoutFormWrapper #v65-checkoutCartSummaryWrapper #v65-couponFormWrapper legend {
  font-size: 1.2em;
}
#v65-checkoutFormWrapper #v65-checkoutCartSummaryWrapper #v65-couponFormWrapper input {
  display: inline-block;
}
@media screen and (min-width: 751px) {
  #v65-checkoutFormWrapper #v65-checkoutCartSummaryWrapper #v65-couponFormWrapper input {
    width: 10em;
  }
}
@media screen and (min-width: 751px) {
  #v65-checkoutFormWrapper #v65-checkBilling {
    float: right;
    margin-right: 11%;
    width: 59%;
  }
}
#v65-checkoutFormWrapper #v65-continueOrder {
  margin-top: 1em;
  text-align: right;
}

#v65-subscribeWidget input {
  height: 45px;
  float: left;
  width: 60%;
}
#v65-subscribeWidget button {
  float: right;
  width: 35%;
}

form input.error {
  border: 1px solid #ff0000;
}
form .error ul {
  margin: 0;
  margin-top: 5px;
}
form .error input {
  border: 1px solid #ff0000;
}

.v65-customForm {
  color: #6F6F6F;
  font-size: 0.9em;
  font-weight: 300;
}
.v65-customForm legend {
  display: none;
}
.v65-customForm fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
.v65-customForm label {
  font-size: 1.14em;
  color: #000;
  margin: 0.3em 0;
}

input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], textarea {
  margin: 0 0 0.8em 0;
}

.hubspot-form {
  font-size: 16px;
}
.hubspot-form .hs-form.stacked label {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 7px;
}
.hubspot-form .hs-form.stacked .field {
  margin-bottom: 10px;
}
.hubspot-form input.hs-input, .hubspot-form textarea.hs-input, .hubspot-form select.hs-input {
  font-size: 15px;
  height: 15px;
  line-height: 15px;
}
.hubspot-form input.hs-input {
  padding: 1.25em 0.25em !important;
}
.hubspot-form .hs-form textarea.hs-input {
  height: 100px;
}
.hubspot-form .hs-form .hs-input, .hubspot-form .hs-form textarea.hs-input {
  box-sizing: border-box;
  max-width: 600px;
  width: 100% !important;
}
.hubspot-form .hs-form.stacked .actions .hs-button {
  font-size: 1em !important;
  padding: 1.3em 2.5em !important;
  width: auto !important;
  max-width: 100%;
}
.hubspot-form.blog-hubspot-form .hs-form {
  min-height: 47px;
  margin-top: 13px;
}
.hubspot-form.blog-hubspot-form .hs-form.stacked label {
  display: none;
}
.hubspot-form.blog-hubspot-form .hs-form.stacked .field {
  float: left;
  width: 60%;
}
.hubspot-form.blog-hubspot-form input.hs-input {
  padding: 1.4em 0.25em !important;
}
.hubspot-form.blog-hubspot-form .hs-form.stacked .actions .hs-button {
  font-size: 0.8em !important;
  font-weight: 400;
  padding: 1.3em 1em !important;
  margin: 0;
  text-transform: uppercase;
  width: 77% !important;
}
.hubspot-form.blog-hubspot-form .hs_submit {
  float: left;
  margin: 0 0 0 5%;
  width: 35%;
}

.blogSearch button {
  float: right;
  width: 35%;
  font-size: 0.8125rem;
  padding: 0.9rem 2% 0.9rem 2%;
}
.blogSearch fieldset {
  border: none;
  padding: 0;
  margin: 10px 0;
}
.blogSearch input[name="searchText"] {
  height: 45px;
  float: left;
  width: 60% !important;
}

.v65-socialMediaBar {
  margin: 1em 0;
}

.blog-posts.blog-filter {
  margin-top: 1em;
}

input#isSubscribe {
  margin: 0 10px 10px 0;
}

.blogRow {
  max-width: 1100px;
}
@media only screen and (max-width: 40em) {
  .blogRow {
    padding: 15px;
  }
}

#v65-blogRecentPosts {
  list-style-type: none;
  margin-left: 0;
}
#v65-blogRecentPosts li {
  margin: 1em 0;
}

.v65-blogPostWrapper .v65-avatar {
  width: 8%;
  float: left;
  padding-right: 10px;
  padding-left: 10px;
}
@media only screen and (max-width: 40em) {
  .v65-blogPostWrapper .v65-avatar {
    display: none;
  }
}
.v65-blogPostWrapper .v65-avatar img {
  width: 68px;
}
.v65-blogPostWrapper .v65-avatar + .v65-clear {
  display: none;
}

.v65-blogPost {
  width: 100%;
  float: left;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 40px;
}
@media screen and (min-width: 641px) {
  .v65-blogPost {
    width: 92%;
  }
}
.v65-blogPost h1 {
  font-size: 2rem;
}
.v65-blogPost .v65-blogFooter {
  font-size: 12px;
  line-height: 30px;
}
.v65-blogPost .v65-blogFooter div {
  padding: 0 5px;
  display: inline-block;
}
.v65-blogPost .v65-blogFooter div:first-child {
  padding-left: 0;
}

#v65-subscribeWidget button {
  text-transform: uppercase;
}

.v65-blogPostDate a, .blog-filters a {
  color: #666666;
  font-weight: 400;
}
.v65-blogPostDate a:hover, .blog-filters a:hover {
  color: #5c5c5c;
}

.v65-blogPostDate {
  font-size: 14px;
}

.v65-socialMediaBar > div {
  padding: 0 5px;
  display: inline-block;
}
.v65-socialMediaBar > div:first-child {
  padding-left: 0;
}

.blog:filters > div {
  margin-bottom: 32px;
}
.blog:filters ul {
  font-size: 14px;
  list-style: none;
  margin-left: 8px;
}
.blog:posts li {
  margin-bottom: 32px;
}

.blog-filters {
  padding-right: 10px;
}
.blog-filters h3 {
  color: #191919;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 100;
  margin: 0;
}

#v65-blogSubscribeByRSS {
  background-size: 18px;
  display: inline-block;
  height: 18px;
  padding-left: 26px;
  vertical-align: middle;
}
#v65-blogSubscribeByRSS:before {
  content: "Subscribe ";
}

.blog-search form input {
  height: 45px;
  float: left;
  width: 60% !important;
}
.blog-search form [name="searchText"] {
  width: 60% !important;
}
.blog-search form button {
  height: 45px;
  float: right;
  width: 35% !important;
  font-size: 13px;
  padding-left: 0;
  padding-right: 0;
  text-transform: uppercase;
}
.blog-search fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

#fieldsetSubmit {
  float: right;
}

.v65-Paging {
  margin: 20px 0;
  text-align: center;
}
.v65-Paging#v65-PagingTop {
  display: none;
}
.v65-Paging ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.v65-Paging ul li {
  display: inline-block;
  padding: 5px;
}

.v65-blogCommentsTitle {
  margin-left: -30px;
  margin-right: -30px;
}
.v65-blogCommentsTitle:before {
  width: 8%;
  display: inline-block;
  content: " ";
}
@media only screen and (max-width: 40em) {
  .v65-blogCommentsTitle:before {
    display: none;
  }
}

.v65-commentWrapper {
  border-bottom: 1px solid #ccc;
  overflow: hidden;
  line-height: 1.6;
  padding-top: 10px;
}
.v65-commentWrapper .v65-clear {
  display: none;
}
.v65-commentWrapper .v65-avatar {
  width: 8%;
  float: left;
  padding-right: 10px;
  padding-left: 10px;
}
@media only screen and (max-width: 40em) {
  .v65-commentWrapper .v65-avatar {
    display: none;
  }
}

@media only screen and (max-width: 40em) {
  .blogRow #v65-commentFormWrapper form {
    width: 100%;
  }
}

@media only screen and (max-width: 40em) {
  #fieldsetSubmit {
    width: 100%;
    margin-top: 10px;
  }
}

.v65-comment {
  width: 88%;
  float: left;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 40px;
}

.v65-commentDate {
  font-size: .85em;
}

.v65-commentName {
  font-weight: bold;
}

.v65-commentText {
  padding: 1em 0 0;
}

#v65-commentFormWrapper form {
  width: 80%;
}

#v65-commentFormWrapper #Comments {
  height: 140px;
  width: 95%;
}

/* ================================================
	 Section
================================================ */
section {
  padding-bottom: 42px;
  padding-top: 42px;
  position: relative;
}
@media only screen and (min-width: 40.063em) {
  section {
    padding-bottom: 65px;
    padding-top: 65px;
  }
}
section:nth-of-type(2n), section.request-demo {
  background-color: #efefef;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
}
@media only screen and (min-width: 40.063em) {
  section:nth-of-type(2n), section.request-demo {
    padding-bottom: 55px;
    padding-top: 55px;
  }
}
section.request-demo {
  border-bottom: 0;
}
@media only screen and (min-width: 40.063em) {
  section.request-demo {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}

@media only screen and (max-width: 40em) {
  .request-demo {
    padding: 10px 0;
  }
}

/* ================================================
	 Section Header
================================================ */
.section-header {
  margin-bottom: 32px;
  padding: 0 30px;
  text-align: center;
}
@media only screen and (min-width: 40.063em) {
  .section-header {
    margin-bottom: 40px;
  }
}
.section-header h1 {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  margin: 0;
}
.section-header h2 {
  color: #191919;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 100;
  margin: 0;
}

/* ================================================
	 Foundation Customizations
================================================ */
ul li, ol li {
  margin-left: 15px;
}

@media only screen and (min-width: 40.063em) {
  .columns.medium-collapse {
    padding: 0;
  }
}

.narrow-row > .row, .narrow-row > .v65-blogPostWrapper, .narrow-row > .v65-commentWrapper {
  width: 90%;
}
.narrow-row .columns {
  padding-left: 15px;
  padding-right: 15px;
}

@media only screen and (min-width: 40.063em) {
  .medium-5-up {
    padding-left: 0;
    padding-right: 16px;
    width: 20%;
  }
}

/* ================================================
	 2 Column Content
================================================ */
.two-up-feature p {
  font-size: 22px;
  font-weight: 400;
}

.offset-feature {
  margin-bottom: 42px;
}

/* ================================================
	 3 Column Content
================================================ */
/* ================================================
	 Homepage Intro Feature
================================================ */
.homepage-feature-wrapper {
  display: none;
  background: rgba(0, 153, 204, 0.8);
  width: 430px;
  height: 430px;
  position: absolute;
  margin-top: 25px;
  border-radius: 215px;
}
@media screen and (min-width: 1220px) {
  .homepage-feature-wrapper {
    right: -100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  .homepage-feature-wrapper {
    right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .homepage-feature-wrapper {
    position: relative;
    margin: 25px auto;
    padding-top: 90px;
  }
}
@media screen and (max-width: 580px) {
  .homepage-feature-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    padding-top: 50px;
  }
}
.homepage-feature-wrapper .v65-pod {
  max-width: 300px;
  margin: 20% auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .homepage-feature-wrapper .v65-pod {
    margin: 0 auto;
    max-width: 270px;
  }
}
@media screen and (max-width: 640px) {
  .homepage-feature-wrapper .v65-pod p {
    font-size: 80%;
  }
}
.homepage-feature-wrapper .v65-pod h1, .homepage-feature-wrapper .v65-pod h2, .homepage-feature-wrapper .v65-pod h3, .homepage-feature-wrapper .v65-pod h4, .homepage-feature-wrapper .v65-pod h5, .homepage-feature-wrapper .v65-pod h6, .homepage-feature-wrapper .v65-pod p {
  color: #fff;
}

.intro-feature {
  background-position: top center;
  background-repeat: no-repeat;
  margin: 0;
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 40em) {
  .intro-feature {
    padding: 0;
  }
}
@media only screen and (min-width: 40.063em) {
  .intro-feature {
    height: 480px;
  }
}
.intro-feature .row, .intro-feature .v65-blogPostWrapper, .intro-feature .v65-commentWrapper {
  position: relative;
}
.intro-feature .callout {
  margin: 30px 0 20px;
  text-align: center;
  min-height: 230px;
}
.intro-feature .callout h1, .intro-feature .callout h2 {
  color: white;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  font-weight: 300;
}
.intro-feature .callout h1 {
  font-size: 50px;
  margin-top: 40px;
}
@media only screen and (min-width: 40.063em) {
  .intro-feature .callout h1 {
    font-size: 70px;
    margin-top: 95px;
  }
}
.intro-feature .callout h2 {
  font-size: 20px;
}
@media only screen and (min-width: 40.063em) {
  .intro-feature .callout h2 {
    font-size: 25px;
  }
}
.intro-feature .callout .play-button {
  display: inline-block;
  margin-top: 2rem;
  opacity: 0.68;
}
.intro-feature .callout .play-button.modal-video-disabled {
  display: none;
}
.intro-feature .request-demo {
  background: none;
  margin: 0;
  padding: 0;
}

/* ================================================
	 Component - Request Demo Form
================================================ */
.optOutEmail {
  width: 66%;
}

.customer-capture {
  z-index: 10;
  padding: 20px 0 !important;
}
.customer-capture h1 {
  float: left;
  margin: 10px 0 0 0;
}
.customer-capture .lockImage {
  float: right;
}
@media screen and (max-width: 580px) {
  .customer-capture .lockImage {
    float: left;
    clear: left;
    margin-top: 15px;
  }
}
.customer-capture p {
  clear: both;
  padding-top: 20px;
}
@media screen and (max-width: 640px) {
  .customer-capture {
    padding: 20px !important;
  }
}

.customer-capture-footer {
  padding-top: 0;
}
.customer-capture-footer ul {
  float: none;
}
@media screen and (min-width: 641px) {
  .customer-capture-footer {
    text-align: right;
  }
  .customer-capture-footer li {
    display: inline;
    padding: 0 10px;
  }
}
@media screen and (min-width: 640px) and (max-width: 900px) {
  .customer-capture-footer ul {
    margin: 1.5em 0 0.5em;
  }
}
@media screen and (max-width: 640px) {
  .customer-capture-footer ul {
    padding: 20px 0;
    margin: 0;
  }
}

.request-demo-form {
  position: relative;
  padding-bottom: 10px;
  padding-top: 10px;
}
.request-demo-form .columns {
  padding-left: 5px;
  padding-right: 5px;
}
.request-demo-form form {
  padding: 15px 0;
  margin-left: 10px;
  margin-right: 10px;
}
.request-demo-form input, .request-demo-form button {
  height: 45px;
}
@media only screen and (min-width: 381px) {
  .request-demo-form input, .request-demo-form button {
    margin-bottom: 0;
  }
}
.request-demo-form button {
  margin-bottom: 0;
}
@media only screen and (max-width: 380px) {
  .request-demo-form .small-4 {
    width: 100%;
    padding: 10px 0;
  }
}
.request-demo-form .demo-alert {
  margin-top: 1px;
  margin-bottom: 1px;
}

.loading {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.7);
  /* browsers */
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4cffffff', endColorstr='#4cffffff');
  /* IE */
  background-image: url("/assets/images/icons/spinner.gif");
  background-repeat: no-repeat;
  background-position: center center;
}

.request-demo-formbuilder, .form-align {
  width: 450px;
  margin: auto;
  text-align: left;
}
.request-demo-formbuilder label, .form-align label {
  text-align: left;
}
@media only screen and (max-width: 40em) {
  .request-demo-formbuilder, .form-align {
    padding: 10px;
    width: 100%;
  }
}

.hubspot-request-demo, .hubspot-form {
  font-family: "proxima-nova", sans-serif;
}
.hubspot-request-demo .field, .hubspot-form .field {
  margin: 0;
}
.hubspot-request-demo .hs-form.stacked .actions, .hubspot-form .hs-form.stacked .actions {
  margin: 0;
  padding: 0;
  width: 100%;
}
.hubspot-request-demo .hs-form.stacked .actions .hs-button, .hubspot-form .hs-form.stacked .actions .hs-button {
  background: #0099cc;
  border: 0;
  box-shadow: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  font-family: "proxima-nova", sans-serif;
  font-size: 0.85em;
  font-weight: 300;
  margin: 5px 0;
  padding: 0;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 100%;
}
.hubspot-request-demo .hs-form.stacked .actions .hs-button:hover, .hubspot-request-demo .hs-form.stacked .actions .hs-button:active, .hubspot-request-demo .hs-form.stacked .actions .hs-button:focus, .hubspot-form .hs-form.stacked .actions .hs-button:hover, .hubspot-form .hs-form.stacked .actions .hs-button:active, .hubspot-form .hs-form.stacked .actions .hs-button:focus {
  background: #008ebd;
  border: 0;
  box-shadow: none;
}
.hubspot-request-demo input.hs-input, .hubspot-request-demo textarea.hs-input, .hubspot-request-demo select.hs-input, .hubspot-form input.hs-input, .hubspot-form textarea.hs-input, .hubspot-form select.hs-input {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  color: rgba(0, 0, 0, 0.75);
  font-family: "proxima-nova", sans-serif;
  padding: 0.8rem 0.5rem;
}
.hubspot-request-demo input.hs-input:focus, .hubspot-request-demo textarea.hs-input:focus, .hubspot-request-demo select.hs-input:focus, .hubspot-form input.hs-input:focus, .hubspot-form textarea.hs-input:focus, .hubspot-form select.hs-input:focus {
  border: 1px solid #888;
  box-shadow: 0 0 6px rgba(88, 88, 88, 0.48);
}
.hubspot-request-demo .hs-form .hs-form-required,
.hubspot-request-demo .hs-error-msgs.inputs-list, .hubspot-form .hs-form .hs-form-required,
.hubspot-form .hs-error-msgs.inputs-list {
  display: none !important;
}
.hubspot-request-demo .hs-form.stacked .inputs-list > li,
.hubspot-request-demo .hs-form .inputs-list, .hubspot-form .hs-form.stacked .inputs-list > li,
.hubspot-form .hs-form .inputs-list {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 401px) {
  .hubspot-request-demo .hs-form fieldset, .hubspot-form .hs-form fieldset {
    float: left;
    width: 66.66666%;
  }
  .hubspot-request-demo .hs_submit, .hubspot-form .hs_submit {
    float: left;
    width: 33.33333%;
  }
  .hubspot-request-demo .hs-form .hs-button, .hubspot-form .hs-form .hs-button {
    width: 82%;
  }
}

/* ================================================
	 Tools
================================================ */
.tool {
  background-position: 30px 0;
  background-size: 70px auto;
  color: #666666;
  margin-bottom: 48px;
  padding-left: 125px;
  min-height: 70px;
}
.tool h1 {
  font-size: 20px;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 20px;
}
.tool p {
  margin-bottom: 0;
}

/* ================================================
	 Icons
================================================ */
.textIcon {
  width: 48px;
  height: 48px;
  background-size: cover;
  display: inline-block;
  line-height: 48px;
}

.icon, #v65-blogSubscribeByRSS {
  background-repeat: no-repeat;
}
.icon.avatar, .avatar#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/avatar.svg?1430937891');
}
.icon.bottles, .bottles#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/bottles.svg?1430937891');
}
.icon.calendar-with-date, .calendar-with-date#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/calendar-with-date.svg?1430937891');
}
.icon.calendar, .calendar#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/calendar.svg?1430937891');
}
.icon.checkbox, .checkbox#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/checkbox.svg?1430937891');
}
.icon.checkmark, .checkmark#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/checkmark.svg?1430937891');
}
.icon.code, .code#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/code.svg?1430937891');
  background-size: 45px 45px;
}
.icon.design, .design#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/design.svg?1430937891');
}
.icon.documentation, .documentation#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/documentation.svg?1430937891');
}
.icon.ecommerce, .ecommerce#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/ecommerce.svg?1430937891');
}
.icon.email, .email#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/email.svg?1430937891');
}
.icon.enterprise, .enterprise#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/enterprise.svg?1430937891');
}
.icon.gears, .gears#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/gears.svg?1430937891');
}
.icon.hand, .hand#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/hand.svg?1430937891');
}
.icon.inspiration, .inspiration#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/inspiration.svg?1430937891');
}
.icon.list, .list#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/list.svg?1430937891');
}
.icon.magnifying-glass, .magnifying-glass#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/magnifying-glass.svg?1430937891');
}
.icon.payment, .payment#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/payment.svg?1430937891');
}
.icon.phone, .phone#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/phone.svg?1430937891');
}
.icon.point-of-sale, .point-of-sale#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/point-of-sale.svg?1430937891');
}
.icon.rss, #v65-blogSubscribeByRSS {
  background-image: url('../images/icons/social/rss.svg?1430937891');
}
.icon.share, .share#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/share.svg?1430937891');
}
.icon.shipping, .shipping#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/shipping.svg?1430937891');
}
.icon.soylent, .soylent#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/soylent.svg?1474498873');
}
.icon.speech-bubbles, .speech-bubbles#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/speech-bubbles.svg?1430937891');
}
.icon.ticket, .ticket#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/ticket.svg?1430937891');
}
.icon.videos, .videos#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/videos.svg?1430937891');
}
.icon.vin65-46brix, .vin65-46brix#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/46Brix.svg?1430937891');
}
.icon.webinar, .webinar#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/webinar.svg?1430937891');
}
.icon.peace, .peace#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/peace.svg?1430937891');
}
.icon.oncall, .oncall#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/oncall.svg?1430937891');
}
.icon.five, .five#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/five.svg?1430937891');
}
.icon.blog, .blog#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/blog.svg?1430937891');
}
.icon.handshake, .handshake#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/handshake.svg?1430937891');
}
.icon.responsive, .responsive#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/responsive.svg?1430937891');
}
.icon.wine, .wine#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/bottles.svg?1430937891');
  background-size: 65px 65px;
}
.icon.coffee, .coffee#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/coffee.svg?1430937891');
  background-size: 65px 65px;
}
.icon.redbull, .redbull#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/redbull.svg?1430937891');
  background-size: 65px 65px;
}
.icon.languages, .languages#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/languages.svg?1430937891');
  background-size: 65px 65px;
}
.icon.truck, .truck#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/truck.svg?1430937891');
  background-size: contain;
  background-position: 0px 18px;
}
.icon.everything, .everything#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/everything.png?1430937891');
}
.icon.stateOfUnion, .stateOfUnion#v65-blogSubscribeByRSS {
  background-image: url('../images/icons/stateOfUnion.png?1430937891');
}

.bullet-item-icon-left {
  background-repeat: no-repeat;
}
.bullet-item-icon-left.ecommerce {
  background-image: url('../images/icons/ecommerce.svg?1430937891');
}
.bullet-item-icon-left.point-of-sale {
  background-image: url('../images/icons/point-of-sale.svg?1430937891');
}

.bullet-item-icon-right {
  background-repeat: no-repeat;
}
.bullet-item-icon-right.infoCon {
  background-image: url('../images/icons/info.svg?1430937891');
}

.checkmarkCon {
  background-image: url('../images/icons/checkmark.svg?1430937891');
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
}

.multi-icon {
  background-repeat: no-repeat;
}
.multi-icon.ecommerce-and-pos {
  background-image: url('../images/icons/ecommerce.svg?1430937891'), url('../images/icons/point-of-sale.svg?1430937891');
}
.multi-icon.ecommerce-and-pos:before {
  content: "+";
  font-size: 20px;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 90px;
}

/* ================================================
	 Portfolio Features
================================================ */
.portfolio-item .image-wrapper img, .feature-portfolio-item .image-wrapper img {
  margin-bottom: 1rem;
  border: 1px solid #eeeeee;
}

.portfolio.enterprise .image-wrapper img {
  box-shadow: none;
  border: 1px solid #eeeeee;
}

.portfolio-item {
  margin-bottom: 42px;
  text-align: center;
}
@media only screen and (min-width: 40.063em) {
  .portfolio-item {
    margin-bottom: 56px;
  }
}
.portfolio-item img {
  width: 100%;
}
.portfolio-item p {
  margin-bottom: 0;
}

.feature-portfolio-item p {
  line-height: 30px;
}

/* ================================================
	 Testimonials
================================================ */
.feature-testimonial .testimonial > p:before, .feature-testimonial .testimonial > p:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-bottom: 0px solid transparent;
  position: absolute;
}
.feature-testimonial .testimonial > p:before {
  border-right: 1px solid #fff;
  left: 0px;
  top: 0px;
  z-index: 1;
}
.feature-testimonial .testimonial > p:after {
  border-right: 10px solid #cccccc;
  top: 0px;
  left: 0px;
}
.feature-testimonial .testimonial-author {
  margin-bottom: 10px;
}
@media only screen and (max-width: 40em) {
  .feature-testimonial .testimonial-author .feature-image-wrapper {
    padding-right: 0;
    max-width: 96px;
  }
}

.testimonials .columns, .testimonials .column {
  padding-left: 10px;
  padding-right: 10px;
}
.testimonials .row .row, .testimonials .v65-blogPostWrapper .row, .testimonials .v65-commentWrapper .row, .testimonials .row .v65-blogPostWrapper, .testimonials .v65-blogPostWrapper .v65-blogPostWrapper, .testimonials .v65-commentWrapper .v65-blogPostWrapper, .testimonials .row .v65-commentWrapper, .testimonials .v65-blogPostWrapper .v65-commentWrapper, .testimonials .v65-commentWrapper .v65-commentWrapper {
  margin-left: -10px;
  margin-right: -10px;
}

.testimonial {
  border-left: 0;
  font-weight: 300;
  margin: 0 0 48px;
  padding: 0;
}
.testimonial > p {
  border: 1px solid #cccccc;
  color: #666666;
  font-weight: inherit;
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
  background: white;
}
.testimonial > p:before, .testimonial > p:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  position: absolute;
  left: 18px;
}
@media only screen and (max-width: 40em) {
  .testimonial > p:before, .testimonial > p:after {
    display: none;
  }
}
.testimonial > p:before {
  border-top: 10px solid #fff;
  bottom: -9px;
  z-index: 1;
}
.testimonial > p:after {
  border-top: 10px solid #cccccc;
  bottom: -10px;
}

.testimonial-author .image-wrapper {
  padding-right: 0;
  max-width: 96px;
}
.testimonial-author p {
  margin-bottom: 0;
  font-weight: 300;
}
.testimonial-author .author.columns {
  float: left;
}
.testimonial-author .winery {
  color: black;
  font-size: 15px;
}

.teamProfiles {
  text-align: center;
  margin-left: auto !important;
  margin-right: auto !important;
}
.teamProfiles .profile .name {
  margin-bottom: 0px;
}
.teamProfiles .profile span {
  display: block;
  margin-bottom: 20px;
}

/* ================================================
	 Certified Designers
================================================ */
.filter-bar {
  max-width: 1050px;
  margin: 0 auto;
  z-index: 10;
  position: relative;
}
.filter-bar .filters {
  float: right;
  width: 300px;
  clear: both;
  position: absolute;
  right: 0;
  top: 20px;
}
.filter-bar .filters span {
  float: left;
  margin-right: 20px;
}
.filter-bar .service-filters, .filter-bar .state-filters {
  position: relative;
}
.filter-bar .service-filters span, .filter-bar .state-filters span {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iM3B4IiB2aWV3Qm94PSIwIDAgNiAzIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA2IDMiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwb2x5Z29uIHBvaW50cz0iNS45OTIsMCAyLjk5MiwzIC0wLjAwOCwwICIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: 97% center;
  cursor: pointer;
}
.filter-bar .service-filters span {
  width: 80px;
}
.filter-bar .service-filters div.service-filter-selection {
  display: none;
  position: absolute;
  background: #FFF;
  padding: 7px;
  border-radius: 5px;
  border: 1px solid #DDD;
  top: 30px;
  width: 220px;
}
.filter-bar .state-filters span {
  width: 80px;
}
.filter-bar .state-filters div.state-filter-selection {
  display: none;
  position: absolute;
  top: 30px;
  width: 210px;
}
.filter-bar .state-filters div.state-filter-selection select {
  border-radius: 5px;
}

.goldcertified-designer-wrapper {
  background-color: #fff;
  padding: 40px 20px 0;
  position: relative;
}
@media only screen and (max-width: 40.062em) {
  .goldcertified-designer-wrapper {
    padding-top: 40px;
  }
}
.goldcertified-designer-wrapper .portfolio-item {
  margin-bottom: 40px;
}

.narrow-row .certified-designer-wrapper {
  min-height: 255px;
  margin-bottom: 2rem;
  padding: 0;
  padding-left: 1.8%;
  padding-right: 1.8%;
  position: relative;
}
@media only screen and (max-width: 40.062em) {
  .narrow-row .certified-designer-wrapper {
    padding-top: 20px;
    margin-bottom: 0;
  }
}

.certified-designer-background, .otherdesigners-background {
  display: inline-block;
  padding: 6% 3%;
  width: 100%;
}
@media only screen and (max-width: 40.062em) {
  .certified-designer-background, .otherdesigners-background {
    padding: 40px 0;
  }
}

.certified-designer-background {
  background-color: white;
}

.linkOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000000;
}

.goldcertified-designer-item, .certified-designer-item, .other-designers {
  text-align: left;
}
.goldcertified-designer-item h2, .certified-designer-item h2, .other-designers h2 {
  margin-bottom: 0;
}
@media only screen and (max-width: 40.062em) {
  .goldcertified-designer-item h2, .certified-designer-item h2, .other-designers h2 {
    font-size: 1.5rem;
  }
}
.goldcertified-designer-item p, .certified-designer-item p, .other-designers p {
  color: #666666;
}
.goldcertified-designer-item .certified-designer-location, .certified-designer-item .certified-designer-location, .other-designers .certified-designer-location {
  margin-bottom: 1em;
  font-size: 0.9rem;
}

.certified-designer-item h2, .other-designers h2 {
  font-size: 1.3rem;
}

.certified-designer-description ul {
  margin-top: 5px;
  text-align: left;
}

.certified-designers, .gold-certified-designers {
  background-color: #efefef;
  border-top: none;
  border-bottom: none;
}
.certified-designers .portfolio-item img, .gold-certified-designers .portfolio-item img {
  background: #fff;
}
.certified-designers .section-header, .gold-certified-designers .section-header {
  margin-bottom: 25px;
}

.other-designers .portfolio-item img {
  background: #fff;
}
.other-designers .section-header {
  margin-bottom: 25px;
}

.gold-certified-designers .row, .gold-certified-designers .v65-blogPostWrapper, .gold-certified-designers .v65-commentWrapper {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 40.062em) {
  .gold-certified-designers .row, .gold-certified-designers .v65-blogPostWrapper, .gold-certified-designers .v65-commentWrapper {
    margin-bottom: 20px;
  }
}
.gold-certified-designers .row:last-of-type, .gold-certified-designers .v65-blogPostWrapper:last-of-type, .gold-certified-designers .v65-commentWrapper:last-of-type {
  margin-bottom: 0;
}

/* ================================================
	 Templates
================================================ */
a.back-to-templates {
  line-height: 2;
}

.overlay-template-button {
  margin: 30% 0 24%;
  line-height: 25px;
  padding-top: 0.625rem;
  padding-right: 1.25rem;
  padding-bottom: 0.6875rem;
  padding-left: 1.25rem;
  font-size: 1rem;
}
@media screen and (max-width: 1024px) {
  .overlay-template-button {
    margin: 1.25rem 0 0;
    background: none;
    padding: 0;
    color: #0099cc;
  }
}

.template-color-option {
  padding: 5px;
  border: 1px solid #dddddd;
  cursor: pointer;
}

.template-details .color-options span {
  cursor: pointer;
}
.template-details h1 {
  margin-bottom: 0;
}
.template-details .button {
  margin: 0 0 0.75rem;
}

.template-item-details {
  margin-top: 10px;
  text-align: center;
}
.template-item-details .template-price {
  display: inline;
  border-radius: 5px;
  padding: 2px 5px;
  margin-left: 5px;
  background-color: #f1f1f1;
}

.price-text {
  font-size: 34px;
}

.price-wrapper {
  margin: 25px 0 15px;
}

.template .subheader {
  float: left;
  padding-left: 15px;
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .template .subheader {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .template .subheader {
    float: none;
  }
}
.template .price {
  display: none;
}
.template .colorOptions {
  color: #666666;
  padding-top: 4px;
  float: right;
  padding-right: 15px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 900px) {
  .template .colorOptions {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .template .colorOptions {
    float: none;
  }
}
.template a.secondary {
  margin-top: 0.5rem;
}
.template .clearFix {
  clear: both;
}

.template {
  margin-bottom: 20px;
}
.template .image-wrapper {
  border: 1px solid #eeeeee;
  margin-bottom: 10px;
}
.template img {
  width: 100%;
}
.template h3 {
  color: #333333;
}
.template p {
  color: #666666;
}
.template a.secondary {
  color: #a0a0a0;
}
.template a.secondary:hover, .template a.secondary:active {
  color: #585858;
}
.template:author {
  font-size: 12px;
  display: none;
}
.template:details {
  background-color: #efefef;
}
@media only screen and (min-width: 40.063em) {
  .template:details {
    padding-top: 68px;
  }
}
.template:details h1 {
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.template:details .feature-image {
  margin-bottom: -3.8%;
  position: relative;
  z-index: 1;
}
.template:details .feature-image:wrapper {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 64.063em) {
  .template:details .feature-image:wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 40.063em) {
  .template:details .feature-image:wrapper .button {
    bottom: -80px;
    margin-bottom: 0;
    position: absolute;
  }
}
.template:details .color-options {
  margin-bottom: 12px;
}
.template:details .color-options span {
  cursor: pointer;
}
.template:details .color {
  border-radius: 3px;
  display: inline-block;
  height: 31px;
  margin-right: 5px;
  width: 31px;
}

.template-features {
  margin: 0px 0 40px;
}
@media screen and (min-width: 642px) {
  .template-features {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
    margin: 0px 0 40px;
  }
}
.template-features .template-feature-description {
  color: #6d6d6d;
  font-size: 0.88em;
  padding-left: 1.1rem;
  margin-left: 0;
}
@media screen and (min-width: 642px) {
  .template-features .template-feature-description {
    display: none;
  }
}
.template-features .template-feature-title {
  margin-bottom: 0;
  padding: 10px 0;
  position: relative;
}
@media screen and (min-width: 642px) {
  .template-features .template-feature-title {
    cursor: pointer;
  }
  .template-features .template-feature-title:after {
    cursor: pointer;
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    line-height: 45px;
  }
  .template-features .template-feature-title.feature-opened:after {
    content: "-";
  }
}

/* ======================================================
	 Pricing - Packages and Templates
========================================================= */
.setup, .monthly {
  margin-bottom: 8px;
}
@media only screen and (min-width: 40.063em) {
  .setup, .monthly {
    display: inline-block;
    padding: 0 0.2rem;
    max-width: 50%;
  }
}
.setup .sup, .monthly .sup {
  font-size: 12px;
}

.setup {
  margin-bottom: 8px;
}
@media only screen and (min-width: 40.063em) {
  .setup {
    margin-bottom: 0;
  }
}

.supplied-design {
  font-size: 13px;
  vertical-align: top;
}

.sup {
  font-size: 14px;
  vertical-align: baseline;
}

.price-text {
  line-height: 1;
  margin-bottom: 0;
  margin-left: -5px;
  margin-right: -5px;
  position: relative;
}
.price-text:before {
  content: "$";
  font-size: 0.5em;
  vertical-align: super;
}

.pricingPageRow {
  max-width: 1300px;
}

.packageTypeWrapper {
  float: left;
  margin: 0 0.5%;
  width: 24%;
}
@media screen and (max-width: 835px) {
  .packageTypeWrapper {
    margin: 0 0.5% 2em;
    width: 49%;
  }
}
@media screen and (max-width: 580px) {
  .packageTypeWrapper {
    margin: 0 2% 2em;
    width: 96%;
  }
}
.packageTypeWrapper .packageType {
  border: 1px solid #e5e5e5;
  padding: 2em 6% 1em;
}
@media screen and (min-width: 836px) {
  .packageTypeWrapper .packageType {
    min-height: 547px;
  }
}
@media screen and (min-width: 581px) and (max-width: 835px) {
  .packageTypeWrapper .packageType {
    min-height: 538px;
  }
}
@media screen and (max-width: 580px) {
  .packageTypeWrapper .packageType {
    padding-bottom: 0.5em;
  }
}
.packageTypeWrapper h1.pricingTitle {
  font-size: 1.4em;
  font-weight: 300;
  margin-bottom: 1.9em;
  text-align: center;
}
@media screen and (max-width: 580px) {
  .packageTypeWrapper h1.pricingTitle {
    margin-bottom: 1em;
  }
}
.packageTypeWrapper h3.pricingSubtitle {
  font-size: 0.9em;
  color: #000000;
  text-align: center;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 1.7em;
}
.packageTypeWrapper .pricingOption {
  text-align: center;
}
.packageTypeWrapper .pricingOption .price-text {
  font-size: 2.7em;
}
.packageTypeWrapper .pricingOption .price-text:before {
  content: "";
}
.packageTypeWrapper .pricingOption .setup {
  color: #888;
  display: block;
  font-size: 0.8em;
  margin-top: -3px;
  max-width: 100%;
}
.packageTypeWrapper .pricingOption p {
  margin-bottom: 1em;
}
.packageTypeWrapper .pricingOption a {
  color: #888;
}
.packageTypeWrapper button, .packageTypeWrapper .button {
  margin-bottom: 0;
}
.packageTypeWrapper .tierDetailsWrapper {
  margin-top: 0.75em;
  text-align: center;
}
@media screen and (min-width: 836px) {
  .packageTypeWrapper .tierDetailsWrapper {
    margin-top: 1.5em;
  }
}
.packageTypeWrapper .tierDetailsWrapper .moreDetailsTitle {
  display: none;
}
@media screen and (max-width: 580px) {
  .packageTypeWrapper .tierDetailsWrapper .moreDetailsTitle {
    cursor: pointer;
    display: inline-block;
    margin-top: 1em;
    margin-bottom: 0.7em;
    padding-right: 20px;
    position: relative;
  }
  .packageTypeWrapper .tierDetailsWrapper .moreDetailsTitle:after {
    content: "+";
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
  }
  .packageTypeWrapper .tierDetailsWrapper .moreDetailsTitle.opened:after {
    content: "-";
  }
}
@media screen and (max-width: 580px) {
  .packageTypeWrapper .tierDetailsWrapper .tierDetails {
    display: none;
    overflow: hidden;
  }
}
.packageTypeWrapper .tierDetailsWrapper .tierDetail {
  margin-bottom: 0.7em;
}
.packageTypeWrapper .tierDetailsWrapper .tierDetail p {
  margin-bottom: 0;
}
.packageTypeWrapper .tierDetailsWrapper .tierDetail .amount {
  font-size: 1.05em;
  font-weight: 300;
  margin-bottom: -2px;
}
.packageTypeWrapper .tierDetailsWrapper .tierDetail .featureTitle {
  color: #9A9A9A;
  font-size: 0.85em;
  font-weight: 300;
  line-height: 1.1;
}

.pricingWrapper {
  float: left;
  margin-right: 0;
  margin-left: 0;
  width: 100%;
}
.pricingWrapper .v65-clear {
  clear: both;
  font-size: 0;
  line-height: 0;
}
@media screen and (min-width: 826px) {
  .pricingWrapper .v65-clear {
    display: none;
  }
}

.pricingPageWrapper {
  margin-top: 2em;
}
.pricingPageWrapper .packageTypeWrapper {
  margin: 0 1%;
  width: 29%;
}
@media screen and (min-width: 776px) and (max-width: 830px) {
  .pricingPageWrapper .packageTypeWrapper {
    width: 31.15%;
  }
}
@media screen and (min-width: 476px) and (max-width: 775px) {
  .pricingPageWrapper .packageTypeWrapper {
    margin: 0.5em 2%;
    width: 96%;
  }
}
@media screen and (max-width: 475px) {
  .pricingPageWrapper .packageTypeWrapper {
    margin: 0.5em 4%;
    width: 92%;
  }
}
.pricingPageWrapper .packageTypeWrapper .packageType {
  text-align: center;
  min-height: 515px;
}
@media screen and (max-width: 775px) {
  .pricingPageWrapper .packageTypeWrapper .packageType {
    min-height: initial;
  }
}
.pricingPageWrapper .packageTypeWrapper .packageType h1.pricingTitle {
  font-size: 1.8em;
  margin-bottom: 0;
}
.pricingPageWrapper .packageTypeWrapper .packageType .pre {
  display: block;
  font-size: 0.9em;
  min-height: 23px;
}
.pricingPageWrapper .packageTypeWrapper .packageType .pricingOption {
  margin: 1.5em 0 2em;
}
.pricingPageWrapper .packageTypeWrapper .packageType .pricingOption .price-text {
  font-size: 3em;
}
.pricingPageWrapper .packageTypeWrapper .pricingDescription {
  color: #4E4E4E;
  font-size: 0.9em;
  font-weight: 300;
  line-height: 1.5;
  max-width: 276px;
  margin: 0.5em auto 2.5em;
}
.pricingPageWrapper .packageTypeWrapper .button, .pricingPageWrapper .packageTypeWrapper button {
  padding: 1em 4em;
}
.pricingPageWrapper .plusPackage {
  width: 36%;
}
@media screen and (min-width: 776px) and (max-width: 830px) {
  .pricingPageWrapper .plusPackage {
    width: 31.15%;
  }
}
@media screen and (min-width: 476px) and (max-width: 775px) {
  .pricingPageWrapper .plusPackage {
    margin: 0.5em 2%;
    width: 96%;
  }
}
@media screen and (max-width: 475px) {
  .pricingPageWrapper .plusPackage {
    margin: 0.5em 4%;
    width: 92%;
  }
}
.pricingPageWrapper .plusPackage .plusCallout {
  background: #dcf2f7;
  border: 1px solid #93c6d8;
  border-bottom: 0;
  color: #0099cc;
  padding-top: 0.7em;
  text-align: center;
}
@media screen and (min-width: 776px) {
  .pricingPageWrapper .plusPackage .plusCallout {
    margin-top: -1.75em;
  }
}
.pricingPageWrapper .plusPackage .packageType {
  background: #dcf2f7;
  border: 1px solid #93c6d8;
  border-top: 0;
}
.pricingPageWrapper .pricingEcommPos .packageType {
  min-height: 236px;
  padding: 1.2em 1em;
}
@media screen and (min-width: 476px) and (max-width: 775px) {
  .pricingPageWrapper .pricingEcommPos .packageType {
    float: left;
    margin: 0.5em 1%;
    width: 48%;
  }
}
@media screen and (max-width: 475px) {
  .pricingPageWrapper .pricingEcommPos .packageType {
    float: none;
    margin: 0.5em 2%;
    width: 96%;
  }
}
.pricingPageWrapper .pricingEcommPos .packageType:nth-of-type(1) {
  margin-bottom: 0.5em;
}
.pricingPageWrapper .pricingEcommPos .packageType h1.pricingTitle {
  font-size: 1.3em;
  margin-bottom: 0.6em;
}
.pricingPageWrapper .pricingEcommPos .packageType .pricingOption {
  margin: 1em 0;
}
.pricingPageWrapper .pricingEcommPos .packageType .pricingOption .price-text {
  font-size: 2.5em;
}

.additionalPlanOptions {
  float: left;
  margin: 4em 0 2em;
  width: 100%;
}
@media screen and (max-width: 620px) {
  .additionalPlanOptions {
    margin: 1em 0;
  }
}
.additionalPlanOptions .extraPlanOption {
  float: left;
  margin: 0 1.5%;
  text-align: center;
  width: 30.33%;
}
@media screen and (max-width: 620px) {
  .additionalPlanOptions .extraPlanOption {
    float: none;
    margin: 2em auto;
    max-width: 400px;
    padding: 0 2%;
    width: 96%;
  }
}
.additionalPlanOptions .extraPlanOption img {
  margin-bottom: 1em;
  max-width: 75px;
}
.additionalPlanOptions .extraPlanOption h3 {
  font-weight: 300;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 620px) {
  .additionalPlanOptions .extraPlanOption h3 {
    font-weight: 400;
  }
}
.additionalPlanOptions .extraPlanOption a {
  display: block;
  font-weight: 500;
  margin-top: 1.7em;
  text-decoration: underline;
}

@media screen and (min-width: 1091px) {
  .pricingPageRow .pricingPageWrapper .packageTypeWrapper {
    width: 23%;
  }
}
@media screen and (min-width: 776px) and (max-width: 1090px) {
  .pricingPageRow .pricingPageWrapper .packageTypeWrapper {
    margin: 1%;
    width: 48%;
  }
}
.pricingPageRow .pricingPageWrapper .packageTypeWrapper .packageType {
  min-height: 487px;
}
.pricingPageRow .pricingPageWrapper .packageTypeWrapper .packageType h1.pricingTitle {
  font-size: 1.6em;
  font-weight: 200;
}
.pricingPageRow .pricingPageWrapper .packageTypeWrapper .packageType h5.pricingSubtitle {
  color: #6f6f6f;
  font-size: 0.9em;
  margin: 0.5em auto 0;
  max-width: 220px;
  -webkit-font-smoothing: antialiased;
}
.pricingPageRow .pricingPageWrapper .packageTypeWrapper .packageType .price-text {
  font-size: 3.5em;
  font-weight: 400;
}
@media screen and (min-width: 1091px) {
  .pricingPageRow .pricingPageWrapper .plusPackage {
    width: 23%;
  }
}
@media screen and (min-width: 776px) and (max-width: 1090px) {
  .pricingPageRow .pricingPageWrapper .plusPackage {
    margin: 1%;
    width: 48%;
  }
}
.pricingPageRow .pricingPageWrapper .plusPackage .packageType {
  border-top: 1px solid #93c6d8;
}

.compareTable table {
  border: 0;
}
.compareTable thead {
  background: transparent;
  border-bottom: 1px solid #D8D8D8;
}
.compareTable tr {
  background: transparent;
  border-bottom: 1px solid #dbdbdb;
}
.compareTable th {
  font-weight: normal;
  font-size: 1.1em;
  text-align: center;
}
.compareTable th:first-child {
  text-align: left;
}
@media screen and (max-width: 580px) {
  .compareTable th {
    font-size: 1em;
    padding: 0.5em 0.3em;
  }
}
@media screen and (max-width: 400px) {
  .compareTable th {
    font-size: 0.8em;
  }
}
.compareTable td {
  color: #888;
  text-align: center;
}
.compareTable td.compareFeature {
  color: #000;
  text-align: left;
}
@media screen and (max-width: 400px) {
  .compareTable td {
    font-size: 0.8em;
  }
}
.compareTable table tr.even, .compareTable table tr.alt, .compareTable table tr:nth-of-type(even) {
  background: transparent;
}
.compareTable .checkmarkCon {
  background-image: url("../images/icons/checkmark-blue.svg");
  text-align: center;
}

.supportPricingWrapper {
  text-align: center;
  margin: 25px 0 20px;
}
.supportPricingWrapper .packageTypeWrapper {
  margin: 0;
  margin-bottom: 10px;
  width: 100%;
}
.supportPricingWrapper .packageTypeWrapper h1.pricingTitle {
  font-size: 1.6em;
  margin-top: 0.5em;
}
.supportPricingWrapper .packageTypeWrapper .packageType {
  background: #fff;
}
@media screen and (min-width: 836px) {
  .supportPricingWrapper .packageTypeWrapper .packageType {
    min-height: 425px;
  }
}
.supportPricingWrapper .packageTypeWrapper .pricingDescription {
  color: #6F6F6F;
  line-height: 1.4;
  max-width: 300px;
  margin: 2em auto 2em;
  text-align: center;
}

.tool.premiumSupportFeature {
  margin: 17px 0;
}
.tool.premiumSupportFeature h1 {
  margin-bottom: 10px;
}

.blogSearch button {
  float: right;
  width: 35%;
  font-size: 0.8125rem;
  padding: 0.9rem 2% 0.9rem 2%;
}
.blogSearch fieldset {
  border: none;
  padding: 0;
  margin: 10px 0;
}
.blogSearch input[name="searchText"] {
  height: 45px;
  float: left;
  width: 60% !important;
}

.v65-socialMediaBar {
  margin: 1em 0;
}

.blog-posts.blog-filter {
  margin-top: 1em;
}

input#isSubscribe {
  margin: 0 10px 10px 0;
}

.blogRow {
  max-width: 1100px;
}
@media only screen and (max-width: 40em) {
  .blogRow {
    padding: 15px;
  }
}

#v65-blogRecentPosts {
  list-style-type: none;
  margin-left: 0;
}
#v65-blogRecentPosts li {
  margin: 1em 0;
}

.v65-blogPostWrapper .v65-avatar {
  width: 8%;
  float: left;
  padding-right: 10px;
  padding-left: 10px;
}
@media only screen and (max-width: 40em) {
  .v65-blogPostWrapper .v65-avatar {
    display: none;
  }
}
.v65-blogPostWrapper .v65-avatar img {
  width: 68px;
}
.v65-blogPostWrapper .v65-avatar + .v65-clear {
  display: none;
}

.v65-blogPost {
  width: 100%;
  float: left;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 40px;
}
@media screen and (min-width: 641px) {
  .v65-blogPost {
    width: 92%;
  }
}
.v65-blogPost h1 {
  font-size: 2rem;
}
.v65-blogPost .v65-blogFooter {
  font-size: 12px;
  line-height: 30px;
}
.v65-blogPost .v65-blogFooter div {
  padding: 0 5px;
  display: inline-block;
}
.v65-blogPost .v65-blogFooter div:first-child {
  padding-left: 0;
}

#v65-subscribeWidget button {
  text-transform: uppercase;
}

.v65-blogPostDate a, .blog-filters a {
  color: #666666;
  font-weight: 400;
}
.v65-blogPostDate a:hover, .blog-filters a:hover {
  color: #5c5c5c;
}

.v65-blogPostDate {
  font-size: 14px;
}

.v65-socialMediaBar > div {
  padding: 0 5px;
  display: inline-block;
}
.v65-socialMediaBar > div:first-child {
  padding-left: 0;
}

.blog:filters > div {
  margin-bottom: 32px;
}
.blog:filters ul {
  font-size: 14px;
  list-style: none;
  margin-left: 8px;
}
.blog:posts li {
  margin-bottom: 32px;
}

.blog-filters {
  padding-right: 10px;
}
.blog-filters h3 {
  color: #191919;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 100;
  margin: 0;
}

#v65-blogSubscribeByRSS {
  background-size: 18px;
  display: inline-block;
  height: 18px;
  padding-left: 26px;
  vertical-align: middle;
}
#v65-blogSubscribeByRSS:before {
  content: "Subscribe ";
}

.blog-search form input {
  height: 45px;
  float: left;
  width: 60% !important;
}
.blog-search form [name="searchText"] {
  width: 60% !important;
}
.blog-search form button {
  height: 45px;
  float: right;
  width: 35% !important;
  font-size: 13px;
  padding-left: 0;
  padding-right: 0;
  text-transform: uppercase;
}
.blog-search fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

#fieldsetSubmit {
  float: right;
}

.v65-Paging {
  margin: 20px 0;
  text-align: center;
}
.v65-Paging#v65-PagingTop {
  display: none;
}
.v65-Paging ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.v65-Paging ul li {
  display: inline-block;
  padding: 5px;
}

.v65-blogCommentsTitle {
  margin-left: -30px;
  margin-right: -30px;
}
.v65-blogCommentsTitle:before {
  width: 8%;
  display: inline-block;
  content: " ";
}
@media only screen and (max-width: 40em) {
  .v65-blogCommentsTitle:before {
    display: none;
  }
}

.v65-commentWrapper {
  border-bottom: 1px solid #ccc;
  overflow: hidden;
  line-height: 1.6;
  padding-top: 10px;
}
.v65-commentWrapper .v65-clear {
  display: none;
}
.v65-commentWrapper .v65-avatar {
  width: 8%;
  float: left;
  padding-right: 10px;
  padding-left: 10px;
}
@media only screen and (max-width: 40em) {
  .v65-commentWrapper .v65-avatar {
    display: none;
  }
}

@media only screen and (max-width: 40em) {
  .blogRow #v65-commentFormWrapper form {
    width: 100%;
  }
}

@media only screen and (max-width: 40em) {
  #fieldsetSubmit {
    width: 100%;
    margin-top: 10px;
  }
}

.v65-comment {
  width: 88%;
  float: left;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 40px;
}

.v65-commentDate {
  font-size: .85em;
}

.v65-commentName {
  font-weight: bold;
}

.v65-commentText {
  padding: 1em 0 0;
}

#v65-commentFormWrapper form {
  width: 80%;
}

#v65-commentFormWrapper #Comments {
  height: 140px;
  width: 95%;
}

/* ================================================
	 404 Page
================================================ */
.feature-404 {
  height: 300px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.feature-404 .callout {
  margin-top: 75px;
  text-align: center;
}
.feature-404 .callout h1, .feature-404 .callout h2 {
  color: #191919;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.feature-404 .callout h1 {
  font-size: 56px;
}
@media only screen and (min-width: 40.063em) {
  .feature-404 .callout h1 {
    font-size: 72px;
  }
}
.feature-404 .callout h2 {
  font-size: 24px;
}
@media only screen and (min-width: 40.063em) {
  .feature-404 .callout h2 {
    font-size: 30px;
  }
}

.sitemap .row, .sitemap .v65-blogPostWrapper, .sitemap .v65-commentWrapper {
  -webkit-column-count: 3;
  /* Chrome, Safari, Opera */
  -moz-column-count: 3;
  /* Firefox */
  column-count: 3;
}
.sitemap .row ul li li, .sitemap .v65-blogPostWrapper ul li li, .sitemap .v65-commentWrapper ul li li {
  line-height: 26px;
}
.sitemap .row ul li li li, .sitemap .v65-blogPostWrapper ul li li li, .sitemap .v65-commentWrapper ul li li li {
  display: none;
}

.events .event {
  margin-bottom: 20px;
}
.events h3 {
  color: #191919;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 100;
  margin-top: 10px;
  margin-bottom: 0px;
}

.pastEvents {
  margin-top: 10px;
}
.pastEvents ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.pastEvents ul li {
  color: #191919;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 100;
  margin: 0;
  font-size: 20px;
}

.event-topics .topic {
  margin-bottom: 20px;
}

.event-register {
  padding-bottom: 40px;
  padding-top: 40px;
}
.event-register button {
  margin-bottom: 0;
}

.signUpPricingWrapper {
  clear: both;
}
.signUpPricingWrapper.litePricingWrapper {
  text-align: center;
}
.signUpPricingWrapper.freeSiteWrapper {
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (max-width: 580px) {
  .signUpPricingWrapper .packageTypeWrapper {
    margin-bottom: 0;
  }
}
.signUpPricingWrapper .packageTypeWrapper.liteSignUpPackage, .signUpPricingWrapper .packageTypeWrapper.freeSitePackage {
  display: inline-block;
  float: none;
}
.signUpPricingWrapper .packageTypeWrapper.liteSignUpPackage.litePackageDetails .pricingTitle, .signUpPricingWrapper .packageTypeWrapper.freeSitePackage.litePackageDetails .pricingTitle {
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 0.75em;
}
.signUpPricingWrapper .packageTypeWrapper.liteSignUpPackage.litePackageDetails p, .signUpPricingWrapper .packageTypeWrapper.freeSitePackage.litePackageDetails p {
  color: #656565;
  font-size: 0.9em;
  line-height: 1.4;
}
.signUpPricingWrapper .startingPrice .packageType {
  background: #dcf2f7;
  border: 1px solid #93c6d8;
  position: relative;
}
.signUpPricingWrapper .tierPrice .pricingOption {
  margin-top: 1em;
}
@media screen and (min-width: 581px) {
  .signUpPricingWrapper .tierPrice .pricingOption {
    margin-top: 3.6em;
  }
}
.signUpPricingWrapper .packageType {
  border: 0;
  min-height: initial;
  padding: 1.5em 6% 0.7em;
}
@media screen and (max-width: 580px) {
  .signUpPricingWrapper .packageType {
    min-height: initial !important;
    padding-bottom: 0;
  }
}
.signUpPricingWrapper .packageType h1.pricingTitle {
  margin-bottom: 1em;
}
.signUpPricingWrapper .packageType .pricingOption .price-text {
  font-size: 2.2em;
}
.signUpPricingWrapper .packageType .pricingOption .featureTitle {
  color: #9A9A9A;
  font-size: 0.85em;
  font-weight: 300;
  line-height: 1.1;
}
.signUpPricingWrapper .packageType .pricingOption p {
  margin-bottom: 0;
}
.signUpPricingWrapper .packageType .tierDetailsWrapper {
  margin-top: 1em;
}
.signUpPricingWrapper .packageType .tierDetailsWrapper .moreDetailsTitle {
  margin-top: 0.25em;
}
@media screen and (max-width: 580px) {
  .signUpPricingWrapper .packageType .tierDetailsWrapper .overageTitle {
    display: none;
  }
}
@media screen and (min-width: 581px) {
  .signUpPricingWrapper .packageType .tierDetailsWrapper .overageTitle {
    cursor: pointer;
    color: #333;
    display: inline-block;
    font-size: 0.8em;
    margin-top: 0.5em;
    margin-bottom: 0.7em;
    padding-right: 15px;
    position: relative;
  }
  .signUpPricingWrapper .packageType .tierDetailsWrapper .overageTitle:after {
    content: "+";
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
  }
  .signUpPricingWrapper .packageType .tierDetailsWrapper .overageTitle.opened:after {
    content: "-";
  }
}
.signUpPricingWrapper .packageType .tierDetailsWrapper .overageDetailsWrapper {
  position: relative;
}
@media screen and (min-width: 581px) {
  .signUpPricingWrapper .packageType .tierDetailsWrapper .overageDetails {
    display: none;
    overflow: hidden;
  }
}
@media screen and (max-width: 580px) {
  .signUpPricingWrapper .packageType .tierDetailsWrapper .overageDetails {
    display: block !important;
    overflow: visible !important;
    margin-top: 1.5em;
  }
}
.signUpPricingWrapper .packageType .tierDetailsWrapper .overageDetails p {
  font-size: 0.9em;
}

.signup {
  position: relative;
  padding: 0 10px 3em 10px;
}
.signup section {
  background: #fff;
  border: 0;
  padding: 0;
}
.signup section .row, .signup section .v65-blogPostWrapper, .signup section .v65-commentWrapper {
  border-bottom: 1px solid #e2e2e2;
  padding: 10px 0;
}
.signup section .row .row, .signup section .v65-blogPostWrapper .row, .signup section .v65-commentWrapper .row, .signup section .row .v65-blogPostWrapper, .signup section .v65-blogPostWrapper .v65-blogPostWrapper, .signup section .v65-commentWrapper .v65-blogPostWrapper, .signup section .row .v65-commentWrapper, .signup section .v65-blogPostWrapper .v65-commentWrapper, .signup section .v65-commentWrapper .v65-commentWrapper {
  border: 0;
}
@media only screen and (max-width: 40.062em) {
  .signup section .row h2, .signup section .v65-blogPostWrapper h2, .signup section .v65-commentWrapper h2 {
    font-size: 1.1em;
  }
}
.signup .box {
  padding: 36px 18%;
  border: 1px solid #e5e5e5;
  background: #fff;
  margin: 10px -20px;
  position: relative;
}
.signup .box h4 {
  font-size: 1.2rem;
  font-weight: 300;
}
.signup .box .loading {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.7);
}
.signup .box .loading span {
  position: absolute;
  top: 110px;
  left: 0;
  right: 0;
}
.signup .box .price {
  color: #7D7D7D;
  display: block;
  font-size: 16px;
  font-weight: 300;
}
.signup .box .plus {
  font-size: 20px;
}
.signup .box .description {
  color: #7D7D7D;
  display: block;
  font-size: 16px;
}
.signup .box input {
  position: absolute;
  top: 10px;
  left: 10px;
}
.signup .box:hover {
  background: #fff;
}
.signup .signupSection {
  margin-bottom: 20px;
}
.signup .selected {
  background: #dcf2f7;
  border: 1px solid #93c6d8;
}
.signup .selected:hover {
  background: #dcf2f7;
}
.signup .signupRow {
  color: #4E4E4E;
  font-weight: 400;
  padding: 5px 0;
  -webkit-font-smoothing: antialiased;
}
.signup .signupRow strong {
  font-weight: 500;
}
.signup .signupRow .template-color-option {
  padding: 0;
}
.signup .signupRow .grey-button {
  background: #fff;
  color: #0099cc;
  font-size: 1em;
  margin: 5px 0;
  padding: 0;
  text-decoration: underline;
  text-align: left;
}
.signup .loading {
  position: fixed;
}
.signup .templateDetails {
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  padding: 20px 0;
  margin-bottom: 1.25em;
}

.setupFees {
  clear: both;
  display: block;
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
  padding: 2em 0;
}

.terms-and-conditions {
  border: solid 1px #dddddd;
  padding: 5px;
  background: #fff;
  height: 300px;
  overflow-y: scroll;
}
.terms-and-conditions h1 {
  font-size: 24px;
}

.shipCompliantForm {
  display: none;
  background-color: #efefef;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
}

.signUp2colRow {
  clear: both;
}

.searchItemHeader {
  margin-top: 10px;
  padding-top: 10px;
  font-size: 24px;
  margin-bottom: 5px;
}

.searchItem {
  margin-bottom: 10px;
}

.searchPagination {
  font-size: 14px;
  margin-top: 15px;
  padding-top: 10px;
}

.google-maps {
  position: relative;
  max-height: 480px;
  overflow: hidden;
}
@media screen and (min-width: 1001px) {
  .google-maps {
    min-height: 480px;
    max-height: 480px;
  }
}
@media screen and (max-width: 1000px) and (min-width: 768px) {
  .google-maps {
    min-height: 400px;
  }
}
@media screen and (max-width: 767px) and (min-width: 401px) {
  .google-maps {
    min-height: 250px;
  }
}
@media screen and (max-width: 400px) {
  .google-maps {
    min-height: 200px;
  }
}

.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

#map-canvas {
  margin: 0;
  padding: 0;
  position: relative;
  max-height: 480px;
  overflow: hidden;
}
@media screen and (min-width: 1001px) {
  #map-canvas {
    min-height: 480px;
    max-height: 480px;
  }
}
@media screen and (max-width: 1000px) and (min-width: 768px) {
  #map-canvas {
    min-height: 400px;
  }
}
@media screen and (max-width: 767px) and (min-width: 401px) {
  #map-canvas {
    min-height: 250px;
  }
}
@media screen and (max-width: 400px) {
  #map-canvas {
    min-height: 200px;
  }
}
#map-canvas img {
  max-width: none;
}

.credit-card-expiry-year {
  padding-right: 0;
}

/*   ===================================================================================================
     5. Blog
======================================================================================================== */
/*   ===================================================================================================
     6. Buttons
======================================================================================================== */
/* ================================================
	 Buttons
================================================ */
button, .button {
  border-radius: 3px;
}
@media only screen and (max-width: 40em) {
  button, .button {
    padding-right: 5px;
    padding-left: 5px;
    width: 100%;
  }
}
button.secondary, .button.secondary {
  border-color: #666666;
  border-width: 1px;
}

.button-feature {
  margin-top: 15px;
}

.grey-button {
  background: #727272;
}

.green-button {
  background: #65b871;
}
.green-button:active, .green-button:hover, .green-button:focus {
  background: #54995E;
}

.button.tiny, button.tiny {
  font-size: 0.9rem;
}

/*   ===================================================================================================
     7. Footer
======================================================================================================== */
footer {
  background: #121212;
  font-weight: 400;
  padding-bottom: 68px;
  padding-top: 68px;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 40em) {
  footer {
    padding: 0;
    padding-top: 5px;
    text-align: center;
  }
}
@media screen and (max-width: 1000px) and (min-width: 641px) {
  footer nav.hide-for-small {
    width: 90%;
    margin: 0 auto;
  }
}
footer .mobile-menu ul li {
  border-bottom: 1px solid #666666;
  color: #fffbf2;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 34px;
}
footer .mobile-menu ul li a {
  color: #A7A7A7;
}
footer .mobile-menu ul li:hover {
  color: white;
}
footer ul {
  list-style: none;
}
footer ul.row, footer ul.v65-blogPostWrapper, footer ul.v65-commentWrapper {
  max-width: 1200px;
}
footer a {
  color: #6F6F6F;
}
footer a:hover {
  color: #929292;
}
footer nav {
  text-align: center;
}
@media only screen and (min-width: 40.063em) {
  footer nav {
    text-align: left;
  }
}
footer nav ul {
  font-size: 13px;
  margin: 0;
}
footer nav ul ul {
  margin: 0;
}
footer nav li {
  margin-left: 0;
}
@media only screen and (max-width: 40em) {
  footer nav li.medium-5-up {
    padding: 0;
  }
}
@media only screen and (min-width: 40.063em) {
  footer nav li {
    margin-bottom: 48px;
    padding: inherit;
    text-align: left;
  }
}
footer nav li li {
  line-height: 2;
  margin-bottom: 0;
}
footer nav a {
  display: block;
}
footer .sub-nav-title {
  border-bottom: 1px solid #212121;
  color: #929292;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-bottom: 5px;
}
footer .sub-nav-title:hover {
  color: #CCCCCC;
}
footer .secondary-nav {
  font-size: 13px;
  margin: 0 0 8px;
}
footer .secondary-nav li {
  display: inline-block;
  margin-right: 22px;
}
@media only screen and (max-width: 40em) {
  footer .secondary-nav {
    text-align: center;
    line-height: 44px;
  }
}
@media screen and (max-width: 1000px) and (min-width: 641px) {
  footer .legal {
    width: 90%;
    margin: 0 auto;
  }
}
footer .legal.row, footer .legal.v65-blogPostWrapper, footer .legal.v65-commentWrapper {
  max-width: 1200px;
}
footer .legal p {
  color: #666666;
  font-size: 13px;
  font-weight: 100;
}

@media only screen and (min-width: 40.063em) {
  .contact-us {
    margin-bottom: 2rem;
  }
}

.social-media ul {
  margin-left: 0;
}
.social-media li {
  display: inline-block;
  margin-right: 7px;
}
.social-media img {
  height: 24px;
  width: 24px;
}
