﻿@charset "UTF-8";

html.remodal-is-locked {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none
}

.remodal, [data-remodal-id] {
    display: none
}

.remodal-overlay {
    position: fixed;
    z-index: 9999;
    top: -5000px;
    right: -5000px;
    bottom: -5000px;
    left: -5000px;
    display: none
}

.remodal-wrapper {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: auto;
    text-align: center;
    -webkit-overflow-scrolling: touch
}

    .remodal-wrapper:after {
        display: inline-block;
        height: 100%;
        margin-left: -.05em;
        content: ""
    }

.remodal-overlay, .remodal-wrapper {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.remodal {
    position: relative;
    outline: none;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%
}

.remodal-is-initialized {
    display: inline-block
}

.remodal-bg.remodal-is-opening, .remodal-bg.remodal-is-opened {
    -webkit-filter: blur(3px);
    filter: blur(3px)
}

.remodal-overlay {
    background: rgba(0,0,0,.5)
}

    .remodal-overlay.remodal-is-opening, .remodal-overlay.remodal-is-closing {
        -webkit-animation-duration: .1s;
        animation-duration: .1s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards
    }

    .remodal-overlay.remodal-is-opening {
        -webkit-animation-name: remodal-overlay-opening-keyframes;
        animation-name: remodal-overlay-opening-keyframes
    }

    .remodal-overlay.remodal-is-closing {
        -webkit-animation-name: remodal-overlay-closing-keyframes;
        animation-name: remodal-overlay-closing-keyframes
    }

.remodal-wrapper {
    padding: 10px 10px 0
}

.remodal {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 10px;
    padding: 35px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    color: #2b2e38;
    background: #fdfce7;
    text-align: left;
    border: 10px solid darkgray;
}

    .remodal.remodal-is-opening, .remodal.remodal-is-closing {
        -webkit-animation-duration: .1s;
        animation-duration: .1s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards
    }

    .remodal.remodal-is-opening {
        -webkit-animation-name: remodal-opening-keyframes;
        animation-name: remodal-opening-keyframes
    }

    .remodal.remodal-is-closing {
        -webkit-animation-name: remodal-closing-keyframes;
        animation-name: remodal-closing-keyframes
    }

.remodal, .remodal-wrapper:after {
    vertical-align: middle
}

.remodal-close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    overflow: visible;
    width: 35px;
    height: 35px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    -webkit-transition: color .2s;
    transition: color .2s;
    text-decoration: none;
    color: #95979c;
    border: 0;
    outline: 0;
    background: transparent
}

    .remodal-close:hover, .remodal-close:focus {
        color: #2b2e38
    }

    .remodal-close:before {
        font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
        font-size: 25px;
        line-height: 35px;
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 35px;
        content: "×";
        text-align: center
    }

.remodal-confirm, .remodal-cancel {
    font: inherit;
    display: inline-block;
    overflow: visible;
    min-width: 110px;
    margin: 0;
    padding: 12px 0;
    cursor: pointer;
    -webkit-transition: background .2s;
    transition: background .2s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    border: 0;
    outline: 0
}

.remodal-confirm {
    color: #fff;
    background: #81c784
}

    .remodal-confirm:hover, .remodal-confirm:focus {
        background: #66bb6a
    }

.remodal-cancel {
    color: #fff;
    background: #e57373
}

    .remodal-cancel:hover, .remodal-cancel:focus {
        background: #ef5350
    }

    .remodal-confirm::-moz-focus-inner, .remodal-cancel::-moz-focus-inner, .remodal-close::-moz-focus-inner {
        padding: 0;
        border: 0
    }

