@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.fade-in {
  -webkit-animation: fadeIn ease-in .5s forwards;
     -moz-animation: fadeIn ease-in .5s forwards;
          animation: fadeIn ease-in .5s forwards;
  -webkit-animation-play-state: running;
     -moz-animation-play-state: running;
          animation-play-state: running;
  opacity: 0;
}

.no-cssanimations .fade-in {
  opacity: 1;
}

@-webkit-keyframes slide-up {
  to {
    top: 0;
  }
}

@-moz-keyframes slide-up {
  to {
    top: 0;
  }
}

@keyframes slide-up {
  to {
    top: 0;
  }
}

.slide-up {
  position: relative;
  -moz-transition: all .6s ease-in;
       transition: all .6s ease-in;
}

.csstransitions .slide-up.is-paused {
  -webkit-transform: translateY(20px);
     -moz-transform: translateY(20px);
          transform: translateY(20px);
}

@-webkit-keyframes pulsate-orange {
  0% {
    box-shadow: none;
  }

  50% {
    box-shadow: 0 0 20px 4px rgba(253,250,209,.25);
  }

  100% {
    box-shadow: none;
  }
}

@-moz-keyframes pulsate-orange {
  0% {
    box-shadow: none;
  }

  50% {
    box-shadow: 0 0 20px 4px rgba(253,250,209,.25);
  }

  100% {
    box-shadow: none;
  }
}

@keyframes pulsate-orange {
  0% {
    box-shadow: none;
  }

  50% {
    box-shadow: 0 0 20px 4px rgba(253,250,209,.25);
  }

  100% {
    box-shadow: none;
  }
}

.pulsate-orange {
  -webkit-animation: pulsate-orange ease-in 3s infinite;
     -moz-animation: pulsate-orange ease-in 3s infinite;
          animation: pulsate-orange ease-in 3s infinite;
}

@-webkit-keyframes shrink-rotate {
  from {
    -webkit-transform: rotate(-60deg) scale(1.5);
            transform: rotate(-60deg) scale(1.5);
  }
  to {
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
  }
}

@-moz-keyframes shrink-rotate {
  from {
    -moz-transform: rotate(-60deg) scale(1.5);
         transform: rotate(-60deg) scale(1.5);
  }
  to {
    -moz-transform: rotate(0) scale(1);
         transform: rotate(0) scale(1);
  }
}

@keyframes shrink-rotate {
  from {
    -webkit-transform: rotate(-60deg) scale(1.5);
       -moz-transform: rotate(-60deg) scale(1.5);
            transform: rotate(-60deg) scale(1.5);
  }
  to {
    -webkit-transform: rotate(0) scale(1);
       -moz-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
  }
}

.shrink-rotate {
  -webkit-animation: shrink-rotate ease-in-out .5s 1 forwards;
     -moz-animation: shrink-rotate ease-in-out .5s 1 forwards;
          animation: shrink-rotate ease-in-out .5s 1 forwards;
  -webkit-transform: rotate(-60deg) scale(1.5);
     -moz-transform: rotate(-60deg) scale(1.5);
          transform: rotate(-60deg) scale(1.5);
}

.no-cssanimations .shrink-rotate {
  -webkit-transform: rotate(0) scale(1);
     -moz-transform: rotate(0) scale(1);
          transform: rotate(0) scale(1);
}

@-webkit-keyframes winky-poo {
  0% {
    opacity: 0;
  }

  49% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  51% {
    opacity: 0;
  }

  52% {
    opacity: 1;
  }

  53% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes winky-poo {
  0% {
    opacity: 0;
  }

  49% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  51% {
    opacity: 0;
  }

  52% {
    opacity: 1;
  }

  53% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes winky-poo {
  0% {
    opacity: 0;
  }

  49% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  51% {
    opacity: 0;
  }

  52% {
    opacity: 1;
  }

  53% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.wink {
  position: relative;
}

.wink:after {
  -webkit-animation: winky-poo ease 8s infinite 5s;
     -moz-animation: winky-poo ease 8s infinite 5s;
          animation: winky-poo ease 8s infinite 5s;
  background: #fff;
  content: "";
  display: block;
  height: 20px;
  left: 60px;
  opacity: 0;
  position: absolute;
  top: 60px;
  width: 20px;
  z-index: 1000;
}

@-webkit-keyframes slide-up-rotate {
  to {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    transform: rotate(25deg);
    right: 0;
    top: 25px;
  }
}

@-moz-keyframes slide-up-rotate {
  to {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    transform: rotate(25deg);
    right: 0;
    top: 25px;
  }
}

@keyframes slide-up-rotate {
  to {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    transform: rotate(25deg);
    right: 0;
    top: 25px;
  }
}

.slide-up-rotate {
  -webkit-animation: slide-up-rotate cubic-bezier(0.165,.84,.44,1) .7s forwards;
     -moz-animation: slide-up-rotate cubic-bezier(0.165,.84,.44,1) .7s forwards;
          animation: slide-up-rotate cubic-bezier(0.165,.84,.44,1) .7s forwards;
  -webkit-transform: rotate(-25deg);
     -moz-transform: rotate(-25deg);
          transform: rotate(-25deg);
  right: 200px;
  top: 400px;
}

.no-cssanimations .slide-up-rotate {
  -webkit-transform: rotate(0) scale(1);
     -moz-transform: rotate(0) scale(1);
          transform: rotate(0) scale(1);
  top: 25px;
  right: 0;
}

/* Grey Striped block */
.block-1 {
  background: #eeeeee url("nib-styles/blocks/0.2.1/images/bg-grey-stripes.png");
}

/* Green block with radial gradient */
.block-2 {
  -webkit-font-smoothing: antialiased;
  color: #fff;
  background-color: #007500;
  background-image: -moz-radial-gradient(at bottom, #5bb602 0, #007500 60%);
  background-image: radial-gradient(at bottom, #5bb602 0, #007500 60%);
}

/* dark grey block */
.block-3 {
  -webkit-font-smoothing: antialiased;
  background-color: #363636;
  background-image: -moz-linear-gradient(top, #363636 0, #444444 40%);
  background-image: linear-gradient(to bottom, #363636 0, #444444 40%);
  color: #fff;
}

/* White block */
.block-4 {
  background: #fff;
  position: relative;
}

/* White block */
.block-5 {
  background-color: #fff;
  background-image: -moz-linear-gradient(top, white 0, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 0, #eeeeee 100%);
  box-shadow: 0 0 1px 1px #dadada;
  border: 1px solid #fff;
}

.block-5:before,
.block-5:after {
  content: "";
  display: table;
}

.block-5:after {
  clear: both;
}

.no-boxshadow .block-5 {
  border-color: #dadada;
}

.block-5 .block__footer {
  background: #eeeeee;
  border-top: 1px solid #fff;
  padding: 20px;
  overflow: hidden;
  display: block;
  text-align: right;
  height: 30px;
  vertical-align: middle;
  position: relative;
  line-height: 30px;
}

.block-6 {
  -webkit-font-smoothing: antialiased;
  color: #fff;
  background-color: #007500;
  background-image: -moz-radial-gradient(at bottom, #5bb602 0, #007500 60%);
  background-image: radial-gradient(at bottom, #5bb602 0, #007500 60%);
}

.block-7 {
  background: #007500;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

.block-8 {
  background: #444;
  background: -moz-linear-gradient(top, #444444, #333333);
  background: linear-gradient(to bottom, #444444, #333333);
}

.block-9 {
    background-color: #5c5c5c;
    border-top: 1px solid #999;
}

.mediaqueries .block-9 {
    /* there is a backup background image above, this wasn't working in IE7,8 previously anyway. */
    background-image: url("nib-styles/blocks/0.2.1/images/transparent-grey-stripes.png"), -moz-radial-gradient(at top, rgba(124, 124, 124, 0.7) 0, #5f5f5f 60%);
    background-image: url("nib-styles/blocks/0.2.1/images/transparent-grey-stripes.png"), radial-gradient(at top, rgba(124, 124, 124, 0.7) 0, #5f5f5f 60%);
}

.block__border-dashed,
.block--dashed {
  border-top: 1px dashed #c5c5c5;
}

.block__border-solid,
.block--solid {
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  position: relative;
}

.block__border-solid:before,
  .block--solid:before {
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}


/**
 * Basic button style
 * All other buttons require this class
 */

.btn {
  text-rendering: optimizeLegibility;
  font-smoothing: antialiased;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  background: #1F7C07;
  background: -moz-linear-gradient(top, #2bac0a, #1f7c07);
  background: linear-gradient(to bottom,#2bac0a,#1f7c07);
  appearance: none;
  border-radius: 3px;
  border: 1px solid #196406;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 1px 0 rgba(0, 0, 0, 0.1);
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  font-size: 13px;
  font-family: inherit;
  line-height: 30px;
  outline: 0;
  padding: 0 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 1px #196406;
  vertical-align: middle;
  white-space: nowrap;
}

.btn:hover,
.btn:focus,
.btn:active {
  text-decoration: none;
}

.btn:hover {
  color: #FFF;
  background: #259408;
  background: -moz-linear-gradient(top, #31c40b, #1f7c07);
  background: linear-gradient(to bottom,#31c40b,#1f7c07);
}

.btn:active {
  color: #FFF;
  background: #1F7C07;
  box-shadow: none;
}

.btn[disabled] {
  opacity: 0.5;
  cursor: default;
}

/**
 * Remove excess padding and border in Firefox 4+
 */

.btn::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Icons used within buttons
 */

.btn i {
  display: inline-block;
  margin-top: -2px;
}

.btn i:first-child {
  margin-right: 3px;
}

.btn i:last-child {
  margin-left: 3px;
}

/**
 * Makes the button uppercase. Useful for important actions
 */

.btn--uppercase {
  text-transform: uppercase;
}

/**
 * Tighter button than normal. Usually used with icons
 */

.btn--narrow {
  padding: 0 12px;
}

/**
 * Wider button than normal
 */

.btn--wide {
  min-width: 100px;
}

/**
 * Removes the border from the button making the plain button style
 * sit better on darker backgrounds
 */

.btn--borderless {
  border: 0;
}

/**
 * Button with a thick dark border for use on light backgrounds
 */

.btn--bordered {
  box-shadow: 0 1px 0 rgba(255,255,255, 0.5) inset, 0 1px 0 rgba(0,0,0, 0.1), 0 0 0 5px rgba(102,102,102, 0.2);
}

/**
 * Button with a thick light border for use on darker backgrounds
 */

.btn--bordered-light {
  box-shadow: 0 1px 0 rgba(255,255,255, 0.5) inset, 0 1px 0 rgba(0,0,0, 0.1), 0 0 0 5px rgba(255,255,255, 0.1);
}

/**
 * Button with only an icon and no text. Use buttons as normal but
 * wrap the button text in a span and add an icon inside. Placing
 * the icon before or after the text will determine it's position
 */

.btn--icon {
  padding-left: 10px;
  padding-right: 10px;
}

/**
 * Buttons with an icon on the left and text
 */

.btn--icon-text {
  text-align: left;
}

/**
 * Adds a drop shadow to the button
 */

.btn--shadow {
  box-shadow: 0 0 10px rgba(0,0,0, 0.3);
  border: 0;
}

/**
 * Darker button style
 */

.btn--dark {
  background: #444;
  color: #fff;
  box-shadow: 0 0 0 5px rgba(102,102,102, 0.2);
  text-shadow: none;
  border: 0;
}

.btn--dark:hover {
  background: #515151;
}

/**
 * Smaller button
 */

.btn--small {
  font-size: 11px;
  line-height: 25px;
}

.btn--small.btn--narrow {
  padding-left: 7px;
  padding-right: 7px;
}

.btn--small.btn--uppercase {
  font-size: 10px;
}

/**
 * Larger button
 */

.btn--large {
  font-size: 24px;
  line-height: 50px;
  font-weight: 300;
  padding: 0 40px;
}

/**
 * Full-width button
 */

.btn--full {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.lt-ie8 .btn--full {
  width: auto;
}

/**
 * Slightly larger button
 */

.btn--medium {
  font-size: 16px;
  line-height: 38px;
}

.btn--medium.btn--wide {
  min-width: 170px;
}

/**
 * Hack
 * @todo Remove this
 */
.btn--medium .icon-circle-white-arrow-right {
  top: 2px;
}

/**
 * Inverse button style
 */

.btn--inverse {
  background: #666;
  background: -moz-linear-gradient(top, #8c8c8c, #666);
  background: linear-gradient(to bottom,#8c8c8c,#666);
  color: #FFF;
  border: 1px solid #4D4D4D;
  text-shadow: 0 1px 1px #4D4D4D;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset,0 1px 0 rgba(0, 0, 0, 0.2);
}

.btn--inverse:hover,
.btn--inverse:active {
  background: #8C8C8C;
  background: -moz-linear-gradient(top, #a6a6a6, #666);
  background: linear-gradient(to bottom,#a6a6a6,#666);
}

.btn--inverse.btn--medium {
  line-height: 38px;
}

/**
 * Primary button style
 */

.btn--primary,
.btn--primary[disabled]:active,
.btn--primary[disabled]:hover {
  background: #FE9C00;
  background: -moz-linear-gradient(top, #fec600, #fe9c00);
  background: linear-gradient(to bottom,#fec600,#fe9c00);
  border: 1px solid #CB7D00;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset,0 1px 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 1px #CB7D00;
}

.btn--primary:hover {
  background: #E5B200;
  background: -moz-linear-gradient(top, #ffd232, #fe9c00);
  background: linear-gradient(to bottom,#ffd232,#fe9c00);
}

.btn--primary:active {
  color: #fff;
  background: #CB7D00;
}

.btn--primary.btn--medium {
  line-height: 38px;
}

/**
 * Transparent button. It has the hit area of a button, but
 * has no background or look like one at all
 */

.btn--transparent {
  -moz-transition: opacity .2s;
       transition: opacity .2s;
  line-height: 30px;
  padding: 0 20px;
  border: 0;
  opacity: .7;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(0, 0, 0, 0);
  text-shadow: none;
  box-shadow: none;
}

.btn--transparent:hover,
.btn--transparent:active {
  opacity: 1;
  background: transparent;
}

.btn--transparent i {
  margin-top: -3px;
}

/**
 * Button with a grey border and text that appears on the left
 */

.btn-label {
  padding: 5px;
  background: #e6e6e6;
  border-radius: 5px;
  overflow: hidden;
  float: right;
}

.btn-label__text {
  text-rendering: optimizeLegibility;
  font-smoothing: antialiased;
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  color: #666;
  padding: 0 20px;
}

.btn-label__text:empty {
  display: none;
}

.btn-label__button {
  float: right;
}

/**
 * Secondary style
 * Extended by btn--panel. This will need to be removed
 * later and just used as classes in the DOM
 */

.btn--secondary,
.btn--panel,
.btn--info {
  background: #FFF;
  background: -moz-linear-gradient(top, #fff, #ddd);
  background: linear-gradient(to bottom,#fff,#ddd);
  border: 1px solid #B9B9B9;
  color: #666;
  text-shadow: 0 1px 0 #FFF;
}

.btn--secondary:hover,
.btn--secondary:active,
.btn--panel:hover,
.btn--panel:active,
.btn--info:hover,
.btn--info:active {
  color: #666;
  background: #FFF;
  background: -moz-linear-gradient(top, #fff, #e5e5e5);
  background: linear-gradient(to bottom,#fff,#e5e5e5);
}

.btn--secondary.is-disabled {
  background: #DDD;
  color: #808080;
  box-shadow: none;
  text-shadow: none;
}

.no-cssgradients .btn--secondary,
.no-cssgradients .btn--panel,
.no-cssgradients .btn--info {
  background: url('nib-styles/buttons/0.1.4/images/grey.png') bottom left repeat-x;
}

.no-cssgradients .btn--secondary.is-disabled {
  background: #ddd;
}

.btn--secondary.btn--small,
.btn--panel.btn--small,
.btn--info.btn--small {
  line-height: 28px;
  padding: 0 10px;
}

/**
 * Button displays as a flat panel
 */

.btn--panel {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
  padding: 0 10px;
  border-radius: 0;
}

.btn--panel i {
  margin-top: -3px;
  margin-left: 0;
}

/**
 * Button for showing more information
 */

.btn--info {
  font-size: 11px;
  line-height: 25px;
  border-radius: 0;
  line-height: 20px;
  padding: 0 10px;
}

.btn--info:after {
  display: block;
  content: '';
  position: relative;
  right: -3px;
  top: -1px;
  display: inline-block;
  vertical-align: middle;
  background: url('nib-styles/buttons/0.1.4/images/chevron.png') no-repeat top left;
  height: 12px;
  width: 12px;
}

.btn--info.is-active:after {
  background-position: bottom left;
}

/**
 * Inactive state
 */

.btn-group .btn-group__active {
  display: none;
}

/**
 * Active states
 */

.btn-group.is-active .btn-group__inactive {
  display: none;
}

.btn-group.is-active .btn-group__active {
  display: inline-block;
}

.flush {
  padding: 0;
  margin: 0; }

.pad-small {
  padding: 10px !important; }

.pad-top-small {
  padding-top: 10px !important; }

.pad-right-small {
  padding-right: 10px !important; }

.pad-bottom-small {
  padding-bottom: 10px !important; }

.pad-left-small {
  padding-left: 10px !important; }

.pad-vert-small {
  padding-top: 10px !important;
  padding-bottom: 10px !important; }

.pad-horz-small {
  padding-right: 10px !important;
  padding-left: 10px !important; }

.inset-small {
  margin: 10px !important; }

.inset-top-small {
  margin-top: 10px !important; }

.inset-right-small {
  margin-right: 10px !important; }

.inset-bottom-small {
  margin-bottom: 10px !important; }

.inset-left-small {
  margin-left: 10px !important; }

.inset-vert-small {
  margin-top: 10px !important;
  margin-bottom: 10px !important; }

.inset-horz-small {
  margin-right: 10px !important;
  margin-left: 10px !important; }

.outset-small {
  margin: -10px !important; }

.outset-top-small {
  margin-top: -10px !important; }

.outset-right-small {
  margin-right: -10px !important; }

.outset-bottom-small {
  margin-bottom: -10px !important; }

.outset-left-small {
  margin-left: -10px !important; }

.outset-vert-small {
  margin-top: -10px !important;
  margin-bottom: -10px !important; }

.outset-horz-small {
  margin-right: -10px !important;
  margin-left: -10px !important; }

.pad-normal {
  padding: 20px !important; }

.pad-top-normal {
  padding-top: 20px !important; }

.pad-right-normal {
  padding-right: 20px !important; }

.pad-bottom-normal {
  padding-bottom: 20px !important; }

.pad-left-normal {
  padding-left: 20px !important; }

.pad-vert-normal {
  padding-top: 20px !important;
  padding-bottom: 20px !important; }

.pad-horz-normal {
  padding-right: 20px !important;
  padding-left: 20px !important; }

.inset-normal {
  margin: 20px !important; }

.inset-top-normal {
  margin-top: 20px !important; }

.inset-right-normal {
  margin-right: 20px !important; }

.inset-bottom-normal {
  margin-bottom: 20px !important; }

.inset-left-normal {
  margin-left: 20px !important; }

.inset-vert-normal {
  margin-top: 20px !important;
  margin-bottom: 20px !important; }

.inset-horz-normal {
  margin-right: 20px !important;
  margin-left: 20px !important; }

.outset-normal {
  margin: -20px !important; }

.outset-top-normal {
  margin-top: -20px !important; }

.outset-right-normal {
  margin-right: -20px !important; }

.outset-bottom-normal {
  margin-bottom: -20px !important; }

.outset-left-normal {
  margin-left: -20px !important; }

.outset-vert-normal {
  margin-top: -20px !important;
  margin-bottom: -20px !important; }

.outset-horz-normal {
  margin-right: -20px !important;
  margin-left: -20px !important; }

.pad-medium {
  padding: 30px !important; }

.pad-top-medium {
  padding-top: 30px !important; }

.pad-right-medium {
  padding-right: 30px !important; }

.pad-bottom-medium {
  padding-bottom: 30px !important; }

.pad-left-medium {
  padding-left: 30px !important; }

.pad-vert-medium {
  padding-top: 30px !important;
  padding-bottom: 30px !important; }

.pad-horz-medium {
  padding-right: 30px !important;
  padding-left: 30px !important; }

.inset-medium {
  margin: 30px !important; }

.inset-top-medium {
  margin-top: 30px !important; }

.inset-right-medium {
  margin-right: 30px !important; }

.inset-bottom-medium {
  margin-bottom: 30px !important; }

.inset-left-medium {
  margin-left: 30px !important; }

.inset-vert-medium {
  margin-top: 30px !important;
  margin-bottom: 30px !important; }

.inset-horz-medium {
  margin-right: 30px !important;
  margin-left: 30px !important; }

.outset-medium {
  margin: -30px !important; }

.outset-top-medium {
  margin-top: -30px !important; }

.outset-right-medium {
  margin-right: -30px !important; }

.outset-bottom-medium {
  margin-bottom: -30px !important; }

.outset-left-medium {
  margin-left: -30px !important; }

.outset-vert-medium {
  margin-top: -30px !important;
  margin-bottom: -30px !important; }

.outset-horz-medium {
  margin-right: -30px !important;
  margin-left: -30px !important; }

.pad-large {
  padding: 40px !important; }

.pad-top-large {
  padding-top: 40px !important; }

.pad-right-large {
  padding-right: 40px !important; }

.pad-bottom-large {
  padding-bottom: 40px !important; }

.pad-left-large {
  padding-left: 40px !important; }

.pad-vert-large {
  padding-top: 40px !important;
  padding-bottom: 40px !important; }

.pad-horz-large {
  padding-right: 40px !important;
  padding-left: 40px !important; }

.inset-large {
  margin: 40px !important; }

.inset-top-large {
  margin-top: 40px !important; }

.inset-right-large {
  margin-right: 40px !important; }

.inset-bottom-large {
  margin-bottom: 40px !important; }

.inset-left-large {
  margin-left: 40px !important; }

.inset-vert-large {
  margin-top: 40px !important;
  margin-bottom: 40px !important; }

.inset-horz-large {
  margin-right: 40px !important;
  margin-left: 40px !important; }

.outset-large {
  margin: -40px !important; }

.outset-top-large {
  margin-top: -40px !important; }

.outset-right-large {
  margin-right: -40px !important; }

.outset-bottom-large {
  margin-bottom: -40px !important; }

.outset-left-large {
  margin-left: -40px !important; }

.outset-vert-large {
  margin-top: -40px !important;
  margin-bottom: -40px !important; }

.outset-horz-large {
  margin-right: -40px !important;
  margin-left: -40px !important; }

.pad-tiny {
  padding: 5px !important; }

.pad-top-tiny {
  padding-top: 5px !important; }

.pad-right-tiny {
  padding-right: 5px !important; }

.pad-bottom-tiny {
  padding-bottom: 5px !important; }

.pad-left-tiny {
  padding-left: 5px !important; }

.pad-vert-tiny {
  padding-top: 5px !important;
  padding-bottom: 5px !important; }

.pad-horz-tiny {
  padding-right: 5px !important;
  padding-left: 5px !important; }

.title-group-2, .banner-1, .list-inline, .nav-secondary, .tabs, .tabs-2 {
  zoom: 1; }
  .title-group-2:before, .banner-1:before, .list-inline:before, .nav-secondary:before, .tabs:before, .tabs-2:before, .title-group-2:after, .banner-1:after, .list-inline:after, .nav-secondary:after, .tabs:after, .tabs-2:after {
    content: "";
    display: table; }
  .title-group-2:after, .banner-1:after, .list-inline:after, .nav-secondary:after, .tabs:after, .tabs-2:after {
    clear: both; }

/* Set base type styles */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  vertical-align: baseline;
  color: #555;
  position: relative;
  background: #444; }

* {
  -webkit-tap-highlight-color: transparent; }

/* Text selection */
/* fluid images and objects */
hr {
  border: 0;
  height: 1px;
  background: #b9b9b9; }

table {
  width: 100%; }

.body {
  z-index: 1000; }

img {
  display: block; }

/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary,
main {
  display: block; }

/*
 * Corrects `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/*
 * Addresses styling for `hidden` attribute not present in IE 7/8/9, Firefox 3,
 * and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */ }

/*
 * Addresses `font-family` inconsistency between `textarea` and other form
 * elements.
 */
html,
button,
input,
select,
textarea {
  font-family: sans-serif; }

/*
 * Addresses margins handled incorrectly in IE 6/7.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  margin: 0;
  font-weight: normal; }

/*
 * Addresses styling not present in IE 7/8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/*
 * Addresses style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
 */
b,
strong {
  font-weight: bold; }

blockquote {
  margin: 1em 40px; }

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic; }

/*
 * Addresses styling not present in IE 6/7/8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/*
 * Addresses margins set differently in IE 6/7.
 */
p {
  margin: 0; }

/*
 * Corrects font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em; }

/*
 * Improves readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 0; }

/*
 * Addresses CSS quotes not supported in IE 6/7.
 */
q {
  quotes: none; }

/*
 * Addresses `quotes` property not supported in Safari 4.
 */
q:before,
q:after {
  content: '';
  content: none; }

/*
 * Addresses inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/*
 * Prevents `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; }

/* ==========================================================================
   Lists
   ========================================================================== */
/*
 * Addresses margins set differently in IE 6/7.
 */
dl,
menu,
ol,
ul {
  margin: 0; }

dd {
  margin: 0 0 0 40px; }

/*
 * Addresses paddings set differently in IE 6/7.
 */
menu,
ol,
ul {
  padding: 0; }

/*
 * Corrects list images handled incorrectly in IE 7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Removes border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */ }

/*
 * Corrects overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Corrects margin displayed oddly in IE 6/7.
 */
form {
  margin: 0; }

/*
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * 1. Corrects color not being inherited in IE 6/7/8/9.
 * 2. Corrects text not wrapping in Firefox 3.
 * 3. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */ }

/*
 * 1. Corrects font size not being inherited in all browsers.
 * 2. Addresses margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improves appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */ }

/*
 * Addresses Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal; }

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */ }

/*
 * Re-set default cursor for disabled elements.
 */
button[disabled],
input[disabled] {
  cursor: default; }

/*
 * 1. Addresses box sizing set to content-box in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 * 3. Removes excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  width: 13px;
  /* 3 */
  cursor: pointer; }

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*
 * Removes inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/*
 * 1. Removes default vertical scrollbar in IE 6/7/8/9.
 * 2. Improves readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  text-align: left; }

.title-1, .block-list-1 .block-list__item h2, .copy h2 {
  font-size: 24px;
  line-height: 30px;
  color: #444444; }

.title-2, .block-list-1 .block-list__item h4, .copy h4 {
  font-size: 16px;
  color: #666;
  font-weight: bold; }

.title-3, .title-group-1 .title, .block-list-1 .block-list__item h3, .copy h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  color: #444444; }

.title-4, .title-group-1 .sub-title {
  font-size: 10.5px; }

.title-5 {
  color: #666666;
  font-weight: bold; }

.title-6, .banner-1 .banner__title, .block-list-1 .block-list__item h1, .copy h1 {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-size: 36px;
  font-weight: 300;
  line-height: 40px; }

.title-7, .block-list-1 .block-list__item h5, .copy h5 {
  font-size: 14px;
  font-weight: bold;
  color: #444444; }

.title-8 {
  font-size: 20px;
  color: #666666;
  font-weight: 400; }

.title-9 {
  font-size: 12px;
  font-weight: bold; }

.title-10 {
  font-size: 18px;
  font-weight: 400; }

.title-11 {
  font-size: 54px;
  line-height: 1;
  font-weight: 200; }

.title--grey {
  color: #666666; }

.title--dark-grey {
  color: #444444; }

.title--white {
  color: #fff; }

.title--yellow {
  color: #f9b831; }

.title--green {
  color: #1f7c07; }

.title--caps, .title-group-1 .sub-title {
  text-transform: uppercase; }

.title--small {
  font-size: 11px;
  line-height: 14px; }

.title--inverse a, .title-group-1 .title.title--inverse a,
.title--inverse a:hover,
.title-group-1 .title.title--inverse a:hover, .title--inverse, .title-group-1 .title.title--inverse {
  color: #fff; }

.title-group-1 .title {
  display: block;
  line-height: 20px; }
.title-group-1 .sub-title {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  display: block;
  font-weight: normal;
  line-height: 20px; }

.title-group-2 {
  border-bottom: 2px solid #007eac; }
  .title-group-2.is-extras {
    border-color: #7e3e97; }
  .title-group-2 .title {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    line-height: 20px; }
  .title-group-2 .sub-title {
    font-size: 12px; }

.title-group-3 .title {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: bold;
  line-height: 20px; }
.title-group-3 .sub-title {
  font-size: 12px; }

.anchor, .anchor-1, .copy--note a, .block-list-1.block-list--small a, .anchor-2, .anchor-3, .anchor-4, .anchor-5, .anchor-6 {
  font-weight: normal;
  text-decoration: none; }

.anchor-1, .copy--note a, .block-list-1.block-list--small a, .anchor-1:active, .copy--note a:active, .block-list-1.block-list--small a:active {
  color: #1f7c07;
  text-decoration: underline; }
.anchor-1:hover, .copy--note a:hover, .block-list-1.block-list--small a:hover {
  color: #2bac0a; }

.anchor-2, .anchor-2:active {
  color: #888; }
.anchor-2:hover {
  color: #333; }

.anchor-3 {
  text-decoration: none; }
  .anchor-3, .anchor-3:active {
    color: #444444; }
  .anchor-3:hover {
    color: #1f7c07; }

.anchor-4, .anchor-4:hover {
  color: #fff; }

.anchor-5, .anchor-5:active {
  color: #1f7c07;
  text-decoration: none; }
.anchor-5:hover {
  color: #2bac0a; }

.anchor-6 {
  text-decoration: underline; }
  .anchor-6, .anchor-6:active {
    color: #444444; }
  .anchor-6:hover {
    color: #1f7c07; }

.anchor--underline {
  text-decoration: underline; }

/* New Range page */
.banner-1 {
  background-repeat: no-repeat;
  background-position: 20px 100%;
  padding: 50px 20px 90px;
  text-align: center; }
  .no-retina .banner-1, .no-js .banner-1 {
    background-image: url("nib-styles/common/0.4.0/local/banner/images/paul-new-range.jpg"); }
  .retina .banner-1 {
    background-image: url("nib-styles/common/0.4.0/local/banner/images/paul-new-range@2x.jpg");
    background-size: 100%;
    background-size: auto 378px; }
  .banner-1 .banner__title {
    font-size: 54px;
    line-height: 60px;
    margin-bottom: 20px;
    font-weight: 200;
    color: #444; }
  .banner-1 .banner__body {
    width: 650px;
    float: right; }
  .banner-1 .banner__content {
    margin-bottom: 20px; }

.block-list-1.block-list--small .block-list__item {
  padding: 15px; }
.block-list-1 .block-list__item {
  background: #fff;
  border: 1px solid #b9b9b9;
  padding: 20px; }
  .block-list-1 .block-list__item.block-list__item--flush {
    border-bottom: 0; }
.block-list-1 .block-list__item + .block-list__item {
  border-top: 0; }

.block-list__item--flush {
  border-bottom: 0; }

.block-list-1 .copy--inverse.block-list__item, .copy--inverse.copy {
  color: #fff; }
  .block-list-1 .copy--inverse.block-list__item a, .copy--inverse.copy a {
    color: #fff; }
    .block-list-1 .copy--inverse.block-list__item a:hover, .copy--inverse.copy a:hover {
      color: #fff; }
.block-list-1 .block-list__item p, .copy p,
.block-list-1 .block-list__item ul,
.copy ul,
.block-list-1 .block-list__item ol,
.copy ol {
  margin: 0 0 15px 0; }
  .block-list-1 .block-list__item p:last-child, .copy p:last-child,
  .block-list-1 .block-list__item ul:last-child,
  .copy ul:last-child,
  .block-list-1 .block-list__item ol:last-child,
  .copy ol:last-child {
    margin-bottom: 0; }
.block-list-1 .block-list__item *:first-child, .copy *:first-child {
  margin-top: 0; }
.block-list-1 .block-list__item a, .copy a, .block-list-1 .block-list__item a:active, .copy a:active {
  text-decoration: underline;
  color: #1f7c07; }
.block-list-1 .block-list__item a:hover, .copy a:hover {
  color: #1f7c07; }
.block-list-1 .block-list__item ul, .copy ul {
  padding-left: 10px;
  margin-left: 10px; }
  .block-list-1 .block-list__item ul li, .copy ul li {
    margin-bottom: 3px;
    list-style-position: outside; }
.block-list-1 .block-list__item ol li, .copy ol li {
  list-style-type: decimal;
  list-style-position: inside;
  margin-bottom: 10px; }
.block-list-1 .block-list__item ol:first-child, .copy ol:first-child {
  margin-top: 0; }
.block-list-1 .block-list__item li, .copy li {
  display: list-item; }
.block-list-1 .block-list__item h1, .copy h1 {
  margin-bottom: 20px; }
.block-list-1 .block-list__item h2, .copy h2 {
  margin-bottom: 20px;
  margin-top: 30px; }
.block-list-1 .block-list__item h3, .copy h3 {
  margin-bottom: 20px; }
.block-list-1 .block-list__item h4, .copy h4 {
  margin-bottom: 20px; }
.block-list-1 .block-list__item h5, .copy h5 {
  margin-bottom: 20px; }
.block-list-1 .block-list__item em, .copy em {
  font-style: italic; }
.block-list-1 .block-list__item strong, .copy strong {
  font-weight: bold; }

.copy--note, .block-list-1.block-list--small {
  color: #666;
  font-size: 12px;
  line-height: 17px; }
  .copy--note p, .block-list-1.block-list--small p,
  .copy--note ul,
  .block-list-1.block-list--small ul,
  .copy--note ol,
  .block-list-1.block-list--small ol {
    margin-bottom: 10px; }

.list-inline, .nav-secondary {
  list-style: none; }
  .list-inline > li, .nav-secondary > li, .list-inline > .list__item, .nav-secondary > .list__item {
    float: left; }

.list-1 {
  margin: 0; }
  .list-1 li {
    background: url("nib-styles/common/0.4.0/local/lists/images/icon-arrow-right.png") no-repeat 0 8px;
    list-style: none;
    margin-bottom: 10px;
    padding-left: 18px; }
    @media (max-width: 800px) {
      .list-1 li {
        background-position: 0 8px; } }
  .list-1 strong {
    color: #333; }
  .list-1.is-extras > li {
    background-image: url("nib-styles/common/0.4.0/local/lists/images/icon-arrow-right-extras.png"); }
  .list-1.is-hospital > li {
    background-image: url("nib-styles/common/0.4.0/local/lists/images/icon-arrow-right-hospital.png"); }
  .list-1.with-hover li {
    background-image: url("nib-styles/common/0.4.0/local/lists/images/icon-arrow-right-grey.png"); }
    .list-1.with-hover li:hover {
      background-image: url("nib-styles/common/0.4.0/local/lists/images/icon-arrow-right.png"); }
  .list-1.list-1--white li {
    background-image: url("nib-styles/common/0.4.0/local/lists/images/icon-arrow-right-white.png"); }
  .list-1.list-1--grey li {
    background-image: url("nib-styles/common/0.4.0/local/lists/images/icon-arrow-right-grey.png"); }
  .list-1.list-1--middle li {
    background-position: 0 50%; }
  .list-1 ul {
    margin: 10px 0; }
    .list-1 ul > li {
      list-style: disc;
      list-style-position: inside;
      background: none;
      padding-left: 0;
      margin-bottom: 5px; }

.list-2 li {
  margin: 5px 0;
  line-height: 15px; }
.list-2 a {
  color: #fff;
  text-decoration: none; }
  .list-2 a:hover {
    text-decoration: underline; }

.list-ticks {
  margin: 0; }
  .list-ticks li {
    list-style: none;
    padding-left: 25px;
    background-image: url("nib-styles/common/0.4.0/local/lists/images/tick.png");
    background-image: url("nib-styles/common/0.4.0/local/lists/images/tick.svg"), none;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 16px 15px;
    margin-bottom: 10px; }
  .list-ticks strong {
    color: #333; }

.list--tight li {
  margin-bottom: 5px; }

.list-inline-bullets li {
  display: inline-block; }
  .list-inline-bullets li:after {
    content: " \2022 "; }
  .list-inline-bullets li:last-child:after {
    display: none; }

.nav, .nav-secondary {
  list-style: none; }
  .nav li, .nav-secondary li {
    display: inline; }
  .nav a, .nav-secondary a {
    display: inline-block; }

.nav-sticky {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  zoom: 1; }
  .nav-sticky.is-fixed {
    position: fixed; }
  @media (max-width: 870px) {
    .nav-sticky a {
      font-size: 11px !important; } }
  @media (max-width: 800px) {
    .nav-sticky, .nav-sticky.is-fixed {
      position: relative !important; }
    .nav-sticky a {
      font-size: 12px !important; } }

.nav-2 {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  display: block; }
  .nav-2 > .nav__item {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    float: left;
    position: relative; }
    .nav-2 > .nav__item:first-child {
      border-left: 0; }
      .nav-2 > .nav__item:first-child a,
      .nav-2 > .nav__item:first-child span {
        border-radius: 0 0 0 5px; }
    .nav-2 > .nav__item:last-child a,
    .nav-2 > .nav__item:last-child span {
      border-radius: 0 0 5px 0; }
  .nav-2 > .nav__item > a, .nav-2 > .nav__item > span {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    background: #f9f9f9;
    background: -moz-linear-gradient(top, #f9f9f9, #dddddd);
    background: linear-gradient(top, #f9f9f9, #dddddd);
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #ddd;
    color: #666666;
    display: block;
    font-size: 12px;
    font-weight: bold;
    line-height: 40px;
    padding: 0 10px;
    text-align: center;
    text-decoration: none;
    cursor: pointer; }
    .nav-2 > .nav__item > a:hover, .nav-2 > .nav__item > span:hover {
      background: #f9f9f9;
      background: -moz-linear-gradient(top, white, #dddddd);
      background: linear-gradient(top, white, #dddddd);
      color: #444444; }
    .nav-2 > .nav__item > a.is-selected, .nav-2 > .nav__item > span.is-selected {
      background: #f9f9f9;
      background: -moz-linear-gradient(top, white, #dddddd);
      background: linear-gradient(top, white, #dddddd);
      color: #1f7c07;
      position: relative; }
      .nav-2 > .nav__item > a.is-selected:after, .nav-2 > .nav__item > a.is-selected:before, .nav-2 > .nav__item > span.is-selected:after, .nav-2 > .nav__item > span.is-selected:before {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-color: transparent;
        border-width: 10px 10px 0 10px;
        border-top-color: #dddddd;
        bottom: -10px;
        left: 50%;
        margin-left: -10px;
        position: absolute; }
      .nav-2 > .nav__item > a.is-selected:before, .nav-2 > .nav__item > span.is-selected:before {
        width: 0;
        height: 0;
        border-style: solid;
        border-color: transparent;
        border-width: 11px 11px 0 11px;
        border-top-color: white;
        bottom: -12px;
        margin-left: -11px; }
      .no-cssgradients .nav-2 > .nav__item > a.is-selected:after, .no-cssgradients .nav-2 > .nav__item > span.is-selected:after {
        display: none; }
      .no-pointerevents .nav-2 > .nav__item > a.is-selected:after, .no-pointerevents .nav-2 > .nav__item > span.is-selected:after {
        width: 0;
        height: 0;
        border-style: solid;
        border-color: transparent;
        border-width: 10px 10px 0 10px;
        border-top-color: #fafafa;
        bottom: -9px; }
  @media (max-width: 800px) {
    .nav-2 .nav__item:first-child a,
    .nav-2 .nav__item:last-child a {
      border-radius: 0 !important; }
    .nav-2 .nav__item .is-selected:before,
    .nav-2 .nav__item .is-selected:after {
      display: none !important; } }
  .nav-2 .nav__item--parent > a,
  .nav-2 .nav__item--parent > span {
    position: relative;
    z-index: 2; }
    .nav-2 .nav__item--parent > a:after,
    .nav-2 .nav__item--parent > span:after {
      display: block;
      content: '';
      content: "";
      display: block;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      transform: translateY(-50%);
      top: 50%;
      position: absolute;
      right: 15px;
      height: 16px;
      width: 16px;
      opacity: 0.8;
      background: url("nib-styles/common/0.4.0/local/navigation/images/down.png") no-repeat top right;
      background: url("nib-styles/common/0.4.0/local/navigation/images/down.svg") no-repeat top right, none;
      background-size: 16px 16px; }
    .nav-2 .nav__item--parent > a:before,
    .nav-2 .nav__item--parent > span:before {
      display: block;
      content: '';
      background: url("nib-styles/common/0.4.0/local/navigation/images/up.svg") no-repeat top right;
      height: 0;
      width: 0;
      position: absolute; }
    .nav-2 .nav__item--parent > a.is-open:after,
    .nav-2 .nav__item--parent > span.is-open:after {
      background-image: url("nib-styles/common/0.4.0/local/navigation/images/up.png");
      background-image: url("nib-styles/common/0.4.0/local/navigation/images/up.svg"), none; }
    .nav-2 .nav__item--parent > a:hover::after,
    .nav-2 .nav__item--parent > span:hover::after {
      opacity: 1; }
  .nav-2.nav--vertical > .nav__item {
    float: none; }
    .nav-2.nav--vertical > .nav__item:last-child > a, .nav-2.nav--vertical > .nav__item:last-child > span {
      border-bottom: 0; }
  .nav-2.nav--vertical > .nav__item > a, .nav-2.nav--vertical > .nav__item > span {
    border-radius: 0;
    text-align: left;
    padding: 0 20px;
    border-bottom: 1px solid #bbb;
    border-left: 0; }
  .nav-2.nav--vertical > .nav__sub {
    position: relative;
    z-index: 1; }

.nav-3.nav--muted a {
  color: #999999; }
  .nav-3.nav--muted a:hover {
    color: #fff; }
.nav-3.nav--muted li {
  border-left-color: #666666; }
.nav-3 li {
  float: left;
  display: inline;
  border-left: 1px solid #b9b9b9; }
.nav-3 li:first-child {
  border-left: none; }
.nav-3 a {
  padding: 0 10px;
  color: #666;
  text-decoration: none; }
  @media (max-width: 320px) {
    .nav-3 a {
      padding: 0 5px; } }
.nav-3 a:hover {
  color: #1F7C07;
  text-decoration: underline; }

.nav-secondary li {
  border-left: 1px solid #b9b9b9;
  line-height: 20px; }
.nav-secondary li:first-child {
  border-left: none; }
.nav-secondary a {
  text-decoration: none;
  padding: 0 10px;
  color: #666666;
  font-size: 12px; }
.nav-secondary a:hover {
  color: #999999; }

.nav-4 {
  border-top: 1px solid #666; }
  .nav-4.nav--sub {
    border-top: 0; }
    .nav-4.nav--sub .nav__item:first-child a {
      box-shadow: 0 4px 5px rgba(0, 0, 0, 0.25) inset; }
    .nav-4.nav--sub > .nav__item > a {
      padding-left: 30px; }
  .nav-4.nav--muted a {
    text-transform: uppercase;
    font-size: 10px;
    opacity: 0.5; }
    .nav-4.nav--muted a:hover {
      opacity: 1; }
  .nav-4 .nav__item {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: relative; }
  .nav-4 a {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    border-bottom: 1px solid #666;
    background: #444;
    color: white;
    display: block;
    font-size: 12px;
    font-weight: bold;
    line-height: 40px;
    padding: 0 20px;
    text-decoration: none; }
    .nav-4 a:hover {
      background: #555; }

.panel {
  background-color: #fff; }

.panel--inset {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2) inset; }

.panel--light {
  background-color: #f9f9f9; }
  .panel--light .panel--light {
    background-color: #eee; }

.panel--grey {
  background: #eee; }

.panel--dark {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background: #555;
  color: #fff;
  position: relative; }
  .panel--dark .icon-money-back {
    position: absolute;
    top: -20px;
    left: 20px; }

.panel--bordered, .panel--grey {
  border: 1px solid #b9b9b9; }

.panel--hospital {
  background: #00abcc;
  border: 0;
  color: #fff; }

.panel--extras {
  background: #7e3e97;
  border: 0;
  color: #fff; }

.panel--closeable {
  position: relative; }
  .panel--closeable .btn-close {
    position: absolute;
    top: -8px;
    right: -8px; }

.panel--important {
  background: #fe9c00;
  color: #fff;
  border: 0; }

.panel--center {
  text-align: center; }

.panel--right {
  text-align: right; }

.panel--back {
  background-image: url("nib-styles/common/0.4.0/local/panels/images/icon-panel-back.png");
  background-position: 20px center;
  background-repeat: no-repeat; }

.panel--jigsaw {
  position: relative; }
  .panel--jigsaw:after {
    content: "";
    display: block;
    height: 13px;
    width: 25px;
    border-radius: 20px 20px 0 0;
    border: 1px solid #b9b9b9;
    border-bottom: 0;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    top: auto;
    bottom: -1px;
    background: #fff; }
  .no-csstransitions .panel--jigsaw:after {
    background-color: transparent;
    background-image: url("nib-styles/common/0.4.0/local/panels/images/jigsaw.png");
    background-position: 0 28px;
    border: 0;
    border-radius: none;
    height: 14px;
    width: 31px; }

.panel--inset {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5) inset; }

.panel--top-heavy {
  border-top-width: 5px; }

.phone-number {
  font-size: 24px;
  line-height: 14px;
  padding-left: 25px;
  background: url("nib-styles/common/0.4.0/local/phone-number/green.png") no-repeat 0px 0px;
  background: none, url("nib-styles/common/0.4.0/local/phone-number/green.svg") no-repeat 0px 0px;
  background-size: 20px 20px;
  color: #1f7c07; }
  .phone-number span {
    font-weight: 600;
    line-height: 20px; }
  .phone-number > a {
    color: #79be10;
    display: block;
    font-size: 12px;
    font-weight: bold;
    padding-left: 5px; }
  .phone-number.phone-number--white {
    background: url("nib-styles/common/0.4.0/local/phone-number/white.png") no-repeat 0px 0px;
    background: none, url("nib-styles/common/0.4.0/local/phone-number/white.svg") no-repeat 0px 0px;
    background-size: 20px 20px;
    color: #fff; }
    .phone-number.phone-number--white a {
      color: #fff;
      text-decoration: none; }

.phone-number.phone-number--large {
  display: inline-block;
  font-size: 30px;
  line-height: 1;
  background-position: left center; }
  .phone-number.phone-number--large span {
    font-weight: 300; }
  .phone-number.phone-number--large a {
    text-decoration: none; }

.cell-square {
  height: 83px;
  width: 83px; }

.cell-1 {
  background: #79be10;
  font-weight: bold;
  color: #fff;
  line-height: 40px;
  padding: 0 10px; }

.cell-2 {
  background: #1f7c07;
  font-size: 12px;
  font-weight: normal;
  color: white;
  line-height: 40px;
  padding: 0 10px; }

.cell-3 {
  background: #444444;
  color: #fff;
  line-height: 80px;
  font-size: 16px; }

.cell-4 {
  background: #eeeeee;
  font-size: 16px; }

.cell-5 {
  background: #bcdd8a;
  text-align: center; }

.cell-6 {
  background: #eeeeee;
  font-size: 12px;
  font-weight: normal; }

.table-list {
  border: 0;
  background: #fff;
  margin: 0; }
  .table-list.table--extras th {
    background: #7e3e97;
    font-size: 12px;
    padding: 0 10px;
    height: 40px; }
    .table-list.table--extras th.name {
      width: 600px; }
    .table-list.table--extras th.waiting-period {
      text-align: center; }
    .table-list.table--extras th.limit {
      text-align: center;
      width: 50px; }
  .table-list.table--extras td {
    border: 1px solid #b9b9b9;
    border-width: 0 0 1px 0; }
  .table-list.table--extras tbody {
    border: 1px solid #b9b9b9;
    border-top: none; }
  .table-list th,
  .table-list td {
    padding: 10px; }
  .table-list th {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    background: #1f7c07;
    color: #fff;
    border: 0;
    line-height: 1; }
    .table-list th.is-important {
      font-size: 16px; }
  .table-list td {
    font-size: 12px;
    border: 1px solid #b9b9b9; }
  .table-list td + td {
    width: 100px; }
  .table-list a {
    color: #1f7c07; }
    .table-list a:hover {
      color: #444444; }

.table-1 td, .table-1 th {
  border: 3px solid white; }
.table-1 tbody td,
.table-1 tbody th {
  font-size: 15px;
  font-weight: normal; }

.table-2 {
  font-size: inherit;
  background: white;
  width: 100%;
  color: #999999;
  text-align: left;
  margin: 0; }
  .table-2.table--small {
    font-size: 12px;
    line-height: 15px; }
  .table-2 thead,
  .table-2 tbody {
    border: 1px solid #b9b9b9; }
  .table-2 thead th {
    background: #eeeeee;
    color: #666666;
    font-weight: bold;
    text-shadow: 0 1px 0 white; }
  .table-2 tbody th {
    color: #444444; }
  .table-2 td,
  .table-2 th {
    font-weight: normal;
    border-bottom: 1px solid #b9b9b9;
    padding: 8px; }

.cell-square {
  height: 83px;
  width: 83px; }

.cell-1 {
  background: #79be10;
  font-weight: bold;
  color: #fff;
  line-height: 40px;
  padding: 0 10px; }

.cell-2 {
  background: #1f7c07;
  font-size: 12px;
  font-weight: normal;
  color: white;
  line-height: 40px;
  padding: 0 10px; }

.cell-3 {
  background: #444444;
  color: #fff;
  line-height: 80px;
  font-size: 16px; }

.cell-4 {
  background: #eeeeee;
  font-size: 16px; }

.cell-5 {
  background: #bcdd8a;
  text-align: center; }

.cell-6 {
  background: #eeeeee;
  font-size: 12px;
  font-weight: normal; }

.tabs {
  margin-bottom: -1px;
  position: relative;
  z-index: 1; }
  .tabs.tabs--four .tabs__tab {
    width: 25%; }
  .tabs.tabs--two .tabs__tab {
    width: 50%; }
  .tabs .tabs__tab {
    float: left;
    width: 25%; }
    .tabs .tabs__tab.tab--extras.is-selected a,
    .tabs .tabs__tab.tab--extras.is-selected a:hover {
      background: #7e3e97; }
    .tabs .tabs__tab.tab--extras.is-selected:after {
      width: 0;
      height: 0;
      border-style: solid;
      border-color: transparent;
      border-width: 10px 10px 0 10px;
      border-top-color: #7e3e97; }
    .tabs .tabs__tab:first-child a {
      margin-left: 0; }
    .tabs .tabs__tab.is-selected {
      position: relative;
      z-index: 1000; }
      .tabs .tabs__tab.is-selected a,
      .tabs .tabs__tab.is-selected a:hover {
        background: #00abcc; }
      .tabs .tabs__tab.is-selected:after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-color: transparent;
        border-width: 10px 10px 0 10px;
        border-top-color: #00abcc;
        position: absolute;
        left: 50%;
        margin-left: -10px;
        bottom: -9px; }
    .tabs .tabs__tab a {
      background: #666666;
      background: -moz-linear-gradient(top, #666666, #3e3e3e);
      background: linear-gradient(top, #666666, #3e3e3e);
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      border-radius: 10px 10px 0 0;
      padding: 17px 20px 15px 20px;
      display: block;
      text-decoration: none;
      margin-left: 1px;
      outline: none;
      position: relative;
      outline: none; }
      .tabs .tabs__tab a:hover {
        color: #fff;
        background: #777;
        cursor: pointer; }
    .tabs .tabs__tab.is-loading a:after {
      content: "";
      display: block;
      height: 20px;
      width: 20px;
      background: url("nib-styles/common/0.4.0/local/tabs/images/loader.gif") no-repeat;
      position: absolute;
      top: 5px;
      right: 5px;
      z-index: 1000; }

.tabs-2 {
  border-bottom: 1px solid #b9b9b9;
  position: relative;
  margin: 0 -30px;
  padding: 0 30px;
  z-index: 1; }
  .tabs-2 .tabs__tab {
    float: left;
    margin-left: 5px; }
    .tabs-2 .tabs__tab:first-child {
      margin-left: 0; }
    .tabs-2 .tabs__tab a {
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      background: #eeeeee;
      border-radius: 6px 6px 0 0;
      border: 1px solid #b9b9b9;
      border-bottom: none;
      color: #999999;
      display: block;
      font-size: 13px;
      font-weight: bold;
      line-height: 40px;
      outline: none;
      padding: 0 20px;
      text-decoration: none;
      outline: none; }
    .tabs-2 .tabs__tab a:hover {
      background: #f3f3f3;
      cursor: pointer; }
    .tabs-2 .tabs__tab i {
      position: relative;
      top: 3px;
      margin-left: 3px; }
      .tabs-2 .tabs__tab i:first-child {
        margin-left: 0; }
    .tabs-2 .tabs__tab i + span {
      margin-left: 6px; }
    .tabs-2 .tabs__tab.is-selected {
      position: relative;
      z-index: 1000; }
      .tabs-2 .tabs__tab.is-selected a {
        background: #fff;
        color: #444444;
        padding-bottom: 1px;
        margin-bottom: -1px; }
  .tabs-2 .tabs__info {
    display: block;
    float: right;
    line-height: 16px;
    width: 20%; }
    .tabs-2 .tabs__info a {
      color: #1f7c07;
      font-size: 12px;
      font-weight: bold;
      position: relative; }
      .tabs-2 .tabs__info a:hover {
        color: #79be10; }
      .tabs-2 .tabs__info a:after {
        content: ">";
        left: -15px;
        position: absolute;
        top: 0; }

.text-1 {
  color: #00abcc;
  font-weight: bold; }

.text-2 {
  color: #888; }

.text-price {
  font-weight: bold;
  font-size: 24px; }

.text-price-small {
  font-size: 20px; }

.text-medium {
  font-size: 13px;
  line-height: 18px; }

.text-small {
  font-size: 12px;
  line-height: 18px; }

.text-tiny {
  font-size: 11px;
  line-height: 15px; }

.text-large, .banner-1 .banner__body {
  font-size: 16px;
  line-height: 24px; }

.text--grey {
  color: #999999; }

.text--white {
  color: #fff; }

.text--inset {
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.4); }

.bq {
  margin: 0; }
  .bq > p,
  .bq .cite {
    display: inline; }

.text-uppercase {
  text-transform: uppercase; }

.anti-alias {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; }


.accordion + .accordion {
  margin-bottom: -1px; }

.accordion__trigger {
  -webkit-font-smoothing: antialiased;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  font-size: 13px;
  font-weight: 700;
  line-height: 30px;
  position: relative;
  text-decoration: none;
  background: -moz-linear-gradient(top, white, #dddddd);
  background: linear-gradient(to bottom, white, #dddddd);
  border: 1px solid #b9b9b9;
  color: #666;
  text-shadow: 0 1px 0 #fff;
  display: block;
  width: 100%;
  padding: 0 35px 0 10px; }

.accordion__trigger:hover,
.accordion__trigger:active {
  background: -moz-linear-gradient(top, white, #e5e5e5);
  background: linear-gradient(to bottom, white, #e5e5e5); }

.accordion__trigger:before {
  content: '';
  display: block;
  background: no-repeat top right;
  background-image: url("nib-styles/accordion/0.2.2/images/up.png");
  background-image: url("nib-styles/accordion/0.2.2/images/up.svg"), none;
  height: 0;
  width: 0;
  position: absolute; }
.accordion__trigger:after {
  position: absolute;
  top: 7px;
  right: 7px;
  opacity: 0.8;
  display: block;
  content: '';
  height: 16px;
  width: 16px;
  background: no-repeat top right;
  background-image: url("nib-styles/accordion/0.2.2/images/down.png");
  background-image: url("nib-styles/accordion/0.2.2/images/down.svg"), none;
  background-size: 16px 16px; }
.accordion__trigger.is-open:after {
  background-image: url("nib-styles/accordion/0.2.2/images/up.png");
  background-image: url("nib-styles/accordion/0.2.2/images/up.svg"), none; }
.accordion__trigger:hover::after {
  opacity: 1; }

.csstransitions .accordion .accordion__body {
  -moz-transition: height 0.7s ease-in-out;
       transition: height 0.7s ease-in-out;
  height: 0;
  overflow: hidden; }
  .csstransitions .accordion .accordion__body.no-transitions {
    -moz-transition: none;
         transition: none; }

.no-csstransitions .accordion > .accordion__body {
  display: none; }
.no-csstransitions .accordion.is-open > .accordion__body {
  display: block; }

.no-cssgradients .accordion__trigger {
  background: url(nib-styles/accordion/0.2.2/images/bg.png) bottom left repeat-x; }
.no-cssgradients .accordion__trigger.is-disabled {
  background: #ddd; }



.tip {
  position: absolute;
  width: 0;
  height: 0;
}

.tip--hidden {
  display: none;
}

.tip--direction-up.tip--position-bottom {
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
          transform: translateX(-50%);
}

.tip--direction-down.tip--position-top {
  -webkit-transform: translateX(-50%) translateY(-100%) ;
     -moz-transform: translateX(-50%) translateY(-100%) ;
          transform: translateX(-50%) translateY(-100%) ;
}

.tip--direction-right.tip--position-left {
  -webkit-transform: translateY(-50%) translateX(-100%);
     -moz-transform: translateY(-50%) translateX(-100%);
          transform: translateY(-50%) translateX(-100%);
}

.tip--direction-left.tip--position-right {
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
          transform: translateY(-50%);
}

.tip--direction-up {
  border-left-style: solid;
  border-left-color: transparent;
  border-right-style: solid;
  border-right-color: transparent;
  border-bottom-style: solid;
}

.tip--direction-down {
  border-left-style: solid;
  border-left-color: transparent;
  border-right-style: solid;
  border-right-color: transparent;
  border-top-style: solid;
}

.tip--direction-left {
  border-top-style: solid;
  border-top-color: transparent;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  border-right-style: solid;
}

.tip--direction-right {
  border-top-style: solid;
  border-top-color: transparent;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  border-left-style: solid;
}

.form label {
  display: block;
}

.form-actions {
  overflow: hidden;
}

.form-actions .form-actions__primary,
.form-actions .form-actions__secondary {
  float: right;
  margin-left: 10px;
}

.control-group {
  border: 1px solid transparent;
}

.control-group.is-invalid,
.control-group.input-validation-error {
  background: #ffdcdc;
  color: #a90000;
  border-color: #a90000;
}

/**
 * Help text - Block style
 */
.control-group__help-block {
  display: block;
}

/**
 * Inline help text
 */
.control-group__help-inline {
  vertical-align: baseline;
}

/**
 * Row of inline controls
 */
.control-group--row {
  border: 0;
}
.control-group--row:hover {
  background: white;
}
.control-group--row:hover .control-group__title {
  color: #1f7c07;
}
.control-group--row:hover .control--box {
  background: #eeeeee;
}
.control-group--row .control-group__title {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  font-size: 16px;
  line-height: 52px;
  padding-left: 20px;
}

/**
 * Control descriptions
 */
.control__text {
  font-size: 12px;
  line-height: 18px;
  display: block;
  margin: 5px 0;
  color: #999999;
}
.control__text strong {
  color: #666666;
}
.control__text a {
  font-weight: normal;
  color: #1f7c07;
  text-decoration: underline;
}
.control__text a:hover {
  color: #2bac0a;
}

.form--primary {
  background: #eee;
  background: -moz-linear-gradient(top, white, #eeeeee), #eeeeee;
  background: linear-gradient(to bottom, white, #eeeeee), #eeeeee;
  overflow: hidden;
}

.form--primary .form__header {
  box-shadow: 0 1px 0 white;
  border-bottom: 1px solid #b9b9b9;
}

.form--primary .form__footer {
  border-top: 1px solid #b9b9b9;
  box-shadow: 0 1px 0 white inset;
}

.control,
.control-basic {
  display: block;
  margin-bottom: 12.5px;
}

.control__label,
.control-label,
.control > label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.control--box {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  background: #e6e6e6;
  border-left: 1px solid lightgrey;
  padding: 10px;
  height: 52px;
  vertical-align: middle;
  font-size: 13px;
  margin-bottom: 0;
}

.control-checkbox {
  display: block;
  margin-bottom: 12.5px;
}

.control-checkbox input {
  margin-right: 2px;
}

.control-checkbox__label {
  display: inline-block;
}


/**
 * Radio or checkbox that uses an icon
 *
 *  --------
 *  | [x]  |
 *  | ICON |
 *  | TEXT |
 *  |______|
 */

/*
  <label class="control-icon">
    <input name="Scale" type="radio" value="Single">
    <div class="control__icon">
        <i class="icon-household icon-household--singles"></i>
    </div>
    <span class="control__label">Singles</span>
  </label>
 */

.control-icon {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  padding: 10px 10px 15px;
  position: relative;
  display: block;
}

.control-icon:hover {
  background: #eeeeee;
}

.control-icon.control-icon--invisible input {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.control-icon input {
  margin-bottom: 10px;
  width: 13px;
}

.control-icon .control__label {
  display: block;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  color: #666;
}


.control-radio {
  margin-bottom: 12.5px;
  display: inline-block;
  position: relative;
}

.control-radio input {
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -7px;
}

.control-radio input:checked + .control-radio__label {
  background: #e1e1e1;
}

.control-radio .control-radio__label {
  display: block;
  padding: 7px;
  padding-left: 30px;
  padding-right: 15px;
  border-radius: 5px;
  font-weight: normal;
}

.control-radio--inline .control-radio__label,
.control-radio--inline .control__label {
  display: inline-block;
  margin-bottom: 0;
}

.control-radio--inline .control-radio__label {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 0;
}

.control-search.control--mobile {
  display: block;
  margin: 7px 0;
  position: relative;
}

.control-search.control--mobile:after {
  display: block;
  content: '';
  position: absolute;
  top: 5px;
  right: 11px;
  height: 15px;
  width: 15px;
  background: url("nib-styles/form/0.2.1/images/search.svg") no-repeat;
  background-size: 15px 15px;
}

.control-search.control--mobile input {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  border: 0;
  height: 25px;
  line-height: 1;
  padding: 0 35px 0 10px;
  width: 100%;
  color: #666666;
  border-radius: 20px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2) inset;
  background: #dadada;
  font-size: 13px;
}

.control-search.control--mobile input:focus {
  outline: 0;
  background: #fff;
}


.control-select {
  display: block;
  margin-bottom: 12.5px;
}

/**
 * Select wrapper
 */
.select {
  position: relative;
  width: 100%;
}
.select.medium {
  width: 210px;
}
.select.small {
  width: 100px;
}

/**
 * IE9
 */
.no-cssgradients .select select {
  width: 100%;
}

/**
 * IE. Make the select the same size at least.
 */
.no-pointerevents.no-cssgradients .select select {
  height: 32px;
  padding: 6px 5px;
}

/**
 * Good browsers. Using pointer-events to get around IE10's
 * half-support for the appearance property on selects
 */
.pointerevents.cssgradients .select select {
  background: -moz-linear-gradient(top, white, #eeeeee);
  background: linear-gradient(to bottom, white, #eeeeee);
  border: 1px solid #b9b9b9;
  border-radius: 3px;
  line-height: 17px;
  padding: 6px 14px 5px 10px;
  box-shadow: 0 1px 0 0 white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  font-size: 13px;
  color: #666666;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.pointerevents.cssgradients .select select.is-invalid {
  border-color: #a90000;
}
.pointerevents.cssgradients .select:hover select {
  background: -moz-linear-gradient(top, white, #f2f2f2);
  background: linear-gradient(to bottom, white, #f2f2f2);
}
.pointerevents.cssgradients .select:hover:before {
  background: -moz-linear-gradient(top, white, #dfdfdf);
  background: linear-gradient(to bottom, white, #dfdfdf);
}

/**
 * The button and down arrow on the select are
 * created using pseudo elements
 */
.pointerevents.cssgradients .select:before,
.pointerevents.cssgradients .select:after {
  content: '';
  display: block;
  position: absolute;
  pointer-events: none;
}

/**
 * Button on the right of the select
 */
.pointerevents.cssgradients .select:before {
  background: -moz-linear-gradient(top, #f9f9f9, lightgrey);
  background: linear-gradient(to bottom, #f9f9f9, lightgrey);
  width: 30px;
  border-radius: 0 3px 3px 0;
  border: 1px solid #b9b9b9;
  box-shadow: 0 1px 0 0 #fff inset;
  top: 0;
  bottom: 0;
  right: 0;
}

/**
 * Triangle pointing down. Use borders to create
 * a triangle that is scalable
 */
.pointerevents.cssgradients .select:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 7px 6.5px 0 6.5px;
  border-top-color: #999999;
  top: 13px;
  right: 10px;
}

/**
 * Disabled state
 */
.pointerevents.cssgradients .select.is-disabled select {
  background: #F1F1F1;
  box-shadow: none;
  color: #AAA;
  border-color: #CCC;
}
.pointerevents.cssgradients .select.is-disabled:before {
  background: #EEE;
  box-shadow: none;
  border-color: #CCC;
}

.control-text {
  display: block;
  margin-bottom: 12.5px;
}

/**
 * Inline modifier
 */
.control-text--inline input,
.control-text--inline .control__label {
  display: inline-block;
}

/**
 * Small modifier
 */
.control-text.control__small input,
.control-text.control--small input {
  width: 100px;
}

.control-text input {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-transition: border-color 0.3s ease-out;
       transition: border-color 0.3s ease-out;
  border: 1px solid #b9b9b9;
  color: #666666;
  height: 32px;
  line-height: 32px;
  padding: 0 9px;
  width: 100%;
}

/**
 * Fallback styles
 */
.no-boxshadow .control-text input {
  line-height: 32px;
}

/**
 * Focus states
 */
.control-text input:focus {
  box-shadow: 0 0 5px rgba(254, 156, 0, 0.7);
  outline: none;
  border-color: #fe9c00;
}

/**
 * Invalid states
 */
.control-text input.is-invalid,
.control-text input.input-validation-error {
  background: #ffdcdc;
  color: #a90000;
  border-color: #a90000;
}
.control-text input.is-invalid:focus,
.control-text input.input-validation-error:focus {
  box-shadow: 0 0 5px rgba(169, 0, 0, 0.5);
}

/**
 * Matching states
 */
.control-text.control--confirmation input.is-matching {
  background-image: url("nib-styles/form/0.2.1/images/icon-tick-circle-green.png");
  background-position: 98% 50%;
  background-repeat: no-repeat;
}




.control-textarea {
  display: block;
  margin-bottom: 12.5px;
}

.control-textarea textarea {
  border: 1px solid #b9b9b9;
  padding: 9px;
  width: 100%;
  min-height: 140px;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

.control-textarea textarea.is-invalid {
  background: #ffdcdc;
  color: #a90000;
  border-color: #a90000;
}

.control-textarea.control--block {
  display: block;
}


/* CONTROL:  MESSAGING === */

.control-required-message {
  float: right;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  text-transform: lowercase;
}

.control-input-label {
  margin: 0;
  color: #fff;
}



/* === CONTROL === */

.control {
  position: relative;
  margin-bottom: 30px;
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); /* use GPU on iOS for smoother transitions */
}

/* === CONTROL: LABEL === */

.control__label {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 18px;
}

/* === CONTROL: INPUT === */

.control__input {
  position: relative;
  vertical-align: top;
}

/* === CONTROL: FEEDBACK ICON === */

.control-feedback-icon {
  position: absolute;
  bottom: 12px;
  width: 16px;
  height: 16px;
}

.control-feedback-icon--inside {
  right: 6px;
}

.control-feedback-icon--outside {
  right: -28px;
}

/* can we use the nibdings font for these icons??? */

.control.is-invalid .control-feedback-icon {
  background-image: url('nib-styles/control/1.2.1/img/alert.svg');
}

.no-svg .control.is-invalid .control-feedback-icon {
  background-image: url('nib-styles/control/1.2.1/img/alert.png');
}

.control.is-valid .control-feedback-icon {
  background-image: url('nib-styles/control/1.2.1/img/tick_green.svg');
}

.no-svg .control.is-valid .control-feedback-icon {
  background-image: url('nib-styles/control/1.2.1/img/tick_green.png');
}

.control.is-valid .control-feedback-icon--outside {
  background-image: url('nib-styles/control/1.2.1/img/tick_white.svg');
}

.no-svg .control.is-valid .control-feedback-icon--outside {
  background-image: url('nib-styles/control/1.2.1/img/tick_white.png');
}

.control.is-loading .control-feedback-icon {
  background-image: url('nib-styles/control/1.2.1/img/loader-green.gif');
}

.control.is-loading .control-feedback-icon.control-feedback-icon--outside {
  background-image: url('nib-styles/control/1.2.1/img/loader-white-on-green.gif');
}

/* === CONTROL: FEEDBACK TIP === */

.control-feedback-message .tip--direction-up {
  margin-top: 6px;
  border-left-width: 6px;
  border-right-width: 6px;
  border-bottom-width: 6px;
}

.control-feedback-message.is-error .tip {
  border-bottom-color: #a40051;
}

.control-feedback-message.is-info .tip {
  border-bottom-color: #03687a;
}

/* === CONTROL: FEEDBACK MESSAGE === */

.control-feedback-message {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  overflow: hidden;
  height: 0;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
}

.control-feedback-message.is-info {
  background-color: #03687a;
}

.control-feedback-message.is-error {
  background-color: #a40051;
}

.csstransitions .control-feedback-message {
  -moz-transition: height 0.5s;
       transition: height 0.5s;
}

.control-feedback-message__text {
  margin: 0;
  padding: 10px;
}

.control.is-invalid .control-feedback-message {
  display: block;
}



/* === CONTROL: INPUT: TEXT === */

.control-input-text,
.control-input-select {
  display: block;
  width: 100%;
  height: 40px;
  margin: 0;
  padding-left: 10px;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  font-size: 16px;
  font-family: "open sans", sans-serif;
  line-height: 16px;
  border: none;
  border-radius: 0;
  outline: none;
  background-color: #fff;
}

.control-input-text {
  padding-right: 26px;
  -webkit-appearance: none;
}

.control.is-invalid .control-input-text {
  background-color: #ffcccc;
}

/* === CONTROL: INPUT: TEXT: DATE === */

.control-input-text--date {
  line-height: 30px;
}



/* === Control input option === */


.control-input-option {
  display: inline-block;
  padding: 9px 10px;
  padding-left: 30px;
  cursor: pointer;
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
  background-color: #00781c;
  background-color: rgba(0, 0, 0, 0.2);
  -moz-transition: background 0.1s ease-in;
       transition: background 0.1s ease-in;
  line-height: 22px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.control-input-option:first-child {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.control-input-option:last-child {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.control-input-option + .control-input-option {
  margin-left: -1px; /* depends on font size and family */
}

.control-input-option:hover,
.control-input-option:active,
.control-input-option.is-selected {
  background-color: #005a15;
  background-color: rgba(0, 0, 0, 0.4);
}

.control-input-option:focus {
  border: 1px solid #0a6d12;
}

.control-input-option input {
  cursor: pointer;
  margin-left:-20px;
}


.list-inline {
  zoom: 1;
  list-style: none;
}

.list-inline:before,
.list-inline:after {
  content: "";
  display: table;
}

.list-inline:after {
  clear: both
}

.list-inline > li,
.list-inline > .list__item {
  float: left;
}

/*
 * List with green arrows
 */

.list-1 {}

.list-1 li {
  background: url('nib-styles/lists/0.0.3/images/icon-arrow-right.png') no-repeat 0 7px;
  list-style: none;
  margin-bottom: 5px;
  padding-left: 18px;
}

@media (max-width: 800px){
  .list-1 li {
    background-position: 0 8px;
  }
}

/* icon positioning for tighter lists */
.list-1--tight li{
  background-position: 0 4px;
}

/* icon positioning for larger lists */
.list-1--large li {
  background-position: 0 9px;
  font-size: 16px;
  line-height: 27px;
}

.list-1 li strong {
  color: #333;
}

.list-1.is-extras li {
  background-image: url('nib-styles/lists/0.0.3/images/icon-arrow-right-extras.png');
}

.list-1.is-hospital li {
  background-image: url('nib-styles/lists/0.0.3/images/icon-arrow-right-hospital.png');
}

.list-1.with-hover li {
  background-image: url('nib-styles/lists/0.0.3/images/icon-arrow-right-grey.png');
}

.list-1.with-hover li:hover {
  background-image: url('nib-styles/lists/0.0.3/images/icon-arrow-right.png');
}

.list-1.list-1--white li {
  background-image: url('nib-styles/lists/0.0.3/images/icon-arrow-right-white.png');
}

.list-1.list-1--grey li {
  background-image: url('nib-styles/lists/0.0.3/images/icon-arrow-right-grey.png');
}

.list-1.list-1--middle li {
  background-position: 0 50%;
}

.list-1 ul {
  margin: 10px 0;
}

.list-1 ul  > li {
  list-style: disc;
  list-style-position: inside;
  background: none;
  padding-left: 0;
  margin-bottom: 5px;
}

/*
 * .list-2
 * List with a title and a list of links
 */

.list-2 li {
  margin: 5px 0;
  line-height: 15px;
}
.list-2 a {
  color: #fff;
  text-decoration: none;
}
.list-2 a :hover {
  text-decoration: underline;
}

/*
 * .list-ticks
 */

.list-ticks {
  margin: 0;
}

.list-ticks li {
  list-style: none;
  padding-left: 25px;
  background-image: url('nib-styles/lists/0.0.3/images/tick.png');
  background-image: url('nib-styles/lists/0.0.3/images/tick.svg'), none;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 16px 15px;
  margin-bottom: 5px;
}

.list-ticks strong {
  color: #333;
}

.list-ticks.list-ticks--white li {
  background-image: url('nib-styles/lists/0.0.3/images/tick-white.png');
  background-image: url('nib-styles/lists/0.0.3/images/tick-white.svg'), none;
  background-position: 0 3px;
}

/*
 * .list-ticks
 */
.list--tight li {
  margin-bottom: 5px;
}

/*
 * .list-inline-bullets
 */

.list-inline-bullets li {
  display: inline-block;
}

.list-inline-bullets li:after {
  content: "\2022";
}

.list-inline-bullets li:last-child:after {
  display: none;
}

/*
 * lists line-height
 */

.list-large li {
  line-height: 27px;
}

/* optional - larger text for the larger line-height */
.list-large__item {
  font-size: 16px;
}

nav ul,
nav ol{
  list-style:none;
  list-style-image:none
}

.nav {
  list-style:none;
}

.nav li {
  display:inline;
}

.nav a {
  display:inline-block;
}

.nav-sticky {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  zoom: 1;
}

.nav-sticky .is-fixed {
  position: fixed;
}

@media (max-width: 870px) {
  .nav-sticky a {
    font-size: 11px !important;
  }
}

@media (max-width: 800px) {
  .nav-sticky ,
  .nav-sticky .is-fixed {
    position: relative !important;
  }
  .nav-sticky a {
    font-size: 12px !important;
  }
}

.nav-1 {}

.nav-2 {
  box-shadow: 0 2px 20px rgba(0,0,0, 0.35);
  display:block;
}

.nav-2 > .nav__item {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  display: block;
  float: left;
  position: relative;
}

.nav-2 > .nav__item:first-child {
  border-left: 0;
}
.nav-2 > .nav__item:first-child a,
.nav-2 > .nav__item:first-child span {
  border-radius: 0 0 0 5px;
}

.nav-2 > .nav__item:last-child a,
.nav-2 > .nav__item:last-child span {
  border-radius: 0 0 5px 0;
}

.nav-2 > .nav__item > a,
.nav-2 > .nav__item > span {
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  background: #ddd;
  background: -moz-linear-gradient(top, #f9f9f9, #ddd);
  background: linear-gradient(to bottom,#f9f9f9,#ddd);
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #ddd;
  color: #666;
  display: block;
  font-size: 12px;
  font-weight: bold;
  line-height: 40px;
  padding: 0 10px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.nav-2 > .nav__item > a:hover ,
.nav-2 > .nav__item > span:hover {
  background: -moz-linear-gradient(top, #fff, #ddd);
  background: linear-gradient(to bottom,#fff,#ddd);
  color: #444;
}

.nav-2 > .nav__item > a.is-selected ,
.nav-2 > .nav__item > span.is-selected {
  background: -moz-linear-gradient(top, #fff, #ddd);
  background: linear-gradient(to bottom,#fff,#ddd);
  color: #1f7c07;
  position: relative;
}

.nav-2 > .nav__item > a.is-selected:before,
.nav-2 > .nav__item > span.is-selected:before,
.nav-2 > .nav__item > a.is-selected:after,
.nav-2 > .nav__item > span.is-selected:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 10px 10px 0;
  border-top-color: #ddd;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
  position: absolute;
}

.nav-2 > .nav__item > a.is-selected:before,
.nav-2 > .nav__item > span.is-selected:before {
  border-style: solid;
  border-color: transparent;
  border-width: 11px 11px 0;
  border-top-color: #fff;
  bottom: -12px;
  height: 0;
  margin-left: -11px;
  width: 0;
}

.no-cssgradients .nav-2 > .nav__item > a.is-selected:after,
.no-cssgradients .nav-2 > .nav__item > span.is-selected:after {
  display: none;
}

.no-pointerevents .nav-2 > .nav__item > a.is-selected:after,
.no-pointerevents .nav-2 > .nav__item > span.is-selected:after {
  border-style: solid;
  border-color: transparent;
  border-width: 10px 10px 0;
  border-top-color: #fafafa;
  bottom: -9px;
  height: 0;
  width: 0;
}

@media (max-width: 800px) {
  .nav-2 > .nav__item:first-child a,
  .nav-2 > .nav__item:last-child a {
    border-radius: 0 !important;
  }

  .nav-2 > .nav__item .is-selected:before,
  .nav-2 > .nav__item .is-selected:after {
    display: none !important;
  }
}

.nav-2 .nav__item--parent>a,
.nav-2 .nav__item--parent>span {
    position: relative;
    z-index: 2
}

.nav-2 .nav__item--parent>a:after,
.nav-2 .nav__item--parent>span:after {
    display: block;
    content: '';
    content: "";
    display: block;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
    position: absolute;
    right: 15px;
    height: 16px;
    width: 16px;
    opacity: .8;
    background: url('nib-styles/navigation/0.0.1/images/down.png') no-repeat top right;
    background: url('nib-styles/navigation/0.0.1/images/down.svg') no-repeat top right,none;
    background-size: 16px 16px
}

.nav-2 .nav__item--parent>a:before,
.nav-2 .nav__item--parent>span:before {
    display: block;
    content: '';
    background: url('nib-styles/navigation/0.0.1/images/up.svg') no-repeat top right;
    height: 0;
    width: 0;
    position: absolute
}

.nav-2 .nav__item--parent>a.is-open:after,
.nav-2 .nav__item--parent>span.is-open:after {
    background-image: url('nib-styles/navigation/0.0.1/images/up.png');
    background-image: url('nib-styles/navigation/0.0.1/images/up.svg'),none;
}

.nav-2 .nav__item--parent>a:hover::after,
.nav-2 .nav__item--parent>span:hover::after {
    opacity: 1
}

.nav-2.nav--vertical>.nav__item {
    float: none
}

.nav-2.nav--vertical>.nav__item:last-child>a,
.nav-2.nav--vertical>.nav__item:last-child>span {
    border-bottom: 0
}

.nav-2.nav--vertical>.nav__item>a,
.nav-2.nav--vertical>.nav__item>span {
    border-radius: 0;
    text-align: left;
    padding: 0 20px;
    border-bottom: 1px solid #bbb;
    border-left: 0
}

.nav-2.nav--vertical>.nav__sub {
    position: relative;
    z-index: 1
}

/*
 * .nav-3
 */

.nav-3 {}
.nav-3 li {
  border-left: 1px solid #b9b9b9;
  display: inline;
  float: left;
}
.nav-3 li:first-child {
  border-left: none;
}

.nav-3 a {
  color: #666;
  padding: 0 10px;
  text-decoration: none;
}

@media (max-width: 320px) {
  .nav-3 a {
    padding: 0 5px;
  }
}

.nav-3 a:hover {
  color: #1F7C07;
  text-decoration: underline;
}

.nav-3.nav--muted a {
  color: #999;
}
.nav-3.nav--muted a:hover {
  color: #fff;
}
.nav-3.nav--muted li {
  border-left-color: #666;
}

/*
 * .nav-secondary
 */
.nav-secondary li {
  border-left: 1px solid #b9b9b9;
  line-height: 20px;
}

.nav-secondary li:first-child {
  border-left: none;
}

.nav-secondary a {
  text-decoration: none;
  padding: 0 10px;
  color: #666;
  font-size: 12px;
}

.nav-secondary a:hover {
  color: #999;
}

/*
 * .nav-4
 */
.nav-4 {
  border-top: 1px solid #666;
}
.nav-4.nav--sub {
  border-top: 0;
}
.nav-4.nav--sub .nav__item:first-child a {
  box-shadow: 0 4px 5px rgba(0,0,0, 0.25) inset;
}
.nav-4.nav--sub > .nav__item > a {
  padding-left: 30px;
}

.nav-4.nav--muted a {
  text-transform: uppercase;
  font-size: 10px;
  opacity: 0.5;
}
.nav-4.nav--muted a :hover {
  opacity: 1;
}

.nav-4 .nav__item {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  display: block;
  position: relative;
}

.nav-4 .nav__item a {
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  border-bottom: 1px solid #666;
  background: #444;
  color: white;
  display: block;
  font-size: 12px;
  font-weight: bold;
  line-height: 40px;
  padding: 0 20px;
  text-decoration: none;
}

.nav-4 .nav__item a:hover {
  background: #555;
}

/*
 * Legacy title styles. Mainly used for footer
 * Various title styles are applied via classes so it doesn't
 * matter which element you use
 */

.title-1 {
  font-size:24px;
  line-height:30px;
}

.title-2 {
  font-size: 16px;
  font-weight: bold;
}

.title-3 {
  font-size:20px;
  line-height:30px;
  font-weight:700;
}

.title-4 {
  font-size: 10.5px;
}

.title-5 {
  font-weight: bold;
}

.title-6 {
  font-size:36px;
  font-weight:300;
  line-height:40px;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}

.title-7 {
  font-size: 14px;
  font-weight: bold;
}

.title-8 {
  font-size: 20px;
  font-weight: 400;
}

.title-9 {
  font-size: 12px;
  font-weight: bold;
}

.title-10 {
  font-size: 18px;
  font-weight: 400;
}

.title-11 {
  font-size:54px;
  font-weight:200;
  line-height:1;
}

.title--small {
  font-size: 11px;
  line-height: 14px;
}

/*
 * Color  Modifiers
 */

.t-grey,
.title--grey {
  color: #666;
}

.t-dark-grey,
.title--dark-grey {
  color: #444;
}

.t-white,
.title--white {
  color: #fff;
}

.t-yellow,
.title--yellow {
  color: #f9b831;
}

.t-green,
.title--green {
  color: #1f7c07;
}

/*
 * Title groups have titles and sub-titles.
 *
 * They style these titles use the title classes and provide the correct
 * spacing. Create these when a group of titles is used more
 * than once.
 */


/*
 * .title element should also include '.title-3' class
 * .sub-title element should include 'truncate-text', '.title-4' and ''.title--caps''
 */
.title-group-1 .title {
  display: block;
  line-height:20px;
}
.title-group-1 .sub-title {
  display: block;
  font-weight: normal;
  line-height:20px;
}

/*
 * .title-group-2 has its own default styling
 * .title-group-2 should also have a class to clear its floats
 */
.title-group-2 {
  border-bottom: 2px solid #007eac;
}
.title-group-2 .is-extras {
  border-color: #7e3e97;
}
.title-group-2 .title {
  color: #333;
  font-size: 18px;
  font-weight: bold;
  line-height:20px
}
.title-group-2 .sub-title {
  font-size: 12px;
}

/*
 * title-group-3 default styling.
 */
.title-group-3 .title {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: bold;
  line-height:20px
}
.title-group-3 .sub-title {
  font-size: 12px;
}

/* - Webfonts-
 * 
 * We use Roboto and Open Sans, both are Google web fonts.
 * Roboto is our display font for headings etc
 * Open Sans is used for body copy.
 *
 * Usage intructions can be found here:
 * https://www.google.com/fonts#UsePlace:use/Collection:Open+Sans
 *
 * Or use these links in the <head> of you HTML:
 * These links have the font weights already set.
 * Open sans <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
 * Roboto <link href='http://fonts.googleapis.com/css?family=Roboto:400,300,500' rel='stylesheet' type='text/css'>
 * ---------------------------------------------------------------------------------
 */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #555555;
  font-size: 14px;
  line-height: 1.5;
  vertical-align: baseline; }

/**
 * Links, by default, use the color
 * of the text around them rather than
 * defaulting to blue
 */
a {
  color: inherit; }

hr {
  border: 0;
  height: 1px;
  background: #ccc; }

img {
  display: block; }

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0; }

ul, ol {
  margin: 0;
  padding: 0; }

small {
  font-size: 100%; }

p {
  margin: 0; }

blockquote {
  margin: 0; }

/**
 * ---------------------------------------------------------------------------------
 * Image Styles
 * ---------------------------------------------------------------------------------
 */
.t-imageLeft {
  float: left;
  margin: 21px;
  margin-left: 0;
  max-width: 320px; }

.t-imageRight {
  float: right;
  margin: 21px;
  margin-right: 0;
  max-width: 320px; }

.t-imageFull {
  margin: 21px 0;
  max-width: 100%; }

/**
 * ---------------------------------------------------------------------------------
 * List Styles
 * ---------------------------------------------------------------------------------
 */
/**
 * Move a list inside. Normally, list bullets will sit
 * outside of the content, allowing for better reading. However
 * sometimes you want to list to be within the content border
 */
.t-listInside {
  margin-left: 20px; }

/**
 * ---------------------------------------------------------------------------------
 * Table Styles
 * ---------------------------------------------------------------------------------
 */
.t-table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  font-size: 13px;
  line-height: 18px;
  margin: 21px 0; }
  .t-table td, .t-table th {
    font-size: inherit;
    margin: 0;
    overflow: visible;
    padding: 10px;
    font-weight: normal;
    vertical-align: middle;
    text-align: left;
    background: white; }
  .t-table th {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    background-color: #318C19;
    background-image: -moz-linear-gradient(top, #228b07, #1f7d07);
    background-image: linear-gradient(to bottom, #228b07, #1f7d07);
    color: #fff;
    -webkit-font-smoothing: antialiased;
    text-transform: uppercase; }
  .t-table tr:nth-child(2n-1) td {
    background-color: #f5f5f5; }

/**
 * ---------------------------------------------------------------------------------
 * Title Styles
 * ---------------------------------------------------------------------------------
 */
/**
 * These styles set the size, weight, family and other text
 * styles for heading sizes. We shouldn't need to add more titles
 * than these. Any custom titles belong in the component where they
 * are needed.
 *
 * Avoid setting colours here so that we can use modifiers
 * to change it.
 */
/**
 * This title style should always be green
 */
.t-h1, .t-copy h1, .t-inverseCopy h1 {
  font-size: 4.236em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 60px;
  letter-spacing: -2px; }

.t-h2, .t-copy h2, .t-inverseCopy h2 {
  font-size: 2.618em;
  line-height: 42px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -1.5px;
  font-style: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; }

.t-h3, .t-copy h3, .t-inverseCopy h3 {
  font-size: 1.618em;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: -1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; }

.t-h4, .t-copy h4, .t-inverseCopy h4 {
  font-size: 1em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase; }

.t-h5 {
  font-size: 1.1em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 23px; }

/**
 * ---------------------------------------------------------------------------------
 * Link Styles
 * ---------------------------------------------------------------------------------
 */
/**
 * Default link style. By default, links look like
 * normal text when just using the anchor tag.
 * The style of the link is set using a class like this,
 * or by using a parent class
 */
.t-link {
  color: #318C19;
  text-decoration: underline; }
  .t-link:hover {
    color: #38A21D; }

/**
 * Make a link invisible. Useful for making
 * titles links but without adding an underline.
 * This is used when we want to be forgiving and
 * allow users to click things, but it would look
 * gross if it had an underline.
 */
.t-invisibleLink {
  text-decoration: none; }

/**
 * A link that becomes more "linky" when it is hovered.
 * Use this when you want something to not look like a
 * link because it would be to dominant (eg. a list of links)
 * but you want them to still be obviously clickable.
 */
.t-hoverLink {
  text-decoration: none; }
  .t-hoverLink:hover {
    text-decoration: underline; }

/**
 * Style for an inverse link to be used on dark backgrounds
 */
.t-inverseLink {
  color: #fff;
  text-decoration: underline;
  -webkit-font-smoothing: antialiased; }
  .t-inverseLink:hover {
    color: #fff; }

/**
 * ---------------------------------------------------------------------------------
 * Text Styles
 * ---------------------------------------------------------------------------------
 */
.t-small, .t-legal, .t-copy small, .t-inverseCopy small {
  font-size: 0.857142857em;
  line-height: 18px; }

.t-legal, .t-copy small, .t-inverseCopy small {
  display: block; }
  .t-legal p, .t-copy small p, .t-inverseCopy small p, .t-legal li, .t-copy small li, .t-inverseCopy small li {
    -webkit-font-smoothing: subpixel-antialiased; }

.t-tiny {
  font-size: 11px;
  line-height: 15px; }
  .t-h1 .t-tiny, .t-copy h1 .t-tiny, .t-inverseCopy h1 .t-tiny {
    font-size: 0.31em; }

.t-highlight, .t-copy mark, .t-inverseCopy mark {
  color: #318C19; }

.t-subtle, .t-legal, .t-copy small, .t-inverseCopy small {
  color: #888; }

.t-strong {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500; }

.t-white, .t-inverseCopy, .t-inverse {
  color: white;
  -webkit-font-smoothing: antialiased; }

.t-loud {
  text-transform: uppercase; }

.t-lead {
  font-size: 1.285714286em;
  line-height: 23px; }

/**
 * ---------------------------------------------------------------------------------
 * Paragraph Styles
 * ---------------------------------------------------------------------------------
 */
.t-right {
  text-align: right; }

.t-left {
  text-align: left; }

.t-center {
  text-align: center; }

.t-justify {
  text-align: justify; }

.t-tight {
  line-height: 18px; }

.t-loose {
  line-height: 22px; }

/**
 * ---------------------------------------------------------------------------------
 * Copy Styles
 * ---------------------------------------------------------------------------------
 */
.t-copy *:first-child, .t-inverseCopy *:first-child {
  margin-top: 0; }
.t-copy ul, .t-inverseCopy ul, .t-copy ol, .t-inverseCopy ol, .t-copy table, .t-inverseCopy table, .t-copy address, .t-inverseCopy address, .t-copy small, .t-inverseCopy small, .t-copy p, .t-inverseCopy p {
  margin-bottom: 10.5px; }
.t-copy p, .t-inverseCopy p, .t-copy li, .t-inverseCopy li, .t-copy address, .t-inverseCopy address {
  -webkit-font-smoothing: antialiased; }
.t-copy em, .t-inverseCopy em {
  font-style: italic; }
.t-copy strong, .t-inverseCopy strong {
  font-weight: bold; }
.t-copy address, .t-inverseCopy address {
  font-style: normal; }
.t-copy a, .t-inverseCopy a {
  color: #318C19;
  text-decoration: underline; }
  .t-copy a:hover, .t-inverseCopy a:hover {
    color: #38A21D; }
.t-copy h1, .t-inverseCopy h1 {
  margin-bottom: 21px; }
.t-copy h2, .t-inverseCopy h2 {
  margin-bottom: 10.5px;
  margin-top: 42px; }
.t-copy h3, .t-inverseCopy h3 {
  margin-top: 31.5px;
  margin-bottom: 10.5px;
  text-transform: uppercase; }
.t-copy h4, .t-inverseCopy h4 {
  margin-top: 21px;
  text-transform: uppercase;
  margin-bottom: 0; }

.t-inverseCopy a, .t-inverseCopy a:hover {
  color: #fff; }


/**
 * ---------------------------------------------------------------------------------
 * Global Styles
 * Don't edit these styles. They affect all things.
 * ---------------------------------------------------------------------------------
 */
body {
  font-family: "adelle-sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #555555;
  font-size: 14px;
  line-height: 1.5;
  vertical-align: baseline; }

/**
 * Links, by default, use the color
 * of the text around them rather than
 * defaulting to blue
 */
a {
  color: inherit; }

hr {
  border: 0;
  height: 1px;
  background: #ccc; }

img {
  display: block; }

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0; }

ul, ol {
  margin: 0;
  padding: 0; }

small {
  font-size: 100%; }

p {
  margin: 0; }

blockquote {
  margin: 0; }

/**
 * ---------------------------------------------------------------------------------
 * Image Styles
 * ---------------------------------------------------------------------------------
 */
.t-imageLeft {
  float: left;
  margin: 21px;
  margin-left: 0;
  max-width: 320px; }

.t-imageRight {
  float: right;
  margin: 21px;
  margin-right: 0;
  max-width: 320px; }

.t-imageFull {
  margin: 21px 0;
  max-width: 100%; }

/**
 * ---------------------------------------------------------------------------------
 * List Styles
 * ---------------------------------------------------------------------------------
 */
/**
 * Move a list inside. Normally, list bullets will sit
 * outside of the content, allowing for better reading. However
 * sometimes you want to list to be within the content border
 */
.t-listInside {
  margin-left: 20px; }

/**
 * ---------------------------------------------------------------------------------
 * Table Styles
 * ---------------------------------------------------------------------------------
 */
.t-table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  font-size: 13px;
  line-height: 18px;
  margin: 21px 0; }
  .t-table td,
  .t-table th {
    font-size: inherit;
    margin: 0;
    overflow: visible;
    padding: 10px;
    font-weight: normal;
    vertical-align: middle;
    text-align: left;
    background: white; }
  .t-table th {
    font-family: "colfax-web", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    background-color: #318C19;
    background-image: -moz-linear-gradient(top, #228b07, #1f7d07);
    background-image: linear-gradient(to bottom, #228b07, #1f7d07);
    color: #fff;
    -webkit-font-smoothing: antialiased;
    text-transform: uppercase; }
  .t-table tr:nth-child(2n-1) td {
    background-color: #f5f5f5; }

/**
 * ---------------------------------------------------------------------------------
 * Title Styles
 * ---------------------------------------------------------------------------------
 */
/**
 * These styles set the size, weight, family and other text
 * styles for heading sizes. We shouldn't need to add more titles
 * than these. Any custom titles belong in the component where they
 * are needed.
 *
 * Avoid setting colours here so that we can use modifiers
 * to change it.
 */
/**
 * This title style should always be green
 */
.t-h1, .t-copy h1, .t-inverseCopy h1 {
  font-size: 4.236em;
  font-family: "colfax-web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 60px;
  letter-spacing: -2px; }

.t-h2, .t-copy h2, .t-inverseCopy h2 {
  font-size: 2.618em;
  line-height: 42px;
  font-family: "colfax-web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -1.5px;
  font-style: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; }

.t-h3, .t-copy h3, .t-inverseCopy h3 {
  font-size: 1.618em;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: -1px;
  font-family: "colfax-web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; }

.t-h4, .t-copy h4, .t-inverseCopy h4 {
  font-size: 1em;
  font-family: "colfax-web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase; }

.t-h5 {
  font-size: 1.1em;
  font-family: "colfax-web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 23px; }

/**
 * ---------------------------------------------------------------------------------
 * Link Styles
 * ---------------------------------------------------------------------------------
 */
/**
 * Default link style. By default, links look like
 * normal text when just using the anchor tag.
 * The style of the link is set using a class like this,
 * or by using a parent class
 */
.t-link {
  color: #318C19;
  text-decoration: underline; }
  .t-link:hover {
    color: #38A21D; }

/**
 * Make a link invisible. Useful for making
 * titles links but without adding an underline.
 * This is used when we want to be forgiving and
 * allow users to click things, but it would look
 * gross if it had an underline.
 */
.t-invisibleLink {
  text-decoration: none; }

/**
 * A link that becomes more "linky" when it is hovered.
 * Use this when you want something to not look like a
 * link because it would be to dominant (eg. a list of links)
 * but you want them to still be obviously clickable.
 */
.t-hoverLink {
  text-decoration: none; }
  .t-hoverLink:hover {
    text-decoration: underline; }

/**
 * Style for an inverse link to be used on dark backgrounds
 */
.t-inverseLink {
  color: #fff;
  text-decoration: underline;
  -webkit-font-smoothing: antialiased; }
  .t-inverseLink:hover {
    color: #fff; }

/**
 * ---------------------------------------------------------------------------------
 * Text Styles
 * ---------------------------------------------------------------------------------
 */
.t-small, .t-legal, .t-copy small, .t-inverseCopy small {
  font-size: 0.85714em;
  line-height: 18px; }

.t-legal, .t-copy small, .t-inverseCopy small {
  display: block; }
  .t-legal p, .t-copy small p, .t-inverseCopy small p,
  .t-legal li,
  .t-copy small li,
  .t-inverseCopy small li {
    -webkit-font-smoothing: subpixel-antialiased; }

.t-tiny {
  font-size: 11px;
  line-height: 15px; }
  .t-h1 .t-tiny, .t-copy h1 .t-tiny, .t-inverseCopy h1 .t-tiny {
    font-size: 0.310em; }

.t-highlight, .t-copy mark, .t-inverseCopy mark {
  color: #318C19; }

.t-subtle, .t-legal, .t-copy small, .t-inverseCopy small {
  color: #888; }

.t-strong {
  font-family: "colfax-web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500; }

.t-white, .t-inverseCopy,
.t-inverse {
  color: white;
  -webkit-font-smoothing: antialiased; }

.t-loud {
  text-transform: uppercase; }

.t-lead {
  font-size: 1.28571em;
  line-height: 23px; }

/**
 * ---------------------------------------------------------------------------------
 * Paragraph Styles
 * ---------------------------------------------------------------------------------
 */
.t-right {
  text-align: right; }

.t-left {
  text-align: left; }

.t-center {
  text-align: center; }

.t-justify {
  text-align: justify; }

.t-tight {
  line-height: 18px; }

.t-loose {
  line-height: 22px; }

/**
 * ---------------------------------------------------------------------------------
 * Copy Styles
 * ---------------------------------------------------------------------------------
 */
.t-copy *:first-child, .t-inverseCopy *:first-child {
  margin-top: 0; }
.t-copy ul, .t-inverseCopy ul,
.t-copy ol,
.t-inverseCopy ol,
.t-copy table,
.t-inverseCopy table,
.t-copy address,
.t-inverseCopy address,
.t-copy small,
.t-inverseCopy small,
.t-copy p,
.t-inverseCopy p {
  margin-bottom: 10.5px; }
.t-copy p, .t-inverseCopy p,
.t-copy li,
.t-inverseCopy li,
.t-copy address,
.t-inverseCopy address {
  -webkit-font-smoothing: antialiased; }
.t-copy em, .t-inverseCopy em {
  font-style: italic; }
.t-copy strong, .t-inverseCopy strong {
  font-weight: bold; }
.t-copy address, .t-inverseCopy address {
  font-style: normal; }
.t-copy a, .t-inverseCopy a {
  color: #318C19;
  text-decoration: underline; }
  .t-copy a:hover, .t-inverseCopy a:hover {
    color: #38A21D; }
.t-copy h1, .t-inverseCopy h1 {
  margin-bottom: 21px; }
.t-copy h2, .t-inverseCopy h2 {
  margin-bottom: 10.5px;
  margin-top: 42px; }
.t-copy h3, .t-inverseCopy h3 {
  margin-top: 31.5px;
  margin-bottom: 10.5px;
  text-transform: uppercase; }
.t-copy h4, .t-inverseCopy h4 {
  margin-top: 21px;
  text-transform: uppercase;
  margin-bottom: 0; }

.t-inverseCopy a,
.t-inverseCopy a:hover {
  color: #fff; }



/* === FONT FACE === */

@font-face {
    font-family: 'nibdings';
    font-weight: normal;
    font-style: normal;
    src: url('nib-styles/v2-icons/2.0.1/fonts/nibdings.eot');
    src:
        url('nib-styles/v2-icons/2.0.1/fonts/nibdings.eot?#iefix') format('eot'),
        url('nib-styles/v2-icons/2.0.1/fonts/nibdings.woff') format('woff'),
        url('nib-styles/v2-icons/2.0.1/fonts/nibdings.ttf') format('truetype'),
        url('nib-styles/v2-icons/2.0.1/fonts/nibdings.svg#nibdings') format('svg')
    ;
}


/* === ICON === */

.v2-icon {
    display: inline-block;
    font: normal normal normal 14px/1 'nibdings';
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: middle;
}

.v2-icon:before {
}

/* === ICON: SIZE === */

/* TODO: USE EMs so icons scale if user agent font size larger than normal? */

.v2-icon--smallest {
    font-size: 16px;
}

.v2-icon--smaller {
    font-size: 24px;
}

.v2-icon--small {
    font-size: 32px;
}

.v2-icon--medium {
    font-size: 48px;
}

.v2-icon--large {
    font-size: 64px;
}

.v2-icon--largest {
    font-size: 128px;
}

/* === ICON: COLOUR === */

.v2-icon--lightgreen {
    color: #009623;
}

.v2-icon--darkgreen {
    color: #0a6d12;
}

.v2-icon--lightgrey {
    color: #b9b9b9;
}

.v2-icon--darkgrey {
    color: #444;
}

.v2-icon--white {
    color: #fff;
}

/* === ICON: ROTATION === */

.v2-icon--rotate-90 {
    -webkit-transform: rotate(90deg);
       -moz-transform: rotate(90deg);
            transform: rotate(90deg);
}

.v2-icon--rotate-180 {
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
            transform: rotate(180deg);
}

.v2-icon--rotate-270 {
    -webkit-transform: rotate(270deg);
       -moz-transform: rotate(270deg);
            transform: rotate(270deg);
}

/* === ICON: SPIN === */

@-webkit-keyframes v2-icon-spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
                transform: rotate(359deg);
    }
}

@-moz-keyframes v2-icon-spin {
    0% {
        -moz-transform: rotate(0deg);
             transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(359deg);
             transform: rotate(359deg);
    }
}

@keyframes v2-icon-spin {
    0% {
        -webkit-transform: rotate(0deg);
           -moz-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
           -moz-transform: rotate(359deg);
                transform: rotate(359deg);
    }
}

.v2-icon--spin {
    -webkit-animation: v2-icon-spin 0.75s infinite linear;
       -moz-animation: v2-icon-spin 0.75s infinite linear;
            animation: v2-icon-spin 0.75s infinite linear;
}

/* === ICON: ALIGNMENT === */

/* offset the vertical alignment by the descender height so the icon still looks centered where `text-transform: uppercase` is applied to the containing div */
.v2-icon--offset-descenders {
    margin-top: -0.18em;
}

/* === ICON: GLYPH === */


.v2-icon--spinner:before {
    content: "\E036"
}

.v2-icon--calendar:before {
    content: "\E001"
}

.v2-icon--close-circle-inverse:before {
    content: "\E002"
}

.v2-icon--close-circle:before {
    content: "\E003"
}

.v2-icon--close:before {
    content: "\E004"
}

.v2-icon--document-inverse:before {
    content: "\E005"
}

.v2-icon--document:before {
    content: "\E006"
}

.v2-icon--edit:before {
    content: "\E007"
}

.v2-icon--envelope:before {
    content: "\E008"
}

.v2-icon--help-circle-inverse:before {
    content: "\E009"
}

.v2-icon--help-circle:before {
    content: "\E00A"
}

.v2-icon--help:before {
    content: "\E00B"
}

.v2-icon--info-circle-inverse:before {
    content: "\E00C"
}

.v2-icon--info-circle:before {
    content: "\E00D"
}

.v2-icon--location:before {
    content: "\E00E"
}

.v2-icon--lock-circle-inverse:before {
    content: "\E00F"
}

.v2-icon--lock:before {
    content: "\E010"
}

.v2-icon--menu:before {
    content: "\E011"
}

.v2-icon--pdf-inverse:before {
    content: "\E012"
}

.v2-icon--pdf:before {
    content: "\E013"
}

.v2-icon--phone:before {
    content: "\E014"
}

.v2-icon--plus-circle-inverse:before {
    content: "\E015"
}

.v2-icon--plus-circle:before {
    content: "\E016"
}

.v2-icon--plus:before {
    content: "\E017"
}

.v2-icon--shopping-cart:before {
    content: "\E018"
}

.v2-icon--smartphone:before {
    content: "\E019"
}

.v2-icon--tick-circle-inverse:before {
    content: "\E01A"
}

.v2-icon--tick-circle:before {
    content: "\E01B"
}

.v2-icon--tick:before {
    content: "\E01C"
}

.v2-icon--warning-inverse:before {
    content: "\E01D"
}

.v2-icon--warning:before {
    content: "\E01E"
}

.v2-icon--ambulance:before {
    content: "\E023"
}

.v2-icon--clock:before {
    content: "\E024"
}

.v2-icon--couple:before {
    content: "\E025"
}

.v2-icon--dollar-circle-inverse:before {
    content: "\E026"
}

.v2-icon--dollar-circle:before {
    content: "\E027"
}

.v2-icon--dollar:before {
    content: "\E028"
}

.v2-icon--family:before {
    content: "\E029"
}

.v2-icon--flag:before {
    content: "\E02A"
}

.v2-icon--heartrate:before {
    content: "\E02B"
}

.v2-icon--hospital:before {
    content: "\E02C"
}

.v2-icon--megaphone:before {
    content: "\E02D"
}

.v2-icon--paper-clip:before {
    content: "\E02E"
}

.v2-icon--settings:before {
    content: "\E02F"
}

.v2-icon--single:before {
    content: "\E030"
}

.v2-icon--stopwatch:before {
    content: "\E031"
}

.v2-icon--switching:before {
    content: "\E032"
}

.v2-icon--thumbs-up:before {
    content: "\E033"
}

.v2-icon--tools:before {
    content: "\E034"
}

.v2-icon--umbrella:before {
    content: "\E035"
}

.v2-icon--person:before {
    content: "\E037"
}

.v2-icon--arrow:before {
    content: "\E01F"
}

.v2-icon--chevron-circle-inverse:before {
    content: "\E020"
}

.v2-icon--chevron-circle:before {
    content: "\E021"
}

.v2-icon--chevron:before {
    content: "\E022"
}


@font-face {
  font-family: 'nibdings';
  font-weight: normal;
  font-style: normal;
  src: url("nib-styles/v2-icons/v2.11.0/dist/fonts/nibdings.eot");
  src: url("nib-styles/v2-icons/v2.11.0/dist/fonts/nibdings.eot?#iefix") format("eot"), url("nib-styles/v2-icons/v2.11.0/dist/fonts/nibdings.woff") format("woff"), url("nib-styles/v2-icons/v2.11.0/dist/fonts/nibdings.ttf") format("truetype"), url("nib-styles/v2-icons/v2.11.0/dist/fonts/nibdings.svg#nibdings") format("svg"); }

/* === ICON === */
.v2-icon {
  display: inline-block;
  font: normal normal normal 14px/1 'nibdings';
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle; }

/* === ICON: SIZE === */
/* TODO: USE EMs so icons scale if user agent font size larger than normal? */
.v2-icon--smallest {
  font-size: 16px; }

.v2-icon--smaller {
  font-size: 24px; }

.v2-icon--small {
  font-size: 32px; }

.v2-icon--medium {
  font-size: 48px; }

.v2-icon--large {
  font-size: 64px; }

.v2-icon--largest {
  font-size: 128px; }

/* === ICON: COLOUR === */
.v2-icon--lightgreen {
  color: #009623; }

.v2-icon--darkgreen {
  color: #0a6d12; }

.v2-icon--lightgrey {
  color: #b9b9b9; }

.v2-icon--darkgrey {
  color: #444; }

.v2-icon--white {
  color: #fff; }

/* === ICON: ROTATION === */
.v2-icon--rotate-90 {
  -webkit-transform: rotate(90deg);
     -moz-transform: rotate(90deg);
          transform: rotate(90deg); }

.v2-icon--rotate-180 {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
          transform: rotate(180deg); }

.v2-icon--rotate-270 {
  -webkit-transform: rotate(270deg);
     -moz-transform: rotate(270deg);
          transform: rotate(270deg); }

/* === ICON: SPIN === */
@keyframes v2-icon-spin {
  0% {
    -webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
       -moz-transform: rotate(359deg);
            transform: rotate(359deg); } }

.v2-icon--spin {
  -webkit-animation: v2-icon-spin 0.75s infinite linear;
     -moz-animation: v2-icon-spin 0.75s infinite linear;
          animation: v2-icon-spin 0.75s infinite linear; }

/* === ICON: ALIGNMENT === */
/* offset the vertical alignment by the descender height so the icon still looks centered where `text-transform: uppercase` is applied to the containing div */
.v2-icon--offset-descenders {
  margin-top: -0.18em; }

/* === ICON: GLYPH === */
.v2-icon--calendar:before {
  content: "\E001"; }

.v2-icon--close-circle-inverse:before {
  content: "\E002"; }

.v2-icon--close-circle:before {
  content: "\E003"; }

.v2-icon--close:before {
  content: "\E004"; }

.v2-icon--document-inverse:before {
  content: "\E005"; }

.v2-icon--document:before {
  content: "\E006"; }

.v2-icon--edit:before {
  content: "\E007"; }

.v2-icon--envelope:before {
  content: "\E008"; }

.v2-icon--help-circle-inverse:before {
  content: "\E009"; }

.v2-icon--help-circle:before {
  content: "\E00A"; }

.v2-icon--help:before {
  content: "\E00B"; }

.v2-icon--info-circle-inverse:before {
  content: "\E00C"; }

.v2-icon--info-circle:before {
  content: "\E00D"; }

.v2-icon--location:before {
  content: "\E00E"; }

.v2-icon--lock-circle-inverse:before {
  content: "\E00F"; }

.v2-icon--lock:before {
  content: "\E010"; }

.v2-icon--menu:before {
  content: "\E011"; }

.v2-icon--pdf-inverse:before {
  content: "\E012"; }

.v2-icon--pdf:before {
  content: "\E013"; }

.v2-icon--phone:before {
  content: "\E014"; }

.v2-icon--plus-circle-inverse:before {
  content: "\E015"; }

.v2-icon--plus-circle:before {
  content: "\E016"; }

.v2-icon--plus:before {
  content: "\E017"; }

.v2-icon--shopping-cart:before {
  content: "\E018"; }

.v2-icon--smartphone:before {
  content: "\E019"; }

.v2-icon--tick-circle-inverse:before {
  content: "\E01A"; }

.v2-icon--tick-circle:before {
  content: "\E01B"; }

.v2-icon--tick:before {
  content: "\E01C"; }

.v2-icon--warning-inverse:before {
  content: "\E01D"; }

.v2-icon--warning:before {
  content: "\E01E"; }

.v2-icon--fax:before {
  content: "\E038"; }

.v2-icon--couple:before {
  content: "\E04B"; }

.v2-icon--family:before {
  content: "\E04C"; }

.v2-icon--over-55:before {
  content: "\E04D"; }

.v2-icon--single:before {
  content: "\E04E"; }

.v2-icon--single-parent-family:before {
  content: "\E04F"; }

.v2-icon--ambulance:before {
  content: "\E023"; }

.v2-icon--clock:before {
  content: "\E024"; }

.v2-icon--dollar-circle-inverse:before {
  content: "\E026"; }

.v2-icon--dollar-circle:before {
  content: "\E027"; }

.v2-icon--dollar:before {
  content: "\E028"; }

.v2-icon--facebook-circle-inverse:before {
  content: "\E029"; }

.v2-icon--flag:before {
  content: "\E02A"; }

.v2-icon--heartrate:before {
  content: "\E02B"; }

.v2-icon--hospital:before {
  content: "\E02C"; }

.v2-icon--megaphone:before {
  content: "\E02D"; }

.v2-icon--paper-clip:before {
  content: "\E02E"; }

.v2-icon--settings:before {
  content: "\E02F"; }

.v2-icon--facebook-circle:before {
  content: "\E030"; }

.v2-icon--stopwatch:before {
  content: "\E031"; }

.v2-icon--switching:before {
  content: "\E032"; }

.v2-icon--thumbs-up:before {
  content: "\E033"; }

.v2-icon--tools:before {
  content: "\E034"; }

.v2-icon--umbrella:before {
  content: "\E035"; }

.v2-icon--person:before {
  content: "\E037"; }

.v2-icon--facebook:before {
  content: "\E039"; }

.v2-icon--google-plus-circle-inverse:before {
  content: "\E03F"; }

.v2-icon--google-plus-circle:before {
  content: "\E040"; }

.v2-icon--google-plus:before {
  content: "\E041"; }

.v2-icon--instagram-circle-inverse:before {
  content: "\E042"; }

.v2-icon--instagram-circle:before {
  content: "\E043"; }

.v2-icon--instagram:before {
  content: "\E044"; }

.v2-icon--twitter-circle-inverse:before {
  content: "\E045"; }

.v2-icon--twitter-circle:before {
  content: "\E046"; }

.v2-icon--twitter:before {
  content: "\E047"; }

.v2-icon--youtube-circle-inverse:before {
  content: "\E048"; }

.v2-icon--youtube-circle:before {
  content: "\E049"; }

.v2-icon--youtube:before {
  content: "\E04A"; }

.v2-icon--flag-circle-inverse:before {
  content: "\EA01"; }

.v2-icon--gift:before {
  content: "\EA02"; }

.v2-icon--arrow:before {
  content: "\E01F"; }

.v2-icon--chevron-circle-inverse:before {
  content: "\E020"; }

.v2-icon--chevron-circle:before {
  content: "\E021"; }

.v2-icon--chevron:before {
  content: "\E022"; }

.v2-icon--device-orientation:before {
  content: "\EA04"; }

.v2-icon--stethoscope:before {
  content: "\E025"; }

.v2-icon--spinner:before {
  content: "\E036"; }

.v2-icon--receipt:before {
  content: "\E03A"; }

.v2-icon--screen:before {
  content: "\E03B"; }

.v2-icon--slip:before {
  content: "\E03C"; }

.v2-icon--tooth:before {
  content: "\E03D"; }

.v2-icon--heart:before {
  content: "\E03E"; }

.v2-icon--group-circle-inverse:before {
  content: "\EA03"; }

.v2-icon--magnifying-glass:before {
  content: "\EA05"; }

.v2-icon--trashcan:before {
  content: "\EA06"; }

.v2-icon--certificate:before {
  content: "\EA07"; }

.v2-icon--records-layered:before {
  content: "\EA10"; }


.v2-validation-msg {
  padding: 20px 20px 20px 86px;
  position: relative;
  min-height: 50px;
  font-size: 16px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 3px;
}

.v2-validation-msg::after {
  /* use nib-styles/v2-icons as font to get icons */
  font: normal normal normal 14px/1 'nibdings';
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 40px;
  position: absolute;
  padding-top: 10px;
  top: 15px;
  bottom: 15px;
  left: 0;
  width: 65px;
  color: #fff;
  text-align: center;
  -webkit-animation: pop-out 0.6s cubic-bezier(0.19, 1, 0.22, 1);
     -moz-animation: pop-out 0.6s cubic-bezier(0.19, 1, 0.22, 1);
          animation: pop-out 0.6s cubic-bezier(0.19, 1, 0.22, 1);;
}

.v2-validation-msg__error {
  background-color: #df6666;
  color: #fff;
}

.v2-validation-msg__error::after {
  content: "\E004";
  color: #fff;
  border-right: 2px solid #fff;
}

.v2-validation-msg__info {
  background-color: #55a2df;
  color: #fff;
}

.v2-validation-msg__info::after {
  content: "\E00D";
  color: #fff;
  border-right: 2px solid #fff;
}

.v2-validation-msg__success {
  background-color: #009623;
  color: #fff;
}

.v2-validation-msg__success::after{
  content: "\E01C";
  color: #fff;
  border-right: 2px solid #fff;
}

.v2-validation-msg__warning {
  background-color: #ffb400;
  color: #fff;
}

.v2-validation-msg__warning::after{
  content: "\E01E";
  color: #fff;
  border-right: 2px solid #fff;
}

.v2-validation-msg__success--centered-tick::after {
  padding-top: 35px;
}

@-webkit-keyframes pop-out {
  0% {
    padding-top: 100%;
  }
  20% {
    padding-top: 100%;
  }
  100% {
    padding-top: inherit;
  }
}

@-moz-keyframes pop-out {
  0% {
    padding-top: 100%;
  }
  20% {
    padding-top: 100%;
  }
  100% {
    padding-top: inherit;
  }
}

@keyframes pop-out {
  0% {
    padding-top: 100%;
  }
  20% {
    padding-top: 100%;
  }
  100% {
    padding-top: inherit;
  }
}

.v2-validation-msg--title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}






/* === Common === */
.v2-button {
  font-size: 14px;
  font-weight: 700;
  font-family: "open sans", sans-serif;
  line-height: 20px;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  /* for iOS */
  -webkit-tap-highlight-color: transparent;
  /* for some Androids */
  cursor: pointer;
  /* the following properties reset the Browser/OS specific styles of a <button> */
  border: none;
  background-color: transparent;
  /* === Modifier: Disabled === */
  /* === Modifier: Size === */
  /* === Modifier: Icon === */ }
  .v2-button--is-disabled, .v2-button[disabled] {
    cursor: default; }
  .v2-button--medium {
    font-family: "roboto", sans-serif;
    font-size: 18px;
    line-height: 24px; }
  .v2-button--large {
    font-family: "roboto", sans-serif;
    font-size: 24px;
    line-height: 32px; }
  .v2-button--icon-on-left > .v2-icon {
    margin-right: 10px; }
  .v2-button--icon-on-right > .v2-icon {
    margin-left: 10px; }

/* === Primary/Secondary === */
.v2-button--primary,
.v2-button--secondary-green,
.v2-button--secondary-light-grey,
.v2-button--secondary-dark-grey {
  padding: 10px 20px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  -moz-transition: background-color 0.25s;
       transition: background-color 0.25s;
  /* === Modifier: Size === */ }
  .v2-button--primary--medium,
  .v2-button--secondary-green--medium,
  .v2-button--secondary-light-grey--medium,
  .v2-button--secondary-dark-grey--medium {
    padding: 10px 25px !important; }
  .v2-button--primary--large,
  .v2-button--secondary-green--large,
  .v2-button--secondary-light-grey--large,
  .v2-button--secondary-dark-grey--large {
    padding: 10px 30px !important; }

.v2-button--primary {
  background-color: #ffb400; }

.v2-button--primary:hover {
  background-color: #e6a200; }

.v2-button--primary:active {
  background-color: #e6a200; }

.v2-button--primary.is-disabled,
.v2-button--primary[disabled],
.v2-button--primary.is-disabled:hover,
.v2-button--primary[disabled]:hover,
.v2-button--primary.is-disabled:active,
.v2-button--primary[disabled]:active {
  background-color: #ffb400; }

/* Secondary: green */
.v2-button--secondary-green {
  background-color: #009623; }

.v2-button--secondary-green:hover {
  background-color: #007d1d; }

.v2-button--secondary-green:active {
  background-color: #006317; }

.v2-button--secondary-green.is-disabled,
.v2-button--secondary-green[disabled],
.v2-button--secondary-green.is-disabled:hover,
.v2-button--secondary-green[disabled]:hover,
.v2-button--secondary-green.is-disabled:active,
.v2-button--secondary-green[disabled]:active {
  background-color: #009623; }

/* Secondary: light grey */
.v2-button--secondary-light-grey {
  color: #444;
  background-color: #eee; }

.v2-button--secondary-light-grey:hover {
  background-color: #e1e1e1; }

.v2-button--secondary-light-grey:active {
  background-color: #d4d4d4; }

.v2-button--secondary-light-grey.is-disabled,
.v2-button--secondary-light-grey[disabled],
.v2-button--secondary-light-grey.is-disabled:hover,
.v2-button--secondary-light-grey[disabled]:hover,
.v2-button--secondary-light-grey.is-disabled:active,
.v2-button--secondary-light-grey[disabled]:active {
  background-color: #eee; }

/* Secondary: dark grey */
.v2-button--secondary-dark-grey {
  background-color: #888; }

.v2-button--secondary-dark-grey:hover {
  background-color: #7b7b7b; }

.v2-button--secondary-dark-grey:active {
  background-color: #6f6f6f; }

.v2-button--secondary-dark-grey.is-disabled,
.v2-button--secondary-dark-grey[disabled],
.v2-button--secondary-dark-grey.is-disabled:hover,
.v2-button--secondary-dark-grey[disabled]:hover,
.v2-button--secondary-dark-grey.is-disabled:active,
.v2-button--secondary-dark-grey[disabled]:active {
  background-color: #888; }

/* Tertiary: green */
.v2-button--tertiary-green {
  color: #009623; }

.v2-button--tertiary-green:hover {
  color: #006317; }

.v2-button--tertiary-green:active {
  color: #004a11; }

.v2-button--tertiary-green.is-disabled,
.v2-button--tertiary-green[disabled],
.v2-button--tertiary-green.is-disabled:hover,
.v2-button--tertiary-green[disabled]:hover,
.v2-button--tertiary-green.is-disabled:active,
.v2-button--tertiary-green[disabled]:active {
  color: #009623; }

/* Tertiary: grey */
.v2-button--tertiary-grey {
  color: #444; }

.v2-button--tertiary-grey:hover {
  color: #2b2b2b; }

.v2-button--tertiary-grey:active {
  color: #1e1e1e; }

.v2-button--tertiary-grey.is-disabled,
.v2-button--tertiary-grey[disabled],
.v2-button--tertiary-grey.is-disabled:hover,
.v2-button--tertiary-grey[disabled]:hover,
.v2-button--tertiary-grey.is-disabled:active,
.v2-button--tertiary-grey[disabled]:active {
  color: #444; }

/* Tertiary: white */
.v2-button--tertiary-white {
  color: #fff; }

.v2-button--tertiary-white:hover {
  color: #e6e6e6; }

.v2-button--tertiary-white:active {
  color: #d9d9d9; }

.v2-button--tertiary-white.is-disabled,
.v2-button--tertiary-white[disabled],
.v2-button--tertiary-white.is-disabled:hover,
.v2-button--tertiary-white[disabled]:hover,
.v2-button--tertiary-white.is-disabled:active,
.v2-button--tertiary-white[disabled]:active {
  color: #fff; }

/* Supplementary: green */
.v2-button--supplementary-green {
  color: #009623; }

.v2-button--supplementary-green.is-disabled,
.v2-button--supplementary-green[disabled],
.v2-button--supplementary-green.is-disabled:hover,
.v2-button--supplementary-green[disabled]:hover,
.v2-button--supplementary-green.is-disabled:active,
.v2-button--supplementary-green[disabled]:active {
  color: #009623; }

/* Supplementary: grey */
.v2-button--supplementary-grey {
  color: #444; }

.v2-button--supplementary-grey:hover {
  color: #2b2b2b; }

.v2-button--supplementary-grey:active {
  color: #1e1e1e; }

.v2-button--supplementary-grey.is-disabled,
.v2-button--supplementary-grey[disabled],
.v2-button--supplementary-grey.is-disabled:hover,
.v2-button--supplementary-grey[disabled]:hover,
.v2-button--supplementary-grey.is-disabled:active,
.v2-button--supplementary-grey[disabled]:active {
  color: #444; }

/* Supplementary: white */
.v2-button--supplementary-white {
  color: #fff; }

.v2-button--supplementary-white:hover {
  color: #e6e6e6; }

.v2-button--supplementary-white:active {
  color: #d9d9d9; }

.v2-button--supplementary-white.is-disabled,
.v2-button--supplementary-white[disabled],
.v2-button--supplementary-white.is-disabled:hover,
.v2-button--supplementary-white[disabled]:hover,
.v2-button--supplementary-white.is-disabled:active,
.v2-button--supplementary-white[disabled]:active {
  color: #fff; }



.v2-copy {
  color: #444;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.v2-copy--white {
  color: #fff;
}

.v2-paragraph {
  margin-top: 10px;
  margin-bottom: 10px;

}


.v2-link {
  cursor: pointer;
  -moz-transition: opacity 0.25s;
       transition: opacity 0.25s;
  text-decoration: underline;
}

.v2-link:hover{
  opacity: 0.7;
}

.v2-link:active{
  opacity: 1;
}

.v2-link--green {
  color: #009623;
}

.v2-link--grey {
  color: #444;
}

.v2-link--white {
  color: #fff;
}



.v2-list {
  margin: 0;
  padding: 0;
}

.v2-list--copy {
  padding-left: 40px;
  margin-bottom: 20px;
}

.v2-list--copy .v2-list__item {
  margin-top: 7px;
}

/*
* Base Icon List
*/

.v2-list--icon {
  list-style: none;
  margin-bottom: 1.5em;
}

.v2-list--icon > .v2-list__item {
  margin-bottom: .5em;
  position: relative;
  padding-left: 1.5em;
  line-height: 1.4;
}

.v2-list--icon > .v2-list__item:before {
  position: relative;
  vertical-align: middle;
  font-family: 'nibdings';
  line-height: 1;
  color: #26B11B;
  margin-right: .5em;
  margin-left: -1.5em;
}

/*
* Icon List Modifiers
*/

.v2-list--tick > .v2-list__item:before {
  content: "\E01C";
  top:-1px;
}

.v2-list--chevron > .v2-list__item:before {
  content: "\E022";
  top:-2px;
}


.v2-title {
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
}

.v2-title--1 {
  margin-top: 60px;
  margin-bottom: 25px;
  font-size: 54px;
  letter-spacing: -2px;
  line-height: 60px;
}

.v2-title--2 {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 36px;
  letter-spacing: -1px;
  line-height: 48px;
}

.v2-title--3 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 24px;
  letter-spacing: -1px;
  line-height: 32px;
}

.v2-title--4 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.v2-title--white {
  color: #fff;
}



.u-bold {
  font-weight: bold;
}

.u-italic {
  font-style: italic;
}

.u-uppercase {
  text-transform: uppercase;
}

.u-nowrap {
  white-space: nowrap;
}

.u-ellipsis {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}


/**
 * Container for the grid
 */
.rg-Page {
  margin: 0 auto;
  max-width: 60rem; }
  .no-mediaqueries .rg-Page {
    width: 960px; }

/**
 * Grid Unit Container
 */
.rg-Grid {
  letter-spacing: -0.31em;
  text-rendering: optimizespeed;
  margin: 0;
  padding: 0; }

.rg-Grid--center {
  text-align: center; }

/**
 * Represents a single column
 */
.rg-Unit {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  letter-spacing: normal;
  text-align: left;
  text-rendering: auto;
  vertical-align: top;
  word-spacing: normal;
  width: 100%; }

.rg-Unit--center {
  margin: 0 auto;
  display: block; }

/**
 * Base settings. The column widths
 * will be based in the font-size using rems
 */
html {
  font-size: 16px; }

html:before {
  display: none; }

@media (min-width: 1em) {
  html:before {
    content: "4"; }

  .rg-centerAt4 {
    margin-left: auto;
    margin-right: auto; }

  .rg-invisibleAt4,
  .rg-hiddenAt4 {
    display: none !important; }

  .rg-visibleAt4,
  .rg-blockAt4 {
    display: block !important; }

  .rg-inlineBlockAt4 {
    display: inline-block !important; }

  .rg-inlineAt4 {
    display: inline !important; }

  .rg-textCenterAt4 {
    text-align: center; }

  .rg-textLeftAt4 {
    text-align: left; }

  .rg-textRightAt4 {
    text-align: right; }

  .rg-autoAt4 {
    width: auto; }

  .rg-1of4 {
    width: 25%; }

  .rg-2of4 {
    width: 50%; }

  .rg-3of4 {
    width: 75%; }

  .rg-4of4 {
    width: 100%; }

  .rg-p0at4 {
    padding: 0; }

  .rg-pt0at4 {
    padding-top: 0; }

  .rg-pr0at4 {
    padding-right: 0; }

  .rg-pb0at4 {
    padding-bottom: 0; }

  .rg-pl0at4 {
    padding-left: 0; }

  .rg-py0at4 {
    padding-top: 0;
    padding-bottom: 0; }

  .rg-px0at4 {
    padding-right: 0;
    padding-left: 0; }

  .rg-m0at4 {
    margin: 0; }

  .rg-mt0at4 {
    margin-top: 0; }

  .rg-mr0at4 {
    margin-right: 0; }

  .rg-mb0at4 {
    margin-bottom: 0; }

  .rg-ml0at4 {
    margin-left: 0; }

  .rg-my0at4 {
    margin-top: 0;
    margin-bottom: 0; }

  .rg-mx0at4 {
    margin-right: 0;
    margin-left: 0; }

  .rg-p1at4 {
    padding: 5px; }

  .rg-pt1at4 {
    padding-top: 5px; }

  .rg-pr1at4 {
    padding-right: 5px; }

  .rg-pb1at4 {
    padding-bottom: 5px; }

  .rg-pl1at4 {
    padding-left: 5px; }

  .rg-py1at4 {
    padding-top: 5px;
    padding-bottom: 5px; }

  .rg-px1at4 {
    padding-right: 5px;
    padding-left: 5px; }

  .rg-m1at4 {
    margin: 5px; }

  .rg-mt1at4 {
    margin-top: 5px; }

  .rg-mr1at4 {
    margin-right: 5px; }

  .rg-mb1at4 {
    margin-bottom: 5px; }

  .rg-ml1at4 {
    margin-left: 5px; }

  .rg-my1at4 {
    margin-top: 5px;
    margin-bottom: 5px; }

  .rg-mx1at4 {
    margin-right: 5px;
    margin-left: 5px; }

  .rg-p2at4 {
    padding: 10px; }

  .rg-pt2at4 {
    padding-top: 10px; }

  .rg-pr2at4 {
    padding-right: 10px; }

  .rg-pb2at4 {
    padding-bottom: 10px; }

  .rg-pl2at4 {
    padding-left: 10px; }

  .rg-py2at4 {
    padding-top: 10px;
    padding-bottom: 10px; }

  .rg-px2at4 {
    padding-right: 10px;
    padding-left: 10px; }

  .rg-m2at4 {
    margin: 10px; }

  .rg-mt2at4 {
    margin-top: 10px; }

  .rg-mr2at4 {
    margin-right: 10px; }

  .rg-mb2at4 {
    margin-bottom: 10px; }

  .rg-ml2at4 {
    margin-left: 10px; }

  .rg-my2at4 {
    margin-top: 10px;
    margin-bottom: 10px; }

  .rg-mx2at4 {
    margin-right: 10px;
    margin-left: 10px; }

  .rg-p3at4 {
    padding: 20px; }

  .rg-pt3at4 {
    padding-top: 20px; }

  .rg-pr3at4 {
    padding-right: 20px; }

  .rg-pb3at4 {
    padding-bottom: 20px; }

  .rg-pl3at4 {
    padding-left: 20px; }

  .rg-py3at4 {
    padding-top: 20px;
    padding-bottom: 20px; }

  .rg-px3at4 {
    padding-right: 20px;
    padding-left: 20px; }

  .rg-m3at4 {
    margin: 20px; }

  .rg-mt3at4 {
    margin-top: 20px; }

  .rg-mr3at4 {
    margin-right: 20px; }

  .rg-mb3at4 {
    margin-bottom: 20px; }

  .rg-ml3at4 {
    margin-left: 20px; }

  .rg-my3at4 {
    margin-top: 20px;
    margin-bottom: 20px; }

  .rg-mx3at4 {
    margin-right: 20px;
    margin-left: 20px; }

  .rg-p4at4 {
    padding: 40px; }

  .rg-pt4at4 {
    padding-top: 40px; }

  .rg-pr4at4 {
    padding-right: 40px; }

  .rg-pb4at4 {
    padding-bottom: 40px; }

  .rg-pl4at4 {
    padding-left: 40px; }

  .rg-py4at4 {
    padding-top: 40px;
    padding-bottom: 40px; }

  .rg-px4at4 {
    padding-right: 40px;
    padding-left: 40px; }

  .rg-m4at4 {
    margin: 40px; }

  .rg-mt4at4 {
    margin-top: 40px; }

  .rg-mr4at4 {
    margin-right: 40px; }

  .rg-mb4at4 {
    margin-bottom: 40px; }

  .rg-ml4at4 {
    margin-left: 40px; }

  .rg-my4at4 {
    margin-top: 40px;
    margin-bottom: 40px; }

  .rg-mx4at4 {
    margin-right: 40px;
    margin-left: 40px; }

  .rg-p5at4 {
    padding: 60px; }

  .rg-pt5at4 {
    padding-top: 60px; }

  .rg-pr5at4 {
    padding-right: 60px; }

  .rg-pb5at4 {
    padding-bottom: 60px; }

  .rg-pl5at4 {
    padding-left: 60px; }

  .rg-py5at4 {
    padding-top: 60px;
    padding-bottom: 60px; }

  .rg-px5at4 {
    padding-right: 60px;
    padding-left: 60px; }

  .rg-m5at4 {
    margin: 60px; }

  .rg-mt5at4 {
    margin-top: 60px; }

  .rg-mr5at4 {
    margin-right: 60px; }

  .rg-mb5at4 {
    margin-bottom: 60px; }

  .rg-ml5at4 {
    margin-left: 60px; }

  .rg-my5at4 {
    margin-top: 60px;
    margin-bottom: 60px; }

  .rg-mx5at4 {
    margin-right: 60px;
    margin-left: 60px; } }
@media (min-width: 30em) {
  html:before {
    content: "6"; }

  .rg-centerAt6 {
    margin-left: auto;
    margin-right: auto; }

  .rg-invisibleAt6,
  .rg-hiddenAt6 {
    display: none !important; }

  .rg-visibleAt6,
  .rg-blockAt6 {
    display: block !important; }

  .rg-inlineBlockAt6 {
    display: inline-block !important; }

  .rg-inlineAt6 {
    display: inline !important; }

  .rg-textCenterAt6 {
    text-align: center; }

  .rg-textLeftAt6 {
    text-align: left; }

  .rg-textRightAt6 {
    text-align: right; }

  .rg-autoAt6 {
    width: auto; }

  .rg-1of6 {
    width: 16.66667%; }

  .rg-2of6 {
    width: 33.33333%; }

  .rg-3of6 {
    width: 50%; }

  .rg-4of6 {
    width: 66.66667%; }

  .rg-5of6 {
    width: 83.33333%; }

  .rg-6of6 {
    width: 100%; }

  .rg-p0at6 {
    padding: 0; }

  .rg-pt0at6 {
    padding-top: 0; }

  .rg-pr0at6 {
    padding-right: 0; }

  .rg-pb0at6 {
    padding-bottom: 0; }

  .rg-pl0at6 {
    padding-left: 0; }

  .rg-py0at6 {
    padding-top: 0;
    padding-bottom: 0; }

  .rg-px0at6 {
    padding-right: 0;
    padding-left: 0; }

  .rg-m0at6 {
    margin: 0; }

  .rg-mt0at6 {
    margin-top: 0; }

  .rg-mr0at6 {
    margin-right: 0; }

  .rg-mb0at6 {
    margin-bottom: 0; }

  .rg-ml0at6 {
    margin-left: 0; }

  .rg-my0at6 {
    margin-top: 0;
    margin-bottom: 0; }

  .rg-mx0at6 {
    margin-right: 0;
    margin-left: 0; }

  .rg-p1at6 {
    padding: 5px; }

  .rg-pt1at6 {
    padding-top: 5px; }

  .rg-pr1at6 {
    padding-right: 5px; }

  .rg-pb1at6 {
    padding-bottom: 5px; }

  .rg-pl1at6 {
    padding-left: 5px; }

  .rg-py1at6 {
    padding-top: 5px;
    padding-bottom: 5px; }

  .rg-px1at6 {
    padding-right: 5px;
    padding-left: 5px; }

  .rg-m1at6 {
    margin: 5px; }

  .rg-mt1at6 {
    margin-top: 5px; }

  .rg-mr1at6 {
    margin-right: 5px; }

  .rg-mb1at6 {
    margin-bottom: 5px; }

  .rg-ml1at6 {
    margin-left: 5px; }

  .rg-my1at6 {
    margin-top: 5px;
    margin-bottom: 5px; }

  .rg-mx1at6 {
    margin-right: 5px;
    margin-left: 5px; }

  .rg-p2at6 {
    padding: 10px; }

  .rg-pt2at6 {
    padding-top: 10px; }

  .rg-pr2at6 {
    padding-right: 10px; }

  .rg-pb2at6 {
    padding-bottom: 10px; }

  .rg-pl2at6 {
    padding-left: 10px; }

  .rg-py2at6 {
    padding-top: 10px;
    padding-bottom: 10px; }

  .rg-px2at6 {
    padding-right: 10px;
    padding-left: 10px; }

  .rg-m2at6 {
    margin: 10px; }

  .rg-mt2at6 {
    margin-top: 10px; }

  .rg-mr2at6 {
    margin-right: 10px; }

  .rg-mb2at6 {
    margin-bottom: 10px; }

  .rg-ml2at6 {
    margin-left: 10px; }

  .rg-my2at6 {
    margin-top: 10px;
    margin-bottom: 10px; }

  .rg-mx2at6 {
    margin-right: 10px;
    margin-left: 10px; }

  .rg-p3at6 {
    padding: 20px; }

  .rg-pt3at6 {
    padding-top: 20px; }

  .rg-pr3at6 {
    padding-right: 20px; }

  .rg-pb3at6 {
    padding-bottom: 20px; }

  .rg-pl3at6 {
    padding-left: 20px; }

  .rg-py3at6 {
    padding-top: 20px;
    padding-bottom: 20px; }

  .rg-px3at6 {
    padding-right: 20px;
    padding-left: 20px; }

  .rg-m3at6 {
    margin: 20px; }

  .rg-mt3at6 {
    margin-top: 20px; }

  .rg-mr3at6 {
    margin-right: 20px; }

  .rg-mb3at6 {
    margin-bottom: 20px; }

  .rg-ml3at6 {
    margin-left: 20px; }

  .rg-my3at6 {
    margin-top: 20px;
    margin-bottom: 20px; }

  .rg-mx3at6 {
    margin-right: 20px;
    margin-left: 20px; }

  .rg-p4at6 {
    padding: 40px; }

  .rg-pt4at6 {
    padding-top: 40px; }

  .rg-pr4at6 {
    padding-right: 40px; }

  .rg-pb4at6 {
    padding-bottom: 40px; }

  .rg-pl4at6 {
    padding-left: 40px; }

  .rg-py4at6 {
    padding-top: 40px;
    padding-bottom: 40px; }

  .rg-px4at6 {
    padding-right: 40px;
    padding-left: 40px; }

  .rg-m4at6 {
    margin: 40px; }

  .rg-mt4at6 {
    margin-top: 40px; }

  .rg-mr4at6 {
    margin-right: 40px; }

  .rg-mb4at6 {
    margin-bottom: 40px; }

  .rg-ml4at6 {
    margin-left: 40px; }

  .rg-my4at6 {
    margin-top: 40px;
    margin-bottom: 40px; }

  .rg-mx4at6 {
    margin-right: 40px;
    margin-left: 40px; }

  .rg-p5at6 {
    padding: 60px; }

  .rg-pt5at6 {
    padding-top: 60px; }

  .rg-pr5at6 {
    padding-right: 60px; }

  .rg-pb5at6 {
    padding-bottom: 60px; }

  .rg-pl5at6 {
    padding-left: 60px; }

  .rg-py5at6 {
    padding-top: 60px;
    padding-bottom: 60px; }

  .rg-px5at6 {
    padding-right: 60px;
    padding-left: 60px; }

  .rg-m5at6 {
    margin: 60px; }

  .rg-mt5at6 {
    margin-top: 60px; }

  .rg-mr5at6 {
    margin-right: 60px; }

  .rg-mb5at6 {
    margin-bottom: 60px; }

  .rg-ml5at6 {
    margin-left: 60px; }

  .rg-my5at6 {
    margin-top: 60px;
    margin-bottom: 60px; }

  .rg-mx5at6 {
    margin-right: 60px;
    margin-left: 60px; } }
@media (min-width: 40em) {
  html:before {
    content: "8"; }

  .rg-centerAt8 {
    margin-left: auto;
    margin-right: auto; }

  .rg-invisibleAt8,
  .rg-hiddenAt8 {
    display: none !important; }

  .rg-visibleAt8,
  .rg-blockAt8 {
    display: block !important; }

  .rg-inlineBlockAt8 {
    display: inline-block !important; }

  .rg-inlineAt8 {
    display: inline !important; }

  .rg-textCenterAt8 {
    text-align: center; }

  .rg-textLeftAt8 {
    text-align: left; }

  .rg-textRightAt8 {
    text-align: right; }

  .rg-autoAt8 {
    width: auto; }

  .rg-1of8 {
    width: 12.5%; }

  .rg-2of8 {
    width: 25%; }

  .rg-3of8 {
    width: 37.5%; }

  .rg-4of8 {
    width: 50%; }

  .rg-5of8 {
    width: 62.5%; }

  .rg-6of8 {
    width: 75%; }

  .rg-7of8 {
    width: 87.5%; }

  .rg-8of8 {
    width: 100%; }

  .rg-p0at8 {
    padding: 0; }

  .rg-pt0at8 {
    padding-top: 0; }

  .rg-pr0at8 {
    padding-right: 0; }

  .rg-pb0at8 {
    padding-bottom: 0; }

  .rg-pl0at8 {
    padding-left: 0; }

  .rg-py0at8 {
    padding-top: 0;
    padding-bottom: 0; }

  .rg-px0at8 {
    padding-right: 0;
    padding-left: 0; }

  .rg-m0at8 {
    margin: 0; }

  .rg-mt0at8 {
    margin-top: 0; }

  .rg-mr0at8 {
    margin-right: 0; }

  .rg-mb0at8 {
    margin-bottom: 0; }

  .rg-ml0at8 {
    margin-left: 0; }

  .rg-my0at8 {
    margin-top: 0;
    margin-bottom: 0; }

  .rg-mx0at8 {
    margin-right: 0;
    margin-left: 0; }

  .rg-p1at8 {
    padding: 5px; }

  .rg-pt1at8 {
    padding-top: 5px; }

  .rg-pr1at8 {
    padding-right: 5px; }

  .rg-pb1at8 {
    padding-bottom: 5px; }

  .rg-pl1at8 {
    padding-left: 5px; }

  .rg-py1at8 {
    padding-top: 5px;
    padding-bottom: 5px; }

  .rg-px1at8 {
    padding-right: 5px;
    padding-left: 5px; }

  .rg-m1at8 {
    margin: 5px; }

  .rg-mt1at8 {
    margin-top: 5px; }

  .rg-mr1at8 {
    margin-right: 5px; }

  .rg-mb1at8 {
    margin-bottom: 5px; }

  .rg-ml1at8 {
    margin-left: 5px; }

  .rg-my1at8 {
    margin-top: 5px;
    margin-bottom: 5px; }

  .rg-mx1at8 {
    margin-right: 5px;
    margin-left: 5px; }

  .rg-p2at8 {
    padding: 10px; }

  .rg-pt2at8 {
    padding-top: 10px; }

  .rg-pr2at8 {
    padding-right: 10px; }

  .rg-pb2at8 {
    padding-bottom: 10px; }

  .rg-pl2at8 {
    padding-left: 10px; }

  .rg-py2at8 {
    padding-top: 10px;
    padding-bottom: 10px; }

  .rg-px2at8 {
    padding-right: 10px;
    padding-left: 10px; }

  .rg-m2at8 {
    margin: 10px; }

  .rg-mt2at8 {
    margin-top: 10px; }

  .rg-mr2at8 {
    margin-right: 10px; }

  .rg-mb2at8 {
    margin-bottom: 10px; }

  .rg-ml2at8 {
    margin-left: 10px; }

  .rg-my2at8 {
    margin-top: 10px;
    margin-bottom: 10px; }

  .rg-mx2at8 {
    margin-right: 10px;
    margin-left: 10px; }

  .rg-p3at8 {
    padding: 20px; }

  .rg-pt3at8 {
    padding-top: 20px; }

  .rg-pr3at8 {
    padding-right: 20px; }

  .rg-pb3at8 {
    padding-bottom: 20px; }

  .rg-pl3at8 {
    padding-left: 20px; }

  .rg-py3at8 {
    padding-top: 20px;
    padding-bottom: 20px; }

  .rg-px3at8 {
    padding-right: 20px;
    padding-left: 20px; }

  .rg-m3at8 {
    margin: 20px; }

  .rg-mt3at8 {
    margin-top: 20px; }

  .rg-mr3at8 {
    margin-right: 20px; }

  .rg-mb3at8 {
    margin-bottom: 20px; }

  .rg-ml3at8 {
    margin-left: 20px; }

  .rg-my3at8 {
    margin-top: 20px;
    margin-bottom: 20px; }

  .rg-mx3at8 {
    margin-right: 20px;
    margin-left: 20px; }

  .rg-p4at8 {
    padding: 40px; }

  .rg-pt4at8 {
    padding-top: 40px; }

  .rg-pr4at8 {
    padding-right: 40px; }

  .rg-pb4at8 {
    padding-bottom: 40px; }

  .rg-pl4at8 {
    padding-left: 40px; }

  .rg-py4at8 {
    padding-top: 40px;
    padding-bottom: 40px; }

  .rg-px4at8 {
    padding-right: 40px;
    padding-left: 40px; }

  .rg-m4at8 {
    margin: 40px; }

  .rg-mt4at8 {
    margin-top: 40px; }

  .rg-mr4at8 {
    margin-right: 40px; }

  .rg-mb4at8 {
    margin-bottom: 40px; }

  .rg-ml4at8 {
    margin-left: 40px; }

  .rg-my4at8 {
    margin-top: 40px;
    margin-bottom: 40px; }

  .rg-mx4at8 {
    margin-right: 40px;
    margin-left: 40px; }

  .rg-p5at8 {
    padding: 60px; }

  .rg-pt5at8 {
    padding-top: 60px; }

  .rg-pr5at8 {
    padding-right: 60px; }

  .rg-pb5at8 {
    padding-bottom: 60px; }

  .rg-pl5at8 {
    padding-left: 60px; }

  .rg-py5at8 {
    padding-top: 60px;
    padding-bottom: 60px; }

  .rg-px5at8 {
    padding-right: 60px;
    padding-left: 60px; }

  .rg-m5at8 {
    margin: 60px; }

  .rg-mt5at8 {
    margin-top: 60px; }

  .rg-mr5at8 {
    margin-right: 60px; }

  .rg-mb5at8 {
    margin-bottom: 60px; }

  .rg-ml5at8 {
    margin-left: 60px; }

  .rg-my5at8 {
    margin-top: 60px;
    margin-bottom: 60px; }

  .rg-mx5at8 {
    margin-right: 60px;
    margin-left: 60px; } }
@media (min-width: 50em) {
  html:before {
    content: "10"; }

  .rg-centerAt10 {
    margin-left: auto;
    margin-right: auto; }

  .rg-invisibleAt10,
  .rg-hiddenAt10 {
    display: none !important; }

  .rg-visibleAt10,
  .rg-blockAt10 {
    display: block !important; }

  .rg-inlineBlockAt10 {
    display: inline-block !important; }

  .rg-inlineAt10 {
    display: inline !important; }

  .rg-textCenterAt10 {
    text-align: center; }

  .rg-textLeftAt10 {
    text-align: left; }

  .rg-textRightAt10 {
    text-align: right; }

  .rg-autoAt10 {
    width: auto; }

  .rg-1of10 {
    width: 10%; }

  .rg-2of10 {
    width: 20%; }

  .rg-3of10 {
    width: 30%; }

  .rg-4of10 {
    width: 40%; }

  .rg-5of10 {
    width: 50%; }

  .rg-6of10 {
    width: 60%; }

  .rg-7of10 {
    width: 70%; }

  .rg-8of10 {
    width: 80%; }

  .rg-9of10 {
    width: 90%; }

  .rg-10of10 {
    width: 100%; }

  .rg-p0at10 {
    padding: 0; }

  .rg-pt0at10 {
    padding-top: 0; }

  .rg-pr0at10 {
    padding-right: 0; }

  .rg-pb0at10 {
    padding-bottom: 0; }

  .rg-pl0at10 {
    padding-left: 0; }

  .rg-py0at10 {
    padding-top: 0;
    padding-bottom: 0; }

  .rg-px0at10 {
    padding-right: 0;
    padding-left: 0; }

  .rg-m0at10 {
    margin: 0; }

  .rg-mt0at10 {
    margin-top: 0; }

  .rg-mr0at10 {
    margin-right: 0; }

  .rg-mb0at10 {
    margin-bottom: 0; }

  .rg-ml0at10 {
    margin-left: 0; }

  .rg-my0at10 {
    margin-top: 0;
    margin-bottom: 0; }

  .rg-mx0at10 {
    margin-right: 0;
    margin-left: 0; }

  .rg-p1at10 {
    padding: 5px; }

  .rg-pt1at10 {
    padding-top: 5px; }

  .rg-pr1at10 {
    padding-right: 5px; }

  .rg-pb1at10 {
    padding-bottom: 5px; }

  .rg-pl1at10 {
    padding-left: 5px; }

  .rg-py1at10 {
    padding-top: 5px;
    padding-bottom: 5px; }

  .rg-px1at10 {
    padding-right: 5px;
    padding-left: 5px; }

  .rg-m1at10 {
    margin: 5px; }

  .rg-mt1at10 {
    margin-top: 5px; }

  .rg-mr1at10 {
    margin-right: 5px; }

  .rg-mb1at10 {
    margin-bottom: 5px; }

  .rg-ml1at10 {
    margin-left: 5px; }

  .rg-my1at10 {
    margin-top: 5px;
    margin-bottom: 5px; }

  .rg-mx1at10 {
    margin-right: 5px;
    margin-left: 5px; }

  .rg-p2at10 {
    padding: 10px; }

  .rg-pt2at10 {
    padding-top: 10px; }

  .rg-pr2at10 {
    padding-right: 10px; }

  .rg-pb2at10 {
    padding-bottom: 10px; }

  .rg-pl2at10 {
    padding-left: 10px; }

  .rg-py2at10 {
    padding-top: 10px;
    padding-bottom: 10px; }

  .rg-px2at10 {
    padding-right: 10px;
    padding-left: 10px; }

  .rg-m2at10 {
    margin: 10px; }

  .rg-mt2at10 {
    margin-top: 10px; }

  .rg-mr2at10 {
    margin-right: 10px; }

  .rg-mb2at10 {
    margin-bottom: 10px; }

  .rg-ml2at10 {
    margin-left: 10px; }

  .rg-my2at10 {
    margin-top: 10px;
    margin-bottom: 10px; }

  .rg-mx2at10 {
    margin-right: 10px;
    margin-left: 10px; }

  .rg-p3at10 {
    padding: 20px; }

  .rg-pt3at10 {
    padding-top: 20px; }

  .rg-pr3at10 {
    padding-right: 20px; }

  .rg-pb3at10 {
    padding-bottom: 20px; }

  .rg-pl3at10 {
    padding-left: 20px; }

  .rg-py3at10 {
    padding-top: 20px;
    padding-bottom: 20px; }

  .rg-px3at10 {
    padding-right: 20px;
    padding-left: 20px; }

  .rg-m3at10 {
    margin: 20px; }

  .rg-mt3at10 {
    margin-top: 20px; }

  .rg-mr3at10 {
    margin-right: 20px; }

  .rg-mb3at10 {
    margin-bottom: 20px; }

  .rg-ml3at10 {
    margin-left: 20px; }

  .rg-my3at10 {
    margin-top: 20px;
    margin-bottom: 20px; }

  .rg-mx3at10 {
    margin-right: 20px;
    margin-left: 20px; }

  .rg-p4at10 {
    padding: 40px; }

  .rg-pt4at10 {
    padding-top: 40px; }

  .rg-pr4at10 {
    padding-right: 40px; }

  .rg-pb4at10 {
    padding-bottom: 40px; }

  .rg-pl4at10 {
    padding-left: 40px; }

  .rg-py4at10 {
    padding-top: 40px;
    padding-bottom: 40px; }

  .rg-px4at10 {
    padding-right: 40px;
    padding-left: 40px; }

  .rg-m4at10 {
    margin: 40px; }

  .rg-mt4at10 {
    margin-top: 40px; }

  .rg-mr4at10 {
    margin-right: 40px; }

  .rg-mb4at10 {
    margin-bottom: 40px; }

  .rg-ml4at10 {
    margin-left: 40px; }

  .rg-my4at10 {
    margin-top: 40px;
    margin-bottom: 40px; }

  .rg-mx4at10 {
    margin-right: 40px;
    margin-left: 40px; }

  .rg-p5at10 {
    padding: 60px; }

  .rg-pt5at10 {
    padding-top: 60px; }

  .rg-pr5at10 {
    padding-right: 60px; }

  .rg-pb5at10 {
    padding-bottom: 60px; }

  .rg-pl5at10 {
    padding-left: 60px; }

  .rg-py5at10 {
    padding-top: 60px;
    padding-bottom: 60px; }

  .rg-px5at10 {
    padding-right: 60px;
    padding-left: 60px; }

  .rg-m5at10 {
    margin: 60px; }

  .rg-mt5at10 {
    margin-top: 60px; }

  .rg-mr5at10 {
    margin-right: 60px; }

  .rg-mb5at10 {
    margin-bottom: 60px; }

  .rg-ml5at10 {
    margin-left: 60px; }

  .rg-my5at10 {
    margin-top: 60px;
    margin-bottom: 60px; }

  .rg-mx5at10 {
    margin-right: 60px;
    margin-left: 60px; } }
@media (min-width: 60em) {
  html:before {
    content: "12"; }

  .rg-centerAt12 {
    margin-left: auto;
    margin-right: auto; }

  .rg-invisibleAt12,
  .rg-hiddenAt12 {
    display: none !important; }

  .rg-visibleAt12,
  .rg-blockAt12 {
    display: block !important; }

  .rg-inlineBlockAt12 {
    display: inline-block !important; }

  .rg-inlineAt12 {
    display: inline !important; }

  .rg-textCenterAt12 {
    text-align: center; }

  .rg-textLeftAt12 {
    text-align: left; }

  .rg-textRightAt12 {
    text-align: right; }

  .rg-autoAt12 {
    width: auto; }

  .rg-1of12 {
    width: 8.33333%; }

  .rg-2of12 {
    width: 16.66667%; }

  .rg-3of12 {
    width: 25%; }

  .rg-4of12 {
    width: 33.33333%; }

  .rg-5of12 {
    width: 41.66667%; }

  .rg-6of12 {
    width: 50%; }

  .rg-7of12 {
    width: 58.33333%; }

  .rg-8of12 {
    width: 66.66667%; }

  .rg-9of12 {
    width: 75%; }

  .rg-10of12 {
    width: 83.33333%; }

  .rg-11of12 {
    width: 91.66667%; }

  .rg-12of12 {
    width: 100%; }

  .rg-p0at12 {
    padding: 0; }

  .rg-pt0at12 {
    padding-top: 0; }

  .rg-pr0at12 {
    padding-right: 0; }

  .rg-pb0at12 {
    padding-bottom: 0; }

  .rg-pl0at12 {
    padding-left: 0; }

  .rg-py0at12 {
    padding-top: 0;
    padding-bottom: 0; }

  .rg-px0at12 {
    padding-right: 0;
    padding-left: 0; }

  .rg-m0at12 {
    margin: 0; }

  .rg-mt0at12 {
    margin-top: 0; }

  .rg-mr0at12 {
    margin-right: 0; }

  .rg-mb0at12 {
    margin-bottom: 0; }

  .rg-ml0at12 {
    margin-left: 0; }

  .rg-my0at12 {
    margin-top: 0;
    margin-bottom: 0; }

  .rg-mx0at12 {
    margin-right: 0;
    margin-left: 0; }

  .rg-p1at12 {
    padding: 5px; }

  .rg-pt1at12 {
    padding-top: 5px; }

  .rg-pr1at12 {
    padding-right: 5px; }

  .rg-pb1at12 {
    padding-bottom: 5px; }

  .rg-pl1at12 {
    padding-left: 5px; }

  .rg-py1at12 {
    padding-top: 5px;
    padding-bottom: 5px; }

  .rg-px1at12 {
    padding-right: 5px;
    padding-left: 5px; }

  .rg-m1at12 {
    margin: 5px; }

  .rg-mt1at12 {
    margin-top: 5px; }

  .rg-mr1at12 {
    margin-right: 5px; }

  .rg-mb1at12 {
    margin-bottom: 5px; }

  .rg-ml1at12 {
    margin-left: 5px; }

  .rg-my1at12 {
    margin-top: 5px;
    margin-bottom: 5px; }

  .rg-mx1at12 {
    margin-right: 5px;
    margin-left: 5px; }

  .rg-p2at12 {
    padding: 10px; }

  .rg-pt2at12 {
    padding-top: 10px; }

  .rg-pr2at12 {
    padding-right: 10px; }

  .rg-pb2at12 {
    padding-bottom: 10px; }

  .rg-pl2at12 {
    padding-left: 10px; }

  .rg-py2at12 {
    padding-top: 10px;
    padding-bottom: 10px; }

  .rg-px2at12 {
    padding-right: 10px;
    padding-left: 10px; }

  .rg-m2at12 {
    margin: 10px; }

  .rg-mt2at12 {
    margin-top: 10px; }

  .rg-mr2at12 {
    margin-right: 10px; }

  .rg-mb2at12 {
    margin-bottom: 10px; }

  .rg-ml2at12 {
    margin-left: 10px; }

  .rg-my2at12 {
    margin-top: 10px;
    margin-bottom: 10px; }

  .rg-mx2at12 {
    margin-right: 10px;
    margin-left: 10px; }

  .rg-p3at12 {
    padding: 20px; }

  .rg-pt3at12 {
    padding-top: 20px; }

  .rg-pr3at12 {
    padding-right: 20px; }

  .rg-pb3at12 {
    padding-bottom: 20px; }

  .rg-pl3at12 {
    padding-left: 20px; }

  .rg-py3at12 {
    padding-top: 20px;
    padding-bottom: 20px; }

  .rg-px3at12 {
    padding-right: 20px;
    padding-left: 20px; }

  .rg-m3at12 {
    margin: 20px; }

  .rg-mt3at12 {
    margin-top: 20px; }

  .rg-mr3at12 {
    margin-right: 20px; }

  .rg-mb3at12 {
    margin-bottom: 20px; }

  .rg-ml3at12 {
    margin-left: 20px; }

  .rg-my3at12 {
    margin-top: 20px;
    margin-bottom: 20px; }

  .rg-mx3at12 {
    margin-right: 20px;
    margin-left: 20px; }

  .rg-p4at12 {
    padding: 40px; }

  .rg-pt4at12 {
    padding-top: 40px; }

  .rg-pr4at12 {
    padding-right: 40px; }

  .rg-pb4at12 {
    padding-bottom: 40px; }

  .rg-pl4at12 {
    padding-left: 40px; }

  .rg-py4at12 {
    padding-top: 40px;
    padding-bottom: 40px; }

  .rg-px4at12 {
    padding-right: 40px;
    padding-left: 40px; }

  .rg-m4at12 {
    margin: 40px; }

  .rg-mt4at12 {
    margin-top: 40px; }

  .rg-mr4at12 {
    margin-right: 40px; }

  .rg-mb4at12 {
    margin-bottom: 40px; }

  .rg-ml4at12 {
    margin-left: 40px; }

  .rg-my4at12 {
    margin-top: 40px;
    margin-bottom: 40px; }

  .rg-mx4at12 {
    margin-right: 40px;
    margin-left: 40px; }

  .rg-p5at12 {
    padding: 60px; }

  .rg-pt5at12 {
    padding-top: 60px; }

  .rg-pr5at12 {
    padding-right: 60px; }

  .rg-pb5at12 {
    padding-bottom: 60px; }

  .rg-pl5at12 {
    padding-left: 60px; }

  .rg-py5at12 {
    padding-top: 60px;
    padding-bottom: 60px; }

  .rg-px5at12 {
    padding-right: 60px;
    padding-left: 60px; }

  .rg-m5at12 {
    margin: 60px; }

  .rg-mt5at12 {
    margin-top: 60px; }

  .rg-mr5at12 {
    margin-right: 60px; }

  .rg-mb5at12 {
    margin-bottom: 60px; }

  .rg-ml5at12 {
    margin-left: 60px; }

  .rg-my5at12 {
    margin-top: 60px;
    margin-bottom: 60px; }

  .rg-mx5at12 {
    margin-right: 60px;
    margin-left: 60px; } }
.no-mediaqueries html:before,
.no-js html:before {
  content: "4"; }
.no-mediaqueries .rg-centerAt4,
.no-js .rg-centerAt4 {
  margin-left: auto;
  margin-right: auto; }
.no-mediaqueries .rg-invisibleAt4,
.no-mediaqueries .rg-hiddenAt4,
.no-js .rg-invisibleAt4,
.no-js .rg-hiddenAt4 {
  display: none !important; }
.no-mediaqueries .rg-visibleAt4,
.no-mediaqueries .rg-blockAt4,
.no-js .rg-visibleAt4,
.no-js .rg-blockAt4 {
  display: block !important; }
.no-mediaqueries .rg-inlineBlockAt4,
.no-js .rg-inlineBlockAt4 {
  display: inline-block !important; }
.no-mediaqueries .rg-inlineAt4,
.no-js .rg-inlineAt4 {
  display: inline !important; }
.no-mediaqueries .rg-textCenterAt4,
.no-js .rg-textCenterAt4 {
  text-align: center; }
.no-mediaqueries .rg-textLeftAt4,
.no-js .rg-textLeftAt4 {
  text-align: left; }
.no-mediaqueries .rg-textRightAt4,
.no-js .rg-textRightAt4 {
  text-align: right; }
.no-mediaqueries .rg-autoAt4,
.no-js .rg-autoAt4 {
  width: auto; }
.no-mediaqueries .rg-1of4,
.no-js .rg-1of4 {
  width: 25%; }
.no-mediaqueries .rg-2of4,
.no-js .rg-2of4 {
  width: 50%; }
.no-mediaqueries .rg-3of4,
.no-js .rg-3of4 {
  width: 75%; }
.no-mediaqueries .rg-4of4,
.no-js .rg-4of4 {
  width: 100%; }
.no-mediaqueries .rg-p0at4,
.no-js .rg-p0at4 {
  padding: 0; }
.no-mediaqueries .rg-pt0at4,
.no-js .rg-pt0at4 {
  padding-top: 0; }
.no-mediaqueries .rg-pr0at4,
.no-js .rg-pr0at4 {
  padding-right: 0; }
.no-mediaqueries .rg-pb0at4,
.no-js .rg-pb0at4 {
  padding-bottom: 0; }
.no-mediaqueries .rg-pl0at4,
.no-js .rg-pl0at4 {
  padding-left: 0; }
.no-mediaqueries .rg-py0at4,
.no-js .rg-py0at4 {
  padding-top: 0;
  padding-bottom: 0; }
.no-mediaqueries .rg-px0at4,
.no-js .rg-px0at4 {
  padding-right: 0;
  padding-left: 0; }
.no-mediaqueries .rg-m0at4,
.no-js .rg-m0at4 {
  margin: 0; }
.no-mediaqueries .rg-mt0at4,
.no-js .rg-mt0at4 {
  margin-top: 0; }
.no-mediaqueries .rg-mr0at4,
.no-js .rg-mr0at4 {
  margin-right: 0; }
.no-mediaqueries .rg-mb0at4,
.no-js .rg-mb0at4 {
  margin-bottom: 0; }
.no-mediaqueries .rg-ml0at4,
.no-js .rg-ml0at4 {
  margin-left: 0; }
.no-mediaqueries .rg-my0at4,
.no-js .rg-my0at4 {
  margin-top: 0;
  margin-bottom: 0; }
.no-mediaqueries .rg-mx0at4,
.no-js .rg-mx0at4 {
  margin-right: 0;
  margin-left: 0; }
.no-mediaqueries .rg-p1at4,
.no-js .rg-p1at4 {
  padding: 5px; }
.no-mediaqueries .rg-pt1at4,
.no-js .rg-pt1at4 {
  padding-top: 5px; }
.no-mediaqueries .rg-pr1at4,
.no-js .rg-pr1at4 {
  padding-right: 5px; }
.no-mediaqueries .rg-pb1at4,
.no-js .rg-pb1at4 {
  padding-bottom: 5px; }
.no-mediaqueries .rg-pl1at4,
.no-js .rg-pl1at4 {
  padding-left: 5px; }
.no-mediaqueries .rg-py1at4,
.no-js .rg-py1at4 {
  padding-top: 5px;
  padding-bottom: 5px; }
.no-mediaqueries .rg-px1at4,
.no-js .rg-px1at4 {
  padding-right: 5px;
  padding-left: 5px; }
.no-mediaqueries .rg-m1at4,
.no-js .rg-m1at4 {
  margin: 5px; }
.no-mediaqueries .rg-mt1at4,
.no-js .rg-mt1at4 {
  margin-top: 5px; }
.no-mediaqueries .rg-mr1at4,
.no-js .rg-mr1at4 {
  margin-right: 5px; }
.no-mediaqueries .rg-mb1at4,
.no-js .rg-mb1at4 {
  margin-bottom: 5px; }
.no-mediaqueries .rg-ml1at4,
.no-js .rg-ml1at4 {
  margin-left: 5px; }
.no-mediaqueries .rg-my1at4,
.no-js .rg-my1at4 {
  margin-top: 5px;
  margin-bottom: 5px; }
.no-mediaqueries .rg-mx1at4,
.no-js .rg-mx1at4 {
  margin-right: 5px;
  margin-left: 5px; }
.no-mediaqueries .rg-p2at4,
.no-js .rg-p2at4 {
  padding: 10px; }
.no-mediaqueries .rg-pt2at4,
.no-js .rg-pt2at4 {
  padding-top: 10px; }
.no-mediaqueries .rg-pr2at4,
.no-js .rg-pr2at4 {
  padding-right: 10px; }
.no-mediaqueries .rg-pb2at4,
.no-js .rg-pb2at4 {
  padding-bottom: 10px; }
.no-mediaqueries .rg-pl2at4,
.no-js .rg-pl2at4 {
  padding-left: 10px; }
.no-mediaqueries .rg-py2at4,
.no-js .rg-py2at4 {
  padding-top: 10px;
  padding-bottom: 10px; }
.no-mediaqueries .rg-px2at4,
.no-js .rg-px2at4 {
  padding-right: 10px;
  padding-left: 10px; }
.no-mediaqueries .rg-m2at4,
.no-js .rg-m2at4 {
  margin: 10px; }
.no-mediaqueries .rg-mt2at4,
.no-js .rg-mt2at4 {
  margin-top: 10px; }
.no-mediaqueries .rg-mr2at4,
.no-js .rg-mr2at4 {
  margin-right: 10px; }
.no-mediaqueries .rg-mb2at4,
.no-js .rg-mb2at4 {
  margin-bottom: 10px; }
.no-mediaqueries .rg-ml2at4,
.no-js .rg-ml2at4 {
  margin-left: 10px; }
.no-mediaqueries .rg-my2at4,
.no-js .rg-my2at4 {
  margin-top: 10px;
  margin-bottom: 10px; }
.no-mediaqueries .rg-mx2at4,
.no-js .rg-mx2at4 {
  margin-right: 10px;
  margin-left: 10px; }
.no-mediaqueries .rg-p3at4,
.no-js .rg-p3at4 {
  padding: 20px; }
.no-mediaqueries .rg-pt3at4,
.no-js .rg-pt3at4 {
  padding-top: 20px; }
.no-mediaqueries .rg-pr3at4,
.no-js .rg-pr3at4 {
  padding-right: 20px; }
.no-mediaqueries .rg-pb3at4,
.no-js .rg-pb3at4 {
  padding-bottom: 20px; }
.no-mediaqueries .rg-pl3at4,
.no-js .rg-pl3at4 {
  padding-left: 20px; }
.no-mediaqueries .rg-py3at4,
.no-js .rg-py3at4 {
  padding-top: 20px;
  padding-bottom: 20px; }
.no-mediaqueries .rg-px3at4,
.no-js .rg-px3at4 {
  padding-right: 20px;
  padding-left: 20px; }
.no-mediaqueries .rg-m3at4,
.no-js .rg-m3at4 {
  margin: 20px; }
.no-mediaqueries .rg-mt3at4,
.no-js .rg-mt3at4 {
  margin-top: 20px; }
.no-mediaqueries .rg-mr3at4,
.no-js .rg-mr3at4 {
  margin-right: 20px; }
.no-mediaqueries .rg-mb3at4,
.no-js .rg-mb3at4 {
  margin-bottom: 20px; }
.no-mediaqueries .rg-ml3at4,
.no-js .rg-ml3at4 {
  margin-left: 20px; }
.no-mediaqueries .rg-my3at4,
.no-js .rg-my3at4 {
  margin-top: 20px;
  margin-bottom: 20px; }
.no-mediaqueries .rg-mx3at4,
.no-js .rg-mx3at4 {
  margin-right: 20px;
  margin-left: 20px; }
.no-mediaqueries .rg-p4at4,
.no-js .rg-p4at4 {
  padding: 40px; }
.no-mediaqueries .rg-pt4at4,
.no-js .rg-pt4at4 {
  padding-top: 40px; }
.no-mediaqueries .rg-pr4at4,
.no-js .rg-pr4at4 {
  padding-right: 40px; }
.no-mediaqueries .rg-pb4at4,
.no-js .rg-pb4at4 {
  padding-bottom: 40px; }
.no-mediaqueries .rg-pl4at4,
.no-js .rg-pl4at4 {
  padding-left: 40px; }
.no-mediaqueries .rg-py4at4,
.no-js .rg-py4at4 {
  padding-top: 40px;
  padding-bottom: 40px; }
.no-mediaqueries .rg-px4at4,
.no-js .rg-px4at4 {
  padding-right: 40px;
  padding-left: 40px; }
.no-mediaqueries .rg-m4at4,
.no-js .rg-m4at4 {
  margin: 40px; }
.no-mediaqueries .rg-mt4at4,
.no-js .rg-mt4at4 {
  margin-top: 40px; }
.no-mediaqueries .rg-mr4at4,
.no-js .rg-mr4at4 {
  margin-right: 40px; }
.no-mediaqueries .rg-mb4at4,
.no-js .rg-mb4at4 {
  margin-bottom: 40px; }
.no-mediaqueries .rg-ml4at4,
.no-js .rg-ml4at4 {
  margin-left: 40px; }
.no-mediaqueries .rg-my4at4,
.no-js .rg-my4at4 {
  margin-top: 40px;
  margin-bottom: 40px; }
.no-mediaqueries .rg-mx4at4,
.no-js .rg-mx4at4 {
  margin-right: 40px;
  margin-left: 40px; }
.no-mediaqueries .rg-p5at4,
.no-js .rg-p5at4 {
  padding: 60px; }
.no-mediaqueries .rg-pt5at4,
.no-js .rg-pt5at4 {
  padding-top: 60px; }
.no-mediaqueries .rg-pr5at4,
.no-js .rg-pr5at4 {
  padding-right: 60px; }
.no-mediaqueries .rg-pb5at4,
.no-js .rg-pb5at4 {
  padding-bottom: 60px; }
.no-mediaqueries .rg-pl5at4,
.no-js .rg-pl5at4 {
  padding-left: 60px; }
.no-mediaqueries .rg-py5at4,
.no-js .rg-py5at4 {
  padding-top: 60px;
  padding-bottom: 60px; }
.no-mediaqueries .rg-px5at4,
.no-js .rg-px5at4 {
  padding-right: 60px;
  padding-left: 60px; }
.no-mediaqueries .rg-m5at4,
.no-js .rg-m5at4 {
  margin: 60px; }
.no-mediaqueries .rg-mt5at4,
.no-js .rg-mt5at4 {
  margin-top: 60px; }
.no-mediaqueries .rg-mr5at4,
.no-js .rg-mr5at4 {
  margin-right: 60px; }
.no-mediaqueries .rg-mb5at4,
.no-js .rg-mb5at4 {
  margin-bottom: 60px; }
.no-mediaqueries .rg-ml5at4,
.no-js .rg-ml5at4 {
  margin-left: 60px; }
.no-mediaqueries .rg-my5at4,
.no-js .rg-my5at4 {
  margin-top: 60px;
  margin-bottom: 60px; }
.no-mediaqueries .rg-mx5at4,
.no-js .rg-mx5at4 {
  margin-right: 60px;
  margin-left: 60px; }
.no-mediaqueries html:before,
.no-js html:before {
  content: "6"; }
.no-mediaqueries .rg-centerAt6,
.no-js .rg-centerAt6 {
  margin-left: auto;
  margin-right: auto; }
.no-mediaqueries .rg-invisibleAt6,
.no-mediaqueries .rg-hiddenAt6,
.no-js .rg-invisibleAt6,
.no-js .rg-hiddenAt6 {
  display: none !important; }
.no-mediaqueries .rg-visibleAt6,
.no-mediaqueries .rg-blockAt6,
.no-js .rg-visibleAt6,
.no-js .rg-blockAt6 {
  display: block !important; }
.no-mediaqueries .rg-inlineBlockAt6,
.no-js .rg-inlineBlockAt6 {
  display: inline-block !important; }
.no-mediaqueries .rg-inlineAt6,
.no-js .rg-inlineAt6 {
  display: inline !important; }
.no-mediaqueries .rg-textCenterAt6,
.no-js .rg-textCenterAt6 {
  text-align: center; }
.no-mediaqueries .rg-textLeftAt6,
.no-js .rg-textLeftAt6 {
  text-align: left; }
.no-mediaqueries .rg-textRightAt6,
.no-js .rg-textRightAt6 {
  text-align: right; }
.no-mediaqueries .rg-autoAt6,
.no-js .rg-autoAt6 {
  width: auto; }
.no-mediaqueries .rg-1of6,
.no-js .rg-1of6 {
  width: 16.66667%; }
.no-mediaqueries .rg-2of6,
.no-js .rg-2of6 {
  width: 33.33333%; }
.no-mediaqueries .rg-3of6,
.no-js .rg-3of6 {
  width: 50%; }
.no-mediaqueries .rg-4of6,
.no-js .rg-4of6 {
  width: 66.66667%; }
.no-mediaqueries .rg-5of6,
.no-js .rg-5of6 {
  width: 83.33333%; }
.no-mediaqueries .rg-6of6,
.no-js .rg-6of6 {
  width: 100%; }
.no-mediaqueries .rg-p0at6,
.no-js .rg-p0at6 {
  padding: 0; }
.no-mediaqueries .rg-pt0at6,
.no-js .rg-pt0at6 {
  padding-top: 0; }
.no-mediaqueries .rg-pr0at6,
.no-js .rg-pr0at6 {
  padding-right: 0; }
.no-mediaqueries .rg-pb0at6,
.no-js .rg-pb0at6 {
  padding-bottom: 0; }
.no-mediaqueries .rg-pl0at6,
.no-js .rg-pl0at6 {
  padding-left: 0; }
.no-mediaqueries .rg-py0at6,
.no-js .rg-py0at6 {
  padding-top: 0;
  padding-bottom: 0; }
.no-mediaqueries .rg-px0at6,
.no-js .rg-px0at6 {
  padding-right: 0;
  padding-left: 0; }
.no-mediaqueries .rg-m0at6,
.no-js .rg-m0at6 {
  margin: 0; }
.no-mediaqueries .rg-mt0at6,
.no-js .rg-mt0at6 {
  margin-top: 0; }
.no-mediaqueries .rg-mr0at6,
.no-js .rg-mr0at6 {
  margin-right: 0; }
.no-mediaqueries .rg-mb0at6,
.no-js .rg-mb0at6 {
  margin-bottom: 0; }
.no-mediaqueries .rg-ml0at6,
.no-js .rg-ml0at6 {
  margin-left: 0; }
.no-mediaqueries .rg-my0at6,
.no-js .rg-my0at6 {
  margin-top: 0;
  margin-bottom: 0; }
.no-mediaqueries .rg-mx0at6,
.no-js .rg-mx0at6 {
  margin-right: 0;
  margin-left: 0; }
.no-mediaqueries .rg-p1at6,
.no-js .rg-p1at6 {
  padding: 5px; }
.no-mediaqueries .rg-pt1at6,
.no-js .rg-pt1at6 {
  padding-top: 5px; }
.no-mediaqueries .rg-pr1at6,
.no-js .rg-pr1at6 {
  padding-right: 5px; }
.no-mediaqueries .rg-pb1at6,
.no-js .rg-pb1at6 {
  padding-bottom: 5px; }
.no-mediaqueries .rg-pl1at6,
.no-js .rg-pl1at6 {
  padding-left: 5px; }
.no-mediaqueries .rg-py1at6,
.no-js .rg-py1at6 {
  padding-top: 5px;
  padding-bottom: 5px; }
.no-mediaqueries .rg-px1at6,
.no-js .rg-px1at6 {
  padding-right: 5px;
  padding-left: 5px; }
.no-mediaqueries .rg-m1at6,
.no-js .rg-m1at6 {
  margin: 5px; }
.no-mediaqueries .rg-mt1at6,
.no-js .rg-mt1at6 {
  margin-top: 5px; }
.no-mediaqueries .rg-mr1at6,
.no-js .rg-mr1at6 {
  margin-right: 5px; }
.no-mediaqueries .rg-mb1at6,
.no-js .rg-mb1at6 {
  margin-bottom: 5px; }
.no-mediaqueries .rg-ml1at6,
.no-js .rg-ml1at6 {
  margin-left: 5px; }
.no-mediaqueries .rg-my1at6,
.no-js .rg-my1at6 {
  margin-top: 5px;
  margin-bottom: 5px; }
.no-mediaqueries .rg-mx1at6,
.no-js .rg-mx1at6 {
  margin-right: 5px;
  margin-left: 5px; }
.no-mediaqueries .rg-p2at6,
.no-js .rg-p2at6 {
  padding: 10px; }
.no-mediaqueries .rg-pt2at6,
.no-js .rg-pt2at6 {
  padding-top: 10px; }
.no-mediaqueries .rg-pr2at6,
.no-js .rg-pr2at6 {
  padding-right: 10px; }
.no-mediaqueries .rg-pb2at6,
.no-js .rg-pb2at6 {
  padding-bottom: 10px; }
.no-mediaqueries .rg-pl2at6,
.no-js .rg-pl2at6 {
  padding-left: 10px; }
.no-mediaqueries .rg-py2at6,
.no-js .rg-py2at6 {
  padding-top: 10px;
  padding-bottom: 10px; }
.no-mediaqueries .rg-px2at6,
.no-js .rg-px2at6 {
  padding-right: 10px;
  padding-left: 10px; }
.no-mediaqueries .rg-m2at6,
.no-js .rg-m2at6 {
  margin: 10px; }
.no-mediaqueries .rg-mt2at6,
.no-js .rg-mt2at6 {
  margin-top: 10px; }
.no-mediaqueries .rg-mr2at6,
.no-js .rg-mr2at6 {
  margin-right: 10px; }
.no-mediaqueries .rg-mb2at6,
.no-js .rg-mb2at6 {
  margin-bottom: 10px; }
.no-mediaqueries .rg-ml2at6,
.no-js .rg-ml2at6 {
  margin-left: 10px; }
.no-mediaqueries .rg-my2at6,
.no-js .rg-my2at6 {
  margin-top: 10px;
  margin-bottom: 10px; }
.no-mediaqueries .rg-mx2at6,
.no-js .rg-mx2at6 {
  margin-right: 10px;
  margin-left: 10px; }
.no-mediaqueries .rg-p3at6,
.no-js .rg-p3at6 {
  padding: 20px; }
.no-mediaqueries .rg-pt3at6,
.no-js .rg-pt3at6 {
  padding-top: 20px; }
.no-mediaqueries .rg-pr3at6,
.no-js .rg-pr3at6 {
  padding-right: 20px; }
.no-mediaqueries .rg-pb3at6,
.no-js .rg-pb3at6 {
  padding-bottom: 20px; }
.no-mediaqueries .rg-pl3at6,
.no-js .rg-pl3at6 {
  padding-left: 20px; }
.no-mediaqueries .rg-py3at6,
.no-js .rg-py3at6 {
  padding-top: 20px;
  padding-bottom: 20px; }
.no-mediaqueries .rg-px3at6,
.no-js .rg-px3at6 {
  padding-right: 20px;
  padding-left: 20px; }
.no-mediaqueries .rg-m3at6,
.no-js .rg-m3at6 {
  margin: 20px; }
.no-mediaqueries .rg-mt3at6,
.no-js .rg-mt3at6 {
  margin-top: 20px; }
.no-mediaqueries .rg-mr3at6,
.no-js .rg-mr3at6 {
  margin-right: 20px; }
.no-mediaqueries .rg-mb3at6,
.no-js .rg-mb3at6 {
  margin-bottom: 20px; }
.no-mediaqueries .rg-ml3at6,
.no-js .rg-ml3at6 {
  margin-left: 20px; }
.no-mediaqueries .rg-my3at6,
.no-js .rg-my3at6 {
  margin-top: 20px;
  margin-bottom: 20px; }
.no-mediaqueries .rg-mx3at6,
.no-js .rg-mx3at6 {
  margin-right: 20px;
  margin-left: 20px; }
.no-mediaqueries .rg-p4at6,
.no-js .rg-p4at6 {
  padding: 40px; }
.no-mediaqueries .rg-pt4at6,
.no-js .rg-pt4at6 {
  padding-top: 40px; }
.no-mediaqueries .rg-pr4at6,
.no-js .rg-pr4at6 {
  padding-right: 40px; }
.no-mediaqueries .rg-pb4at6,
.no-js .rg-pb4at6 {
  padding-bottom: 40px; }
.no-mediaqueries .rg-pl4at6,
.no-js .rg-pl4at6 {
  padding-left: 40px; }
.no-mediaqueries .rg-py4at6,
.no-js .rg-py4at6 {
  padding-top: 40px;
  padding-bottom: 40px; }
.no-mediaqueries .rg-px4at6,
.no-js .rg-px4at6 {
  padding-right: 40px;
  padding-left: 40px; }
.no-mediaqueries .rg-m4at6,
.no-js .rg-m4at6 {
  margin: 40px; }
.no-mediaqueries .rg-mt4at6,
.no-js .rg-mt4at6 {
  margin-top: 40px; }
.no-mediaqueries .rg-mr4at6,
.no-js .rg-mr4at6 {
  margin-right: 40px; }
.no-mediaqueries .rg-mb4at6,
.no-js .rg-mb4at6 {
  margin-bottom: 40px; }
.no-mediaqueries .rg-ml4at6,
.no-js .rg-ml4at6 {
  margin-left: 40px; }
.no-mediaqueries .rg-my4at6,
.no-js .rg-my4at6 {
  margin-top: 40px;
  margin-bottom: 40px; }
.no-mediaqueries .rg-mx4at6,
.no-js .rg-mx4at6 {
  margin-right: 40px;
  margin-left: 40px; }
.no-mediaqueries .rg-p5at6,
.no-js .rg-p5at6 {
  padding: 60px; }
.no-mediaqueries .rg-pt5at6,
.no-js .rg-pt5at6 {
  padding-top: 60px; }
.no-mediaqueries .rg-pr5at6,
.no-js .rg-pr5at6 {
  padding-right: 60px; }
.no-mediaqueries .rg-pb5at6,
.no-js .rg-pb5at6 {
  padding-bottom: 60px; }
.no-mediaqueries .rg-pl5at6,
.no-js .rg-pl5at6 {
  padding-left: 60px; }
.no-mediaqueries .rg-py5at6,
.no-js .rg-py5at6 {
  padding-top: 60px;
  padding-bottom: 60px; }
.no-mediaqueries .rg-px5at6,
.no-js .rg-px5at6 {
  padding-right: 60px;
  padding-left: 60px; }
.no-mediaqueries .rg-m5at6,
.no-js .rg-m5at6 {
  margin: 60px; }
.no-mediaqueries .rg-mt5at6,
.no-js .rg-mt5at6 {
  margin-top: 60px; }
.no-mediaqueries .rg-mr5at6,
.no-js .rg-mr5at6 {
  margin-right: 60px; }
.no-mediaqueries .rg-mb5at6,
.no-js .rg-mb5at6 {
  margin-bottom: 60px; }
.no-mediaqueries .rg-ml5at6,
.no-js .rg-ml5at6 {
  margin-left: 60px; }
.no-mediaqueries .rg-my5at6,
.no-js .rg-my5at6 {
  margin-top: 60px;
  margin-bottom: 60px; }
.no-mediaqueries .rg-mx5at6,
.no-js .rg-mx5at6 {
  margin-right: 60px;
  margin-left: 60px; }
.no-mediaqueries html:before,
.no-js html:before {
  content: "8"; }
.no-mediaqueries .rg-centerAt8,
.no-js .rg-centerAt8 {
  margin-left: auto;
  margin-right: auto; }
.no-mediaqueries .rg-invisibleAt8,
.no-mediaqueries .rg-hiddenAt8,
.no-js .rg-invisibleAt8,
.no-js .rg-hiddenAt8 {
  display: none !important; }
.no-mediaqueries .rg-visibleAt8,
.no-mediaqueries .rg-blockAt8,
.no-js .rg-visibleAt8,
.no-js .rg-blockAt8 {
  display: block !important; }
.no-mediaqueries .rg-inlineBlockAt8,
.no-js .rg-inlineBlockAt8 {
  display: inline-block !important; }
.no-mediaqueries .rg-inlineAt8,
.no-js .rg-inlineAt8 {
  display: inline !important; }
.no-mediaqueries .rg-textCenterAt8,
.no-js .rg-textCenterAt8 {
  text-align: center; }
.no-mediaqueries .rg-textLeftAt8,
.no-js .rg-textLeftAt8 {
  text-align: left; }
.no-mediaqueries .rg-textRightAt8,
.no-js .rg-textRightAt8 {
  text-align: right; }
.no-mediaqueries .rg-autoAt8,
.no-js .rg-autoAt8 {
  width: auto; }
.no-mediaqueries .rg-1of8,
.no-js .rg-1of8 {
  width: 12.5%; }
.no-mediaqueries .rg-2of8,
.no-js .rg-2of8 {
  width: 25%; }
.no-mediaqueries .rg-3of8,
.no-js .rg-3of8 {
  width: 37.5%; }
.no-mediaqueries .rg-4of8,
.no-js .rg-4of8 {
  width: 50%; }
.no-mediaqueries .rg-5of8,
.no-js .rg-5of8 {
  width: 62.5%; }
.no-mediaqueries .rg-6of8,
.no-js .rg-6of8 {
  width: 75%; }
.no-mediaqueries .rg-7of8,
.no-js .rg-7of8 {
  width: 87.5%; }
.no-mediaqueries .rg-8of8,
.no-js .rg-8of8 {
  width: 100%; }
.no-mediaqueries .rg-p0at8,
.no-js .rg-p0at8 {
  padding: 0; }
.no-mediaqueries .rg-pt0at8,
.no-js .rg-pt0at8 {
  padding-top: 0; }
.no-mediaqueries .rg-pr0at8,
.no-js .rg-pr0at8 {
  padding-right: 0; }
.no-mediaqueries .rg-pb0at8,
.no-js .rg-pb0at8 {
  padding-bottom: 0; }
.no-mediaqueries .rg-pl0at8,
.no-js .rg-pl0at8 {
  padding-left: 0; }
.no-mediaqueries .rg-py0at8,
.no-js .rg-py0at8 {
  padding-top: 0;
  padding-bottom: 0; }
.no-mediaqueries .rg-px0at8,
.no-js .rg-px0at8 {
  padding-right: 0;
  padding-left: 0; }
.no-mediaqueries .rg-m0at8,
.no-js .rg-m0at8 {
  margin: 0; }
.no-mediaqueries .rg-mt0at8,
.no-js .rg-mt0at8 {
  margin-top: 0; }
.no-mediaqueries .rg-mr0at8,
.no-js .rg-mr0at8 {
  margin-right: 0; }
.no-mediaqueries .rg-mb0at8,
.no-js .rg-mb0at8 {
  margin-bottom: 0; }
.no-mediaqueries .rg-ml0at8,
.no-js .rg-ml0at8 {
  margin-left: 0; }
.no-mediaqueries .rg-my0at8,
.no-js .rg-my0at8 {
  margin-top: 0;
  margin-bottom: 0; }
.no-mediaqueries .rg-mx0at8,
.no-js .rg-mx0at8 {
  margin-right: 0;
  margin-left: 0; }
.no-mediaqueries .rg-p1at8,
.no-js .rg-p1at8 {
  padding: 5px; }
.no-mediaqueries .rg-pt1at8,
.no-js .rg-pt1at8 {
  padding-top: 5px; }
.no-mediaqueries .rg-pr1at8,
.no-js .rg-pr1at8 {
  padding-right: 5px; }
.no-mediaqueries .rg-pb1at8,
.no-js .rg-pb1at8 {
  padding-bottom: 5px; }
.no-mediaqueries .rg-pl1at8,
.no-js .rg-pl1at8 {
  padding-left: 5px; }
.no-mediaqueries .rg-py1at8,
.no-js .rg-py1at8 {
  padding-top: 5px;
  padding-bottom: 5px; }
.no-mediaqueries .rg-px1at8,
.no-js .rg-px1at8 {
  padding-right: 5px;
  padding-left: 5px; }
.no-mediaqueries .rg-m1at8,
.no-js .rg-m1at8 {
  margin: 5px; }
.no-mediaqueries .rg-mt1at8,
.no-js .rg-mt1at8 {
  margin-top: 5px; }
.no-mediaqueries .rg-mr1at8,
.no-js .rg-mr1at8 {
  margin-right: 5px; }
.no-mediaqueries .rg-mb1at8,
.no-js .rg-mb1at8 {
  margin-bottom: 5px; }
.no-mediaqueries .rg-ml1at8,
.no-js .rg-ml1at8 {
  margin-left: 5px; }
.no-mediaqueries .rg-my1at8,
.no-js .rg-my1at8 {
  margin-top: 5px;
  margin-bottom: 5px; }
.no-mediaqueries .rg-mx1at8,
.no-js .rg-mx1at8 {
  margin-right: 5px;
  margin-left: 5px; }
.no-mediaqueries .rg-p2at8,
.no-js .rg-p2at8 {
  padding: 10px; }
.no-mediaqueries .rg-pt2at8,
.no-js .rg-pt2at8 {
  padding-top: 10px; }
.no-mediaqueries .rg-pr2at8,
.no-js .rg-pr2at8 {
  padding-right: 10px; }
.no-mediaqueries .rg-pb2at8,
.no-js .rg-pb2at8 {
  padding-bottom: 10px; }
.no-mediaqueries .rg-pl2at8,
.no-js .rg-pl2at8 {
  padding-left: 10px; }
.no-mediaqueries .rg-py2at8,
.no-js .rg-py2at8 {
  padding-top: 10px;
  padding-bottom: 10px; }
.no-mediaqueries .rg-px2at8,
.no-js .rg-px2at8 {
  padding-right: 10px;
  padding-left: 10px; }
.no-mediaqueries .rg-m2at8,
.no-js .rg-m2at8 {
  margin: 10px; }
.no-mediaqueries .rg-mt2at8,
.no-js .rg-mt2at8 {
  margin-top: 10px; }
.no-mediaqueries .rg-mr2at8,
.no-js .rg-mr2at8 {
  margin-right: 10px; }
.no-mediaqueries .rg-mb2at8,
.no-js .rg-mb2at8 {
  margin-bottom: 10px; }
.no-mediaqueries .rg-ml2at8,
.no-js .rg-ml2at8 {
  margin-left: 10px; }
.no-mediaqueries .rg-my2at8,
.no-js .rg-my2at8 {
  margin-top: 10px;
  margin-bottom: 10px; }
.no-mediaqueries .rg-mx2at8,
.no-js .rg-mx2at8 {
  margin-right: 10px;
  margin-left: 10px; }
.no-mediaqueries .rg-p3at8,
.no-js .rg-p3at8 {
  padding: 20px; }
.no-mediaqueries .rg-pt3at8,
.no-js .rg-pt3at8 {
  padding-top: 20px; }
.no-mediaqueries .rg-pr3at8,
.no-js .rg-pr3at8 {
  padding-right: 20px; }
.no-mediaqueries .rg-pb3at8,
.no-js .rg-pb3at8 {
  padding-bottom: 20px; }
.no-mediaqueries .rg-pl3at8,
.no-js .rg-pl3at8 {
  padding-left: 20px; }
.no-mediaqueries .rg-py3at8,
.no-js .rg-py3at8 {
  padding-top: 20px;
  padding-bottom: 20px; }
.no-mediaqueries .rg-px3at8,
.no-js .rg-px3at8 {
  padding-right: 20px;
  padding-left: 20px; }
.no-mediaqueries .rg-m3at8,
.no-js .rg-m3at8 {
  margin: 20px; }
.no-mediaqueries .rg-mt3at8,
.no-js .rg-mt3at8 {
  margin-top: 20px; }
.no-mediaqueries .rg-mr3at8,
.no-js .rg-mr3at8 {
  margin-right: 20px; }
.no-mediaqueries .rg-mb3at8,
.no-js .rg-mb3at8 {
  margin-bottom: 20px; }
.no-mediaqueries .rg-ml3at8,
.no-js .rg-ml3at8 {
  margin-left: 20px; }
.no-mediaqueries .rg-my3at8,
.no-js .rg-my3at8 {
  margin-top: 20px;
  margin-bottom: 20px; }
.no-mediaqueries .rg-mx3at8,
.no-js .rg-mx3at8 {
  margin-right: 20px;
  margin-left: 20px; }
.no-mediaqueries .rg-p4at8,
.no-js .rg-p4at8 {
  padding: 40px; }
.no-mediaqueries .rg-pt4at8,
.no-js .rg-pt4at8 {
  padding-top: 40px; }
.no-mediaqueries .rg-pr4at8,
.no-js .rg-pr4at8 {
  padding-right: 40px; }
.no-mediaqueries .rg-pb4at8,
.no-js .rg-pb4at8 {
  padding-bottom: 40px; }
.no-mediaqueries .rg-pl4at8,
.no-js .rg-pl4at8 {
  padding-left: 40px; }
.no-mediaqueries .rg-py4at8,
.no-js .rg-py4at8 {
  padding-top: 40px;
  padding-bottom: 40px; }
.no-mediaqueries .rg-px4at8,
.no-js .rg-px4at8 {
  padding-right: 40px;
  padding-left: 40px; }
.no-mediaqueries .rg-m4at8,
.no-js .rg-m4at8 {
  margin: 40px; }
.no-mediaqueries .rg-mt4at8,
.no-js .rg-mt4at8 {
  margin-top: 40px; }
.no-mediaqueries .rg-mr4at8,
.no-js .rg-mr4at8 {
  margin-right: 40px; }
.no-mediaqueries .rg-mb4at8,
.no-js .rg-mb4at8 {
  margin-bottom: 40px; }
.no-mediaqueries .rg-ml4at8,
.no-js .rg-ml4at8 {
  margin-left: 40px; }
.no-mediaqueries .rg-my4at8,
.no-js .rg-my4at8 {
  margin-top: 40px;
  margin-bottom: 40px; }
.no-mediaqueries .rg-mx4at8,
.no-js .rg-mx4at8 {
  margin-right: 40px;
  margin-left: 40px; }
.no-mediaqueries .rg-p5at8,
.no-js .rg-p5at8 {
  padding: 60px; }
.no-mediaqueries .rg-pt5at8,
.no-js .rg-pt5at8 {
  padding-top: 60px; }
.no-mediaqueries .rg-pr5at8,
.no-js .rg-pr5at8 {
  padding-right: 60px; }
.no-mediaqueries .rg-pb5at8,
.no-js .rg-pb5at8 {
  padding-bottom: 60px; }
.no-mediaqueries .rg-pl5at8,
.no-js .rg-pl5at8 {
  padding-left: 60px; }
.no-mediaqueries .rg-py5at8,
.no-js .rg-py5at8 {
  padding-top: 60px;
  padding-bottom: 60px; }
.no-mediaqueries .rg-px5at8,
.no-js .rg-px5at8 {
  padding-right: 60px;
  padding-left: 60px; }
.no-mediaqueries .rg-m5at8,
.no-js .rg-m5at8 {
  margin: 60px; }
.no-mediaqueries .rg-mt5at8,
.no-js .rg-mt5at8 {
  margin-top: 60px; }
.no-mediaqueries .rg-mr5at8,
.no-js .rg-mr5at8 {
  margin-right: 60px; }
.no-mediaqueries .rg-mb5at8,
.no-js .rg-mb5at8 {
  margin-bottom: 60px; }
.no-mediaqueries .rg-ml5at8,
.no-js .rg-ml5at8 {
  margin-left: 60px; }
.no-mediaqueries .rg-my5at8,
.no-js .rg-my5at8 {
  margin-top: 60px;
  margin-bottom: 60px; }
.no-mediaqueries .rg-mx5at8,
.no-js .rg-mx5at8 {
  margin-right: 60px;
  margin-left: 60px; }
.no-mediaqueries html:before,
.no-js html:before {
  content: "10"; }
.no-mediaqueries .rg-centerAt10,
.no-js .rg-centerAt10 {
  margin-left: auto;
  margin-right: auto; }
.no-mediaqueries .rg-invisibleAt10,
.no-mediaqueries .rg-hiddenAt10,
.no-js .rg-invisibleAt10,
.no-js .rg-hiddenAt10 {
  display: none !important; }
.no-mediaqueries .rg-visibleAt10,
.no-mediaqueries .rg-blockAt10,
.no-js .rg-visibleAt10,
.no-js .rg-blockAt10 {
  display: block !important; }
.no-mediaqueries .rg-inlineBlockAt10,
.no-js .rg-inlineBlockAt10 {
  display: inline-block !important; }
.no-mediaqueries .rg-inlineAt10,
.no-js .rg-inlineAt10 {
  display: inline !important; }
.no-mediaqueries .rg-textCenterAt10,
.no-js .rg-textCenterAt10 {
  text-align: center; }
.no-mediaqueries .rg-textLeftAt10,
.no-js .rg-textLeftAt10 {
  text-align: left; }
.no-mediaqueries .rg-textRightAt10,
.no-js .rg-textRightAt10 {
  text-align: right; }
.no-mediaqueries .rg-autoAt10,
.no-js .rg-autoAt10 {
  width: auto; }
.no-mediaqueries .rg-1of10,
.no-js .rg-1of10 {
  width: 10%; }
.no-mediaqueries .rg-2of10,
.no-js .rg-2of10 {
  width: 20%; }
.no-mediaqueries .rg-3of10,
.no-js .rg-3of10 {
  width: 30%; }
.no-mediaqueries .rg-4of10,
.no-js .rg-4of10 {
  width: 40%; }
.no-mediaqueries .rg-5of10,
.no-js .rg-5of10 {
  width: 50%; }
.no-mediaqueries .rg-6of10,
.no-js .rg-6of10 {
  width: 60%; }
.no-mediaqueries .rg-7of10,
.no-js .rg-7of10 {
  width: 70%; }
.no-mediaqueries .rg-8of10,
.no-js .rg-8of10 {
  width: 80%; }
.no-mediaqueries .rg-9of10,
.no-js .rg-9of10 {
  width: 90%; }
.no-mediaqueries .rg-10of10,
.no-js .rg-10of10 {
  width: 100%; }
.no-mediaqueries .rg-p0at10,
.no-js .rg-p0at10 {
  padding: 0; }
.no-mediaqueries .rg-pt0at10,
.no-js .rg-pt0at10 {
  padding-top: 0; }
.no-mediaqueries .rg-pr0at10,
.no-js .rg-pr0at10 {
  padding-right: 0; }
.no-mediaqueries .rg-pb0at10,
.no-js .rg-pb0at10 {
  padding-bottom: 0; }
.no-mediaqueries .rg-pl0at10,
.no-js .rg-pl0at10 {
  padding-left: 0; }
.no-mediaqueries .rg-py0at10,
.no-js .rg-py0at10 {
  padding-top: 0;
  padding-bottom: 0; }
.no-mediaqueries .rg-px0at10,
.no-js .rg-px0at10 {
  padding-right: 0;
  padding-left: 0; }
.no-mediaqueries .rg-m0at10,
.no-js .rg-m0at10 {
  margin: 0; }
.no-mediaqueries .rg-mt0at10,
.no-js .rg-mt0at10 {
  margin-top: 0; }
.no-mediaqueries .rg-mr0at10,
.no-js .rg-mr0at10 {
  margin-right: 0; }
.no-mediaqueries .rg-mb0at10,
.no-js .rg-mb0at10 {
  margin-bottom: 0; }
.no-mediaqueries .rg-ml0at10,
.no-js .rg-ml0at10 {
  margin-left: 0; }
.no-mediaqueries .rg-my0at10,
.no-js .rg-my0at10 {
  margin-top: 0;
  margin-bottom: 0; }
.no-mediaqueries .rg-mx0at10,
.no-js .rg-mx0at10 {
  margin-right: 0;
  margin-left: 0; }
.no-mediaqueries .rg-p1at10,
.no-js .rg-p1at10 {
  padding: 5px; }
.no-mediaqueries .rg-pt1at10,
.no-js .rg-pt1at10 {
  padding-top: 5px; }
.no-mediaqueries .rg-pr1at10,
.no-js .rg-pr1at10 {
  padding-right: 5px; }
.no-mediaqueries .rg-pb1at10,
.no-js .rg-pb1at10 {
  padding-bottom: 5px; }
.no-mediaqueries .rg-pl1at10,
.no-js .rg-pl1at10 {
  padding-left: 5px; }
.no-mediaqueries .rg-py1at10,
.no-js .rg-py1at10 {
  padding-top: 5px;
  padding-bottom: 5px; }
.no-mediaqueries .rg-px1at10,
.no-js .rg-px1at10 {
  padding-right: 5px;
  padding-left: 5px; }
.no-mediaqueries .rg-m1at10,
.no-js .rg-m1at10 {
  margin: 5px; }
.no-mediaqueries .rg-mt1at10,
.no-js .rg-mt1at10 {
  margin-top: 5px; }
.no-mediaqueries .rg-mr1at10,
.no-js .rg-mr1at10 {
  margin-right: 5px; }
.no-mediaqueries .rg-mb1at10,
.no-js .rg-mb1at10 {
  margin-bottom: 5px; }
.no-mediaqueries .rg-ml1at10,
.no-js .rg-ml1at10 {
  margin-left: 5px; }
.no-mediaqueries .rg-my1at10,
.no-js .rg-my1at10 {
  margin-top: 5px;
  margin-bottom: 5px; }
.no-mediaqueries .rg-mx1at10,
.no-js .rg-mx1at10 {
  margin-right: 5px;
  margin-left: 5px; }
.no-mediaqueries .rg-p2at10,
.no-js .rg-p2at10 {
  padding: 10px; }
.no-mediaqueries .rg-pt2at10,
.no-js .rg-pt2at10 {
  padding-top: 10px; }
.no-mediaqueries .rg-pr2at10,
.no-js .rg-pr2at10 {
  padding-right: 10px; }
.no-mediaqueries .rg-pb2at10,
.no-js .rg-pb2at10 {
  padding-bottom: 10px; }
.no-mediaqueries .rg-pl2at10,
.no-js .rg-pl2at10 {
  padding-left: 10px; }
.no-mediaqueries .rg-py2at10,
.no-js .rg-py2at10 {
  padding-top: 10px;
  padding-bottom: 10px; }
.no-mediaqueries .rg-px2at10,
.no-js .rg-px2at10 {
  padding-right: 10px;
  padding-left: 10px; }
.no-mediaqueries .rg-m2at10,
.no-js .rg-m2at10 {
  margin: 10px; }
.no-mediaqueries .rg-mt2at10,
.no-js .rg-mt2at10 {
  margin-top: 10px; }
.no-mediaqueries .rg-mr2at10,
.no-js .rg-mr2at10 {
  margin-right: 10px; }
.no-mediaqueries .rg-mb2at10,
.no-js .rg-mb2at10 {
  margin-bottom: 10px; }
.no-mediaqueries .rg-ml2at10,
.no-js .rg-ml2at10 {
  margin-left: 10px; }
.no-mediaqueries .rg-my2at10,
.no-js .rg-my2at10 {
  margin-top: 10px;
  margin-bottom: 10px; }
.no-mediaqueries .rg-mx2at10,
.no-js .rg-mx2at10 {
  margin-right: 10px;
  margin-left: 10px; }
.no-mediaqueries .rg-p3at10,
.no-js .rg-p3at10 {
  padding: 20px; }
.no-mediaqueries .rg-pt3at10,
.no-js .rg-pt3at10 {
  padding-top: 20px; }
.no-mediaqueries .rg-pr3at10,
.no-js .rg-pr3at10 {
  padding-right: 20px; }
.no-mediaqueries .rg-pb3at10,
.no-js .rg-pb3at10 {
  padding-bottom: 20px; }
.no-mediaqueries .rg-pl3at10,
.no-js .rg-pl3at10 {
  padding-left: 20px; }
.no-mediaqueries .rg-py3at10,
.no-js .rg-py3at10 {
  padding-top: 20px;
  padding-bottom: 20px; }
.no-mediaqueries .rg-px3at10,
.no-js .rg-px3at10 {
  padding-right: 20px;
  padding-left: 20px; }
.no-mediaqueries .rg-m3at10,
.no-js .rg-m3at10 {
  margin: 20px; }
.no-mediaqueries .rg-mt3at10,
.no-js .rg-mt3at10 {
  margin-top: 20px; }
.no-mediaqueries .rg-mr3at10,
.no-js .rg-mr3at10 {
  margin-right: 20px; }
.no-mediaqueries .rg-mb3at10,
.no-js .rg-mb3at10 {
  margin-bottom: 20px; }
.no-mediaqueries .rg-ml3at10,
.no-js .rg-ml3at10 {
  margin-left: 20px; }
.no-mediaqueries .rg-my3at10,
.no-js .rg-my3at10 {
  margin-top: 20px;
  margin-bottom: 20px; }
.no-mediaqueries .rg-mx3at10,
.no-js .rg-mx3at10 {
  margin-right: 20px;
  margin-left: 20px; }
.no-mediaqueries .rg-p4at10,
.no-js .rg-p4at10 {
  padding: 40px; }
.no-mediaqueries .rg-pt4at10,
.no-js .rg-pt4at10 {
  padding-top: 40px; }
.no-mediaqueries .rg-pr4at10,
.no-js .rg-pr4at10 {
  padding-right: 40px; }
.no-mediaqueries .rg-pb4at10,
.no-js .rg-pb4at10 {
  padding-bottom: 40px; }
.no-mediaqueries .rg-pl4at10,
.no-js .rg-pl4at10 {
  padding-left: 40px; }
.no-mediaqueries .rg-py4at10,
.no-js .rg-py4at10 {
  padding-top: 40px;
  padding-bottom: 40px; }
.no-mediaqueries .rg-px4at10,
.no-js .rg-px4at10 {
  padding-right: 40px;
  padding-left: 40px; }
.no-mediaqueries .rg-m4at10,
.no-js .rg-m4at10 {
  margin: 40px; }
.no-mediaqueries .rg-mt4at10,
.no-js .rg-mt4at10 {
  margin-top: 40px; }
.no-mediaqueries .rg-mr4at10,
.no-js .rg-mr4at10 {
  margin-right: 40px; }
.no-mediaqueries .rg-mb4at10,
.no-js .rg-mb4at10 {
  margin-bottom: 40px; }
.no-mediaqueries .rg-ml4at10,
.no-js .rg-ml4at10 {
  margin-left: 40px; }
.no-mediaqueries .rg-my4at10,
.no-js .rg-my4at10 {
  margin-top: 40px;
  margin-bottom: 40px; }
.no-mediaqueries .rg-mx4at10,
.no-js .rg-mx4at10 {
  margin-right: 40px;
  margin-left: 40px; }
.no-mediaqueries .rg-p5at10,
.no-js .rg-p5at10 {
  padding: 60px; }
.no-mediaqueries .rg-pt5at10,
.no-js .rg-pt5at10 {
  padding-top: 60px; }
.no-mediaqueries .rg-pr5at10,
.no-js .rg-pr5at10 {
  padding-right: 60px; }
.no-mediaqueries .rg-pb5at10,
.no-js .rg-pb5at10 {
  padding-bottom: 60px; }
.no-mediaqueries .rg-pl5at10,
.no-js .rg-pl5at10 {
  padding-left: 60px; }
.no-mediaqueries .rg-py5at10,
.no-js .rg-py5at10 {
  padding-top: 60px;
  padding-bottom: 60px; }
.no-mediaqueries .rg-px5at10,
.no-js .rg-px5at10 {
  padding-right: 60px;
  padding-left: 60px; }
.no-mediaqueries .rg-m5at10,
.no-js .rg-m5at10 {
  margin: 60px; }
.no-mediaqueries .rg-mt5at10,
.no-js .rg-mt5at10 {
  margin-top: 60px; }
.no-mediaqueries .rg-mr5at10,
.no-js .rg-mr5at10 {
  margin-right: 60px; }
.no-mediaqueries .rg-mb5at10,
.no-js .rg-mb5at10 {
  margin-bottom: 60px; }
.no-mediaqueries .rg-ml5at10,
.no-js .rg-ml5at10 {
  margin-left: 60px; }
.no-mediaqueries .rg-my5at10,
.no-js .rg-my5at10 {
  margin-top: 60px;
  margin-bottom: 60px; }
.no-mediaqueries .rg-mx5at10,
.no-js .rg-mx5at10 {
  margin-right: 60px;
  margin-left: 60px; }
.no-mediaqueries html:before,
.no-js html:before {
  content: "12"; }
.no-mediaqueries .rg-centerAt12,
.no-js .rg-centerAt12 {
  margin-left: auto;
  margin-right: auto; }
.no-mediaqueries .rg-invisibleAt12,
.no-mediaqueries .rg-hiddenAt12,
.no-js .rg-invisibleAt12,
.no-js .rg-hiddenAt12 {
  display: none !important; }
.no-mediaqueries .rg-visibleAt12,
.no-mediaqueries .rg-blockAt12,
.no-js .rg-visibleAt12,
.no-js .rg-blockAt12 {
  display: block !important; }
.no-mediaqueries .rg-inlineBlockAt12,
.no-js .rg-inlineBlockAt12 {
  display: inline-block !important; }
.no-mediaqueries .rg-inlineAt12,
.no-js .rg-inlineAt12 {
  display: inline !important; }
.no-mediaqueries .rg-textCenterAt12,
.no-js .rg-textCenterAt12 {
  text-align: center; }
.no-mediaqueries .rg-textLeftAt12,
.no-js .rg-textLeftAt12 {
  text-align: left; }
.no-mediaqueries .rg-textRightAt12,
.no-js .rg-textRightAt12 {
  text-align: right; }
.no-mediaqueries .rg-autoAt12,
.no-js .rg-autoAt12 {
  width: auto; }
.no-mediaqueries .rg-1of12,
.no-js .rg-1of12 {
  width: 8.33333%; }
.no-mediaqueries .rg-2of12,
.no-js .rg-2of12 {
  width: 16.66667%; }
.no-mediaqueries .rg-3of12,
.no-js .rg-3of12 {
  width: 25%; }
.no-mediaqueries .rg-4of12,
.no-js .rg-4of12 {
  width: 33.33333%; }
.no-mediaqueries .rg-5of12,
.no-js .rg-5of12 {
  width: 41.66667%; }
.no-mediaqueries .rg-6of12,
.no-js .rg-6of12 {
  width: 50%; }
.no-mediaqueries .rg-7of12,
.no-js .rg-7of12 {
  width: 58.33333%; }
.no-mediaqueries .rg-8of12,
.no-js .rg-8of12 {
  width: 66.66667%; }
.no-mediaqueries .rg-9of12,
.no-js .rg-9of12 {
  width: 75%; }
.no-mediaqueries .rg-10of12,
.no-js .rg-10of12 {
  width: 83.33333%; }
.no-mediaqueries .rg-11of12,
.no-js .rg-11of12 {
  width: 91.66667%; }
.no-mediaqueries .rg-12of12,
.no-js .rg-12of12 {
  width: 100%; }
.no-mediaqueries .rg-p0at12,
.no-js .rg-p0at12 {
  padding: 0; }
.no-mediaqueries .rg-pt0at12,
.no-js .rg-pt0at12 {
  padding-top: 0; }
.no-mediaqueries .rg-pr0at12,
.no-js .rg-pr0at12 {
  padding-right: 0; }
.no-mediaqueries .rg-pb0at12,
.no-js .rg-pb0at12 {
  padding-bottom: 0; }
.no-mediaqueries .rg-pl0at12,
.no-js .rg-pl0at12 {
  padding-left: 0; }
.no-mediaqueries .rg-py0at12,
.no-js .rg-py0at12 {
  padding-top: 0;
  padding-bottom: 0; }
.no-mediaqueries .rg-px0at12,
.no-js .rg-px0at12 {
  padding-right: 0;
  padding-left: 0; }
.no-mediaqueries .rg-m0at12,
.no-js .rg-m0at12 {
  margin: 0; }
.no-mediaqueries .rg-mt0at12,
.no-js .rg-mt0at12 {
  margin-top: 0; }
.no-mediaqueries .rg-mr0at12,
.no-js .rg-mr0at12 {
  margin-right: 0; }
.no-mediaqueries .rg-mb0at12,
.no-js .rg-mb0at12 {
  margin-bottom: 0; }
.no-mediaqueries .rg-ml0at12,
.no-js .rg-ml0at12 {
  margin-left: 0; }
.no-mediaqueries .rg-my0at12,
.no-js .rg-my0at12 {
  margin-top: 0;
  margin-bottom: 0; }
.no-mediaqueries .rg-mx0at12,
.no-js .rg-mx0at12 {
  margin-right: 0;
  margin-left: 0; }
.no-mediaqueries .rg-p1at12,
.no-js .rg-p1at12 {
  padding: 5px; }
.no-mediaqueries .rg-pt1at12,
.no-js .rg-pt1at12 {
  padding-top: 5px; }
.no-mediaqueries .rg-pr1at12,
.no-js .rg-pr1at12 {
  padding-right: 5px; }
.no-mediaqueries .rg-pb1at12,
.no-js .rg-pb1at12 {
  padding-bottom: 5px; }
.no-mediaqueries .rg-pl1at12,
.no-js .rg-pl1at12 {
  padding-left: 5px; }
.no-mediaqueries .rg-py1at12,
.no-js .rg-py1at12 {
  padding-top: 5px;
  padding-bottom: 5px; }
.no-mediaqueries .rg-px1at12,
.no-js .rg-px1at12 {
  padding-right: 5px;
  padding-left: 5px; }
.no-mediaqueries .rg-m1at12,
.no-js .rg-m1at12 {
  margin: 5px; }
.no-mediaqueries .rg-mt1at12,
.no-js .rg-mt1at12 {
  margin-top: 5px; }
.no-mediaqueries .rg-mr1at12,
.no-js .rg-mr1at12 {
  margin-right: 5px; }
.no-mediaqueries .rg-mb1at12,
.no-js .rg-mb1at12 {
  margin-bottom: 5px; }
.no-mediaqueries .rg-ml1at12,
.no-js .rg-ml1at12 {
  margin-left: 5px; }
.no-mediaqueries .rg-my1at12,
.no-js .rg-my1at12 {
  margin-top: 5px;
  margin-bottom: 5px; }
.no-mediaqueries .rg-mx1at12,
.no-js .rg-mx1at12 {
  margin-right: 5px;
  margin-left: 5px; }
.no-mediaqueries .rg-p2at12,
.no-js .rg-p2at12 {
  padding: 10px; }
.no-mediaqueries .rg-pt2at12,
.no-js .rg-pt2at12 {
  padding-top: 10px; }
.no-mediaqueries .rg-pr2at12,
.no-js .rg-pr2at12 {
  padding-right: 10px; }
.no-mediaqueries .rg-pb2at12,
.no-js .rg-pb2at12 {
  padding-bottom: 10px; }
.no-mediaqueries .rg-pl2at12,
.no-js .rg-pl2at12 {
  padding-left: 10px; }
.no-mediaqueries .rg-py2at12,
.no-js .rg-py2at12 {
  padding-top: 10px;
  padding-bottom: 10px; }
.no-mediaqueries .rg-px2at12,
.no-js .rg-px2at12 {
  padding-right: 10px;
  padding-left: 10px; }
.no-mediaqueries .rg-m2at12,
.no-js .rg-m2at12 {
  margin: 10px; }
.no-mediaqueries .rg-mt2at12,
.no-js .rg-mt2at12 {
  margin-top: 10px; }
.no-mediaqueries .rg-mr2at12,
.no-js .rg-mr2at12 {
  margin-right: 10px; }
.no-mediaqueries .rg-mb2at12,
.no-js .rg-mb2at12 {
  margin-bottom: 10px; }
.no-mediaqueries .rg-ml2at12,
.no-js .rg-ml2at12 {
  margin-left: 10px; }
.no-mediaqueries .rg-my2at12,
.no-js .rg-my2at12 {
  margin-top: 10px;
  margin-bottom: 10px; }
.no-mediaqueries .rg-mx2at12,
.no-js .rg-mx2at12 {
  margin-right: 10px;
  margin-left: 10px; }
.no-mediaqueries .rg-p3at12,
.no-js .rg-p3at12 {
  padding: 20px; }
.no-mediaqueries .rg-pt3at12,
.no-js .rg-pt3at12 {
  padding-top: 20px; }
.no-mediaqueries .rg-pr3at12,
.no-js .rg-pr3at12 {
  padding-right: 20px; }
.no-mediaqueries .rg-pb3at12,
.no-js .rg-pb3at12 {
  padding-bottom: 20px; }
.no-mediaqueries .rg-pl3at12,
.no-js .rg-pl3at12 {
  padding-left: 20px; }
.no-mediaqueries .rg-py3at12,
.no-js .rg-py3at12 {
  padding-top: 20px;
  padding-bottom: 20px; }
.no-mediaqueries .rg-px3at12,
.no-js .rg-px3at12 {
  padding-right: 20px;
  padding-left: 20px; }
.no-mediaqueries .rg-m3at12,
.no-js .rg-m3at12 {
  margin: 20px; }
.no-mediaqueries .rg-mt3at12,
.no-js .rg-mt3at12 {
  margin-top: 20px; }
.no-mediaqueries .rg-mr3at12,
.no-js .rg-mr3at12 {
  margin-right: 20px; }
.no-mediaqueries .rg-mb3at12,
.no-js .rg-mb3at12 {
  margin-bottom: 20px; }
.no-mediaqueries .rg-ml3at12,
.no-js .rg-ml3at12 {
  margin-left: 20px; }
.no-mediaqueries .rg-my3at12,
.no-js .rg-my3at12 {
  margin-top: 20px;
  margin-bottom: 20px; }
.no-mediaqueries .rg-mx3at12,
.no-js .rg-mx3at12 {
  margin-right: 20px;
  margin-left: 20px; }
.no-mediaqueries .rg-p4at12,
.no-js .rg-p4at12 {
  padding: 40px; }
.no-mediaqueries .rg-pt4at12,
.no-js .rg-pt4at12 {
  padding-top: 40px; }
.no-mediaqueries .rg-pr4at12,
.no-js .rg-pr4at12 {
  padding-right: 40px; }
.no-mediaqueries .rg-pb4at12,
.no-js .rg-pb4at12 {
  padding-bottom: 40px; }
.no-mediaqueries .rg-pl4at12,
.no-js .rg-pl4at12 {
  padding-left: 40px; }
.no-mediaqueries .rg-py4at12,
.no-js .rg-py4at12 {
  padding-top: 40px;
  padding-bottom: 40px; }
.no-mediaqueries .rg-px4at12,
.no-js .rg-px4at12 {
  padding-right: 40px;
  padding-left: 40px; }
.no-mediaqueries .rg-m4at12,
.no-js .rg-m4at12 {
  margin: 40px; }
.no-mediaqueries .rg-mt4at12,
.no-js .rg-mt4at12 {
  margin-top: 40px; }
.no-mediaqueries .rg-mr4at12,
.no-js .rg-mr4at12 {
  margin-right: 40px; }
.no-mediaqueries .rg-mb4at12,
.no-js .rg-mb4at12 {
  margin-bottom: 40px; }
.no-mediaqueries .rg-ml4at12,
.no-js .rg-ml4at12 {
  margin-left: 40px; }
.no-mediaqueries .rg-my4at12,
.no-js .rg-my4at12 {
  margin-top: 40px;
  margin-bottom: 40px; }
.no-mediaqueries .rg-mx4at12,
.no-js .rg-mx4at12 {
  margin-right: 40px;
  margin-left: 40px; }
.no-mediaqueries .rg-p5at12,
.no-js .rg-p5at12 {
  padding: 60px; }
.no-mediaqueries .rg-pt5at12,
.no-js .rg-pt5at12 {
  padding-top: 60px; }
.no-mediaqueries .rg-pr5at12,
.no-js .rg-pr5at12 {
  padding-right: 60px; }
.no-mediaqueries .rg-pb5at12,
.no-js .rg-pb5at12 {
  padding-bottom: 60px; }
.no-mediaqueries .rg-pl5at12,
.no-js .rg-pl5at12 {
  padding-left: 60px; }
.no-mediaqueries .rg-py5at12,
.no-js .rg-py5at12 {
  padding-top: 60px;
  padding-bottom: 60px; }
.no-mediaqueries .rg-px5at12,
.no-js .rg-px5at12 {
  padding-right: 60px;
  padding-left: 60px; }
.no-mediaqueries .rg-m5at12,
.no-js .rg-m5at12 {
  margin: 60px; }
.no-mediaqueries .rg-mt5at12,
.no-js .rg-mt5at12 {
  margin-top: 60px; }
.no-mediaqueries .rg-mr5at12,
.no-js .rg-mr5at12 {
  margin-right: 60px; }
.no-mediaqueries .rg-mb5at12,
.no-js .rg-mb5at12 {
  margin-bottom: 60px; }
.no-mediaqueries .rg-ml5at12,
.no-js .rg-ml5at12 {
  margin-left: 60px; }
.no-mediaqueries .rg-my5at12,
.no-js .rg-my5at12 {
  margin-top: 60px;
  margin-bottom: 60px; }
.no-mediaqueries .rg-mx5at12,
.no-js .rg-mx5at12 {
  margin-right: 60px;
  margin-left: 60px; }


/* ==========================================================================
  Floats
  If you need to float something but you still want the object to remain
  reusable, consider using a class to create the float rather than baking
  it directly into the object. This allows objects to be used in more ways
========================================================================== */
.pull-left {
  float: left !important; }

.pull-right {
  float: right !important; }

/**
 * Make a parent relative. This is useful when you
 * need a child to be absolutely be position relative
 * to this element but you don't necessarily want the parent
 * object to always be relative
 */
.parent,
.is-parent {
  position: relative; }

/**
 * Contain floats
 *
 * Make an element expand to contain floated children.
 * Uses pseudo-elements (micro clearfix).
 *
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of the
 *    element.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.cf:after {
  clear: both; }

/**
 * For clearing floats. Sometimes useful.
 */
.clear {
  clear: both; }

/* ==========================================================================
  Display Utilities
========================================================================== */
.no-top-border {
  border-top: none !important; }

.no-right-border {
  border-right: none !important; }

.no-bottom-border {
  border-bottom: none !important; }

.no-left-border {
  border-left: none !important; }

/**
 * New block formatting context
 *
 * This affords some useful properties to the element. It won't wrap under
 * floats. Will also contain any floated children.

 * N.B. This will clip overflow. Use the alternative method below if this is
 * problematic.
 */
.bfc,
.nbfc {
  overflow: hidden; }

/**
 * New block formatting context (alternative)
 *
 * Alternative method when overflow must not be clipped.
 *
 * 1. Create a new block formatting context (NBFC).
 * 2. Avoid shrink-wrap behaviour of table-cell.
 *
 * N.B. This breaks down in some browsers when elements within this element
 * exceed its width.
 */
.nbfc-alt {
  display: table-cell;
  /* 1 */
  width: 10000px;
  /* 2 */ }

/**
 * Make a block span the full width regardless of previous styles
 */
.full {
  width: 100% !important; }

/**
 * Make content unable to break out of it's container
 */
.contained {
  max-width: 100%; }

/**
 * Center a block. The block will require a width for this to work
 */
.center {
  margin-left: auto;
  margin-right: auto; }

/**
 * Make a block fixed positioned. Useful for JS to make an element
 * fixed, like the overlay
 */
.is-fixed {
  position: fixed !important; }

/**
 * Adds a checkered transparent background like photoshop
 */
.transparent {
  background: bg-url("nib-styles/utils/0.3.1/transparent-grid.png"); }

/**
 * Vertically align content using display-table
 */
.align-middle {
  display: table; }
  .align-middle .align-middle__content {
    display: table-cell;
    vertical-align: middle;
    margin-top: -2px; }

.align-top {
  vertical-align: top; }

/**
 * Media block. This is a common pattern of a block of variable-width text
 * and media to sits to the left or right.
 */
.mb.mb--reverse .mb__media,
.mb.mb--reverse .media, .mb.mb--right .mb__media,
.mb.mb--right .media, .mb.reverse .mb__media,
.mb.reverse .media,
.media-block.mb--reverse .mb__media,
.media-block.mb--reverse .media,
.media-block.mb--right .mb__media,
.media-block.mb--right .media,
.media-block.reverse .mb__media,
.media-block.reverse .media {
  float: right; }
.mb .mb__media,
.mb .media,
.media-block .mb__media,
.media-block .media {
  float: left; }
.mb .mb__content,
.mb .content,
.media-block .mb__content,
.media-block .content {
  overflow: hidden; }

/* ==========================================================================
  Grid Utilities
========================================================================== */
.unit {
  float: left; }

.unitRight {
  float: right; }

.size1of1 {
  float: none; }

.size1of2 {
  width: 50%; }

.size1of3 {
  width: 33.33333%; }

.size2of3 {
  width: 66.66667%; }

.size1of4 {
  width: 25%; }

.size2of4 {
  width: 50%; }

.size3of4 {
  width: 75%; }

.size1of5 {
  width: 20%; }

.size2of5 {
  width: 40%; }

.size3of5 {
  width: 60%; }

.size4of5 {
  width: 80%; }

.size1of6 {
  width: 16.66667%; }

.size2of6 {
  width: 33.33333%; }

.size3of6 {
  width: 50%; }

.size4of6 {
  width: 66.66667%; }

.size5of6 {
  width: 83.33333%; }

.size1of7 {
  width: 14.28571%; }

.size2of7 {
  width: 28.57143%; }

.size3of7 {
  width: 42.85714%; }

.size4of7 {
  width: 57.14286%; }

.size5of7 {
  width: 71.42857%; }

.size6of7 {
  width: 85.71429%; }

.size1of8 {
  width: 12.5%; }

.size2of8 {
  width: 25%; }

.size3of8 {
  width: 37.5%; }

.size4of8 {
  width: 50%; }

.size5of8 {
  width: 62.5%; }

.size6of8 {
  width: 75%; }

.size7of8 {
  width: 87.5%; }

.size1of9 {
  width: 11.11111%; }

.size2of9 {
  width: 22.22222%; }

.size3of9 {
  width: 33.33333%; }

.size4of9 {
  width: 44.44444%; }

.size5of9 {
  width: 55.55556%; }

.size6of9 {
  width: 66.66667%; }

.size7of9 {
  width: 77.77778%; }

.size8of9 {
  width: 88.88889%; }

.size1of10 {
  width: 10%; }

.size2of10 {
  width: 20%; }

.size3of10 {
  width: 30%; }

.size4of10 {
  width: 40%; }

.size5of10 {
  width: 50%; }

.size6of10 {
  width: 60%; }

.size7of10 {
  width: 70%; }

.size8of10 {
  width: 80%; }

.size9of10 {
  width: 90%; }

.size1of11 {
  width: 9.09091%; }

.size2of11 {
  width: 18.18182%; }

.size3of11 {
  width: 27.27273%; }

.size4of11 {
  width: 36.36364%; }

.size5of11 {
  width: 45.45455%; }

.size6of11 {
  width: 54.54545%; }

.size7of11 {
  width: 63.63636%; }

.size8of11 {
  width: 72.72727%; }

.size9of11 {
  width: 81.81818%; }

.size10of11 {
  width: 90.90909%; }

.size1of12 {
  width: 8.33333%; }

.size2of12 {
  width: 16.66667%; }

.size3of12 {
  width: 25%; }

.size4of12 {
  width: 33.33333%; }

.size5of12 {
  width: 41.66667%; }

.size6of12 {
  width: 50%; }

.size7of12 {
  width: 58.33333%; }

.size8of12 {
  width: 66.66667%; }

.size9of12 {
  width: 75%; }

.size10of12 {
  width: 83.33333%; }

.size11of12 {
  width: 91.66667%; }

/* ==========================================================================
  JavaScript Utilities
========================================================================== */
/**
 * Adding this class to an element is usually
 * for JavaScript widgets that toggle content
 */
.hide-children > .child {
  display: none; }

.is-selected > .u-hideWhenParentSelected {
  display: none !important; }

.u-showWhenParentSelected {
  display: none !important; }
  .is-selected > .u-showWhenParentSelected {
    display: block !important; }

/**
 * This class is used for animations that occur when
 * scrolling down the page. Apply this class to an
 * element and the waypoints component will remove
 * it and trigger the animation
 */
.is-paused {
  -webkit-animation-play-state: paused !important;
  -moz-animation-play-state: paused !important;
  animation-play-state: paused !important; }

/**
 * Only show an element if javascript is disabled
 */
/**
 * Only show an element if javascript is enabled
 */
/**
 * Make an element transparent with a fallback
 * for browsers that don't support opacity.
 * This is common used when fading an element in
 */
.is-transparent {
  opacity: 0; }
  .no-opacity .is-transparent {
    visibility: hidden; }
  .is-transparent.is-visible {
    opacity: 1; }
    .no-opacity .is-transparent.is-visible {
      visibility: visible; }

/* ==========================================================================
  z-index helpers
  You should be able to use these classes in most cases when you need to
  apply z-index. This makes it easier to debug any issues you're having
========================================================================== */
.zi-0 {
  position: relative;
  z-index: 0; }

.zi-1 {
  position: relative;
  z-index: 1; }

.zi-2 {
  position: relative;
  z-index: 2; }

.zi-3 {
  position: relative;
  z-index: 3; }

.zi-4 {
  position: relative;
  z-index: 4; }

.zi-5 {
  position: relative;
  z-index: 5; }

/* ==========================================================================
  Display utilities
========================================================================== */
/**
 * Display-type utilities
 */
.inline {
  display: inline !important; }

.inline-block,
.ib {
  display: inline-block !important; }

.block {
  display: block !important; }

/**
 * Don't include the padding and border as part of the width
 */
.border-box {
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/**
 * Completely remove from the flow and screen readers.
 */
.is-hidden, .js .no-js-only, .no-js .js-only {
  display: none !important;
  visibility: hidden !important; }

/**
 * Completely remove from the flow but leave available to screen readers.
 */
.is-vishidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px); }

/**
 * Useful for creating overlays
 */
.stretch {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

/**
 * Control visibility without affecting flow.
 */
.is-visible {
  visibility: visible; }

.is-invisible {
  visibility: hidden; }

/* ==========================================================================
  States utilities
========================================================================== */
/**
 * Indicate that interaction will result in an action.
 *
 * Commonly toggled via JavaScript.
 */
.is-actionable {
  cursor: pointer; }

.is-draggable {
  cursor: move; }

.is-disabled {
  cursor: default; }

.is-unselectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.is-waiting {
  -moz-transition: opacity 250ms linear;
       transition: opacity 250ms linear;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: default;
  opacity: 0.5; }

.is-waiting:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.is-clickthrough,
.ignore-pointer-events {
  pointer-events: none; }

.capture-pointer-events {
  pointer-events: auto; }

/* ==========================================================================
   Text utilities
   ========================================================================== */
/**
 * Text truncation
 *
 * Prevent text from wrapping onto multiple lines, and truncate with an
 * ellipsis.
 *
 * 1. Ensure that the node has a maximum width after which truncation can
 *    occur.
 * 2. Fix for IE 8/9 if `word-wrap: break-word` is in effect on ancestor
 *    nodes.
 */
.text-truncate {
  max-width: 100%;
  /* 1 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  /* 2 */ }

/**
 * Word breaking
 *
 * Break strings when their length exceeds the width of their container.
 */
.text-break {
  word-break: break-all;
  word-break: break-word;
  word-wrap: break-word; }

/* -------------------------------------------------------------------------- */
/**
 * Horizontal text alignment
 */
.text-center {
  text-align: center !important; }

.text-left {
  text-align: left !important; }

.text-right {
  text-align: right !important; }

/* ==========================================================================
  Link utilities
========================================================================== */
.link-block {
  display: block;
  text-decoration: none; }
  .link-block:hover {
    text-decoration: none; }
  .link-block:hover .title-2 {
    color: #79Be10; }

/**
 * Reset an anchor to appear as text
 */
.link-reset {
  text-decoration: none;
  color: inherit; }


/**
 * Basic button style
 * All other buttons require this class
 */
.color-primary {
  color: #009623; }

.bg-primary {
  background: #009623; }

.bdr-1px-primary {
  border: 1px solid #009623; }

.bdr-x-1px-primary {
  border-left: 1px solid #009623;
  border-right: 1px solid #009623; }

.bdr-y-1px-primary {
  border-top: 1px solid #009623;
  border-bottom: 1px solid #009623; }

.bdr-t-1px-primary {
  border-top: 1px solid #009623; }

.bdr-b-1px-primary {
  border-bottom: 1px solid #009623; }

.bdr-l-1px-primary {
  border-left: 1px solid #009623; }

.bdr-r-1px-primary {
  border-right: 1px solid #009623; }

.bdr-2px-primary {
  border: 2px solid #009623; }

.bdr-x-2px-primary {
  border-left: 2px solid #009623;
  border-right: 2px solid #009623; }

.bdr-y-2px-primary {
  border-top: 2px solid #009623;
  border-bottom: 2px solid #009623; }

.bdr-t-2px-primary {
  border-top: 2px solid #009623; }

.bdr-b-2px-primary {
  border-bottom: 2px solid #009623; }

.bdr-l-2px-primary {
  border-left: 2px solid #009623; }

.bdr-r-2px-primary {
  border-right: 2px solid #009623; }

.bdr-3px-primary {
  border: 3px solid #009623; }

.bdr-x-3px-primary {
  border-left: 3px solid #009623;
  border-right: 3px solid #009623; }

.bdr-y-3px-primary {
  border-top: 3px solid #009623;
  border-bottom: 3px solid #009623; }

.bdr-t-3px-primary {
  border-top: 3px solid #009623; }

.bdr-b-3px-primary {
  border-bottom: 3px solid #009623; }

.bdr-l-3px-primary {
  border-left: 3px solid #009623; }

.bdr-r-3px-primary {
  border-right: 3px solid #009623; }

.bdr-4px-primary {
  border: 4px solid #009623; }

.bdr-x-4px-primary {
  border-left: 4px solid #009623;
  border-right: 4px solid #009623; }

.bdr-y-4px-primary {
  border-top: 4px solid #009623;
  border-bottom: 4px solid #009623; }

.bdr-t-4px-primary {
  border-top: 4px solid #009623; }

.bdr-b-4px-primary {
  border-bottom: 4px solid #009623; }

.bdr-l-4px-primary {
  border-left: 4px solid #009623; }

.bdr-r-4px-primary {
  border-right: 4px solid #009623; }

.bdr-5px-primary {
  border: 5px solid #009623; }

.bdr-x-5px-primary {
  border-left: 5px solid #009623;
  border-right: 5px solid #009623; }

.bdr-y-5px-primary {
  border-top: 5px solid #009623;
  border-bottom: 5px solid #009623; }

.bdr-t-5px-primary {
  border-top: 5px solid #009623; }

.bdr-b-5px-primary {
  border-bottom: 5px solid #009623; }

.bdr-l-5px-primary {
  border-left: 5px solid #009623; }

.bdr-r-5px-primary {
  border-right: 5px solid #009623; }

.color-secondary {
  color: #0a6d12; }

.bg-secondary {
  background: #0a6d12; }

.bdr-1px-secondary {
  border: 1px solid #0a6d12; }

.bdr-x-1px-secondary {
  border-left: 1px solid #0a6d12;
  border-right: 1px solid #0a6d12; }

.bdr-y-1px-secondary {
  border-top: 1px solid #0a6d12;
  border-bottom: 1px solid #0a6d12; }

.bdr-t-1px-secondary {
  border-top: 1px solid #0a6d12; }

.bdr-b-1px-secondary {
  border-bottom: 1px solid #0a6d12; }

.bdr-l-1px-secondary {
  border-left: 1px solid #0a6d12; }

.bdr-r-1px-secondary {
  border-right: 1px solid #0a6d12; }

.bdr-2px-secondary {
  border: 2px solid #0a6d12; }

.bdr-x-2px-secondary {
  border-left: 2px solid #0a6d12;
  border-right: 2px solid #0a6d12; }

.bdr-y-2px-secondary {
  border-top: 2px solid #0a6d12;
  border-bottom: 2px solid #0a6d12; }

.bdr-t-2px-secondary {
  border-top: 2px solid #0a6d12; }

.bdr-b-2px-secondary {
  border-bottom: 2px solid #0a6d12; }

.bdr-l-2px-secondary {
  border-left: 2px solid #0a6d12; }

.bdr-r-2px-secondary {
  border-right: 2px solid #0a6d12; }

.bdr-3px-secondary {
  border: 3px solid #0a6d12; }

.bdr-x-3px-secondary {
  border-left: 3px solid #0a6d12;
  border-right: 3px solid #0a6d12; }

.bdr-y-3px-secondary {
  border-top: 3px solid #0a6d12;
  border-bottom: 3px solid #0a6d12; }

.bdr-t-3px-secondary {
  border-top: 3px solid #0a6d12; }

.bdr-b-3px-secondary {
  border-bottom: 3px solid #0a6d12; }

.bdr-l-3px-secondary {
  border-left: 3px solid #0a6d12; }

.bdr-r-3px-secondary {
  border-right: 3px solid #0a6d12; }

.bdr-4px-secondary {
  border: 4px solid #0a6d12; }

.bdr-x-4px-secondary {
  border-left: 4px solid #0a6d12;
  border-right: 4px solid #0a6d12; }

.bdr-y-4px-secondary {
  border-top: 4px solid #0a6d12;
  border-bottom: 4px solid #0a6d12; }

.bdr-t-4px-secondary {
  border-top: 4px solid #0a6d12; }

.bdr-b-4px-secondary {
  border-bottom: 4px solid #0a6d12; }

.bdr-l-4px-secondary {
  border-left: 4px solid #0a6d12; }

.bdr-r-4px-secondary {
  border-right: 4px solid #0a6d12; }

.bdr-5px-secondary {
  border: 5px solid #0a6d12; }

.bdr-x-5px-secondary {
  border-left: 5px solid #0a6d12;
  border-right: 5px solid #0a6d12; }

.bdr-y-5px-secondary {
  border-top: 5px solid #0a6d12;
  border-bottom: 5px solid #0a6d12; }

.bdr-t-5px-secondary {
  border-top: 5px solid #0a6d12; }

.bdr-b-5px-secondary {
  border-bottom: 5px solid #0a6d12; }

.bdr-l-5px-secondary {
  border-left: 5px solid #0a6d12; }

.bdr-r-5px-secondary {
  border-right: 5px solid #0a6d12; }

.btn {
  text-rendering: optimizeLegibility;
  font-smoothing: antialiased;
  border: none;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  background: #e9e9e9;
  appearance: none;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-family: inherit;
  line-height: 30px;
  outline: 0;
  padding: 5px 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  vertical-align: middle;
  border-radius: 2px;
  background: #888;
  color: #fff;
  margin: 0; }

.btn:hover,
.btn:focus,
.btn:active {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 1px 1px 0 #666666, -1px 1px 0 #666666, 1px -1px 0 #666666, -1px -1px 0 #666666; }

.btn[disabled] {
  background: #fff;
  color: #ccc;
  cursor: default;
  opacity: 0.5; }

/**
 * Remove excess padding and border in Firefox 4+
 */
.btn::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Icons used within buttons
 */
.btn i {
  display: inline-block;
  margin-top: -2px; }

.btn i:first-child {
  margin-right: 3px; }

.btn i:last-child {
  margin-left: 3px; }

.btn--primary {
  color: #fff;
  background: #ffb400;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  vertical-align: middle;
  border-radius: 2px;
  border: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(0, 0, 0, 0.1); }

.btn--secondary {
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  vertical-align: middle;
  border-radius: 2px;
  color: #fff;
  background: #009623; }

.btn--primary:hover,
.btn--primary:focus,
.btn--primary:active {
  background: #ffb400;
  color: #FFF;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 1px 1px 0 #e5a200, -1px 1px 0 #e5a200, 1px -1px 0 #e5a200, -1px -1px 0 #e5a200; }

.btn--secondary:hover,
.btn--secondary:focus,
.btn--secondary:active {
  background: #009623;
  color: #FFF;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 1px 1px 0 #1E8626, -1px 1px 0 #1E8626, 1px -1px 0 #1E8626, -1px -1px 0 #1E8626; }

.btn--ternary {
  background: #f0f2f4;
  color: inherit; }

.btn--wrap {
  white-space: normal; }

.btn--extra-wide {
  width: 200px; }

/**
 * File upload buttons
 */
.fileUpload {
  overflow: hidden;
  position: relative; }

.fileUpload span {
  margin: -5px -20px;
  padding: 5px 20px; }

.fileUpload input.upload {
  cursor: pointer;
  filter: alpha(opacity=0);
  font-size: 20px;
  height: 40px;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0; }

.ribbon {
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  background: #009623;
  z-index: 1; }

.csstransforms .ribbon {
  margin: 0 -10px;
  padding-left: 50px;
  padding-right: 50px; }

@media (max-width: 481px) {
  .csstransforms .ribbon {
    margin: 0;
    padding-left: 30px;
    padding-right: 30px; } }
@media (min-width: 480px) {
  .csstransforms .ribbon:before,
  .csstransforms .ribbon:after {
    border: 7px solid transparent;
    bottom: -7px;
    content: "";
    display: block;
    height: 0;
    position: absolute;
    width: 0;
    z-index: 5; }

  .csstransforms .ribbon:before {
    border-bottom-color: #009623;
    left: 3px;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
            transform: rotate(45deg); }

  .csstransforms .ribbon:after {
    border-top-color: #009623;
    right: 3px;
    -webkit-transform: rotate(135deg);
       -moz-transform: rotate(135deg);
            transform: rotate(135deg); } }
.ch-selects__extras,
.ch-selects__hospital {
  cursor: pointer;
  background-color: #eee;
  color: #888; }

.ch-selects__extras--selected,
.ch-selects__hospital--selected {
  color: #fff;
  background-color: #009623; }

.ch-selects {
  border-radius: 3px;
  overflow: hidden; }

.ch-header__chevron {
  -moz-transition: -moz-transform 0.3s;
       transition: -webkit-transform 0.3s;
       transition: transform 0.3s;
  color: #999; }

.ch-header__chevron.is-open {
  -webkit-transform: rotate(-90deg);
     -moz-transform: rotate(-90deg);
          transform: rotate(-90deg);
  color: #fff; }

.ch-header.is-open,
.ch-header:hover {
  color: #fff;
  background-color: #009623;
  border-right: 1px #009623;
  border-left: 1px #009623; }

.ch-header:hover .ch-header__chevron,
.ch-header.is-open .ch-header__total-benefit,
.ch-header:hover .ch-header__total-benefit {
  color: #fff; }

.ch-header__total-benefit {
  color: #009623; }

.ch-header__total-benefit.negative {
  color: #e83400; }

.ch-body__service-info {
  font-size: 1.6em; }

.ch-header.even {
  margin-left: -1px;
  margin-right: -1px; }

.ch-body__patient-name {
  font-size: 1.1em; }

.ch-head__title,
.ch-header__content {
  vertical-align: middle; }

.ch-body__line-heading {
  font-weight: bold; }

.ch-header__year-box {
  color: #fff;
  background: #999;
  border: 1px solid #999; }

.ch-head {
  background: #555;
  color: #fff; }

.ch-header__content-title {
  display: none; }

@media (max-width: 40em) {
  .ch-header__content-title {
    display: inline-block; } }
.rc-accordion-toggle {
  -moz-transition: -moz-transform 0.3s;
       transition: -webkit-transform 0.3s;
       transition: transform 0.3s; }

.rc-accordion-toggle.is-open {
  -webkit-transform: rotate(-90deg);
     -moz-transform: rotate(-90deg);
          transform: rotate(-90deg); }

.rc-thumbnail {
  height: 64px;
  width: 64px; }

.rc-thumbnail__pdf {
  line-height: 64px; }

.rc-image-preview {
  margin-left: -300px;
  left: 50%; }

.rc-dialog .overlay.ng-hide-add,
.rc-dialog .overlay.ng-hide-remove {
  display: block !important; }

.rc-dialog .overlay.ng-hide-add.ng-hide-add-active {
  opacity: 0; }

.rc-dialog .overlay.ng-hide-remove.ng-hide-remove-active {
  opacity: 1; }

.rc-dialog .overlay.ng-hide {
  opacity: 0; }

.rc-dialog .overlay {
  -moz-transition: opacity 100ms ease-in-out;
       transition: opacity 100ms ease-in-out; }

.claiming-info__content {
  box-shadow: 1px 1px 1px 1px #ddd; }

.claiming-info__nib {
  text-transform: lowercase; }

.claiming-info__toggle:focus {
  outline: none; }

.claiming-info__toggle {
  box-shadow: 1px 1px 1px 1px #ddd;
  -moz-transition: color, background-color 0.2s;
       transition: color, background-color 0.2s; }

.claiming-info__toggle:hover {
  background-color: #DDD; }

.claiming-info__toggle.is-open {
  color: #fff;
  background-color: #009623; }

.csstransforms .claiming-info__triangle {
  position: relative; }

.csstransforms .claiming-info__triangle:before {
  border: 18px solid transparent;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  width: 0;
  z-index: 5;
  border-top-color: #fff;
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
          transform: rotate(180deg);
  top: -26px; }

.csstransforms .claiming-info__triangle--left:before {
  left: 42%; }

.csstransforms .claiming-info__triangle--middle:before {
  left: 46%; }

.csstransforms .claiming-info__triangle--right:before {
  left: 51%; }

.csstransforms .claiming-info__triangle--first:before {
  left: 70%; }

.csstransforms .claiming-info__triangle--last:before {
  left: 130%; }

.csstransforms .claiming-info__triangles {
  height: 0; }

.claiming-info__toggle-icon {
  color: #888; }

.claiming-info .is-open .v2-icon {
  color: #FFF; }

 /*
* Fade everything in once loaded
*/
.csstransitions .claiming-info__container.ng-hide-add,
.csstransitions .claiming-info__container.ng-hide-remove {
  display: block !important; }

.csstransitions .claiming-info__container.ng-hide-add.ng-hide-add-active {
  opacity: 0;
  margin-top: 20px; }

.csstransitions .claiming-info__container.ng-hide-remove.ng-hide-remove-active {
  opacity: 1;
  margin-top: 0; }

.csstransitions .claiming-info__container.ng-hide {
  opacity: 0;
  margin-top: 20px; }

.csstransitions .claiming-info__container {
  -moz-transition: opacity 0.4s ease-in-out, margin-top 0.4s ease-in-out;
       transition: opacity 0.4s ease-in-out, margin-top 0.4s ease-in-out; }

/*
 * Pie chart styles
 */
.claiming-info__chart {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  height: 192px;
  width: 192px; }

.claiming-info__chart--50 {
  background: url("lib/from-os/lib/claiming-info/images/50.svg") 0 0 no-repeat, none; }

.claiming-info__chart--60 {
  background: url("lib/from-os/lib/claiming-info/images/60.svg") 0 0 no-repeat, none; }

.claiming-info__chart--65 {
  background: url("lib/from-os/lib/claiming-info/images/65.svg") 0 0 no-repeat, none; }

.claiming-info__chart--75 {
  background: url("lib/from-os/lib/claiming-info/images/75.svg") 0 0 no-repeat, none; }

.claiming-info__chart--80 {
  background: url("lib/from-os/lib/claiming-info/images/80.svg") 0 0 no-repeat, none; }

.claiming-info__chart--85 {
  background: url("lib/from-os/lib/claiming-info/images/85.svg") 0 0 no-repeat, none; }

.claiming-info__chart--90 {
  background: url("lib/from-os/lib/claiming-info/images/90.svg") 0 0 no-repeat, none; }

.claiming-info__chart--100 {
  background: url("lib/from-os/lib/claiming-info/images/100.svg") 0 0 no-repeat, none; }

.selected-tier {
  background-color: #eeeeee;
  background-color: rgba(38, 177, 27, 0.31);
  -moz-transition: 0.2s;
       transition: 0.2s; }

/*
 * Header navigation
 */
.phone-number {
  color: #1f7c07;
  font-size: 20px;
  line-height: 36px; }

.logout-button {
  position: relative;
  top: -3px; }

/*
 * Footer navigation
 */
.nav-footer {
  font-size: 12px;
  line-height: 18px; }

.nav-footer__item {
  border-left: 1px solid #666;
  text-decoration: none; }

.nav-footer__item:hover {
  text-decoration: underline; }

.nav-footer__item:first-child {
  border: none; }

/*
* Mobile Menu
*/
.csstransitions .os-menu-mob__accordion {
  -moz-transition: height 0.7s ease-in-out;
       transition: height 0.7s ease-in-out;
  height: 0;
  overflow: hidden; }

.no-csstransitions .os-menu-mob__accordion {
  display: none; }

.no-csstransitions .os-menu-mob__accordion.is-open {
  display: block; }

.os-menu-mob {
  font-family: "Roboto", sans-serif; }

.os-menu-mob a {
  text-decoration: none;
  cursor: pointer; }

.os-menu-mob > ul > li {
  display: inline; }

.os-menu-mob > ul > li > a,
.os-menu-mob__item {
  display: block;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  width: 270px;
  /* parent is fixed to 280px*/
  background-color: #fff;
  padding: 10px;
  margin: 5px 5px 0 5px;
  font-size: 18px;
  text-transform: uppercase;
  box-shadow: 1px 1px 4px 1px #ddd;
  cursor: pointer; }

.os-menu-mob > ul > li > a.is-selected,
.os-menu-mob__item.is-selected {
  color: #009623; }

.os-menu-mob__accordion {
  margin: 0 5px 5px 5px;
  background-color: #fff; }

.os-menu-mob__accordion > li a {
  margin: 5px;
  padding: 10px;
  background-color: #f5f5f5;
  font-size: 16px;
  text-transform: uppercase;
  display: block; }

.os-menu-mob__accordion > li a.is-selected {
  color: #009623; }

/*
* Desktop Menu
*/
.os-menu {
  height: 63px; }

.os-menu ul {
  display: inline-block; }

.os-menu ul li {
  display: inline-block;
  vertical-align: top; }

.os-menu__item {
  text-decoration: none;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer; }

.os-menu__item {
  height: 63px;
  padding: 17px 20px 0 20px;
  display: inline-block;
  -moz-box-sizing: border-box;
       box-sizing: border-box; }

.os-menu__item.is-selected {
  border-bottom: 2px solid #26B11B; }

.os-menu__item:hover,
.os-menu__item.is-open {
  background-color: #26B11B;
  color: #fff; }

.os-menu__item--parent {
  display: block;
  text-align: center;
  height: 63px; }

.os-menu__item--child {
  display: block;
  background-color: #26B11B;
  color: #fff;
  position: relative;
  z-index: 2000;
  text-align: left;
  -moz-box-sizing: border-box;
       box-sizing: border-box; }

.os-menu__item--child:hover,
.os-menu__item--child:focus {
  background-color: #26a91b; }

.os-menu__item--child.is-selected {
  font-weight: bold; }

.os-menu__item--logout {
  color: #999; }

.os-menu__item--logout:hover {
  background-color: #fff;
  color: #444;
  text-decoration: underline; }

a.os-menu__item--child {
  padding: 10px;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase; }

.os-menu__item:hover .os-menu__chevron {
  color: #fff; }

.os-menu__chevron {
  font-size: 10px;
  margin-top: 8px;
  color: #888; }

.dropdown li {
  position: relative; }

.dropdown a {
  display: block; }

.dropdown ul {
  /* Set up the dropdown and hide it off-screen. */
  list-style: none;
  margin: 0;
  position: absolute;
  left: -99999px;
  top: 100%;
  background: #fff;
  /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
  background: rgba(255, 255, 255, 0);
  /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */ }

.dropdown li:hover ul,
.dropdown li ul.has-focus {
  /* Bring the dropdown back onto screen when you hover its parent li. */
  left: 0; }

.dropdown ul li {
  /* Remove floats etc from dropdown list items. */
  position: static;
  float: none;
  width: 100%; }

.dropdown ul a {
  white-space: nowrap;
  /* Stop the list items breaking. */ }

/**** nib Rewards! DO NOT ALTER COLOURS ****/
.rewards-nav__hint {
  position: relative;
  text-align: center;
  top: 29px;
  padding: 5px;
  font-size: 0.7em;
  background-color: #009623;
  color: #fff; }

.csstransforms .rewards-nav__hint:before {
  left: 50px;
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
          transform: rotate(45deg);
  border: 4px solid #009623;
  top: -4px;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  width: 0;
  z-index: 5; }

.rewards-nav__mobile-hint {
  padding: 5px;
  background-color: #AAA;
  color: #fff;
  font-size: 0.5em;
  position: relative;
  left: 8px;
  top: -2px; }

.csstransforms .rewards-nav__mobile-hint:before {
  left: -3px;
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
          transform: rotate(45deg);
  border: 3px solid #AAA;
  top: 8px;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  width: 0;
  z-index: 5; }

.is-selected .rewards-nav__mobile-hint {
  background-color: #009623; }

.csstransforms .is-selected .rewards-nav__mobile-hint:before {
  border-color: #009623; }

/**** END: nib Rewards ****/
.product-bundle {
  display: table-row; }

.product-bundle__box {
  display: table-cell; }

.product-bundle__box--left {
  border-right: 5px solid #FFF; }

.product-bundle__box--right {
  border-left: 5px solid #FFF; }

.product-bundle__plus {
  width: 0; }

.product-bundle__plus-parent {
  display: table-cell;
  vertical-align: middle; }

.product-bundle__plus-container {
  position: relative;
  right: 17px; }

.product-bundle__box-padding {
  min-height: 157px; }

@media (max-width: 50em) {
  .product-bundle {
    display: block; }

  .product-bundle__box {
    display: inline-block; }

  .product-bundle__box--left {
    border-right: 0;
    border-bottom: 5px solid #FFF; }

  .product-bundle__box--right {
    border-left: 0;
    border-top: 5px solid #FFF; }

  .product-bundle__plus {
    width: inherit;
    height: 0; }

  .product-bundle__plus-parent {
    display: block;
    vertical-align: middle; }

  .product-bundle__plus-container {
    right: 0;
    bottom: 17px; }

  .product-bundle__box-padding {
    min-height: 0; } }
.product-bundle__info-box--extras {
  background: #7e3e97;
  color: #eee1f3; }

.product-bundle__info-box--hospital {
  background: #39C4E0;
  color: #fff; }

.product-bundle__base {
  color: #fff;
  font-size: 35px;
  line-height: 40px; }

.product-bundle__base a:hover {
  color: #78CBDC;
  text-decoration: underline; }

.product-bundle__extras {
  color: #eee1f3;
  font-size: 36px;
  line-height: 40px; }

.product-bundle__extras .t-invisibleLink:hover {
  color: #8C7396;
  text-decoration: underline; }

.product-bundle .v2-icon--umbrella {
  -webkit-transform: rotate(30deg);
     -moz-transform: rotate(30deg);
          transform: rotate(30deg);
  color: #666; }

.product-bundle__policy-number {
  color: #666; }

.product-bundle__base-container {
  background: #39C4E0;
  color: #fff; }

.product-bundle__extras-container {
  background: #7e3e97;
  color: #eee1f3; }

@media (max-width: 800px) {
  .product_bundle__excess {
    vertical-align: middle; } }
.product-bundle__bundle {
  font-size: 1.2em;
  line-height: 24px; }

.product-bundle__plus-icon {
  padding: 6px;
  width: 24px;
  background-color: #FFF;
  border-radius: 24px;
  color: #AAA; }

.product-bundle__download:hover {
  opacity: 0.8; }

.product-bundle__download-icon {
  vertical-align: bottom;
  position: relative;
  top: -4px; }

.t-copy a,
.t-inverseCopy a,
.t-link,
.t-copy mark,
.t-highlight,
.t-inverseCopy mark,
.t-copy a:hover,
.t-inverseCopy a:hover {
  color: #009623; }

.logo {
  background: url("lib/from-os/lib/logo/images/nib.png") 0 center no-repeat;
  display: block;
  height: 39px;
  overflow: hidden;
  text-indent: -9999px;
  width: 51px;
  background-size: contain; }

.mobile-header__logo {
  background: url("lib/from-os/lib/logo/images/nib.png") 0 center no-repeat;
  background-size: contain; }

.callout {
  border-top: 2px solid #009623; }

.color-grey {
  color: #eeeeee; }

.bg-grey {
  background: #eeeeee; }

.bdr-1px-grey {
  border: 1px solid #eeeeee; }

.bdr-x-1px-grey {
  border-left: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee; }

.bdr-y-1px-grey {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee; }

.bdr-t-1px-grey {
  border-top: 1px solid #eeeeee; }

.bdr-b-1px-grey {
  border-bottom: 1px solid #eeeeee; }

.bdr-l-1px-grey {
  border-left: 1px solid #eeeeee; }

.bdr-r-1px-grey {
  border-right: 1px solid #eeeeee; }

.bdr-2px-grey {
  border: 2px solid #eeeeee; }

.bdr-x-2px-grey {
  border-left: 2px solid #eeeeee;
  border-right: 2px solid #eeeeee; }

.bdr-y-2px-grey {
  border-top: 2px solid #eeeeee;
  border-bottom: 2px solid #eeeeee; }

.bdr-t-2px-grey {
  border-top: 2px solid #eeeeee; }

.bdr-b-2px-grey {
  border-bottom: 2px solid #eeeeee; }

.bdr-l-2px-grey {
  border-left: 2px solid #eeeeee; }

.bdr-r-2px-grey {
  border-right: 2px solid #eeeeee; }

.bdr-3px-grey {
  border: 3px solid #eeeeee; }

.bdr-x-3px-grey {
  border-left: 3px solid #eeeeee;
  border-right: 3px solid #eeeeee; }

.bdr-y-3px-grey {
  border-top: 3px solid #eeeeee;
  border-bottom: 3px solid #eeeeee; }

.bdr-t-3px-grey {
  border-top: 3px solid #eeeeee; }

.bdr-b-3px-grey {
  border-bottom: 3px solid #eeeeee; }

.bdr-l-3px-grey {
  border-left: 3px solid #eeeeee; }

.bdr-r-3px-grey {
  border-right: 3px solid #eeeeee; }

.bdr-4px-grey {
  border: 4px solid #eeeeee; }

.bdr-x-4px-grey {
  border-left: 4px solid #eeeeee;
  border-right: 4px solid #eeeeee; }

.bdr-y-4px-grey {
  border-top: 4px solid #eeeeee;
  border-bottom: 4px solid #eeeeee; }

.bdr-t-4px-grey {
  border-top: 4px solid #eeeeee; }

.bdr-b-4px-grey {
  border-bottom: 4px solid #eeeeee; }

.bdr-l-4px-grey {
  border-left: 4px solid #eeeeee; }

.bdr-r-4px-grey {
  border-right: 4px solid #eeeeee; }

.bdr-5px-grey {
  border: 5px solid #eeeeee; }

.bdr-x-5px-grey {
  border-left: 5px solid #eeeeee;
  border-right: 5px solid #eeeeee; }

.bdr-y-5px-grey {
  border-top: 5px solid #eeeeee;
  border-bottom: 5px solid #eeeeee; }

.bdr-t-5px-grey {
  border-top: 5px solid #eeeeee; }

.bdr-b-5px-grey {
  border-bottom: 5px solid #eeeeee; }

.bdr-l-5px-grey {
  border-left: 5px solid #eeeeee; }

.bdr-r-5px-grey {
  border-right: 5px solid #eeeeee; }

.color-grey-2 {
  color: #999999; }

.bg-grey-2 {
  background: #999999; }

.bdr-1px-grey-2 {
  border: 1px solid #999999; }

.bdr-x-1px-grey-2 {
  border-left: 1px solid #999999;
  border-right: 1px solid #999999; }

.bdr-y-1px-grey-2 {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999; }

.bdr-t-1px-grey-2 {
  border-top: 1px solid #999999; }

.bdr-b-1px-grey-2 {
  border-bottom: 1px solid #999999; }

.bdr-l-1px-grey-2 {
  border-left: 1px solid #999999; }

.bdr-r-1px-grey-2 {
  border-right: 1px solid #999999; }

.bdr-2px-grey-2 {
  border: 2px solid #999999; }

.bdr-x-2px-grey-2 {
  border-left: 2px solid #999999;
  border-right: 2px solid #999999; }

.bdr-y-2px-grey-2 {
  border-top: 2px solid #999999;
  border-bottom: 2px solid #999999; }

.bdr-t-2px-grey-2 {
  border-top: 2px solid #999999; }

.bdr-b-2px-grey-2 {
  border-bottom: 2px solid #999999; }

.bdr-l-2px-grey-2 {
  border-left: 2px solid #999999; }

.bdr-r-2px-grey-2 {
  border-right: 2px solid #999999; }

.bdr-3px-grey-2 {
  border: 3px solid #999999; }

.bdr-x-3px-grey-2 {
  border-left: 3px solid #999999;
  border-right: 3px solid #999999; }

.bdr-y-3px-grey-2 {
  border-top: 3px solid #999999;
  border-bottom: 3px solid #999999; }

.bdr-t-3px-grey-2 {
  border-top: 3px solid #999999; }

.bdr-b-3px-grey-2 {
  border-bottom: 3px solid #999999; }

.bdr-l-3px-grey-2 {
  border-left: 3px solid #999999; }

.bdr-r-3px-grey-2 {
  border-right: 3px solid #999999; }

.bdr-4px-grey-2 {
  border: 4px solid #999999; }

.bdr-x-4px-grey-2 {
  border-left: 4px solid #999999;
  border-right: 4px solid #999999; }

.bdr-y-4px-grey-2 {
  border-top: 4px solid #999999;
  border-bottom: 4px solid #999999; }

.bdr-t-4px-grey-2 {
  border-top: 4px solid #999999; }

.bdr-b-4px-grey-2 {
  border-bottom: 4px solid #999999; }

.bdr-l-4px-grey-2 {
  border-left: 4px solid #999999; }

.bdr-r-4px-grey-2 {
  border-right: 4px solid #999999; }

.bdr-5px-grey-2 {
  border: 5px solid #999999; }

.bdr-x-5px-grey-2 {
  border-left: 5px solid #999999;
  border-right: 5px solid #999999; }

.bdr-y-5px-grey-2 {
  border-top: 5px solid #999999;
  border-bottom: 5px solid #999999; }

.bdr-t-5px-grey-2 {
  border-top: 5px solid #999999; }

.bdr-b-5px-grey-2 {
  border-bottom: 5px solid #999999; }

.bdr-l-5px-grey-2 {
  border-left: 5px solid #999999; }

.bdr-r-5px-grey-2 {
  border-right: 5px solid #999999; }

.color-grey-3 {
  color: #555555; }

.bg-grey-3 {
  background: #555555; }

.bdr-1px-grey-3 {
  border: 1px solid #555555; }

.bdr-x-1px-grey-3 {
  border-left: 1px solid #555555;
  border-right: 1px solid #555555; }

.bdr-y-1px-grey-3 {
  border-top: 1px solid #555555;
  border-bottom: 1px solid #555555; }

.bdr-t-1px-grey-3 {
  border-top: 1px solid #555555; }

.bdr-b-1px-grey-3 {
  border-bottom: 1px solid #555555; }

.bdr-l-1px-grey-3 {
  border-left: 1px solid #555555; }

.bdr-r-1px-grey-3 {
  border-right: 1px solid #555555; }

.bdr-2px-grey-3 {
  border: 2px solid #555555; }

.bdr-x-2px-grey-3 {
  border-left: 2px solid #555555;
  border-right: 2px solid #555555; }

.bdr-y-2px-grey-3 {
  border-top: 2px solid #555555;
  border-bottom: 2px solid #555555; }

.bdr-t-2px-grey-3 {
  border-top: 2px solid #555555; }

.bdr-b-2px-grey-3 {
  border-bottom: 2px solid #555555; }

.bdr-l-2px-grey-3 {
  border-left: 2px solid #555555; }

.bdr-r-2px-grey-3 {
  border-right: 2px solid #555555; }

.bdr-3px-grey-3 {
  border: 3px solid #555555; }

.bdr-x-3px-grey-3 {
  border-left: 3px solid #555555;
  border-right: 3px solid #555555; }

.bdr-y-3px-grey-3 {
  border-top: 3px solid #555555;
  border-bottom: 3px solid #555555; }

.bdr-t-3px-grey-3 {
  border-top: 3px solid #555555; }

.bdr-b-3px-grey-3 {
  border-bottom: 3px solid #555555; }

.bdr-l-3px-grey-3 {
  border-left: 3px solid #555555; }

.bdr-r-3px-grey-3 {
  border-right: 3px solid #555555; }

.bdr-4px-grey-3 {
  border: 4px solid #555555; }

.bdr-x-4px-grey-3 {
  border-left: 4px solid #555555;
  border-right: 4px solid #555555; }

.bdr-y-4px-grey-3 {
  border-top: 4px solid #555555;
  border-bottom: 4px solid #555555; }

.bdr-t-4px-grey-3 {
  border-top: 4px solid #555555; }

.bdr-b-4px-grey-3 {
  border-bottom: 4px solid #555555; }

.bdr-l-4px-grey-3 {
  border-left: 4px solid #555555; }

.bdr-r-4px-grey-3 {
  border-right: 4px solid #555555; }

.bdr-5px-grey-3 {
  border: 5px solid #555555; }

.bdr-x-5px-grey-3 {
  border-left: 5px solid #555555;
  border-right: 5px solid #555555; }

.bdr-y-5px-grey-3 {
  border-top: 5px solid #555555;
  border-bottom: 5px solid #555555; }

.bdr-t-5px-grey-3 {
  border-top: 5px solid #555555; }

.bdr-b-5px-grey-3 {
  border-bottom: 5px solid #555555; }

.bdr-l-5px-grey-3 {
  border-left: 5px solid #555555; }

.bdr-r-5px-grey-3 {
  border-right: 5px solid #555555; }

.color-white {
  color: #ffffff; }

.bg-white {
  background: #ffffff; }

.bdr-1px-white {
  border: 1px solid #ffffff; }

.bdr-x-1px-white {
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff; }

.bdr-y-1px-white {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff; }

.bdr-t-1px-white {
  border-top: 1px solid #ffffff; }

.bdr-b-1px-white {
  border-bottom: 1px solid #ffffff; }

.bdr-l-1px-white {
  border-left: 1px solid #ffffff; }

.bdr-r-1px-white {
  border-right: 1px solid #ffffff; }

.bdr-2px-white {
  border: 2px solid #ffffff; }

.bdr-x-2px-white {
  border-left: 2px solid #ffffff;
  border-right: 2px solid #ffffff; }

.bdr-y-2px-white {
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff; }

.bdr-t-2px-white {
  border-top: 2px solid #ffffff; }

.bdr-b-2px-white {
  border-bottom: 2px solid #ffffff; }

.bdr-l-2px-white {
  border-left: 2px solid #ffffff; }

.bdr-r-2px-white {
  border-right: 2px solid #ffffff; }

.bdr-3px-white {
  border: 3px solid #ffffff; }

.bdr-x-3px-white {
  border-left: 3px solid #ffffff;
  border-right: 3px solid #ffffff; }

.bdr-y-3px-white {
  border-top: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff; }

.bdr-t-3px-white {
  border-top: 3px solid #ffffff; }

.bdr-b-3px-white {
  border-bottom: 3px solid #ffffff; }

.bdr-l-3px-white {
  border-left: 3px solid #ffffff; }

.bdr-r-3px-white {
  border-right: 3px solid #ffffff; }

.bdr-4px-white {
  border: 4px solid #ffffff; }

.bdr-x-4px-white {
  border-left: 4px solid #ffffff;
  border-right: 4px solid #ffffff; }

.bdr-y-4px-white {
  border-top: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff; }

.bdr-t-4px-white {
  border-top: 4px solid #ffffff; }

.bdr-b-4px-white {
  border-bottom: 4px solid #ffffff; }

.bdr-l-4px-white {
  border-left: 4px solid #ffffff; }

.bdr-r-4px-white {
  border-right: 4px solid #ffffff; }

.bdr-5px-white {
  border: 5px solid #ffffff; }

.bdr-x-5px-white {
  border-left: 5px solid #ffffff;
  border-right: 5px solid #ffffff; }

.bdr-y-5px-white {
  border-top: 5px solid #ffffff;
  border-bottom: 5px solid #ffffff; }

.bdr-t-5px-white {
  border-top: 5px solid #ffffff; }

.bdr-b-5px-white {
  border-bottom: 5px solid #ffffff; }

.bdr-l-5px-white {
  border-left: 5px solid #ffffff; }

.bdr-r-5px-white {
  border-right: 5px solid #ffffff; }

.color-orange {
  color: #ffb300; }

.bg-orange {
  background: #ffb300; }

.bdr-1px-orange {
  border: 1px solid #ffb300; }

.bdr-x-1px-orange {
  border-left: 1px solid #ffb300;
  border-right: 1px solid #ffb300; }

.bdr-y-1px-orange {
  border-top: 1px solid #ffb300;
  border-bottom: 1px solid #ffb300; }

.bdr-t-1px-orange {
  border-top: 1px solid #ffb300; }

.bdr-b-1px-orange {
  border-bottom: 1px solid #ffb300; }

.bdr-l-1px-orange {
  border-left: 1px solid #ffb300; }

.bdr-r-1px-orange {
  border-right: 1px solid #ffb300; }

.bdr-2px-orange {
  border: 2px solid #ffb300; }

.bdr-x-2px-orange {
  border-left: 2px solid #ffb300;
  border-right: 2px solid #ffb300; }

.bdr-y-2px-orange {
  border-top: 2px solid #ffb300;
  border-bottom: 2px solid #ffb300; }

.bdr-t-2px-orange {
  border-top: 2px solid #ffb300; }

.bdr-b-2px-orange {
  border-bottom: 2px solid #ffb300; }

.bdr-l-2px-orange {
  border-left: 2px solid #ffb300; }

.bdr-r-2px-orange {
  border-right: 2px solid #ffb300; }

.bdr-3px-orange {
  border: 3px solid #ffb300; }

.bdr-x-3px-orange {
  border-left: 3px solid #ffb300;
  border-right: 3px solid #ffb300; }

.bdr-y-3px-orange {
  border-top: 3px solid #ffb300;
  border-bottom: 3px solid #ffb300; }

.bdr-t-3px-orange {
  border-top: 3px solid #ffb300; }

.bdr-b-3px-orange {
  border-bottom: 3px solid #ffb300; }

.bdr-l-3px-orange {
  border-left: 3px solid #ffb300; }

.bdr-r-3px-orange {
  border-right: 3px solid #ffb300; }

.bdr-4px-orange {
  border: 4px solid #ffb300; }

.bdr-x-4px-orange {
  border-left: 4px solid #ffb300;
  border-right: 4px solid #ffb300; }

.bdr-y-4px-orange {
  border-top: 4px solid #ffb300;
  border-bottom: 4px solid #ffb300; }

.bdr-t-4px-orange {
  border-top: 4px solid #ffb300; }

.bdr-b-4px-orange {
  border-bottom: 4px solid #ffb300; }

.bdr-l-4px-orange {
  border-left: 4px solid #ffb300; }

.bdr-r-4px-orange {
  border-right: 4px solid #ffb300; }

.bdr-5px-orange {
  border: 5px solid #ffb300; }

.bdr-x-5px-orange {
  border-left: 5px solid #ffb300;
  border-right: 5px solid #ffb300; }

.bdr-y-5px-orange {
  border-top: 5px solid #ffb300;
  border-bottom: 5px solid #ffb300; }

.bdr-t-5px-orange {
  border-top: 5px solid #ffb300; }

.bdr-b-5px-orange {
  border-bottom: 5px solid #ffb300; }

.bdr-l-5px-orange {
  border-left: 5px solid #ffb300; }

.bdr-r-5px-orange {
  border-right: 5px solid #ffb300; }

.color-red {
  color: #e83400; }

.bg-red {
  background: #e83400; }

.bdr-1px-red {
  border: 1px solid #e83400; }

.bdr-x-1px-red {
  border-left: 1px solid #e83400;
  border-right: 1px solid #e83400; }

.bdr-y-1px-red {
  border-top: 1px solid #e83400;
  border-bottom: 1px solid #e83400; }

.bdr-t-1px-red {
  border-top: 1px solid #e83400; }

.bdr-b-1px-red {
  border-bottom: 1px solid #e83400; }

.bdr-l-1px-red {
  border-left: 1px solid #e83400; }

.bdr-r-1px-red {
  border-right: 1px solid #e83400; }

.bdr-2px-red {
  border: 2px solid #e83400; }

.bdr-x-2px-red {
  border-left: 2px solid #e83400;
  border-right: 2px solid #e83400; }

.bdr-y-2px-red {
  border-top: 2px solid #e83400;
  border-bottom: 2px solid #e83400; }

.bdr-t-2px-red {
  border-top: 2px solid #e83400; }

.bdr-b-2px-red {
  border-bottom: 2px solid #e83400; }

.bdr-l-2px-red {
  border-left: 2px solid #e83400; }

.bdr-r-2px-red {
  border-right: 2px solid #e83400; }

.bdr-3px-red {
  border: 3px solid #e83400; }

.bdr-x-3px-red {
  border-left: 3px solid #e83400;
  border-right: 3px solid #e83400; }

.bdr-y-3px-red {
  border-top: 3px solid #e83400;
  border-bottom: 3px solid #e83400; }

.bdr-t-3px-red {
  border-top: 3px solid #e83400; }

.bdr-b-3px-red {
  border-bottom: 3px solid #e83400; }

.bdr-l-3px-red {
  border-left: 3px solid #e83400; }

.bdr-r-3px-red {
  border-right: 3px solid #e83400; }

.bdr-4px-red {
  border: 4px solid #e83400; }

.bdr-x-4px-red {
  border-left: 4px solid #e83400;
  border-right: 4px solid #e83400; }

.bdr-y-4px-red {
  border-top: 4px solid #e83400;
  border-bottom: 4px solid #e83400; }

.bdr-t-4px-red {
  border-top: 4px solid #e83400; }

.bdr-b-4px-red {
  border-bottom: 4px solid #e83400; }

.bdr-l-4px-red {
  border-left: 4px solid #e83400; }

.bdr-r-4px-red {
  border-right: 4px solid #e83400; }

.bdr-5px-red {
  border: 5px solid #e83400; }

.bdr-x-5px-red {
  border-left: 5px solid #e83400;
  border-right: 5px solid #e83400; }

.bdr-y-5px-red {
  border-top: 5px solid #e83400;
  border-bottom: 5px solid #e83400; }

.bdr-t-5px-red {
  border-top: 5px solid #e83400; }

.bdr-b-5px-red {
  border-bottom: 5px solid #e83400; }

.bdr-l-5px-red {
  border-left: 5px solid #e83400; }

.bdr-r-5px-red {
  border-right: 5px solid #e83400; }

.color-green {
  color: #009623; }

@-webkit-keyframes slide-left {
  from {
    width: 100%; } }

@-moz-keyframes slide-left {
  from {
    width: 100%; } }

@keyframes slide-left {
  from {
    width: 100%; } }
.slide-left {
  -webkit-animation: slide-left 1s ease-in-out;
     -moz-animation: slide-left 1s ease-in-out;
          animation: slide-left 1s ease-in-out; }

.usage-item {
  position: relative;
  line-height: 30px;
  border-bottom: 1px solid #EEE; }

.usage-item--selected {
  border-bottom: none; }

.usage-item__padding {
  padding-top: 20px;
  padding-bottom: 20px; }

.usage-sublimit,
.usage-sublimit__overview {
  position: relative; }

.usage-sublimit-box {
  line-height: 20px; }

.remedial-massage {
  line-height: 15px; }

@media (max-width: 800px) {
  .remedial-massage {
    padding-bottom: 10px; } }
@media (min-width: 801px) {
  .remedial-massage {
    position: relative !important;
    left: 35px;
    text-align: center; } }
.usage-item__status {
  border-radius: 3px;
  background: #bbb;
  position: relative;
  overflow: hidden; }

.usage-item__percentage {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #3bb931;
  z-index: 0;
  bottom: 0; }

.usage-item__percentage--low {
  background: #F16B6B; }

.usage-item__remaining,
.usage-item__remaining-text {
  padding: 2px 5px 2px 5px;
  border-radius: 3px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  float: none; }

@media (max-width: 50em) {
  .usage-item__remaining-text--remaining {
    float: left; }

  .usage-item__remaining-text--limit {
    float: right; } }
.overview-usage .usage-item__remaining-text--remaining {
  float: left; }

.overview-usage .usage-item__remaining-text--limit {
  float: right; }

.usage-item__service,
.usage-item__limit,
.usage-item__service {
  line-height: 18px; }

.usage-item__limit {
  vertical-align: middle; }

.overview-usage-item__benefits {
  color: grey; }

.usage-item__waiting-text {
  padding: 2px 5px 2px 5px;
  border-radius: 3px;
  color: #fff;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  z-index: 1; }

@media (min-width: 801px) {
  .callout-grey {
    border-bottom: 2px solid #bbb; } }
@media (max-width: 801px) {
  .usage-item__limit {
    position: absolute;
    top: 20px;
    right: 20px; } }
@media (min-width: 802px) {
  .usage-item__service {
    vertical-align: middle; } }
@media (max-width: 801px) {
  .overview-usage-item__limit {
    position: relative;
    top: 0;
    right: 0; } }
.usage-item__container:hover {
  background-color: #eee; }

.usage-item__container--selected {
  background-color: #eee !important; }

.usage-item__container {
  cursor: pointer;
  padding-top: 25px;
  padding-bottom: 25px; }

.usage-item__toggle {
  color: #999;
  -webkit-transform: rotate(90deg);
     -moz-transform: rotate(90deg);
          transform: rotate(90deg);
  -moz-transition: -moz-transform 0.4s linear;
       transition: -webkit-transform 0.4s linear;
       transition: transform 0.4s linear; }

.usage-item__toggle--on {
  color: #555;
  -webkit-transform: rotate(-90deg);
     -moz-transform: rotate(-90deg);
          transform: rotate(-90deg); }

.calendar__month {
  background: #259408;
  border-bottom: rgba(121, 190, 16, 0.9); }

.calendar__days span.is-selected {
  border: 1px solid #259408;
  background: #259408; }

@media (min-width: 481px) {
  .changePasswordDialog.dialog {
    min-width: 360px; } }
.password-text {
  color: #f27e29; }

/* IE8 / IE9 */
.no-cssanimations .changePasswordDialog.dialog {
  width: 360px; }

.no-cssanimations .password-strength {
  display: none; }

.password-strength {
  background: #eee;
  height: 10px;
  position: relative; }

.password-strength div {
  -moz-transition: all .5s ease-in-out;
       transition: all .5s ease-in-out;
  background: -moz-linear-gradient(left, #1f7c07, #79be10);
  background: linear-gradient(to right, #1f7c07, #79be10);
  display: block;
  height: 10px;
  left: 0;
  position: absolute;
  top: 0;
  width: 0%; }

.password-strength[data-strength="0"] div {
  background: #db3434;
  width: 20%; }

.password-strength[data-strength="1"] div {
  width: 40%; }

.password-strength[data-strength="2"] div {
  width: 60%; }

.password-strength[data-strength="3"] div {
  width: 80%; }

.password-strength[data-strength="4"] div {
  width: 100%; }


/* White */
.bg-1 {
  background: #fff;
}

/* light grey */
.bg-2 {
  background: #eee;
}

/* Light green */
.bg-3 {
  background: #90c352;
}

/* dark grey */
.bg-4 {
  background: #555;
}

/* mid grey */
.bg-5 {
  background: #888;
}

/* very light grey - almost white */
.bg-6 {
  background: #f9f9f9;
}

/* grey stripes */
.bg-7 {
  background: url('lib/backgrounds/images/bg-grey-stripes.png');
}

/* red bg */
.bg-8 {
  background: #e06666;
}

.bg-9 {
  background: #ddd;
}

.bg-10 {
  background: #009623;
}




@-webkit-keyframes togglemenu {
  0% {
    left: -100vw;
  }
  1% {
    left: 0vw;
  }
  100% {
    left: 0vw;
  }
}
@-moz-keyframes togglemenu {
  0% {
    left: -100vw;
  }
  1% {
    left: 0vw;
  }
  100% {
    left: 0vw;
  }
}
@keyframes togglemenu {
  0% {
    left: -100vw;
  }
  1% {
    left: 0vw;
  }
  100% {
    left: 0vw;
  }
}
.mobile-menu__container {
  width: 100vw;
  height: 100%;
  top: 39px;
  left: -100vw;
  background-color: rgba(0,0,0,0);
  position: absolute;
  z-index: 2000;
  -moz-transition: background-color 0.5s cubic-bezier(0,1.2,1,.96);
       transition: background-color 0.5s cubic-bezier(0,1.2,1,.96);
}

.no-svg .mobile-menu__container { /*there isn't currently modernizr feature detection for veiwport width */
  display: none;
}

.mobile-menu__container.is-open {

  background-color: rgba(0,0,0,0.3);
  -webkit-animation-name: togglemenu;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-name: togglemenu;
     -moz-animation-name: togglemenu;
          animation-name: togglemenu;
  -webkit-animation-duration: 0.5s;
     -moz-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
     -moz-animation-fill-mode: forwards;
          animation-fill-mode: forwards;

}

.mobile-menu__nav {
  -webkit-transform: translateX(-100vw);
     -moz-transform: translateX(-100vw);
          transform: translateX(-100vw);
  -moz-transition: -moz-transform 0.5s cubic-bezier(0,1.2,1,.96);
       transition: -webkit-transform 0.5s cubic-bezier(0,1.2,1,.96);
       transition: transform 0.5s cubic-bezier(0,1.2,1,.96);
}

.is-open .mobile-menu__nav {
  position: absolute;
  width: 280px;
  padding-top: 1px;
  background-color: #eee;
  height: 100%;
  -webkit-transform: translateX(0);
     -moz-transform: translateX(0);
          transform: translateX(0);
  -moz-transition: -moz-transform 0.5s cubic-bezier(0,1.2,1,.96);
       transition: -webkit-transform 0.5s cubic-bezier(0,1.2,1,.96);
       transition: transform 0.5s cubic-bezier(0,1.2,1,.96);
}




@media (min-width: 959px) {
  .mobile-menu__container,
  .mobile-menu__container.is-open {
    display: none;
  }
}


.mobile-header {
  background: #fff;
  position: relative;
  height: 39px;


}

.mobile-header__logo {
  position: absolute;
  background: url(lib/mobile-header/images/logo.svg) no-repeat 0 0;
  background-size: 45px 25px;
  height: 25px;
  width: 45px;
  left: 50%;
  margin-left: -22.5px;
  top: 8px;
  text-indent: -9999em;
}

.mobile-header__button {
  background: url(lib/mobile-header/images/hamburger.svg) no-repeat 10px 10px;
  background-size: 18px 16px;
  display: block;
  height: 40px;
  width: 40px;
  position: absolute;
  top: 0;
  left: 5px;
  margin-top: 0;
  cursor: pointer;
}


body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 20px;
}

.btn {
  font-weight: bold;
}

.off-canvas .nav-4 .nav__item a {
  font-size: 10px;
}

.off-canvas .nav--sub .nav__item a {
  font-size: 12px;
}

ul.primary_nav2 {
	border-right: none;
}

ul.primary_nav2 > li a {
	width: 191px;
}

ul.primary_nav2 > li:first-child a {
	width: 190px;
}

ul.primary_nav2 > li:last-child.submenu > ul li a {
	width: 146px;
} 

/* TODO should be in accordion */
.accordion__trigger:hover,
.accordion__trigger:active {
  cursor: pointer;
}

.border-none {
	border: none;
}

.container {
  min-height:100%;
}

.footer {
  bottom:0;
  min-height:40px;
  position:absolute;
  width:100%;
}

.u-height-auto {
  height: auto;
}

.border-light-grey {
	border: 1px solid #ececec;
}

.document-icon {
	background: url('app/img/icon-document.png') center;
	background-image: url('app/img/icon-document.svg'), none;
	display: inline-block;
	height: 100px;
	width: 80px;	
}

.document-icon--add {
	background: url('app/img/icon-document-add.png') center;
	background-image: url('app/img/icon-document-add.svg'), none;
}

.padding-x-50 {
	padding-left: 50px;
	padding-right: 50px;
} 

.background-light-green {
	background: #26B11B;
}

.background-light-grey {
	background: #e5e5e5;
}

@media (min-width: 40em) {
	.border-left-lightgrey-at8 {
		border-left: 1px solid #ececec;
	}
}

@media(max-width: 640px){
  .container {
    padding-bottom: 200px;
  }
}