@-webkit-keyframes remodal-opening-keyframes {
    from {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0
    }

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes remodal-opening-keyframes {
    from {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0
    }

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@-webkit-keyframes remodal-closing-keyframes {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    to {
        -webkit-transform: scale(.95);
        transform: scale(.95);
        opacity: 0
    }
}

@keyframes remodal-closing-keyframes {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    to {
        -webkit-transform: scale(.95);
        transform: scale(.95);
        opacity: 0
    }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes remodal-overlay-opening-keyframes {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes remodal-overlay-closing-keyframes {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@media only screen and (min-width:641px) {
    .remodal {
        max-width: 700px
    }
}

.lt-ie9 .remodal-overlay {
    background: #2b2e38
}

.lt-ie9 .remodal {
    width: 700px
}

.remodal p {
    font-size: 15px;
    line-height: 1.5em
}

.modal-dialog-body {
    font-size: 1em
}

    .modal-dialog-body h2 {
        margin-bottom: 15px;
        font-weight: bold
    }

    .modal-dialog-body h4 {
        padding-bottom: 10px;
        font-weight: bold
    }

    .modal-dialog-body p {
        padding-bottom: 8px;
        margin-bottom: 8px;
        font-size: 16px
    }

.remodal-footer {
    margin-top: 20px
}

.modal-dialog-actions {
    float: right
}

    .modal-dialog-actions button {
        margin-right: 20px;
        padding-left: 20px;
        padding-right: 20px
    }

#consent-window-message {
    font-size: 1.5em;
    margin-bottom: 50px
}

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
    display: block
}

audio, canvas, video {
    display: inline-block;
    *display: inline;
    *zoom: 1
}

    audio:not([controls]) {
        display: none;
        height: 0
    }

[hidden] {
    display: none
}

/* BASE STYLES */
html {
    font-size: 12px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%
}

html, button, input, select, textarea {
    font-family: "ff-scala-sans-pro", "ff-scala-sans-web-pro-n4", "ff-scala-sans-web-pro", arial, sans-serif !important;
    font-variant-numeric: lining-nums;
    font-style: normal;
    font-weight: 400;
    color: #222;
}

body {
    margin: 0;
    padding: 0;
    color: #747474;
    font-size: 1.3rem;
    line-height: 1.4rem;
}

a {
    color: #099;
    text-decoration: none
}

    a:hover {
        text-decoration: underline
    }

    a:focus {
        outline: thin dotted;
    }

    a:active, a:hover {
        outline: 0;
    }

h1 {
    font-size: 2em;
    margin: 0 0 .5em 0;
}

h2 {
    font-size: 1.5em;
    margin: .83em 0;
}

h3 {
    font-size: 1.17em;
    margin: 1em 0
}

h4 {
    font-size: 1em;
    margin: 1.33em 0
}

h5 {
    font-size: .83em;
    margin: 1.67em 0
}

h6 {
    font-size: .75em;
    margin: 2.33em 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b, strong {
    font-weight: bold
}

blockquote {
    margin: 1em 40px
}

dfn {
    font-style: italic
}

mark {
    background: #ff0;
    color: #000
}

p, pre {
    margin: 1em 0
}

code, kbd, pre, samp {
    font-family: monospace, serif;
    _font-family: 'courier new', monospace;
    font-size: 1em
}

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word
}

q {
    quotes: none
}

    q:before, q:after {
        content: '';
        content: none
    }

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

dl, menu, ol, ul {
    margin: 1em 0
}

dd {
    margin: 0 0 0 40px
}

menu, ol, ul {
    padding: 0 0 0 40px
}

nav ul, nav ol {
    list-style: none;
    list-style-image: none
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 0
}

form {
    margin: 0
}

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    border: 0;
    padding: 0;
    white-space: normal;
    *margin-left: -7px
}

button, input, select, textarea {
    font-size: 100%;
    margin: 0;
}

button, input {
    line-height: normal
}

    button, html input[type="button"], input[type="reset"], input[type="submit"] {
        -webkit-appearance: button;
        cursor: pointer;
        *overflow: visible
    }

        button[disabled], input[disabled] {
            cursor: default
        }

    input[type="search"] {
        -webkit-appearance: textfield;
        -moz-box-sizing: content-box;
        -webkit-box-sizing: content-box;
        box-sizing: content-box
    }

        input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
            -webkit-appearance: none
        }

    button::-moz-focus-inner, input::-moz-focus-inner {
        border: 0;
        padding: 0
    }

textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

.css3, .b, .b-skin1, .b-skin2, .mod-grad {
    behavior: url("/content/PIE.htc");
    position: relative
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none
}

::selection {
    background: #b3d4fc;
    text-shadow: none
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0
}

img {
    vertical-align: middle
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0
}

.chromeframe {
    margin: .2em 0;
    background: #ccc;
    color: #000;
    padding: .2em 0
}

div, span, p, a, h1, h2, h3, h4, h5 {
    word-wrap: break-word
}

button, input, select, textarea {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 5px;
}

.form-check-input {
    margin-top: 0;
}

.user-nav ul, .user-nav-custom ul, .footer ul, .validation-summary-errors ul, .cdf-msg-box ul, .user-nav li, .user-nav-custom li, .footer li, .validation-summary-errors li, .cdf-msg-box li {
    margin: 0;
    padding: 0;
    list-style: none
}

.hide {
    display: none
}

.show {
    display: block
}

.body-pad {
    margin-top: 15px;
    padding: 0 body-sidepad
}

.wrapper {
    width: 950px;
    margin: 0 auto
}

.col {
    float: left
}

.container {
    border: 1px solid #ccc
}

.main-wrap {
    float: left;
    width: 100%;
    margin-right: -331px
}

.fluid {
    margin-right: 331px
}

.user-nav, .user-nav-custom {
    display: block;
    float: right;
    width: 65%;
    min-height: 10px;
    margin-top: 83px;
    padding-bottom: 5px;
    color: #333;
    font-size: 10px;
    line-height: 1em;
    text-align: right
}

    .user-nav ul, .user-nav-custom ul {
        float: right
    }

    .user-nav li, .user-nav-custom li {
        float: left;
        padding: 0 6px;
        border-left: 1px solid #ccc
    }

        .user-nav li:first-child, .user-nav-custom li:first-child, .user-nav li.first-child, .user-nav-custom li.first-child {
            border-left: none
        }

    .user-nav .user-name, .user-nav-custom .user-name {
        font-weight: bold
    }

.user-nav-custom {
    float: none;
    width: 100%;
    margin-top: 0
}

.header img {
    max-width: 950px
}

.header .logo {
    float: left;
    min-height: 115px
}

.footer {
    clear: both;
    margin-bottom: 20px;
    padding: 20px 15px;
    border: 1px solid #ccc;
    border-top: none;
    background: #f8f8f8;
    text-align: center;
    font-size: 11px;
    line-height: 1em
}

    .footer ul {
        display: inline-block
    }

    .footer li {
        float: left;
        padding: 0 6px;
        border-left: 1px solid #666
    }

        .footer li:first-child, .footer li.first-child {
            border-left: none
        }

.copyright {
    margin-top: 20px;
    color: #666;
    font-size: 10px
}

    .copyright p {
        text-align: center
    }

        .copyright p a {
            color: #666;
            text-decoration: underline
        }

    .copyright .alt {
        color: #ababab
    }

        .copyright .alt a {
            color: #ababab
        }

.b, .b-skin1, .b-skin2 {
    position: relative;
    display: inline-block;
    border: 1px solid #999;
    border-color: #c0c1cc #999 #999 #c0c0cb;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    background-color: #e5f5f5;
    text-align: center;
    padding: 4px 14px 3px;
    color: #333;
    font: 10px/1em Arial, Helvetica, sans-serif
}

    .b:hover, .b-skin1:hover, .b-skin2:hover {
        text-decoration: none !important
    }

.b-skin1 {
    color: #f30
}

.b-skin2 {
    background-color: #fff
}

.b-auto > .b, .b-auto > .b-skin1, .b-auto > .b-skin2 {
    display: block
}

.b-right {
    text-align: right
}

.i {
    display: block;
    background-image: url(../images/cdf-sprites.png);
    background-repeat: no-repeat
}

    .i.i-arrow-right {
        width: 3px;
        height: 5px;
        background-position: -140px 0
    }

    .i.i-cc-master {
        width: 40px;
        height: 20px;
        background-position: 0 0
    }

    .i.i-cc-visa {
        width: 40px;
        height: 20px;
        background-position: -40px 0
    }

    .i.i-cc-amex {
        width: 40px;
        height: 20px;
        background-position: -80px 0
    }

    .i.i-info {
        width: 14px;
        height: 14px;
        background-position: -120px 0
    }

.cdf-credit-cards {
    padding-left: 10px
}

    .cdf-credit-cards .ir {
        float: left
    }

.i-right .i {
    position: absolute;
    right: 0;
    top: 50%
}

.i-left .i {
    position: absolute;
    left: 0;
    top: 50%
}

.i-top .i {
    position: absolute;
    top: 0;
    top: 50%
}

.i-bottom .i {
    position: absolute;
    bottom: 0;
    top: 50%
}

.i-right.i-arrow-right {
    position: relative;
    padding-right: 7px
}

.i-arrow-right .i {
    margin-top: -2px
}

.i-right.i-info {
    position: relative;
    position: relative;
    padding-right: 20px
}

.i-info .i {
    margin-top: -8px
}

.tool-tip {
    position: absolute;
    top: 15px;
    left: 22px;
    width: 210px;
    padding: 5px;
    border: 1px solid #ccc;
    background: #ffc;
    color: #000;
    font: 11px Arial, Helvetica, sans-serif;
    text-align: left;
    z-index: 200
}

a.i-info {
    text-decoration: none;
    z-index: 200
}

    a.i-info .tool-tip {
        display: none
    }

    a.i-info:hover .tool-tip {
        display: block
    }

    a.i-info:hover, a.i-info:hover .tool-tip {
        text-decoration: none !important
    }

.h1-group {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 1px;
    border-bottom: 1px solid #ccc
}

    .h1-group .cdf-h1 {
        margin-bottom: 0;
        border-bottom: 1px solid #ccc;
        color: #585858;
        font-size: 2.63636em;
        line-height: 38px;
        font-weight: normal
    }

    .h1-group .h1-link {
        position: absolute;
        top: 18px;
        right: 0
    }

        .h1-group .h1-link .link-i-right {
            padding-right: 0
        }

        .h1-group .h1-link .i-right {
            right: -7px
        }

.copy h2 {
    font-size: 1.45455em;
    font-weight: normal
}

.cdf-row table td {
    border: 1px solid #ccc;
    padding: 10px
}

.cdf > .pad {
    padding: 0 0 0 5px
}

.cdf-row {
    clear: both;
    margin: 13px 0
}

.cdf-col {
    float: left
}

.cdf-col5 {
    float: left;
    width: 5%
}

.cdf-col10 {
    float: left;
    width: 10%
}

.cdf-col20 {
    float: left;
    width: 20%
}

.cdf-col30 {
    float: left;
    width: 30%
}

.cdf-col40 {
    float: left;
    width: 40%
}

.cdf-col45 {
    float: left;
    width: 45%
}

.cdf-col50 {
    float: left;
    width: 50%
}

.cdf-col80 {
    float: left;
    width: 80%
}

.cdf-col-right {
    float: right
}

.cdf-col1 {
    float: left;
    width: 27.63819%
}

.cdf-col2 {
    float: left;
    width: 49%
}

.cdf-col3 {
    float: left;
    width: 23%
}

.cdf-col-full {
    width: 100%
}

.cdf-h2 {
    font-size: 14px;
    margin: 25px 0 5px 0
}

    .cdf-h2:first-child {
        margin-top: 20px
    }

.cdf-help {
    font-weight: normal;
    font-style: normal
}

.cdf-h2 .cdf-help, .cdf-h3 .cdf-help {
    font-size: 10px;
    font-weight: normal;
    font-style: normal;
    padding-left: 2px
}

.cdf-col3 > .cdf-help {
    padding: 2px 0 0 10px
}

.cdf-help-static {
    font-weight: normal;
    font-style: normal
}

.cdf-h2 .cdf-help-static, .cdf-h3 .cdf-help-static {
    font-size: 10px;
    font-weight: normal;
    font-style: normal;
    padding-left: 2px
}

.cdf-col3 > .cdf-help-static {
    padding: 2px 0 0 10px
}

.cdf-label {
    display: block;
    padding: 5px 10px 0 0;
    text-align: right;
    font-weight: bold
}

.cdf-field {
    width: 100%;
    padding: 2px 4px;
    border: 1px solid #ccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.lt-ie8 .cdf-field {
    width: 95.5%
}

.cdf-readonly {
    padding: 2px 4px
}

.cdf-menu {
    width: 100%;
    padding: 5px 3px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: none;
}

.cdf-textarea {
    width: 100%;
    padding: 2px 4px;
    border: 1px solid #ccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.cdf-radiocheck {
    float: left
}

.cdf-radiocheck-label {
    display: block;
    margin-left: 25px
}

.cdf-radiocheck-x-auto .cdf-radiocheck-group {
    float: left
}

.cdf-radiocheck-y .cdf-radiocheck-group {
    margin-top: 5px
}

    .cdf-radiocheck-y .cdf-radiocheck-group:first-child {
        margin-top: 0
    }

.cdf-buttons {
    margin-top: 18px;
    margin-bottom: 5px
}

.required-footnote {
    margin-top: -5px
}

.cdf .cdf-error-text {
    padding: 0 0 0 27.5%;
    color: #f30
}

.cdf-error-text .field-validation-error {
}

.field-validation-error {
    display: inline-block;
    color: #f30
}

.validation-summary-valid, .field-validation-valid {
    display: none
}

.col1.field-validation-valid {
    width: 90px;
    display: inline-block;
    margin: 0 0 5px 28.47571%
}

.col1.field-validation-error {
    width: 90px;
    color: #f30
}

.col2.field-validation-error {
    margin: 0 0 5px 5px;
    width: 90px;
    color: #f30
}

.cdf-msg-box {
    margin: 15px 10px -5px 0;
    color: #000;
    font-size: 11px;
    line-height: 13px;
    text-align: center
}

    .cdf-msg-box ul {
        display: inline-block;
        padding: 10px;
        border: 1px solid #f30;
        background-color: #f8f8f8
    }

.cdf-prod-list {
    margin-top: 10px
}

    .cdf-prod-list .cdf-error-text {
        margin-left: 0
    }

    .cdf-prod-list .cdf-h3 {
        margin: 0 0 5px;
        font-style: italic
    }

    .cdf-prod-list ul, .cdf-prod-list li {
        margin: 0;
        padding: 0;
        list-style: none
    }

    .cdf-prod-list li {
        clear: both;
        margin-bottom: 7px
    }

    .cdf-prod-list .cdf-col-left {
        float: left
    }

    .cdf-prod-list .cdf-col-right {
        float: right;
        text-align: right
    }

        .cdf-prod-list .cdf-col-right .col-issues, .cdf-prod-list .cdf-col-right .col-price {
            float: left;
            display: block
        }

        .cdf-prod-list .cdf-col-right .col-issues {
            padding-right: 3px
        }

        .cdf-prod-list .cdf-col-right .col-price {
            position: relative;
            font-weight: bold
        }

.cdf-rate-alert {
    text-align: center;
    color: #f30;
    font: bold 17px "Times New Roman", Times, serif
}

.cdf-progress {
    margin-top: 20px
}

.cdf-progress-bg {
    overflow: hidden;
    width: 353px;
    height: 10px;
    padding: 7px 15px;
    border: 1px solid #ccc;
    -webkit-box-shadow: #dfdfdf 3px 2px 5px;
    -moz-box-shadow: #dfdfdf 3px 2px 5px;
    box-shadow: #dfdfdf 3px 2px 5px
}

.cdf-progress-bar, .cdf-progress-bar-on {
    float: left;
    width: 15px;
    height: 10px;
    margin-right: 2px;
    background: #e5f5f5
}

.cdf-progress-bar-on {
    background: #099
}

.image-float-left {
    float: left;
    margin: 0 12px 5px 0
}
.siteseal-resize {
    padding-top: 20px;
    width: 94px;
    height: 65px;
}

    .siteseal-resize a {
        cursor: pointer
    }

    .siteseal-resize img {
        width: 100%;
        height: 100%;
        border: 0
    }

.mod-skin1 {
    background: #e5f5f5
}

.mod-activate h2 {
    margin-right: -2px
}

.mod-skin2 {
    background: #fffcd2
}

.mod-image {
    margin-bottom: 15px;
    text-align: center
}

.mod-grad {
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(61%, rgba(255,255,255,0)), color-stop(100%, #e5f5f5));
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 61%, #e5f5f5 100%);
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 61%, #e5f5f5 100%);
    -pie-background: linear-gradient(top, rgba(255,255,255,0) 61%, #e5f5f5 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 61%, #e5f5f5 100%)
}

.mod-skin-white {
    background: #fff
}

.image-pos-right, .image-pos-bottom-right {
    position: relative;
    min-height: 96px
}

    .image-pos-right img, .image-pos-bottom-right img {
        position: absolute
    }

.image-pos-right, .image-pos-bottom-right {
    padding-right: 150px
}

    .image-pos-right img, .image-pos-bottom-right img {
        top: 0;
        right: 0
    }

    .image-pos-bottom-right img {
        top: auto;
        bottom: 0;
        right: 15px
    }

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    *text-indent: -9999px
}

    .ir:before {
        content: "";
        display: block;
        width: 0;
        height: 100%
    }

.hidden {
    display: none !important;
    visibility: hidden
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

    .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
        clip: auto;
        height: auto;
        margin: 0;
        overflow: visible;
        position: static;
        width: auto
    }

.invisible {
    visibility: hidden
}

.clearfix:before, .container:before, .main:before, .header:before, .cdf-row:before, .cdf-cols:before, .cdf-radiocheck-group:before, .cdf-prod-list li:before, .mod:before, .mod-skin1:before, .mod-skin2:before, .mod-grad:before, .clearfix:after, .container:after, .main:after, .header:after, .cdf-row:after, .cdf-cols:after, .cdf-radiocheck-group:after, .cdf-prod-list li:after, .mod:after, .mod-skin1:after, .mod-skin2:after, .mod-grad:after {
    content: " ";
    display: table
}

.clearfix:after, .container:after, .main:after, .header:after, .cdf-row:after, .cdf-cols:after, .cdf-radiocheck-group:after, .cdf-prod-list li:after, .mod:after, .mod-skin1:after, .mod-skin2:after, .mod-grad:after {
    clear: both
}

.clearfix, .container, .main, .header, .cdf-row, .cdf-cols, .cdf-radiocheck-group, .cdf-prod-list li, .mod, .mod-skin1, .mod-skin2, .mod-grad {
    *zoom: 1
}

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important
    }

    a, a:visited {
        text-decoration: underline
    }

        a[href]:after {
            content: " (" attr(href) ")"
        }

    abbr[title]:after {
        content: " (" attr(title) ")"
    }

    .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
        content: ""
    }

    pre, blockquote {
        border: 1px solid #999;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    tr, img {
        page-break-inside: avoid
    }

    img {
        max-width: 100% !important
    }

    @page {
        margin: .5cm
    }

    p, h2, h3 {
        orphans: 3;
        widows: 3
    }

    h2, h3 {
        page-break-after: avoid
    }
}

.summaryLine {
    position: relative;
    font-weight: bold;
    text-align: left;
    width: 360px
}

#ie7 .summaryLine {
    margin: 0
}

h4.summary {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.2em;
    margin: 0 0 15px 0;
    width: 580px;
    border-top: 1px dotted #ccc;
    padding: 15px 0 0 0;
    float: left
}

#ie7 h4.summary {
    font-size: 13px;
    margin-bottom: 0
}

.summaryLine label {
    position: relative;
    display: inline;
    font-weight: bold;
    text-align: left;
    margin: 10px 0 20px 0;
    padding: 0
}

.summaryLine .item {
    width: 355px;
    margin: 10px 0 15px 0
}

.summaryLine .itemArticle {
    width: 300px;
    margin: 10px 0 15px 0;
    font-weight: normal
}

.summaryLine .item span {
    width: 500px;
    display: inline;
    font-weight: normal
}

table.multiProduct {
    text-align: left;
    float: left;
    padding: 0;
    margin-bottom: 15px
}

    table.multiProduct th {
        font-weight: bold;
        padding: 6px 0;
        border-bottom: 1px solid #ccc
    }

    table.multiProduct td {
        font-weight: normal;
        padding: 6px 0
    }

tr.tableTotal {
    padding-top: 10px
}

    tr.tableTotal td.tableRight {
        padding-right: 6px
    }

    tr.tableTotal td {
        font-weight: bold
    }

#messagelayer iframe {
    border: none
}

#userConsent iframe {
    border: none
}

.prod-col1 {
    float: left;
    width: 110px;
    text-align: right;
    font-size: 11px;
    font-weight: bold;
    margin-top: 10px
}

.prod-col2 {
    margin-left: 15px;
    float: left;
    width: 55%
}

#review-order .submit {
    line-height: 30px
}

    #review-order .submit a {
        margin-left: 20px
    }

p.credit-card-payment-info {
    font-style: italic
}

table.cdf-single-product-pricing-table {
    margin: -6px 0 6px 0;
    width: 382px;
    border: 1px solid #ccc;
    border-spacing: 0
}

    table.cdf-single-product-pricing-table td {
        padding: 0
    }

.cdf-price-label {
    width: 380px;
    font-weight: bold;
    text-align: right
}

.dev h1 {
    clear: both
}

.dev ul {
    font-size: 14px;
    list-style: none
}

.dev div.col1 {
    width: 49%;
    float: left
}

.dev div.col2 {
    width: 49%;
    float: left
}

.dev h2 {
    clear: both
}

.dev ul.release-notes {
    list-style: disc
}

    .dev ul.release-notes li ul {
        list-style: decimal
    }

#layer-window-message {
    margin-top: 40px;
    margin-bottom: 15px;
    margin-left: 25px;
    color: #333;
    font-weight: bold
}

a.regular-link {
    color: #333;
    font-weight: bold
}

div.profile-col1 {
    float: left;
    width: 95%
}

div.price-col1 {
    margin-top: 20px;
    font-weight: bold;
    float: left;
    width: 58%;
    text-align: right
}

div.price-col2 {
    margin-top: 20px;
    font-weight: bold;
    padding-left: 10px;
    float: left;
    width: 30%
}

div.price-item-row {
    line-height: 1.8em
}

h3.module-header {
    margin-top: 0;
    margin-bottom: 0
}

span.module-header-icon {
    display: inline-block
}

div.module-group {
    padding-bottom: 15px;
    display: block
}

div.module-item {
    padding-top: 15px
}

.landing-indent {
    margin-left: 30px
}

.module-group {
}

.module-header {
    font-weight: bold;
    margin-top: 15px
}

.new-module {
    margin-left: 10px;
    color: red;
    font-weight: bold
}

/* HEADER */
.container {
    border: none !important
}

.body-pad {
    margin-top: 0 !important
}

body:before, body:after, .logo, .tabNav li, .utilNav, .myProducts, .footerLinks, .copyright, .b, .b-skin1, .b-skin2, .mod-grad {
    behavior: url("/content/PIE.htc");
    position: relative
}

    .user-nav ul, .user-nav-custom ul, .footer ul, .validation-summary-errors ul, .cdf-msg-box ul, .user-nav li, .user-nav-custom li, .footerLinks li, .validation-summary-errors li, .cdf-msg-box li, .utilNav ul, .utilNav li, .tabNav ul, .tabNav li {
        list-style: none outside none;
        margin: 0;
        padding: 0
    }

.logo, .tabNav li, .utilNav, .myProducts, .b, b-skin1, b-skin2, .footerLinks, .copyright {
    -webkit-box-shadow: 0 0 9px rgba(204,204,204,.75);
    -moz-box-shadow: 0 0 9px rgba(204,204,204,.75);
    box-shadow: 0 0 9px rgba(204,204,204,.75)
}

.header {
    width: 950px;
    padding: 0 0 15px 0
}

    .header .logo {
        min-height: 0 !important
    }

.logo {
    padding: 15px 20px 12px 15px;
    position: absolute;
    float: left;
    display: block;
    margin: 0 0 25px -15px;
    background: #fff;
    border: none;
    -webkit-border-radius: 0 15px 15px 0;
    -moz-border-radius: 0 15px 15px 0;
    border-radius: 0 15px 15px 0;
    z-index: 1
}

.navGroup {
    display: block;
    float: left;
    margin: 0 -10px 0 255px;
    width: 680px
}

.tabNav ul {
    font-family: "ff-scala-sans-web-pro-n7", "ff-scala-sans-web-pro", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 13px;
    letter-spacing: .03em
}

.tabNav li {
    background: #fff;
    padding: 10px 20px 8px 20px;
    margin: 0 10px;
    display: block;
    float: right;
    color: #747474;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0
}

.utilNav, .footerLinks {
    background-color: #099;
    clear: both;
    font-size: 13px;
    height: 50px;
    font-family: "ff-scala-sans-web-pro-n7", "ff-scala-sans-web-pro", sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: .03em;
    margin: 0 -15px;
    padding: 0;
    text-align: left;
    background: #099;
    background: -moz-linear-gradient(top, #099 0%, #118a89 60%, #178484 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #099), color-stop(60%, #118a89), color-stop(100%, #178484));
    background: -webkit-linear-gradient(top, #099 0%, #118a89 60%, #178484 100%);
    background: -o-linear-gradient(top, #099 0%, #118a89 60%, #178484 100%);
    background: -ms-linear-gradient(top, #099 0%, #118a89 60%, #178484 100%);
    background: linear-gradient(bottom, #099 0%, #118a89 60%, #178484 100%);
    -pie-background: linear-gradient(bottom, #099 0%, #118a89 60%, #178484 100%)
}

.utilNav {
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px
}

    .utilNav:after {
        position: absolute;
        display: block;
        border-style: solid;
        bottom: -10px;
        content: ''
    }

    .utilNav:after {
        border-color: #005e5e transparent transparent transparent;
        right: 0;
        border-width: 10px 10px 0 0
    }

    .utilNav ul, .footerLinks ul {
        padding: 0
    }

    .utilNav a, .footerLinks a {
        color: #fff;
        margin: 0;
        padding: 20px 15px
    }

    .utilNav li, .footerLinks li {
        border-left: 1px solid #007070;
        border-right: 1px solid #1c9999;
        float: left;
        text-align: left;
        height: 50px;
        padding: 0 15px
    }

        .utilNav li:first-child, .footerLinks li:first-child {
            border-left: medium none
        }

        .utilNav li:last-child, .footerLinks li:last-child {
            border-right: medium none
        }

.h1-group {
    border-bottom: none !important;
    margin-bottom: 0;
    padding-bottom: 0;
    position: static
}

    .h1-group .cdf-h1 {
        border: none !important;
        color: #099;
        font-family: "ff-scala-sans-web-pro-n7", "ff-scala-sans-web-pro", sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 2.375em;
        line-height: 38px;
        margin-bottom: 0
    }

.cdf-h2 {
    font-size: 1.185em !important;
    color: #747474 !important;
    font-weight: normal;
    margin-bottom: 25px
}

    .cdf-h2:first-child {
        margin-top: 15px
    }

    .cdf-h2 a {
        font-size: 1em !important;
        font-weight: bold !important
    }

.cdf h3 {
    font-size: 1.12em
}

h3.productName {
    color: #339;
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1rem;
}

}

.cdf-width {
    width: 460px
}

.cdf-label {
    color: #747474 !important
}

.cdf-col2 input {
    margin-right: -17px;
    line-height: 1.4em;
    overflow: visible;
    padding: 4px
}

.cdf-editable .cdf-col2 input {
    margin-right: 0;
    margin-left: 5px
}

.cdf-editable .btn-cancel {
    width: 50px
}

.cdf-editable .btn-save {
    width: 50px
}

.cdf-editable .cdf-row .cdf-col1 {
    width: 35%
}

.cdf-editable .cdf-row .cdf-error-text {
    padding: 0 0 0 47%;
    color: #f30
}

.profile-col1 .cdf-editable .cdf-row .cdf-error-text {
    padding: 0 0 0 37%;
    color: #f30
}

.cdf-editable .cdf-row .cdf-menu {
    margin-left: 5px
}

#ButtonCancelButton {
    margin-right: 10px
}

.main p a, .main ul a, .cdf-h2 a, .cdf a, .aside a {
    color: #333;
    font-weight: bold
}

    .main p a:hover, .main ul a:hover, .cdf-h2 a:hover, .cdf a:hover, .aside a:hover {
        text-decoration: underline
    }

.cdf-msg-box {
    color: #747474;
    font-size: 1em;
    line-height: 1.4em;
    margin: 15px 10px 10px 0;
    text-align: center
}

    .cdf-msg-box ul {
        padding: 9px;
        line-height: 18px;
        background-color: #fff;
        border: 1px solid #f30;
        display: inline-block
    }

        .cdf-msg-box ul li {
            text-align: left
        }

.b, .b-skin1, .b-skin2 {
    border-color: transparent;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    font: 12px/16px "ff-scala-sans-web-pro-n7", "ff-scala-sans-web-pro", sans-serif;
    height: 23px;
    padding: 4px 14px 3px;
    position: relative;
    text-align: center;
    background-color: #747474;
    background: -moz-linear-gradient(top, #5d5d5d 0%, #868484 60%, #747474 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5d5d5d), color-stop(60%, #868484), color-stop(100%, #747474));
    background: -webkit-linear-gradient(top, #5d5d5d 0%, #868484 60%, #747474 100%);
    background: -o-linear-gradient(top, #5d5d5d 0%, #868484 60%, #747474 100%);
    background: -ms-linear-gradient(top, #5d5d5d 0%, #868484 60%, #747474 100%);
    background: linear-gradient(bottom, #5d5d5d 0%, #868484 60%, #747474 100%);
    -pie-background: linear-gradient(bottom, #5d5d5d 0%, #868484 60%, #747474 100%)
}

table.priceMatrix {
    margin: 0px 10px 10px 0;
    width: 100%;
    border: 1px solid #ccc;
}

.myProducts {
    padding: 5px 15px 5px 15px;
    margin-bottom: 10px;
    margin-right: 15px;
    border: 0 solid #ccc;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
    background: #f1fdfd
}

    .myProducts h1, .myProducts h2, .myProducts h3, .myProducts h4 {
        margin: 0;
        padding: 0
    }

    .myProducts h1 {
        margin: 0;
        padding: 0;
        font-family: "ff-scala-sans-web-pro-n7", "ff-scala-sans-web-pro", sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 1.25em;
        line-height: 40px;
        text-transform: capitalize;
        color: #099
    }

    .myProducts h2 {
        margin: 0 0 5px 0;
        font-size: 1.125em;
        line-height: 1.5em;
        font-family: "ff-scala-sans-web-pro-n7", "ff-scala-sans-web-pro", sans-serif;
        font-style: normal;
        font-weight: 700;
        color: #747474 !important
    }

    .myProducts h4 {
        font-style: italic;
        font-weight: normal
    }

    .myProducts p {
        font-size: 1em
    }

.mod h1 {
    margin: 0 0 10px 0;
    font-family: "ff-scala-sans-web-pro-n7", "ff-scala-sans-web-pro", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    background-color: #099;
    padding: 9px 15px;
    color: #ffffff;
}

.specialOffer > p {
    margin-top: 15px
}

.specialRed {
    color: #f30
}

.mod h2 {
    margin: 15px 0 5px 0;
    font-size: 16px;
    line-height: 21px;
    font-family: "ff-scala-sans-web-pro-n7", "ff-scala-sans-web-pro", sans-serif;
    font-style: normal;
    font-weight: 700;
    color: #747474 !important
}

.mod h1 > h2 {
    margin-top: 0
}

.mod p, .mod ul {
    font-size: 15px;
    line-height: 18px;
}

.image-float-right {
    float: right;
    margin-top: 10px
}

.image-pos-bottom-right img {
    bottom: 0;
    right: 60px;
    top: 130px
}

.row-2cols > .col1 {
    float: left;
    width: 75%
}

    .row-2cols > .col1 > .pad {
        margin: 15px
    }

.cdf-review .cdf-row {
    position: relative
}

.cdf-label-readonly {
    display: inline-block;
    font-weight: bold;
    padding-right: 3px;
    vertical-align: top
}

.cdf-review .cdf-readonly {
    display: inline-block;
    padding: 0;
    vertical-align: top;
    -ms-word-break: break-all;
    word-break: break-all
}

.cdf-review .cdf-edit {
    position: absolute;
    right: 0;
    top: -2px
}

.cdf .cdf-error-text {
    color: #f30
}

.css3, .b, .b-skin1, .b-skin2, .mod-grad, .topRibbon {
    behavior: url("/content/PIE.htc");
    position: relative
}

/*ECOM SPLASH BANNER */
.ecomSplash {
    background: url("../images/kplusEcomHero2.png") no-repeat;
    min-height: 375px;
    padding: 15px 51% 15px 15px;
    background-size: cover;
    margin: 0 auto;
}

    .ecomSplash p, .ecomSplash ul {
        font-size: 1em;
    }

    .ecomSplash h2 {
        font-size: 2em;
        margin-bottom: 12px;
        margin-top: 0;
        color: #339;
        font-weight: bold;
    }

    .ecomSplash h3 {
        font-size: 1.25em;
        font-weight: bold;
    }

    .ecomSplash ul {
        margin: 3px;
        padding: 9px 12px 3px 15px;
        width: 37%;
        float: left
    }

ul.firstList {
    margin-right: 10%
}

.ecomSplash li {
    margin-bottom: 6px
}

.mod h1.specialOrange, .mod h1.specialOrange a {
    color: #ffc680 /*#db7200*/
}

.css3, .b, .b-skin1, .b-skin2, .mod-grad, .topRibbon, .cdf-progress-bg, .cdf-progress-bar, .cdf-progress-bar-on {
    behavior: url("/content/PIE.htc");
    position: relative
}

.specialRenew {
    margin: 30px 0 -40px 0;
    padding: 0 0 15px 15px;
    width: 276px;
    background: url(../images/renewFancyBacker.jpg) 0 30px no-repeat;
    float: none;
    position: relative;
    z-index: 1
}

    .specialRenew h1.topRibbon {
        background-color: #339;
        background: -moz-linear-gradient(center top, #339 0%, #4a4aa8 60%, #339 100%);
        background: -moz-linear-gradient(top, #339 0%, #4a4aa8 60%, #339 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #339), color-stop(60%, #4a4aa8), color-stop(100%, #339));
        background: -webkit-linear-gradient(top, #339 0%, #4a4aa8 60%, #339 100%);
        background: -o-linear-gradient(top, #339 0%, #4a4aa8 60%, #339 100%);
        background: -ms-linear-gradient(top, #339 0%, #4a4aa8 60%, #339 100%);
        background: linear-gradient(to bottom, #339 0%, #4a4aa8 60%, #339 100%);
        font-family: "ff-scala-sans-web-pro-n7", "ff-scala-sans-web-pro", sans-serif;
        letter-spacing: .03em;
        line-height: 24px;
        margin: 0 -10px 0 -15px;
        padding: 9px 15px;
        display: block;
        clear: both;
        color: #fff;
        font-size: 17px
    }

        .specialRenew h1.topRibbon, .specialRenew h1.topRibbon a {
            color: #fff
        }

    .specialRenew h1.topRibbon {
        -webkit-border-radius: 6px 0 0 0;
        -moz-border-radius: 6px 0 0 0;
        border-radius: 6px 0 0 0;
        -webkit-box-shadow: 0 5px 5px rgba(187,194,224,.75);
        -moz-box-shadow: 0 5px 5px rgba(187,194,224,.75);
        box-shadow: 0 5px 5px rgba(187,194,224,.75)
    }

        .specialRenew h1.topRibbon:after {
            border-color: #14155f transparent transparent;
            border-style: solid;
            border-width: 10px 10px 0 0;
            content: "";
            display: block;
            position: absolute;
            right: -0;
            top: 42px
        }

    .specialRenew h2 {
        margin-top: 175px;
        font-size: 1.18em
    }

    .specialRenew p {
        text-align: right
    }

        .specialRenew p a img {
            padding: 0;
            margin: -15px;
            margin-right: -18px
        }

.cdf-buttons {
    margin-bottom: 5px;
    margin-top: -12px
}

.cdf-col-both-indent {
    float: left;
    margin-left: 30px
}

.strikethrough {
    text-decoration: line-through
}

.priceCut {
    text-align: left;
    color: #f30;
    text-transform: uppercase;
    font-weight: bold
}

.cdf-row-ABIM {
    margin-bottom: -15px
}

    .cdf-row-ABIM p {
        font-size: .8em;
        line-height: .5em;
        text-transform: uppercase;
        padding-right: 10px
    }

.cdf-progress {
    margin-top: 20px;
    width: 500px
}

.cdf-progress-bg {
    width: 500px;
    height: auto !important;
    overflow: hidden;
    padding: 6px 6px 6px 6px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    background: -moz-linear-gradient(top, #f5f5f5 0%, #e9e9e9 60%, #e2e2e2 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f5f5f5), color-stop(60%, #e9e9e9), color-stop(100%, #e2e2e2));
    background: -webkit-linear-gradient(top, #f5f5f5 0%, #e9e9e9 60%, #e2e2e2 100%);
    background: -o-linear-gradient(top, #f5f5f5 0%, #e9e9e9 60%, #e2e2e2 100%);
    background: -ms-linear-gradient(top, #f5f5f5 0%, #e9e9e9 60%, #e2e2e2 100%);
    background: linear-gradient(bottom, #f5f5f5 0%, #e9e9e9 60%, #e2e2e2 100%);
    -pie-background: linear-gradient(bottom, #f5f5f5 0%, #e9e9e9 60%, #e2e2e2 100%);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: #dfdfdf 3px 2px 5px;
    -moz-box-shadow: #dfdfdf 3px 2px 5px;
    box-shadow: #dfdfdf 3px 2px 5px
}

.cdf-progress-bar, .cdf-progress-bar-on {
    float: left;
    width: auto;
    height: 26px;
    padding: 4px 9px;
    margin-right: 25px;
    position: relative;
    background: #fff;
    color: #c4c4c4;
    font-size: .9em;
    line-height: 20px;
    letter-spacing: .1em;
    text-align: center;
    text-transform: uppercase;
    -webkit-border-top-left-radius: 6px;
    -webkit-border-bottom-left-radius: 6px;
    -moz-border-radius-topleft: 6px;
    -moz-border-radius-bottomleft: 6px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px
}

.cdf-progress-bar-on {
    background: #099;
    color: #fff
}

.cdf-progress-bg div:last-child {
    margin-right: 0
}

.cdf-progress-bar:after, .cdf-progress-bar-on:after {
    content: "";
    position: absolute;
    right: -16px;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 12px solid transparent;
    border-left: 8px solid #fff;
    border-right: 8px solid transparent;
    border-top: 12px solid transparent
}

.cdf-progress-bar-on:after {
    border-left: 8px solid #099
}

a.extendLink {
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 5px 5px 2px 5px;
    line-height: 1;
    margin: 5px 10px 0 0
}

    a.extendLink:hover {
        background: #fff
    }

.field-validation-error {
    width: auto
}

.cdf-radiocheck-group {
    width: 380px;
    display: inline-block
}

.cdf-radiocheck-label.module-name-lable {
    width: 316px;
    display: inline-block
}

.full-prod-price-div {
    display: inline-block;
    vertical-align: top;
    font-weight: bold
}

.cdf-subtotal {
    padding-top: 25px;
    margin-bottom: 15px;
    font-weight: bold
}

    .cdf-subtotal div:first-child {
        margin-left: 350px;
        width: 60px;
        display: inline-block
    }

.cdf-col2.cdf-radiocheck-x-auto.cdf-cols {
    margin-top: 8px
}

@media only screen and (max-width:960px) {
    .ecomSplash {
        min-height: 350px;
        font-size: 1.3rem;
        padding: 15px 47% 15px 15px;
    }

        .ecomSplash ul {
            width: auto;
            margin: 0 0 0 15px;
            padding: 0;
        }

        .ecomSplash p {
            width: 92%;
        }
}

@media only screen and (max-width:768px) {
    .ecomSplash {
        display: none
    }

    input[type=checkbox] {
        transform: scale(1.5);
    }
}
