@import url('/css/fonts/myriad_pro/stylesheet.css');
@import url('/css/font-awesome-4.5.0/css/font-awesome.min.css');

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    background: none repeat scroll 0 0 transparent;
    border: 0 none;
    margin: 0;
    outline: 0 none;
    padding: 0;
    vertical-align: baseline;
    behavior: url(/css/PIE.htc);
}

ol, ul, li {
    margin: 0;
    list-style-position: inside;
}

h1 {
    font-weight: bold;
    font-family: myriad_probold_condensed;
    text-transform: uppercase;
    font-size: 38px;
    border-bottom: 1px solid #e6e6e6;
    text-align: left;
}

h2 {
    color: #E0AE63;
    font-size: 23px;
    font-weight: bold;
    font-family: myriad_probold_condensed;
    font-style: italic;
    margin: 1em 0 0.5em;
}

h2 a {
    color: #E0AE63 !important;
}

h3, .item-title {
    font-weight: bold;
    font-family: myriad_probold_condensed;
    font-size: 1.2em;
}

h3 + p,
.item-title + p {
    margin-top: 10px;
}

p + h3 {
    margin-top: 20px;
}

.tools .metanav .h3,
.marker {
    color: #E0AE63;
    font-weight: normal;
}

img {
    vertical-align: top;
    max-width: 100%;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: none;
}

:focus {
    outline: 0 none;
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

table.borderless td {
    border: none !important;
}

body {
    background: none repeat scroll 0 0 #FFFFFF;
    font-family: myriad_prolight, Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: normal;
}

a {
    text-decoration: none;
}

.shadow {
    -moz-box-shadow: 0 0 5px rgb(128, 128, 128);
    -webkit-box-shadow: 0 0 5px rgb(128, 128, 128);
    box-shadow: 0 0 5px #444;
}

.shadow_big {
    -moz-box-shadow: 0 0 10px rgba(0, 100, 190, 0.5);
    -webkit-box-shadow: 0 0 10px rgba(0, 100, 190, 0.5);
    box-shadow: 0 0 10px rgba(0, 100, 190, 0.5);
}

.tablecontent {
    width: 100%;
    margin: -5px -20px;
    display: block;
}

.w100 {
    max-width: 100%;
    overflow-x: auto;
}

.v-center {
    -moz-display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    display: flex;
    -moz-align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.split {
    -moz-display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    display: flex;
    -moz-align-items: stretch;
    -webkit-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
}

.split.centered {
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

.split > * {
    flex-grow: 1;
    width: 50%;
    box-sizing: border-box;
    padding: 1em 0;
    position: relative;
}

.split > *.centered {
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

.split > *:nth-child(2n-1) {
    padding-right: 1em;
}

.split > *:nth-child(2n) {
    padding-left: 1em;
}

.split.three > * {
    width: 33.33%;
}

.split.three > *:nth-child(3n-2) {
    padding-right: 0.666em;
    padding-left: 0;
}

.split.three > *:nth-child(3n-1) {
    padding-left: 0.333em;
    padding-right: 0.333em;
}

.split.three > *:nth-child(3n) {
    padding-left: 0.666em;
    padding-right: 0;
}

.split.collapsed > * {
    padding: 0;
}

.split.with-separator > *:nth-child(2n) {
    border-left: 1px solid #dedede;
}

.split.three.with-separator > *:nth-child(3n),
.split.three.with-separator > *:nth-child(3n-1) {
    border-left: 1px solid #dedede;
}

@media screen and (max-width: 800px) {
    .split {
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .split.reverse {
        -moz-flex-direction: column-reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .split > *:nth-child(n+1),
    .split.three > *:nth-child(n+1) {
        width: 100% !important;
        padding: 0 0 1em;
    }

    .split > *:first-child,
    .split.three > *:first-child {
        padding-top: 1em;
    }

    .split.with-separator > * {
        border-left: none !important;
    }

    .split.collapsed > * {
        padding: 0;
    }
}

/* Fonts
@font-face {
    font-family: "MyriadCond"; font-style: normal;font-weight: normal;
    src: url("fonts/myriadpro-cond-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/myriadpro-cond-webfont.woff") format("woff"), url("fonts/myriadpro-cond-webfont.ttf") format("truetype");
}
@font-face {
    font-family: "MyriadBoldCond"; font-style: normal; font-weight: normal;
    src: url("fonts/myriadpro-boldcond-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/myriadpro-boldcond-webfont.woff") format("woff"), url("fonts/myriadpro-boldcond-webfont.ttf") format("truetype");
}
@font-face {
    font-family: "MyriadSemiCondBold"; font-style: normal; font-weight: normal;
    src: url("fonts/myriadpro-boldsemicn-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/myriadpro-boldsemicn-webfont.woff") format("woff"), url("fonts/myriadpro-boldsemicn-webfont.ttf") format("truetype");
}
@font-face {
    font-family: "MyriadLightCondBold"; font-style: normal; font-weight: normal;
    src: url("fonts/myriadpro-semiboldcond-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/myriadpro-semiboldcond-webfont.woff") format("woff"), url("fonts/myriadpro-semiboldcond-webfont.ttf") format("truetype");
}
@font-face {
    font-family: "MyriadLightSemiCond"; font-style: normal; font-weight: normal;
    src: url("fonts/myriadpro-lightsemicn-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/myriadpro-lightsemicn-webfont.woff") format("woff"), url("fonts/myriadpro-lightsemicn-webfont.ttf") format("truetype");
}
*/

.shade, .shading {
    opacity: 0.3;
}

.underline {
    text-decoration: underline;
}

.displayinline {
    display: inline-block;
}

.displayblock {
    display: block;
}

.blockcenter {
    display: block;
    margin: 0 auto;
}

.floatright {
    float: right;
}

.floatleft {
    float: left;
}

.clear {
    clear: both;
}

.hideme {
    display: none;
}

.showme {
    display: block !important;
}

.boxhilite {
    box-shadow: 0 1px 5px #b1b1b1;
}

.break {
    margin-top: 50px;
}

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

.greytext {
    color: #7d7d7d;
}

.rightspacer10 {
    margin-right: 10px;
}

.leftspacer10 {
    margin-left: 10px;
}

.next5 {
    margin-top: 5px;
}

.next10 {
    margin-top: 10px;
}

.next15 {
    margin-top: 15px;
}

.next20 {
    margin-top: 20px;
}

.next30 {
    margin-top: 30px;
}

.next40 {
    margin-top: 40px;
}

.alignleft {
    text-align: left;
}

.alignright {
    text-align: right;
}

.aligncenter {
    text-align: center;
}

.nobreadcrumb {
    margin-top: 50px;
}

.relative {
    position: relative;
}

.breakword {
    word-wrap: break-word;
}

.nominheight {
    min-height: 0 !important;
}

ul.inline-items {
    margin: 1em -0.5em !important;
}

ul.inline-items > * {
    display: inline-block !important;
    list-style: none;
    margin: 0 0.5em !important;
}

/* ddSlick default height */
ul.dd-options {
    max-height: 200px;
}

#main {
    height: 100%;
    padding-bottom: 40px;
    width: 100%;
    font-family: "myriad_procondensed";
}

#header {
    margin: 0 auto;
    position: relative;
    max-width: 1024px;
    padding-top: 94px;
}

.shade {
    margin: 0 auto;
    max-width: 1280px;
    position: relative;
    z-index: -1;
    height: 1px;
}

.shade:before {
    content: '';
    position: absolute;
    height: 78px;
    background: url(/i/shade_menu.png) no-repeat center top;
    width: 100%;
    background-size: contain;
}

/* repeat for checkout step 5 header so that print css can print the logo */
#step5header {
    height: 94px;
    margin: 0 auto;
    position: relative;
    width: 1024px;
}

#step5header .shade {
    width: 1280px;
    height: 78px;
    background: url(/i/shade_menu.png) no-repeat left top;
    position: absolute;
    bottom: -78px;
    left: 50%;
    margin-left: -640px;
    z-index: -1;
}

#carousel {
    width: 100%;
    height: 580px;
    margin: 0 auto;
    background: #000 none;
}

#corps {
    width: 964px;
    height: auto;
    margin: 30px auto 0 auto;
    clear: both;
}

#produitsdescription {
    width: 100%;
    height: 773px;
    margin: 20px auto 0 auto;
    background: none #f1f1f1;
}

#produitsdescription .description {
    width: 1024px;
    height: 773px;
    margin: 0 auto;
}

#produitscorps {
    width: 100%;
    height: auto;
    margin: 20px auto 0 auto;
}

#produitscorps .fake {
    width: 1024px;
    height: auto;
    margin: 0 auto;
}

/*
.block {
    width: 1024px;
    height: 400px;
    margin: 0 auto;
}
*/
.contentblock {
    width: 964px;
    height: 350px;
    margin: 0 auto;
}


/* Top Tool Bar */
.tools {
    background: none repeat scroll 0 0 #e9d5a0;
    width: 100%;
}

.tools .metanav, .tools .metanav a {
    /*width: 964px;*/
    /*color: #b1b1b1;*/
    font-size: 16px;
    /*text-shadow: 0 1px 1px rgba(0, 0, 0, .3);*/
    margin: 0 auto;
    padding: 5px 0;
    text-align: center;
}

.tools .metanav a span {
    color: #a1874f;
}

.tools .metanav #itemcart {
    color: #a1874f;
}

.tools .metanav a:hover {
    color: #FFFFFF !important;
}

.tools .metanav {
    position: relative;
    background-color: #e9d5a0 !important;
    max-width: 1024px;
    padding: 0.3em 30px;
    box-sizing: border-box;
    /*
        -moz-display: flex;
        -webkit-display: flex;
        -ms-display: flex;
        display: flex;
        -moz-align-items: flex-start;
        -webkit-align-items: flex-start;
        -ms-align-items: flex-start;
        align-items: flex-start;
        -moz-flex-direction: row;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -moz-justify-content: flex-start;
        -webkit-justify-content: flex-start;
        -ms-justify-content: flex-start;
        justify-content: flex-start;
        -moz-flex-wrap: nowrap;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;*/
    text-align: center;
}


.tools .metanav span {
    position: relative;
}

.tools .metanav span.delimeter {
    border-right: 1px solid #b1b1b1;
}

.tools .metanav .phone-wrapper {
    white-space: nowrap;
    margin-left: 1em;
}

.tools .metanav .floatleft span:first-child {
    padding-left: 0
}

.tools .metanav .floatright span:last-child {
    padding-right: 0
}

@media screen and (max-width: 420px) {
    .tools .metanav {
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -moz-align-items: center;
        -webkit-align-items: center;
        -ms-align-items: center;
        align-items: center;
        text-align: center;
    }

    .tools .metanav .phone-wrapper {
        margin-left: 0;
    }
}

/* menu */

.menuholder {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*max-width: 1024px;*/
    box-sizing: border-box;
    -webkit-transition: transform 0.2s ease-out;
    -moz-transition: transform 0.2s ease-out;
    -o-transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    -moz-transform: translateX(0) translateY(0);
    -webkit-transform: translateX(0) translateY(0);
    -ms-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    z-index: 99;
    box-shadow: 0 44px 48px -32px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.menuholder.hide {
    -moz-transform: translateX(0) translateY(-10em);
    -webkit-transform: translateX(0) translateY(-10em);
    -ms-transform: translateX(0) translateY(-10em);
    transform: translateX(0) translateY(-10em);
}

.menuwrapper {
    box-sizing: border-box;
    max-width: 1048px;
    margin: auto;
    padding: 0 1em;
    /*height: 94px;*/
    background: #fff none;
    clear: both;
    position: relative;
    z-index: 5;

    -moz-display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    display: flex;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -moz-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;

}

.checkoutformwrapper .menuwrapper {
    width: 140px;
    height: 124px;
    clear: none;
    background: #fff none;
    position: relative;
    z-index: 5;
}

.menuholder #logo {
    width: 100%;
    min-width: 40px;
    height: 70px;
    cursor: pointer;
    background: url(/i/pkr_lg_2017.png) no-repeat center;
    /*margin: 10px 0;*/
    background-size: contain;
    /*display: inline-block;*/
}

@media screen and (min-width: 941px) {


    .menuholder #menu { /*width:700px;*/
        list-style: none;
        cursor: pointer;
        flex-grow: 1;
        -moz-display: flex;
        -webkit-display: flex;
        -ms-display: flex;
        display: flex;
        -moz-align-items: center;
        -webkit-align-items: center;
        -ms-align-items: center;
        align-items: center;
        -moz-flex-direction: row;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -moz-justify-content: flex-start;
        -webkit-justify-content: flex-start;
        -ms-justify-content: flex-start;
        justify-content: flex-start;
        -moz-flex-wrap: nowrap;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;

    }

    .menuholder #menu .menuitem {
        text-align: center;
        padding: 0 7px;
        border-left: 1px solid white;
        border-right: 1px solid white;

    }

    .menuholder #menu .menuitem.hassubnav:hover {
        border-left: 1px solid #e6e6e6;
        border-right: 1px solid #e6e6e6;
        background-color: #fff;
    }

    .menuholder #menu .menuitem .sub {
        display: none;
        border: 1px solid #e6e6e6;

        -moz-box-shadow: 0 11px 16px -9px #666;
        -webkit-box-shadow: 0 11px 16px -9px #666;
        box-shadow: 0 11px 16px -9px #666;

    }

    .menuholder #menu .menuitem:hover .sub {
        display: block
    }

    /* menu overlay */
    .menuholder #subnav div.sub { /*width:964px; height:360px;*/
        padding: 30px 0;
        margin-left: -16px;
        background: none #fff;
        position: absolute;
        top: 94px;
        z-index: 4;
        display: none; /* background:url(../images/homemenubgfullblah.gif) no-repeat left top #fff;*/
    }

    .menuholder #subnav div.sub .shading {
        width: 300px;
        height: 62px;
        background: url(/i/shade_overlay.png) no-repeat left top;
        position: absolute;
        bottom: -62px;
        left: 50%;
        margin-left: -512px;
        z-index: 3;
    }

    .menuholder #subnav ul.pens {
        display: inline-block;
        list-style: none;
        width: 100%;
        height: 100%;
    }

    .menuholder #subnav ul.pens li {
        display: inline-block;
        min-width: 160px;
        height: 100%;
        float: left;
        margin: 0 0 0 30px;
    }

    /*.menuholder #subnav ul.pens li img{width:188px; height:360px;}*/
    .menuholder #subnav ul.pens li .socialicon {
        width: 22px;
        height: 22px;
        padding-right: 5px
    }

    .menuholder #subnav ul.pens li + li {
        width: 149px;
        padding: 0 0 0 30px; /*background:url(../images/grayloop.jpg) repeat-y 24px top;*/
        border-left: 1px solid #E5E5E5;
    }

    .menuholder #subnav ul.pens li:last-child {
        padding-right: 30px;
    }

    .menuholder #subnav ul.pens li .sublinks {
        width: 100%;
        height: 100%;
    }

    .menuholder #subnav ul.pens li .sublinks.bright a.productURL {
        color: red
    }

    .menuholder #subnav ul.pens li .sublinks span {
        display: block;
        height: 40px;
        border: none;
        text-transform: uppercase;
        font: normal 18px 'myriad_probold_condensed';

        padding: 5px 0 0;
        text-align: left;
        color: #BBBAB9;
    }

    .menuholder #subnav ul.pens li .sublinks a {
        width: 100%;
        height: 20px;
        display: block;
        border-bottom: 1px solid #e5e5e5;
        font: normal 17px 'myriad_procondensed';
        color: #333333;
        text-align: left;
        padding: 8px 0 6px;
        letter-spacing: 0.03em
    }

    .menuholder #subnav ul.pens li .sublinks .subTopCategoryLink {
        display: block;
        height: 40px;
        border: none;
        text-transform: uppercase;
        font: normal 17px 'MyriadLightCondBold';
        color: #333333;
        padding: 5px 0 0;
        text-align: left;
    }

    .menuholder #subnav ul.pens li .sublinks a:last-child {
        border-bottom: 1px solid #e5e5e5;
    }

    .menuholder #subnav ul.pens li .sublinks a:hover, .menuholder #subnav ul.pens li .sublinks a.hover {
        /*background: #f5f5f5 none;*/

        color: #E0AE63;
        background: transparent;

    }

    /*
        .menuholder #subnav ul.pens li .push {
            width: 150px;
            margin-left: 6px;
            height: 130px;
            background: url(../images/pushpens.jpg) no-repeat left bottom;
            cursor: pointer;
        }

        .menuholder #subnav ul.pens li .pushtxt {
            width: 150px;
            margin-left: 6px;
            height: 85px;
            font: normal 15px 'MyriadCond';
            color: #000;
            text-align: left;
            padding-top: 15px;
        }

        .menuholder #subnav ul.pens li .pushtxt a {
            font: normal 15px 'MyriadCond';
            color: #000;
        }

        .menuholder #subnav ul.pens li .pushtxt a:hover, .menuholder #subnav ul.pens li .pushtxt a.hover {
            text-decoration: underline;
        }

        .menuholder #subnav ul.pens .espot_rightheader h2 {
            display: block;
            height: 40px;
            border: none;
            text-transform: uppercase;
            font: normal 17px 'MyriadLightCondBold';
            color: #333333;
            padding: 5px 0 0;
            text-align: left;
        }

        .menuholder #subnav ul.pens .espot_rightheader .description {
            font: normal 14px 'MyriadCond';
            color: #7d7d7d;
            text-align: left;
            width: 100%;
            letter-spacing: 0.03em;
        }


        .menuholder #subnav ul.pens .espot_rightheader .headeremail {
            position: relative;
            border: 1px solid #eaeaea;
            border-right: none;
            color: #b1b1b1;
            font: 17px;
            font-family: 'MyriadCond';
            height: 37px;
            line-height: 37px;
            padding-left: 10px;
            text-align: left;
            width: 92px;
        }

        .menuholder #subnav ul.pens .espot_rightheader .headeremail:hover {
            box-shadow: 0 1px 5px #b1b1b1;
        }


        .menuholder #subnav ul.pens .espot_rightheader .headeremaillink {
            position: absolute;
            z-index: 100;
            right: 36px;
            width: 39px;
            height: 39px;
            background-color: transparent;
            border: 1px solid #eaeaea;
            border-left: none;
            background: url(../images/inputgo.png) no-repeat -8px center;
        }

        .menuholder #subnav ul.pens .espot_rightheader .headeremaillink2 {
            position: absolute;
            z-index: 100;
            right: 226px;
            width: 39px;
            height: 39px;
            background-color: transparent;
            border: 1px solid #eaeaea;
            border-left: none;
            background: url(../images/inputgo.png) no-repeat -8px center;
        }

        .menuholder #subnav ul.pens .espot_rightheader .socialnet a {
            margin-left: 10px;
        }

        .menuholder #subnav ul.pens .espot_rightheader .socialnet a:first-child {
            margin-left: 0;
        }

        .menuholder #subnav ul.pens .espot_rightheader .socialnet a img {
            width: 18px;
            height: 18px;
        }

        .menuholder #subnav ul.pens .espot_rightheader .contactus img {
            width: 16px;
            height: 18px;
        }

        .menuholder #subnav ul.pens .espot_rightheader .contactus span {
            margin-left: 5px;
            color: #7d7d7d;
            font-family: 'MyriadCond';
            font-size: 18px;
            vertical-align: text-bottom;
        }
    */
}

.menuholder #menu .menuitem .category,
.menuholder #menu .menuitem .categoryURL,
.menuholder #menu .menuitem .productURL,
.menuholder #menu .menuitem .buyablecategoryURL,
.menuholder #menu .menuitem .subTopCategoryLink {
    font: normal 18px 'myriad_procondensed';
    color: #000;
    text-transform: uppercase;
    padding: 0;
    line-height: 94px;
    border-radius: 1px;
    height: 94px;
    display: inline-block;
}

.menuholder #menu .menuitem a.bgBlack {
    background-color: #000;
    color: #fff;
    padding: 1px 5px 0 5px;
}

.menuholder #menu .menuitem a:hover {
    /*background-color: #E9D5A0;*/
    color: #E0AE63;
}

.menuholder #menu .menuitem a.bgBlack:hover {
    color: #FFFFFF;
    background-color: #7D7D7D
}


#subdivider0-1 {
    width: 0;
    border-top: 1px solid #e6e6e6;
}

#subdivider0-2 {
    position: absolute;
    left: 142px;
    margin-top: -1px;
    width: 729px;
    border-top: 1px solid #e6e6e6;
}

#subdivider1-1 {
    width: 235px;
    border-top: 1px solid #e6e6e6;
}

#subdivider1-2 {
    position: absolute;
    left: 363px;
    margin-top: -1px;
    width: 630px;
    border-top: 1px solid #e6e6e6;
}

#subdivider2-1 {
    width: 333px;
    border-top: 1px solid #e6e6e6;
}

#subdivider2-2 {
    position: absolute;
    left: 468px;
    margin-top: -1px;
    width: 525px;
    border-top: 1px solid #e6e6e6;
}

/* Chrome and Webkit */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    #subdivider0-2 {
        left: 142px;
    }

    #subdivider1-1 {
        width: 235px;
    }

    #subdivider1-2 {
        left: 363px;
    }

    #subdivider2-1 {
        width: 333px;
    }

    #subdivider2-2 {
        left: 468px;
    }
}

/* IE9 + IE10 */
/*
:root #subdivider1-1 {
    width: 234px \0/ IE9;
}

:root #subdivider1-2 {
    left: 361px \0/ IE9;
}

:root #subdivider2-1 {
    width: 331px \0/ IE9;
}

:root #subdivider2-2 {
    left: 465px \0/ IE9;
}
*/
/* search area */
.menuholder .searcharea { /*width:264px; */
    /*height: 39px;*/
    /*padding: 26px 30px 29px 0px;*/
    position: relative;
    z-index: 5;
    padding: 0 10px;
}

.menuholder .searcharea .input-wrapper {
    -moz-display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    display: flex;
    -moz-align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -moz-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    position: relative;
}

.menuholder .searcharea .searchboxlink {
    width: 30px;
    height: 30px;
    z-index: 6;
    border: 1px solid transparent;
    border-left: none;
    padding-left: 1px;
    line-height: 30px;
    text-align: center;
    font-size: 1.2em;
    background-color: #e9d5a0;
    border-radius: 50%;
    transition: all 300ms ease-in-out 0s;
}

.menuholder .searcharea input {
    position: absolute;
    right: 15px;
    height: 30px;
    border: 1px solid #e9d5a0;
    border-right: none;
    text-align: left; /* background:url(../images/wparker_temp_loupe.gif) no-repeat right center;*/
    padding: 0 35px 0 25px;
    width: 250px;
    box-sizing: content-box;

    font: normal 17px 'myriad_prolight';
    color: #333;
    background-color: #fff5d9;

    transition: all 300ms ease-in-out 0s;
    -moz-transform: translateX(0) scaleX(0);
    -webkit-transform: translateX(0) scaleX(0);
    -ms-transform: translateX(0) scaleX(0);
    transform: translateX(0) scaleX(0);

    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0%;
    transform-origin: 100% 0;

    border-radius: 30px 0 0 30px;

}

.menuholder .searcharea input.focused {
    -moz-transform: translateX(0) scaleX(1);
    -webkit-transform: translateX(0) scaleX(1);
    -ms-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
    visibility: visible;
    height: 50px;
    right: 25px;
    box-shadow: -5px 5px 30px -10px #666;
}

.menuholder .searcharea input.focused ~ .searchboxlink {
    height: 50px;
    width: 50px;
    line-height: 50px;
}

.menuholder .searcharea .searchoverlay {
    width: 259px;
    height: 70px;
    position: absolute;
    right: 35px;
    top: 65px;
    background: #fff none;
    z-index: 4;
    display: none;
}

.searchbutton {
    display: block;
    float: right;
    width: 30px;
    height: 37px; /*border-bottom:1px solid #d8d8d8; border-top:1px solid #d8d8d8;border-right: 1px solid #d8d8d8;*/
    background: url(/i/wparker_temp_loupe.gif) no-repeat right center;
}

.searchoverlay ul#searchrecent {
    width: 100%;
    height: 100%;
    display: block;
    list-style: none;
}

.searchoverlay ul#searchrecent li.entry {
    background-color: #FFFFFF;
    width: 239px;
    height: 15px;
    padding: 10px 10px 10px 9px;
    display: block;
    text-align: left;
    font: normal 14px 'MyriadCond';
    color: #000;
    border-bottom: 1px solid #D8D8D8;
    border-left: 1px solid #D8D8D8;
    border-right: 1px solid #D8D8D8;
}

.searchoverlay ul#searchrecent li.entry:first-child {
    background: #000 none;
    color: #fff;
    text-transform: uppercase;
}

.searchoverlay ul#searchrecent li.entry a {
    font: normal 14px 'MyriadCond';
    color: #000;
}

.searchoverlay ul#searchrecent li.entry a:hover, .searchoverlay ul#searchrecent li.entry a.hover {
    text-decoration: underline;
}

.searchoverlay ul#searchrecent li.entry .clear {
    width: 219px;
    height: 15px;
    padding: 10px;
    display: block;
    text-align: left;
    font: normal 14px 'MyriadCond';
    color: #000;
}

.menuholder .phone-area {
    /*background-color: #dedede;*/
    border-radius: 5px;
    padding: 0.35em 1em;
    margin-left: 15px;
    position: relative;
    border: 1px solid #e9d5a0;
}

.menuholder .phone-area a {
    color: #333;
    font-size: 1.1em;
    display: block;
    line-height: 1.3em;
    white-space: nowrap;
}

.menuholder .cart-area a {
    color: #333;
    font-size: 1.2em;
    margin: 0 10px;
    white-space: nowrap;
}

.menuholder .phone-area a:hover,
.menuholder .cart-area a:hover {
    color: #E0AE63;
}

.menuholder .cart-area .fa {
    font-size: 1.2em;
    line-height: 0.8em;
    display: inline-block;

}

.menuholder .phone-area .fa.phone-icon {
    background-color: #fff;
    font-size: 1.5em;
    color: #e9d5a0;
    position: absolute;
    margin-top: 0.5em;
    left: -11px;
    line-height: 0.8em;
}

.menuholder .phone-area .fa {
    vertical-align: middle;
    /*display: none;*/
}

.menuholder .logo-area {
    margin-right: 1em;
    width: 80px;
}

#navbutton {
    display: none;
    font-size: 2em;
    transition: all 300ms ease-in-out 0s;
}

#navbutton.clicked {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

@media screen and (max-width: 940px) {

    /*.tools .metanav {
        display: none;
    }*/
    #navbutton {
        display: block;
    }

    .menuholder #menu {
        position: absolute;
        top: 94px;
        left: 0;
        background-color: #e9d5a0;
        visibility: hidden;
        transition: all 300ms ease-in-out 0s;
        -moz-transform: translateX(-100%) scaleX(0);
        -webkit-transform: translateX(-100%) scaleX(0);
        -ms-transform: translateX(-100%) scaleX(0);
        transform: translateX(-100%) scaleX(0);
        -moz-box-shadow: 5px 15px 30px -10px #666;
        -webkit-box-shadow: 5px 15px 30px -10px #666;
        box-shadow: 5px 15px 30px -10px #666;
        white-space: nowrap;
    }

    .menuholder #menu {
        padding: 2em;
        max-height: calc(100vh - 94px - 4em);
        overflow: auto;
    }

    .menuholder .logo-area {
        flex-grow: 1;
        text-align: center;
        margin-right: 0;
    }

    .menuholder .logo-area a {
        display: block;
        padding: 5px 10px 5px 15px;
    }

    .menuholder #menu.active {
        -moz-transform: translateX(0) scaleX(1);
        -webkit-transform: translateX(0) scaleX(1);
        -ms-transform: translateX(0) scaleX(1);
        transform: translateX(0) scaleX(1);
        visibility: visible;
    }

    .menuholder #menu .menuitem .category,
    .menuholder #menu .menuitem .categoryURL,
    .menuholder #menu .menuitem .subTopCategoryLink,
    .menuholder #menu .menuitem .productURL {
        line-height: 1em;
        height: auto;
        display: block;
        padding: 0.3em 0;
    }


    .menuholder #menu .menuitem .category:hover,
    .menuholder #menu .menuitem .categoryURL:hover,
    .menuholder #menu .menuitem .subTopCategoryLink:hover,
    .menuholder #menu .menuitem .productURL:hover {
        /*background-color: #e9d5a0;*/
        color: #000;
        text-decoration: underline;
    }

    .menuholder #menu .menuitem ul {
        list-style: none;
    }

    .menuholder #menu .menuitem.hassubnav {
        -moz-display: flex;
        -webkit-display: flex;
        -ms-display: flex;
        display: flex;
        -moz-align-items: flex-start;
        -webkit-align-items: flex-start;
        -ms-align-items: flex-start;
        align-items: flex-start;
        -moz-flex-direction: row;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -moz-justify-content: flex-start;
        -webkit-justify-content: flex-start;
        -ms-justify-content: flex-start;
        justify-content: flex-start;
        -moz-flex-wrap: nowrap;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .menuholder #menu .menuitem.hassubnav > .category {
        display: none;
    }

    .menuholder #menu .menuitem #subnav .sub .pens {
        -moz-display: flex;
        -webkit-display: flex;
        -ms-display: flex;
        display: flex;
        -moz-align-items: flex-start;
        -webkit-align-items: flex-start;
        -ms-align-items: flex-start;
        align-items: flex-start;
        -moz-flex-direction: row;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -moz-justify-content: flex-start;
        -webkit-justify-content: flex-start;
        -ms-justify-content: flex-start;
        justify-content: flex-start;
        -moz-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 -1em;
    }

    .menuholder #menu .menuitem #subnav .sub .pens .sublinks {
        margin-bottom: 0.5em;
    }

    .menuholder #menu .menuitem #subnav .sub .pens > * {
        margin: 0 1em;
        flex-grow: 1;
    }

    .menuholder #menu .menuitem .groupURLs {
        padding: 0;
        font-size: 1.1em;
    }

    .menuholder #menu .menuitem .groupURLs a.productURL {
        font-family: myriad_prolight;
        font-size: inherit;
    }
}

/*
.menuholder .searcharea .searchoverlay { right: 35px; }
.menuholder .searcharea { width: 234px; padding-right: 35px; }
*/
/* Breadcrumb */
.wrap {
    margin: 0 auto;
    max-width: 1024px;
    padding-top: 20px;
}

#breadcrumb {
    margin: 0 30px;
    padding-bottom: 10px;
    font-size: 13px;
    color: #666666;
    font-family: "myriad_prolight";
}

#breadcrumb a {
    color: #666666;
    text-decoration: underline;
}

#breadcrumb a:hover {
    color: #000;
}

#breadcrumb span.navback {
    float: right;
}

#breadcrumb span.navback a {
    text-decoration: none;
}

#breadcrumb span.navback a:hover {
    text-decoration: underline;
}

.nextcrumb {
    padding: 0 10px;
}

#breadcrumb li {
    display: inline-block;
    list-style: none outside none;
}

/* Page intro */
#pageintro {
    margin: 0 30px 30px;
    font-family: 'myriad_procondensed';
    color: #000;
}

.largetitle,
.blockTitle {
    font-size: 30px;
    line-height: 1em;
    font-family: myriad_probold_condensed;
    font-weight: bold;
}

.largetitle {
    margin-bottom: 10px;
}

.largetitle a,
.blockTitle a {
    color: inherit;
    text-decoration: none
}

.largetitle a:hover,
.blockTitle a:hover {
    text-decoration: underline
}

section .item-title {
    font-weight: bold;
    font-family: myriad_probold_condensed;
    font-size: 1.2em;
    margin-bottom: 0.5em;
    line-height: 1em;
    color: #333;
}

section * + .item-title {
    margin-top: 1em;
}

#pageintro .caption {
    font-size: 15px;
}

/* Main Content */
.maincontent,
.maincontainer {
    margin: 0 auto;
    max-width: 1024px;
    font-size: 14pt;
}

.maincontainer {
    padding: 0 30px;
    box-sizing: border-box;
}

.maincontainer .maincontainer {
    padding: 0;
}

.maincontent a,
.maincontainer a {
    color: black;
    text-decoration: underline
}

.maincontent p + p,
.maincontainer p + p {
    margin-top: 20px;
}

.maincontent ul,
.maincontent ol,
.maincontainer ul,
.maincontainer ol {
    display: block;
}

.maincontent li,
.maincontainer li {
    display: list-item;
    list-style-position: outside;
    margin-left: 0.75em;
}

.maincontent ul,
.maincontent ol,
.maincontainer ul,
.maincontainer ol {
    margin: 1em 0;
}

#primarycontent {
    width: 775px;
    min-height: 800px;
    float: left;
    margin-left: 30px;
}

/* Left navigation */
#leftnav {
    margin-left: 30px;
    padding-bottom: 30px;
    width: 155px;
    float: left;
}

#leftnavwrapper {
    width: 180px;
    color: #000;
}

#leftnav h2 {
    font-weight: normal;
    font-family: MyriadLightCondBold;
    font-size: 17px;
    margin-bottom: 10px;
}

#leftnav h3 {
    margin-bottom: 7px;
}

#leftnav h3 a {
    font-weight: normal;
    font-family: MyriadLightCondBold;
    font-size: 14px;
    color: #000;
}

#leftnav h3 a:hover {
    text-decoration: underline;
}

.navwrapper {
    padding-bottom: 45px;
}

/* Shop Online */
.smallbanner {
    margin-bottom: 20px;
}

.largebanner {
    margin-bottom: 25px;
}

.featurecarousel {
    padding-top: 15px;
}

#featurewhybuy {
    padding-top: 30px;
    margin-bottom: 60px;
}

.featuretoolbar {
    font-size: 19px;
    font-family: 'MyriadLightCondBold';
    color: #000;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.featuretoolbarentry {
    display: inline-block;
}

.featuretoolbarentry a, .featureshortcontainer a {
    font-size: 17px;
    background-color: #eaeaea;
    color: #b1b1b1;
    padding: 0 3px;
}

.featuretoolbarentry a:hover, .featureshortcontainer a:hover {
    background-color: #f1f1f1;
}

.featurelist {
    border: 1px solid #b1b1b1;
    min-height: 300px;
    padding: 30px 0;
}

.featurelistentry {
    display: inline-block;
    float: left;
    min-width: 45px;
    min-height: 250px;
    padding: 10px 20px;
}

.featurelistentry a, .penlistentry .penlistdesc {
    font-size: 16px;
    font-family: 'MyriadCond';
    color: #000;
}

.featurelistentry img {
    width: 115px;
}

.inklistentry .inklistdesc {
    font-size: 16px;
    font-family: 'MyriadCond';
    color: #000;
}

.featurelistdesc {
    max-width: 85px;
    margin: 0 auto;
}

.featurelistprice, .penlistprice, .inklistprice {
    font-family: 'MyriadSemiCondBold';
    padding-top: 10px;
    font-size: 16px;
}

.listwrapper {
    margin: 0 auto;
}

.listrow {
    clear: both;
}

.featurelistdivider {
    float: left;
    display: inline-block;
    width: 1px;
    min-height: 200px;
    margin-top: 40px;
    border-left: 1px solid #b1b1b1;
}

.featuretallcontainer {
    float: left;
    display: inline-block;
    width: 245px;
    height: 460px;
    border: 1px solid #eaeaea;
    background-color: #f1f1f1;
}

.featureshortcontainer {
    float: left;
    display: inline-block;
    width: 245px;
    height: 220px;
    border: 1px solid #eaeaea;
    margin-left: 17px;
}

.servicelist {
    min-height: 300px;
    max-height: 600px;
}

.learnmore {
    width: 95px;
    margin: 10px auto;
    font-family: 'MyriadLightCondBold';
    text-transform: uppercase;
}

#searchresultstoolbar #search_facet_category {
    margin-bottom: 20px;
    width: 733px;
}

#searchresultstoolbar #searchresultsmaincat.searchmaintitle {
    font-family: 'MyriadLightCondBold';
    font-size: 30px;
    color: #000;
    margin-bottom: 20px;
}

#searchresultstoolbar .count {
    color: #b1b1b1;
}

#searchresultstoolbar div#searchresultsmaincat.searchmaintitle > span {
    color: #b1b1b1;
    margin-left: 20px;
    text-transform: uppercase;
}

#searchresultstoolbar ul.refineby, #searchresultstoolbar li.refinelist {
    float: left;
    font-family: 'MyriadCond';
}

#searchresultstoolbar li.refinetitle {
    color: #888888;
    font-style: italic;
    font-size: 17px !important;
    font-family: 'MyriadCond';
    text-transform: none !important;
    margin-left: 0 !important;
}

#searchresultstoolbar li.refinelist {
    margin-left: 30px;
    font-size: 13px;
    text-transform: uppercase;
}

#searchresultslist {
    margin: 30px 0 30px 0;
}

span.emptyprice {
    display: none;
}

.productlist {
    min-height: 300px;
}

.penlistentry, .inklistentry {
    display: inline-block;
    float: left;
    width: 169px;
    height: 379px;
    padding: 21px 11px;
    position: relative;
}

.penlistentry:hover, .inklistentry:hover {
    border: 1px solid #eaeaea;
    padding: 20px 10px;
}

.penlistentry.thin {
    padding: 11px 20px;
    width: 113px;
}

.penlistentry.thin:hover {
    border: 1px solid #eaeaea;
    padding: 10px 19px;
}

.addview .addtocart.thin, .addview .viewdetails.thin, .addview .penlistprice.thin {
    width: 100px;
}

.penlistdesc, .inklistdesc {
    max-width: 130px;
    margin: 20px auto 0 auto;
}

.penlistentry img, .pencollectionlistentry img, .inklistentry img {
    margin: 0 auto;
    display: block;
}

.penlistentry img.editorial, .pencollectionlistentry img.editorial, .inklistentry img.editorial {
    height: 110px;
    width: 150px;
}

.addview .addtocart, .addview .viewdetails, .rolloveraction .seemore, .rolloveraction .buynow, .rolloveraction .more {
    width: 150px;
    height: 30px;
    line-height: 30px;
    margin: 5px auto;
    text-align: center;
    font-family: 'myriad_procondensed';
    cursor: pointer;
    font-size: 20px;
    text-transform: uppercase;
}

.button {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    margin: 5px auto;
    padding: 0 20px;
    min-width: 100px;
    text-align: center;
    font-family: 'myriad_procondensed';
    cursor: pointer;
    font-size: 20px;
    text-transform: uppercase;
    box-sizing: border-box;
    background-color: #000;
    color: #ffffff !important;
    border-radius: 5px;
    border: none;
    text-decoration: none !important;
}

.button:hover {
    background-color: #ddd;
    color: #333 !important;
}

.addview .viewdetails {
    width: auto;
    min-width: 150px;
    padding: 0 10px;
    display: inline-block;
    border-radius: 5px;
}

.rolloveraction .more {
    width: 65px;
    background-color: #f1f1f1 !important;
    color: #7d7d7d !important;
}

.rolloveraction .more:hover {
    background-color: #eaeaea !important;
}

.rolloveraction.btneditorial {
    bottom: 20px;
    left: 20px;
    position: absolute;
}

/*
.productsale {
    background: url("../images/product_sale.png") no-repeat scroll right top transparent;
    height: 48px;
    position: absolute;
    right: 0;
    top: 0;
    width: 77px;
    z-index: 100;
}
*/
div.addview .penlistprice {
    width: 150px;
    margin: 0 auto;
}

.addview .addtocart, .rolloveraction .seemore, .rolloveraction .buynow, .rolloveraction .more {
    background-color: #b1b1b1;
    color: #000;
}

.addview .addtocart:hover, .rolloveraction .seemore:hover, .rolloveraction .buynow:hover {
    background-color: #000000;
    color: #fff;
}

.addview .viewdetails {
    background-color: #f1f1f1;
    color: #333;
}

.addview .viewdetails:hover {
    background-color: #000;
    color: #ffffff;
}

.notbuyable .addtocart {
    display: none;
}

.notbuyable {
    pointer-events: none;
    cursor: default;
    opacity: 0.4;
}

.addview {
    margin: 5px auto;
}

#moreresultsbar {
    margin-bottom: 50px;
}

#moreresultsbar a .moreresultsbtn {
    width: 773px;
    height: 35px;
    line-height: 35px;
    font-family: 'MyriadCond';
    font-size: 17px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    background-color: #b1b1b1;
}

#moreresultsbar a .moreresultsbtn:hover {
    box-shadow: 0 1px 5px #b1b1b1;
    cursor: pointer;
}

#searchresultsadvancedtoolbar {
    font-family: 'MyriadCond';
    margin-bottom: 20px;
    width: 733px;
    padding: 20px;
    border: 1px solid #b1b1b1;
}

#searchresultsadvancedtoolbar .title {
    font-family: 'MyriadLightCondBold';
    color: #b1b1b1;
    text-transform: uppercase;
    font-size: 19px;
}

#searchresultsadvancedtoolbar span.searchcat {
    color: #000;
}

.advancedfilterwrapper {
    width: 733px;
    margin-top: 30px;
}

div.advancedfilter {
    display: inline-block;
    float: left;
    margin-left: 50px;
}

div.advancedfilter:first-child {
    margin-left: 0;
}

div.advancedfilter ul, div.advancedfilter ul li {
    display: block;
}

div.advancedfilter ul li.filtertitle {
    font-family: 'MyriadCond';
    color: #666666;
    font-size: 16px;
    margin-bottom: 9px;
}

div.advancedfilter ul li.filtercolortitle {
    font-family: 'MyriadCond';
    color: #666666;
    font-size: 16px;
    margin-bottom: 12px;
}

div.advancedfilter ul li.filteroption {
    font-family: 'MyriadCond';
    color: #666666;
    font-size: 15px;
    margin-bottom: 3px;
}

div.advancedfilter .ez-checkbox { /* background-position: 3px 5px; */
}

div.advancedfilter ul li.rowfiltercolor {
    margin-bottom: 5px;
}

div.advancedfilter ul li span {
    margin: 0 2px;
}

.advancedfilter_PP_COLOR_HEX {
    width: 130px;
}

.advancedfilter_PP_COLOR_HEX li.colorfacet {
    height: 30px;
}

/*
.filtercolor-selected { padding: 1px; border: 1px solid #b1b1b1; }
.filtercolor-unselected { padding: 1px; margin: 1px;}
*/
.filter-selected img {
    padding: 1px;
    border: 1px solid #b1b1b1;
}

.filter-unselected img {
    padding: 1px;
    margin: 1px;
}

.swatch input {
    display: none;
}

.swatch .facet_count {
    display: none;
}

.swatch .disabledOption img {
    visibility: hidden;
}

/*.pencollectionlistentry { display: inline-block; float: left; width: 179px; height: 299px; padding: 21px 11px; }*/
.pencollectionlistentry {
    display: inline-block;
    float: left;
    width: 169px;
    height: 379px;
    padding: 21px 11px;
    position: relative;
}

.pencollectionlistentry div.content {
    width: 150px;
    margin: 15px;
    font-family: 'MyriadCond';
    font-size: 16px;
    max-height: 190px;
    color: #7d7d7d;
    overflow: hidden;
}

.pencollectionlistentry div.content div.heading {
    color: #000;
    margin-bottom: 7px;
}

.pencollectionlistentry:hover {
    border: 1px solid #eaeaea;
    padding: 20px 10px;
}

.penlistentry img, .pencollectionlistentry img {
    width: 115px;
}

#sortbytoolbar {
    font-family: 'MyriadCond';
    font-size: 16px;
    color: #000;
    width: 775px;
}

.sortbytoolbarwrapper {
    width: 775px;
    height: 45px;
    margin-top: 10px;
}

#sortbyselect .dd-select {
    color: #666666;
}

#orderBy .dd-select {
    color: #666666;
}

.addbox300entry {
    display: inline-block;
    float: left;
    height: 290px;
    width: 300px;
    padding: 1px 1px;
    margin-left: 19px;
}

.addbox300entry .heading {
    color: #000000;
    font-family: 'MyriadLightCondBold' !important;
    font-size: 16px !important;
}

.addbox300entry:first-child {
    margin-left: 0;
}

.addbox300entry div.content {
    width: 220px;
    margin: 15px auto;
    font-family: 'MyriadCond';
    font-size: 15px;
    color: #000000;
    text-align: center;
}

.addbox300entry:hover, .addbox300entry.boxed {
    border: 1px solid #eaeaea;
    padding: 0 0;
}

.addbox300entry img {
    margin: 0 auto;
    display: block;
}

.shortimage140 {
    padding: 80px 0 50px 0 !important;
}

/*
.bgblacktextleft {
    background: url(../images/content/penchooser-addbox300-discover.jpg) no-repeat left top;
}

.addbox300entry.bgblacktextleft h1 {
    width: 150px;
    color: #ffffff;
    font-family: 'MyriadCond';
    font-size: 28px;
    line-height: 27px;
    margin: 30px 0 20px 20px;
    text-transform: uppercase;
}

.addbox300entry .nextsection {
    margin: 30px 0 0 20px;
}

.addbox300entry .viewmore {
    width: 65px;
    height: 30px;
    line-height: 30px;
    color: #000000;
    background-color: #ffffff;
    text-align: center;
    font-family: 'MyriadLightCondBold';
    font-size: 17px;
    text-transform: uppercase;
}

.addbox300entry .viewmore:hover {
    background-color: #b1b1b1;
    color: #ffffff;
}
*/
/*bug 355 always display the more, buynow button in content snippets*/
.addbox300entry .hideme {
    display: block;
}

/* Footer */
#footer {
    max-width: 1024px;
    box-sizing: border-box;
    padding: 0 2em;
    margin: 0 auto;
    position: relative;
}


#footerwrapper {
    margin: 0 auto 30px auto;
    padding-top: 30px;

}


.footertitle {
    font-size: 20px;
    font-family: 'myriad_procondensed';
    font-weight: bold;
    color: #b1b1b1;
    text-transform: uppercase;
    margin-bottom: 15px;
}

#footer .footercontent {
    -moz-display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    display: flex;
    -moz-align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -moz-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}


#footer .footercontent > * {
    flex-grow: 1;
}

#footer .footercontent .footerwidget img.footersocial:hover {
    box-shadow: 0 1px 5px #b1b1b1;
}

/* Esther remove height */
#footer ul.footercontent li.footercol {
    display: inline-block;
    float: left;
    width: 285px;
    margin-left: 15px;
    margin-right: 35px;
}

.footertoprow {
    height: 83px;
}

#footer ul.footercontent li.footercol:first-child {
    margin-left: 0;
}

#footer ul.footercontent li.footercol:last-child {
    margin-right: 0;
}

#footer ul.footercontent li .footerwidget {
    padding-right: 20px;
}

#footer ul.footercontent li a.footerwidget:last-child {
    margin-right: 0;
}

#footer ul.footercontent li div.footersection div.footerquicklink {
    border-top: 1px solid #eaeaea;
}

#footer ul.footercontent li div.footersection div.footerquicklink:last-child {
    border-bottom: 1px solid #eaeaea;
}

@media screen and (max-width: 700px) {

    #footer ul.footercontent li.footercol {
        margin-right: 0;
        white-space: nowrap;
    }
}

@media screen and (max-width: 600px) {
    #footer ul.footercontent {
        -moz-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #footer ul.footercontent li.footercol:nth-child(1) .footerquicklink:last-child,
    #footer ul.footercontent li.footercol:nth-child(2) .footerquicklink:last-child {
        border-bottom: none
    }

    #footer ul.footercontent li.footercol:nth-child(1) {
        order: 1;
    }

    #footer ul.footercontent li.footercol:nth-child(2) {
        order: 2;
    }

    #footer ul.footercontent li.footercol:nth-child(3) {
        order: 4;
    }

    #footer ul.footercontent li.footercol:nth-child(4) {
        order: 3;
    }

    #footer ul.footercontent li.footercol {
        width: 50%;
        margin-left: 0;
    }

    #footer ul.footercontent li.footercol:nth-child(1) .footersection,
    #footer ul.footercontent li.footercol:nth-child(4) .footersection {
        padding-right: 10px;
    }

    #footer ul.footercontent li.footercol:nth-child(2) .footersection,
    #footer ul.footercontent li.footercol:nth-child(3) .footersection {
        padding-left: 10px;
    }
}

#footer ul.footercontent li div.footerquicklink a {
    line-height: 1em;
    font-size: 16px;
    padding: 8px 0;
    display: inline-block;
    font-family: 'myriad_procondensed';
    color: #b1b1b1;
}

/*
#footer #emailnews {
    position: relative;
    border: 1px solid #eaeaea;
    color: #b1b1b1;
    font-size: 17px;
    font-family: 'MyriadCond';
    height: 37px;
    padding-left: 10px;
    text-align: left;
    background: url(../images/inputgo.png) no-repeat right center;
    width: 275px;
}

#footer #emailnews:hover {
    box-shadow: 0 1px 5px #b1b1b1;
}
 */

#emailnewslink {
    position: absolute;
    z-index: 10;
    top: 71px;
    right: 36px;
    width: 39px;
    height: 35px;
    background-color: transparent;
    border: 1px solid transparent;
}

#footertoolbar {
    max-width: 964px;
    border-bottom: 1px solid #eaeaea;
    margin: 35px auto 30px auto;
}

#footertoolbar .footertoolbarwrapper {
    text-align: center;
    margin: 0 auto;
}

#footertoolbar .footertoolbarwrapper a {
    color: #b1b1b1;
    font-size: 14px;
    font-family: 'myriad_procondensed';
    text-transform: uppercase;
    text-decoration: underline;
}

#footertoolbar .footertoolbarwrapper span {
    margin: 0 15px;
    display: inline-block;
    padding: 10px 0;
}

#footer ul.footercontent li div.footerquicklink a:hover, #footertoolbar a:hover {
    text-decoration: underline;
}

#footercopyright {
    text-align: center;
    color: #b1b1b1;
    font-size: 14px;
    font-family: 'myriad_procondensed';
    text-transform: uppercase;
}

/* carrousel home */
/*
.homecarousel {
    width: 1024px;
    height: 580px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    z-index: 2;
}

.homecarousel ul.slider {
    width: auto;
    height: 542px;
    display: inline-block;
    list-style: none;
}

.homecarousel ul.slider li {
    width: 100%;
    height: 542px;
    display: inline-block;
    position: absolute;
    z-index: 1;
}

.homecarousel .controls {
    width: 234px;
    height: 18px;
    margin: 0 auto;
    padding: 10px 11px;
    clear: both;
}

.homecarousel .controls ul.numlinks {
    width: 156px;
    height: 100%;
    float: left;
    margin: 0 auto;
    padding: 0;
    display: inline-block;
    list-style: none;
}

.homecarousel .controls ul.numlinks li {
    display: inline-block;
    width: 25%;
    height: 18px;
    float: left;
    margin: 0;
    text-align: center;
    padding: 0;
    cursor: pointer;
}

.homecarousel .controls a {
    font: normal 14px 'MyriadCond';
    color: #757575;
}

.homecarousel .controls a:hover {
    color: #fff;
}

.homecarousel .controls a.hover {
    text-decoration: underline;
    color: #fff;
}

.homecarousel .controls .prev {
    width: 39px;
    height: 11px;
    float: left;
    background: url(../images/prev.png) no-repeat center top;
    cursor: pointer;
    margin: 3px 0 0 0;
    padding: 0;
}

.homecarousel .controls .next {
    width: 39px;
    height: 11px;
    float: left;
    background: url(../images/next.png) no-repeat center top;
    cursor: pointer;
    margin: 3px 0 0 0;
    padding: 0;
}

.homecarousel .controls .prev:hover, .homecarousel .controls .next:hover, .homecarousel .controls .prev.hover, .homecarousel .controls .next.hover {
    background-position: center bottom;
}

/* carrousel home content * /
.homecarousel ul.slider li .slidecont {
    width: 250px;
    height: auto;
    min-height: 310px;
    position: absolute;
    top: 101px;
    right: 77px;
    padding: 15px 0;
    text-align: left;
    text-transform: uppercase;
}

.homecarousel ul.slider li .slidecont .cat {
    width: 110px;
    height: 19px;
    border-top: 1px solid #515150;
    border-bottom: 1px solid #515150;
    font: normal 19px 'MyriadCond';
    color: #fff;
    padding: 7px 2px 8px 2px;
}

.homecarousel ul.slider li .slidecont .title {
    width: 100%;
    font: normal 45px 'MyriadCond';
    color: #fff;
    margin: 30px 0 0 0;
}

.homecarousel ul.slider li .slidecont .details {
    width: 100%;
    height: 130px;
    margin: 20px 0 0 0;
}

.homecarousel ul.slider li .slidecont .details span {
    display: block;
    width: 100%;
}

.homecarousel ul.slider li .slidecont .details span.model {
    font: normal 20px 'MyriadCond';
    color: #fff;
}

.homecarousel ul.slider li .slidecont .details span.color {
    font: normal 20px 'MyriadCond';
    color: #fff;
    text-transform: none;
}

.homecarousel ul.slider li .slidecont .details span.price {
    font: bold 20px 'MyriadCond';
    color: #fff;
    text-transform: none;
    margin-top: 10px;
}

.homecarousel ul.slider li .slidecont .details a.buybtn {
    display: block;
    width: 64px;
    height: 16px;
    padding: 4px 0 8px 0;
    background-color: #fff;
    font: normal 18px 'MyriadCond';
    color: #000;
    margin-top: 20px;
    text-align: center;
}

.homecarousel ul.slider li .slidecont .details a:hover, .homecarousel ul.slider li .slidecont .details a.hover {
    text-decoration: underline;
}
*/
/* push  */
.pushtitlebar .titlebarline {
    display: inline-block;
    float: left;
    width: 398px;
    height: 8px;
    border-bottom: 1px solid #eaeaea
}

.pushtitlebar .titlebarlineshort {
    display: inline-block;
    float: left;
    width: 348px;
    height: 8px;
    border-bottom: 1px solid #eaeaea
}

.pushtitlebar .titlebartext {
    display: inline-block;
    float: left;
    width: 164px;
    font-size: 17px;
    font-family: 'MyriadLightCondBold';
    color: #000;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
}

.pushtitlebar .titlebartextlong {
    display: inline-block;
    float: left;
    width: 264px;
    font-size: 17px;
    font-family: 'MyriadLightCondBold';
    color: #000;
    text-transform: uppercase;
    text-align: center;
}

.pushbox300 {
    width: 300px;
    height: 290px;
    display: inline-block;
    float: left;
    border: 1px solid #eaeaea;
    background-color: #FFFFFF;
}

.pushboxrow .pushbox300:first-child {
    margin-left: 0;
}

.pushboxrow .pushbox300 {
    margin-left: 29px;
}

/* Add to Wishlist Overlay */
/*
#wishlistoverlay {
    display: none;
    position: absolute;
    top: 270px;
    left: 270px;
    width: 700px;
    height: 270px;
    background-color: #ffffff;
    z-index: 1000;
    padding: 30px 40px;
    box-shadow: 2px 2px 7px #b1b1b1;
}

#wishlistoverlay .close {
    background: transparent url(../images/close_icon_grey.png) no-repeat;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    height: 20px;
    width: 20px;
}

#wishlistoverlay .heading {
    font-family: 'MyriadLightCondBold';
    font-size: 20px;
    text-transform: uppercase;
    color: #000000;
}

#wishlistoverlay .subheading {
    font-family: 'MyriadCond';
    font-size: 14px;
    color: #000000;
}

#wishlistoverlay .setwishlistwrapper {
    margin-top: 40px;
}

#wishlistoverlay .wishlistlabel {
    font-family: 'MyriadCond';
    font-size: 16px;
    color: #000000;
}

#wishlistoverlay .dd-select {
    color: #b1b1b1;
    border-color: #b1b1b1
}

#wishlistoverlay .dd-options {
    border-color: #b1b1b1;
}

#wishlistoverlay .dd-option {
    color: #b1b1b1;
}

#wishlistoverlay .dd-option-selected {
    color: #ffffff;
}

#wishlistoverlay .wishlistcol {
    float: left;
    height: 100px;
}

#wishlistoverlay .wishlistor {
    font-family: 'MyriadLightCondBold';
    font-size: 30px;
    color: #000000;
    margin: 0 25px;
    line-height: 75px;
}

#wishlistoverlay #createwishlist {
    border: 1px solid #b1b1b1;
    color: #b1b1b1;
    font-family: 'MyriadCond';
    font-size: 15px;
    height: 37px;
    padding-left: 10px;
    text-align: left;
    position: relative;
    width: 295px;
}

#wishlistoverlay #createwishlist:hover {
    box-shadow: 0 1px 5px #b1b1b1;
}

#wishlistoverlay .wishlistactionwrapper {
    float: right;
}

#wishlistoverlay .wishlistactionwrapper:first-child {
    margin-left: 15px;
}

#savewishlist .btnsavewishlist {
    font-family: 'MyriadLightCondBold';
    font-size: 17px;
    color: #7d7d7d;
    background-color: #f1f1f1;
    height: 30px;
    line-height: 30px;
    margin: 5px auto;
    text-align: center;
    text-transform: uppercase;
    width: 150px;
}

#savewishlist .btnsavewishlist:hover {
    background-color: #eaeaea;
}

#cancelwishlist .btncancelwishlist {
    font-family: 'MyriadLightCondBold';
    font-size: 17px;
    color: #ffffff;
    background-color: #b1b1b1;
    height: 30px;
    line-height: 30px;
    margin: 5px auto;
    text-align: center;
    text-transform: uppercase;
    width: 150px;
}

#cancelwishlist .btncancelwishlist:hover {
    background-color: #000000;
    color: #ffffff;
}
*/
/* Add to cart vertical slide down widget */
#minicart {
    display: block;
    position: absolute;
    right: 0;
    top: 28px;
    z-index: 9999 !important;
    width: 298px;
    height: 580px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 2px 2px 7px #b1b1b1;
    font-family: 'MyriadCond';
    color: #000000;
}

#minicart .intro {
    font-family: 'MyriadLightCondBold';
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

#minicart .btnup {
    width: 100%;
    height: 30px;
    background-color: #f3f3f3;
    text-align: center;
    line-height: 30px;
}

#minicart .btndown {
    width: 100%;
    height: 30px;
    background-color: #d6d6d6;
    text-align: center;
    line-height: 30px;
}

#minicart .btnup:hover, #minicart .btndown:hover {
    box-shadow: 0 1px 5px #b1b1b1;
}

#minicart .itemwrapper {
    width: 299px;
    height: 282px;
}

#minicart .cartentry {
    height: 140px;
    width: 299px;
}

#minicart .cartentry:first-child {
    background-color: #f4f4f4;
}

#minicart .cartentry img {
    float: left;
    margin: 10px;
}

#minicart .cartentry .entrydesc {
    float: left;
    width: 140px;
    height: 118px;
    margin: 10px 0;
    color: #000000;
}

#minicart .cartentry .minicartprice {
    font-size: 16px;
    font-family: 'MyriadLightCondBold';
}

#minicart .cartentry .minicartcat {
    font-size: 16px;
    font-family: 'MyriadLightCondBold';
    text-transform: uppercase;
}

#minicart .cartentry .minicartdescription {
    font-size: 14px;
    margin-top: 10px;
}

#minicart .cartentry .quantitybar {
    font-family: 'MyriadBoldCond';
    font-size: 13px;
    margin-top: 10px;
}

#minicart .cartentry .quantitybar span {
    padding-left: 15px;
}

#minicart .cartentry .quantitybar span:first-child {
    padding-left: 0;
}

#minicart .cartentry .quantitybar span a {
    color: #000000;
}

#minicart .cartentry .cartentryclose {
    position: absolute;
    right: 0;
    cursor: pointer;
}

#minicart .totalswrapper {
    margin-top: 20px;
    text-align: right;
    font-size: 18px;
    font-family: 'MyriadLightCondBold';
}

#minicart .totalvalue {
    width: 100px;
    text-align: right;
    float: right;
}

#minicart .totalname {
    text-align: right;
    float: right;
}

#minicarttotal .totalname {
    text-transform: uppercase;
}

#minicart .minicartactions .minicartbtn {
    float: right;
}

#minicart .btnviewcart {
    font-family: 'MyriadLightCondBold';
    font-size: 17px;
    color: #ffffff;
    background-color: #b1b1b1;
    height: 30px;
    line-height: 30px;
    margin: 20px 5px 5px 0;
    text-align: center;
    text-transform: uppercase;
    width: 143px;
}

#minicart .btnviewcart:hover {
    background-color: #7d7d7d;
    color: #ffffff;
}

#minicart .btncheckout {
    font-family: 'MyriadLightCondBold';
    font-size: 17px;
    color: #ffffff;
    background-color: #000000;
    height: 30px;
    line-height: 30px;
    margin: 20px 0 5px 5px;
    text-align: center;
    text-transform: uppercase;
    width: 143px;
}

#minicart .btncheckout:hover {
    background-color: #7d7d7d;
    color: #ffffff;
}

#minicart .outro {
    font-family: 'MyriadLightCondBold';
    font-size: 15px;
    margin-top: 20px;
}

#minicart .scrollable {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 280px;
    margin: 10px 0;
    border: 1px solid #f1f1f1;
}

#minicart .scrollable .items {
    position: absolute;
    height: 20000em;
}

/* shopping cart */
.shoppingcartgridwrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 30px;
}

.shoppingcartgridwrapper .pageerrorbox {
    width: 775px;
}

.shoppingcartwrapper {
    width: 964px !important;
    min-height: 400px !important;
    margin: 0 auto;
    font-family: 'MyriadCond';
    font-size: 16px;
}

.shoppingcartwrapper h2 {
    margin: 0;
    padding: 0;
    text-indent: 0;
    line-height: 40px;
    font: normal 40px 'MyriadLightCondBold';
}

#shoppingcartgrid {
    width: 815px;
    min-height: 400px;
    margin: 0 30px 0 0;
    border: 1px solid #d7d7d7;
    float: left;
    padding-bottom: 30px;
}

#shoppingcartgrid.error {
    min-height: 200px !important;
}

#shoppingcartgrid .gridrowtitles {
    line-height: 40px;
    height: 40px;
    font-family: 'MyriadLightCondBold';
    font-size: 14px;
    color: #b1b1b1;
    text-transform: uppercase;
    border-bottom: 1px solid #d7d7d7;
}

#shoppingcartgrid .cartentry {
    border-bottom: 1px solid #d7d7d7;
    position: relative;
}

#shoppingcartgrid .cartentrywrapper {
}

#shoppingcartgrid .titlecol {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    border-left: none !important;
    border-right: none !important;
}

#shoppingcartgrid .productcol {
    width: 118px;
    display: inline-block;
    padding: 20px 0 20px 15px;
    text-align: left;
    vertical-align: top;
}

#shoppingcartgrid .descriptcol {
    width: 150px;
    display: inline-block;
    text-align: left;
    vertical-align: top;
    margin: 30px 0;
}

#shoppingcartgrid .optionscol {
    width: 310px;
    display: inline-block;
    text-align: left;
    padding: 15px 20px;
    vertical-align: top;
    margin-top: 15px;
    border-left: 1px solid #d7d7d7;
    border-right: 1px solid #d7d7d7;
}

#shoppingcartgrid .amountcol {
    width: 120px;
    display: inline-block;
    text-align: left;
    padding: 15px 20px;
    margin-top: 15px;
}

#shoppingcartgrid .productname {
    font-family: 'MyriadLightCondbold';
    font-size: 19px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

#shoppingcartgrid .description {
    margin-bottom: 10px;
}

#shoppingcartgrid .optionname {
    width: 180px;
    margin-bottom: 10px;
    display: inline-block;
}

#shoppingcartgrid .optionvalue {
    width: 60px;
    margin-bottom: 10px;
    display: inline-block;
}

#shoppingcartgrid .optionamount {
    width: 60px;
    margin-bottom: 10px;
    display: inline-block;
    color: #b1b1b1;
}

#shoppingcartgrid .optionamount.quantityamount {
    margin-left: 25px;
}

#shoppingcartgrid .quantitybar {
    margin-left: -25px;
}

#shoppingcartgrid .quantitybar, #shoppingcartgrid .quantitybar a {
    color: #7e7e7e;
    font-size: 14px;
}

#shoppingcartgrid .plus {
    padding-left: 5px;
}

#shoppingcartgrid .productcount {
    padding: 0 15px;
}

#shoppingcartgrid .promocode {
    line-height: 40px;
    margin-bottom: 5px;
}

#shoppingcartgrid .promobox {
    line-height: 40px;
    border: 1px solid #eaeaea;
    width: 90px;
    height: 40px;
    padding-left: 5px;
    margin-bottom: 5px;
}

#shoppingcartgrid .promobox:hover {
    box-shadow: 0 1px 5px #b1b1b1;
}

#shoppingcartgrid .amountline {
    width: 140px;
    margin-bottom: 10px;
}

#shoppingcartgrid .caseamount { /* margin-top: 25px; */
}

#shoppingcartgrid .subtotal {
    font-size: 22px;
}

#shoppingcartgrid .cartmessage {
    height: 150px;
    position: relative;
    border-bottom: 1px solid #d7d7d7;
    padding: 20px;
}

#shoppingcartgrid .cartmessage label {
    font-family: 'MyriadSemiCondBold';
    font-size: 13px;
}

#shoppingcartgrid .cartmessage label span {
    font-family: 'MyriadCond';
    font-size: 13px;
    color: #7d7d7d;
}

#shoppingcartgrid .cartmessage textarea {
    width: 720px;
    height: 90px;
    border: 1px solid #eaeaea;
    padding: 10px;
    color: #7d7d7d;
    font-size: 15px;
    font-family: 'MyriadCond';
    overflow: auto;
}

#shoppingcartgrid .cartentryclose {
    position: absolute;
    right: 20px;
    top: 25px;
    cursor: pointer;
}

#shoppingcartgrid .carttotals {
    height: 420px;
}

#shoppingcartgrid .carttotalswrapper {
    min-height: 100px;
}

#shoppingcartgrid .paytypescol {
    width: 282px;
    display: inline-block;
    margin: 30px 0;
    text-align: center;
    vertical-align: top;
}

#shoppingcartgrid .totalstypescol {
    width: 260px;
    display: inline-block;
    text-align: left;
    padding: 15px 20px;
    vertical-align: top;
    margin-top: 15px;
}

#shoppingcartgrid .totalstypescol div, #shoppingcartgrid .totalsamountscol div {
    margin-bottom: 15px;
}

#shoppingcartgrid .carttotals .subtotal {
    font-size: 16px;
    font-family: 'MyriadBoldCond';
}

#shoppingcartgrid .taxbox input, #shoppingcartgrid .newpromobox input {
    line-height: 40px;
    border: 1px solid #eaeaea;
    width: 140px;
    height: 40px;
    padding-left: 10px;
    margin-top: 10px;
    font-family: 'MyriadCond';
}

/* old estimated tax view */
#shoppingcartgrid .totalstypescol .totalcost, #shoppingcartgrid .totalsamountscol .totalcost {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 10px !important;
}

#shoppingcartgrid .totalstypescol .totalmessage {
    font-size: 14px;
}

/* new promo code view */
#shoppingcartgrid .cartbuttonswrapper .totalcost {
    font-size: 28px;
    text-transform: uppercase;
    margin: 0 0 10px 272px !important;
    width: 320px;
}

#shoppingcartgrid .cartbuttonswrapper #alltotalcost.totalcost {
    width: 150px;
    margin: 0 !important;
}

#shoppingcartgrid .cartbuttonswrapper .totalsmessage {
    margin: 0 0 30px 272px;
    font-size: 14px;
}

#shoppingcartgrid .totalsamountscol {
    width: 150px;
    display: inline-block;
    text-align: left;
    padding: 15px 20px 15px 40px;
    margin-top: 15px;
}

#shoppingcartgrid .alltax {
    margin-top: 70px;
}

/* apply button */
#shoppingcartgrid .applybutton {
    display: inline-block;
    width: 65px;
    font-family: 'MyriadCond';
    font-size: 16px;
    text-transform: uppercase;
    background-color: #000000;
    color: #ffffff;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
    margin: 14px 0 0 20px;
}

#shoppingcartgrid .applybutton:hover {
    background-color: #b1b1b1;
    color: #fff;
}

/* remove promo */
#shoppingcartgrid .removepromoitem a {
    color: #7d7d7d;
    font-size: 14px;
    margin-left: 2px;
}

#shoppingcartgrid .removepromoitem a:hover {
    opacity: .7;
}

#shoppingcartgrid .removepromoitem a img {
    vertical-align: text-bottom;
    margin-right: 7px;
}

#shoppingcartgrid .totalsamountscol #taxdisclaimer {
    width: 170px;
    margin-top: 20px;
}

#shoppingcartgrid .cartbuttonswrapper {
    margin: 10px 30px;
    width: 755px;
}

#shoppingcartgrid .cartbuttonswrapper .or {
    width: 200px;
    text-align: center;
}

.checkoutbutton {
    display: inline-block;
    width: 200px;
    font-family: 'MyriadCond';
    font-size: 16px;
    text-transform: uppercase;
    background-color: #f1f1f1;
    color: #7d7d7d;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

.checkoutbutton:hover {
    background-color: #eaeaea;
    color: #7d7d7d;
}

.checkoutbutton.dark {
    background-color: #000000;
    color: #fff;
}

.checkoutbutton.dark:hover {
    background-color: #b1b1b1;
    color: #fff;
}

.promobutton {
    display: inline-block;
    width: 100px;
    font-family: 'MyriadCond';
    font-size: 16px;
    text-transform: uppercase;
    background-color: #f1f1f1;
    color: #7d7d7d;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

.promobutton:hover {
    background-color: #eaeaea;
    color: #7d7d7d;
}

.promobutton.dark {
    background-color: #000000;
    color: #fff;
}

.promobutton.dark:hover {
    background-color: #b1b1b1;
    color: #fff;
}

#shoppingcartbanner {
    float: left;
    width: 119px;
    height: 100%;
    background-color: #323232;
    position: absolute;
    right: 0;
}

#errorcontainer .errorwrapper {
    margin: 110px auto 80px auto;
    width: 450px;
}

#errorcontainer.errorcart {
    min-height: 200px;
    padding-bottom: 30px;
}

#errorcontainer h1 {
    font-family: 'MyriadLightSemiCond';
    font-size: 22px;
    color: #000000;
}

#errorcontainer p {
    color: #7d7d7d;
}

/* Checkout  and Login */
.checkoutwrapper {
    width: 964px !important;
    min-height: 500px !important;
    margin: 0 auto;
    font-family: 'MyriadCond';
    font-size: 16px;
}

.checkoutwrapper h2 {
    margin: 0;
    padding: 0;
    text-indent: 0;
    line-height: 40px;
    font: normal 40px 'MyriadLightCondBold';
}

#checkoutflowgrid {
    position: relative;
    width: 842px;
    min-height: 400px;
    padding: 100px 60px 30px 60px;
    border: 1px solid #d7d7d7;
    margin: 50px 0 20px 0;
}

#checkoutflowgrid p, #logincontainer p {
    margin-bottom: 10px;
}

#checkoutflowgrid .step {
    position: absolute;
    margin: 0 auto;
    top: -13px;
}

#checkoutflowgrid .stepnumber {
    width: 15px;
    height: 18px;
    text-align: center;
    background-color: #b1b1b1;
    color: #ffffff;
    padding: 3px 5px;
    margin: 0 auto;
}

#checkoutflowgrid .stepnumber.activestep {
    background-color: #000000 !important;
}

#checkoutflowgrid .steptext {
    color: #b1b1b1;
    font-size: 15px;
    margin-top: 8px;
}

#checkoutflowgrid .steptextLink {
    color: #b1b1b1;
    font-size: 15px;
    margin-top: 8px;
}

#checkoutflowgrid .steptextLinkActive {
    color: #000000;
    font-size: 15px;
    margin-top: 8px;
}

#checkoutflowgrid .steptext.activestep {
    color: #000000;
}

#checkoutflowgrid .step1 {
    left: 55px;
}

#checkoutflowgrid .step2 {
    left: 235px;
}

#checkoutflowgrid .step3 {
    left: 450px;
}

#checkoutflowgrid .step4 {
    left: 645px;
}

#checkoutflowgrid .step5 {
    left: 840px;
}

#checkoutflowgrid .signinblock, #logincontainer .signinblock {
    padding: 30px 55px 30px 0;
    width: 393px;
    height: 300px;
    float: left;
}

#checkoutflowgrid .signintextbox, #checkoutflowgrid .aboutyoutextbox, #checkoutflowgrid .checkouttextbox, #logincontainer .signintextbox, #logincontainer .aboutyoutextbox, #logincontainer .checkouttextbox {
    width: 370px;
    height: 40px;
    border: 1px solid #b1b1b1;
    padding-left: 10px;
    padding-right: 10px;
    color: #7d7d7d;
    font-family: MyriadCond;
    font-size: 16px;
}

#checkoutflowgrid .newrow, #logincontainer .newrow {
    margin-top: 20px;
}

#checkoutflowgrid .newrow div, #logincontainer .newrow div {
    margin-bottom: 10px;
}

#checkoutflowgrid .signinbutton, #logincontainer .signinbutton, #logincontainer .resetpasswordbutton {
    display: inline-block;
    width: 150px;
    font-family: 'MyriadBoldCond';
    font-size: 15px;
    text-transform: uppercase;
    background-color: #f1f1f1;
    color: #7d7d7d;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

#checkoutflowgrid .signinbutton:hover, #logincontainer .signinbutton:hover, #logincontainer .resetpasswordbutton:hover {
    background-color: #eaeaea;
    color: #7d7d7d;
}

#checkoutflowgrid .signinbutton.dark, #logincontainer .signinbutton.dark, #logincontainer .resetpasswordbutton.dark {
    background-color: #000000;
    color: #fff;
    margin-right: 10px;
}

#checkoutflowgrid .signinbutton.dark:hover, #logincontainer .signinbutton.dark:hover {
    background-color: #b1b1b1;
    color: #fff;
}

#checkoutsigninforgot {
    color: #000000;
    text-decoration: underline;
    margin-top: 10px;
}

#checkoutsigninforgot:hover {
    color: #b1b1b1;
}

#checkoutflowgrid .createaccountblock, #logincontainer .createaccountblock {
    padding: 130px 30px;
    width: 334px;
    height: 100px;
    float: left;
    background-color: #f7f7f7;
    font-size: 22px;
    text-align: center;
}

#checkoutflowgrid .createaccountblock div, #logincontainer .createaccountblock div {
    margin-bottom: 20px;
}

#checkoutflowgrid .createaccountbutton, #logincontainer .createaccountbutton {
    display: inline-block;
    width: 235px;
    font-family: 'MyriadBoldCond';
    font-size: 15px;
    text-transform: uppercase;
    background-color: #000000;
    color: #fff;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

#checkoutflowgrid .createaccountbutton:hover, #logincontainer .createaccountbutton:hover {
    background-color: #b1b1b1;
    color: #fff;
}

#checkoutflowgrid .checkoutguestblock, #logincontainer .checkoutguestblock {
    padding: 15px;
    background-color: #f7f7f7;
    text-align: left;
    margin-top: 50px;
    color: #7d7d7d;
}

#checkoutflowgrid .greylink, #logincontainer .greylink {
    color: #7d7d7d;
    text-decoration: underline;
}

#checkoutflowgrid .greylink:hover, #logincontainer .greylink:hover {
    color: #b1b1b1;
}

#checkoutflowgrid .bottomdivider, #logincontainer .bottomdivider {
    width: 100%;
    height: 30px;
    border-bottom: 1px solid #d7d7d7;
}

#checkoutflowgrid .terms, #logincontainer .terms {
    color: #7d7d7d;
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
}

/* Checkout Step 1 */
#checkoutflowgrid .leftfields {
    width: 390px;
    display: inline-block;
    padding-right: 60px;
}

#checkoutflowgrid .leftfloatfields {
    width: 390px;
    float: left;
    padding-right: 60px;
}

#checkoutflowgrid .rightfields {
    display: inline-block;
    width: 389px;
}

#checkoutflowgrid .nextrow {
    margin-top: 20px;
}

#checkoutflowgrid .nextsmallrow {
    margin-top: 10px;
}

#checkoutflowgrid .nextsection {
    margin-top: 45px;
}

#checkoutflowgrid .consentsection, #checkoutflowgrid .mandatory {
    color: #7d7d7d;
}

#checkoutflowgrid .resetform, #checkoutflowgrid .resetform a {
    color: #7d7d7d;
    font-size: 14px;
}

#checkoutflowgrid .resetform a:hover {
    color: #b1b1b1;
}

#checkoutflowgrid .continuebutton {
    display: inline-block;
    width: 140px;
    font-family: 'MyriadBoldCond';
    font-size: 15px;
    text-transform: uppercase;
    background-color: #000000;
    color: #fff;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

#checkoutflowgrid .continuebutton.back {
    background-color: #f1f1f1;
    color: #7d7d7d;
}

#checkoutflowgrid .continuebutton:hover {
    background-color: #b1b1b1;
    color: #fff;
}

#checkoutflowgrid .continuebutton.back:hover {
    background-color: #eaeaea;
    color: #7d7d7d;
}

/* Checkout Step 2 */
#checkoutflowgrid .youraddresslabel {
    float: left;
    padding-right: 30px;
    line-height: 40px;
    font-size: 18px;
}

#checkoutflowgrid .youraddress {
    float: left;
}

#checkoutflowgrid h2 {
    font-size: 18px;
}

#checkoutflowgrid .dd-select {
    color: #7d7d7d;
    border: 1px solid #b1b1b1;
}

#checkoutflowgrid .dd-selected {
    width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
}

#checkoutflowgrid #usstatessselect ul, #checkoutflowgrid #billingusstatessselect ul {
    height: 200px;
}

#checkoutflowgrid #usstatecontainer, #checkoutflowgrid #billingusstatecontainer {
    margin-top: 3px;
}

#checkoutshipgrid .shiptype {
    float: left;
    padding: 0 20px;
    width: 120px;
    line-height: 40px;
    border-right: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
}

#checkoutshipgrid .shipdetail {
    float: left;
    padding: 0 20px;
    width: 450px;
    line-height: 40px;
    border-right: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
}

#checkoutshipgrid .shipradio {
    float: left;
    padding: 10px 20px 9px 20px;
    width: 45px;
    border-right: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
    text-align: center;
}

#checkoutshipgrid .shipprice {
    float: left;
    padding: 0 20px;
    width: 58px;
    line-height: 40px;
    border-right: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
}

#checkoutshipgrid .shipprice {
    text-align: right;
}

#checkoutshipgrid .firstrow {
    border-top: 1px solid #d7d7d7;
}

#checkoutshipgrid .firstcol {
    border-left: 1px solid #d7d7d7;
    color: #7d7d7d;
    text-transform: uppercase;
}

#usebillasship span {
    margin-left: 20px;
}

/* table update */
#shiptypetable {
    table-layout: fixed;
    width: 100%;
}

#shiptypetable .shiptype {
    width: 174px;
    color: #7d7d7d;
    text-transform: uppercase;
}

#shiptypetable .shipdetail {
    width: 401px;
}

#shiptypetable .shipradio {
    width: 69px;
    text-align: center;
}

#shiptypetable .shipprice {
    text-align: right;
}

#billingAddressFormContainer {
    margin-bottom: 50px;
}

/* Edit Create update */
#checkoutflowgrid .youraddresseditcreate {
    float: left;
    margin-left: 20px;
}

#checkoutflowgrid .editaddressbutton {
    display: inline-block;
    width: 100px;
    margin-left: 10px;
    font-family: 'MyriadBoldCond';
    font-size: 15px;
    text-transform: uppercase;
    background-color: #f1f1f1;
    color: #7d7d7d;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

#checkoutflowgrid .editaddressbutton.createnew {
    width: 100px;
    background-color: #000000;
    color: #ffffff;
}

#checkoutflowgrid .editaddressbutton:hover {
    background-color: #eaeaea;
    color: #7d7d7d;
}

#checkoutflowgrid .editaddressbutton.createnew:hover {
    background-color: #b1b1b1;
    color: #fff;
}

/* Checkout Step 2 Error */
#checkoutaddresserror {
    position: absolute;
    width: 665px;
    height: 275px;
    z-index: 21000;
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 2px 2px 7px #b1b1b1;
    left: 50%;
    top: 420px;
    font-family: 'MyriadCond';
    font-size: 16px;
    margin-left: -362px;
}

#checkoutaddresserror .errortitle {
    font-family: 'MyriadLightCondBold';
    font-size: 20px;
    text-transform: uppercase;
}

#checkoutaddresserror .correction {
    color: #fe0000;
    font-family: 'MyriadLightCondBold';
}

#checkoutaddresserror .nextsection {
    margin-top: 30px;
}

#checkoutaddresserror .nextrow {
    margin-top: 20px;
}

#checkoutaddresserror .divider {
    border-bottom: 1px solid #b1b1b1;
}

#checkoutaddresserror .instructions {
    color: #7d7d7d;
    font-size: 17px;
}

#checkoutaddresserror .addressname {
    float: left;
    width: 175px;
    font-size: 15px;
}

#checkoutaddresserror .addressoption {
    float: left;
    width: 425px;
    font-size: 15px;
    color: #7d7d7d;
    overflow: hidden;
    text-overflow: ellipsis;
}

#checkoutaddresserror .addressoption label {
    margin-left: 5px;
}

#checkoutaddresserror .addresserrorbutton {
    display: inline-block;
    width: 140px;
    font-family: 'MyriadCond';
    font-size: 16px;
    text-transform: uppercase;
    background-color: #000000;
    color: #ffffff;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

#checkoutaddresserror .addresserrorbutton:hover {
    background-color: #b1b1b1;
    color: #ffffff;
}

#checkoutaddresserror .addresserrorbutton.grey {
    background-color: #b1b1b1;
    color: #ffffff;
}

#checkoutaddresserror .addresserrorbutton.grey:hover {
    background-color: #eaeaea;
    color: #7d7d7d;
}

#checkoutaddresserror .addresserrorbutton.shipto {
    width: 190px !important;
}

/*
#whiteoutbg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3000px;
    z-index: 20000;
    background: rgba(255, 255, 255, 0.8) url('../images/transparent_white-box.png') repeat fixed center;
}
*/
/* Checkout Step 3 */
#checkoutflowgrid table, #checkoutflowgrid th, #checkoutflowgrid td {
    border: 1px solid #d7d7d7;
    padding: 10px 15px;
    text-align: left;
    vertical-align: top;
}

#ordersummarytable, #shippingtypetable, #shipbilladdresstable, #commonaddresstable, #paymenttable {
    table-layout: fixed;
    width: 100%;
}

#ordersummarytable th, #shipbilladdresstable th, #commonaddresstable th, #paymenttable th {
    color: #7d7d7d;
    text-transform: uppercase;
    font-weight: normal;
}

#ordersummarytable .product {
    width: 70px;
}

#ordersummarytable .description {
    width: 290px;
}

#ordersummarytable .options {
    width: 250px;
}

#ordersummarytable .amount {
    text-align: right;
}

#ordersummarytable .group {
    margin-top: 10px;
}

#ordersummarytable .totalforproduct {
    font-size: 19px;
}

#ordersummarytable .totalwithoptions {
    margin-top: 25px;
}

#ordersummarytable .subamount {
    color: #7d7d7d;
}

#ordersummarytable .options p, #ordersummarytable .amount p {
    margin-top: 10px;
}

#ordersummarytable td.grandtotals {
    text-align: right;
    background-color: #f8f8f8;
    border: none;
}

#ordersummarytable .totalcost {
    font-size: 28px;
    text-transform: uppercase;
}

#checkoutflowgrid .editbutton {
    display: inline-block;
    width: 140px;
    font-family: 'MyriadBoldCond';
    font-size: 15px;
    text-transform: uppercase;
    background-color: #b1b1b1;
    color: #fff;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

#checkoutflowgrid .editbutton:hover {
    background-color: #000;
    color: #fff;
}

#shippingtypetable .shippingtype {
    width: 185px;
    color: #7d7d7d;
    text-transform: uppercase;
}

#shippingtypetable .shippingdesc {
    width: 515px;
}

#shippingtypetable .shippingcheckmark {
    text-align: center;
}

#shipbilladdresstable .addresses, #commonaddresstable .col1 {
    width: 610px;
}

#shipbilladdresstable .billingcheck, #commonaddresstable .col2 {
    width: 70px;
    text-align: center;
}

#shipbilladdresstable .shippingcheck, #commonaddresstable .col3 {
    text-align: center;
}

#paymenttable .cardtype {
    width: 150px;
    text-align: left;
}

#paymenttable .cardnumber {
    width: 500px;
    text-align: left;
}

#paymenttable .cardexpiry {
    text-align: left;
}

/* Checkout Step 4 */
#checkoutflowgrid .paycardwrapper {
    width: 53px;
    text-align: center;
    display: inline-block;
}

/* Checkout Step 5 */
#checkoutflowgrid .createbutton, #checkoutflowgrid .continueshoppingbutton {
    width: 180px !important;
}

#checkoutflowgrid .shareonfbcontainer {
    background-color: #f8f8f8;
    width: 781px;
    padding: 20px 30px;
    color: #000000;
}

#checkoutflowgrid .shareonfbcontainer div:first-child {
    margin-right: 20px;
}

#checkoutflowgrid .thankyoucontainer {
    width: 801px;
    background-color: #f8f8f8;
    padding: 20px 20px;
    color: #000000;
}

#checkoutrelateditems .heading {
    font-family: 'MyriadLightCondBold';
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/*
.formfielderror {
    background: #fff8f8 url('../images/login_error_x.png') no-repeat scroll 97% center;
    border: 1px solid #ff5252;
}
*/
.pageerrorbox {
    background-color: #fff8f8;
    border: 1px solid #ff5252;
    width: 924px;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.pageerrorbox h2 {
    font-size: 18px;
}

.pageerrorbox p {
    color: #7d7d7d;
}

#errormessages li {
    font-size: 16px;
    font-family: 'MyriadCond';
    color: #7D7D7D;
    display: block;
}

/* login */
/*
#logincontainer .terms span.divider {
    margin: 0 10px;
}

#logincontainer .bottomlink {
    color: #7d7d7d;
}

#logincontainer .loginerror {
    background: #fff8f8 url('../images/login_error_x.png') no-repeat scroll 97% center;
    border: 1px solid #ff5252;
}

#logincontainer .loginerrorbox {
    background-color: #fff8f8;
    border: 1px solid #ff5252;
    width: 95%;
    padding: 10px 20px;
    margin-bottom: 20px;
}

#logincontainer .loginerrorbox h2 {
    font-size: 18px;
}

#logincontainer .loginerrorbox p {
    color: #7d7d7d;
}
*/
/* General text field Validation Error */
/*
.textfielderror {
    background: #fff8f8 url('../images/login_error_x.png') no-repeat scroll 97% center !important;
    border: 1px solid #ff5252 !important;
}
*/
/* Register */
.registerwrapper {
    width: 964px !important;
    margin: 0 auto;
    font-family: 'MyriadCond';
    font-size: 16px;
}

.registerwrapper h1 {
    margin: 0;
    padding: 0;
    text-indent: 0;
    line-height: 40px;
    font: normal 40px 'MyriadLightCondBold';
}

.registerwrapper h2 {
    font-size: 18px;
    font-weight: normal;
    font-family: 'MyriadLightCondBold';
}

#registercontainer {
    margin-bottom: 30px;
}

#registercontainer .leftfields {
    width: 450px;
    display: inline-block;
    padding-right: 60px;
}

#registercontainer .leftfloatfields {
    width: 390px;
    float: left;
    padding-right: 60px;
    height: 70px;
}

#registercontainer .rightfields {
    display: inline-block;
    width: 449px;
}

#registercontainer .nextrow {
    margin-top: 20px;
}

#registercontainer .nextsmallrow {
    margin-top: 10px;
}

#registercontainer .nextsection {
    margin-top: 45px;
}

#registercontainer .registertextbox {
    width: 400px;
    height: 40px;
    border: 1px solid #b1b1b1;
    padding-left: 10px;
    padding-right: 10px;
    color: #7d7d7d;
    font-family: MyriadCond;
    font-size: 16px;
}

#registercontainer .disabledtextbox {
    background-color: #FAFAFA;
    cursor: default;
    border: none;
}

#registercontainer #registergendercontainer {
    margin-top: 3px;
}

#registercontainer .dd-select, #registercontainer .dd-options {
    color: #7d7d7d;
    border-color: #b1b1b1
}

#registercontainer .createaccountbutton {
    display: inline-block;
    width: 235px;
    font-family: 'MyriadBoldCond';
    font-size: 15px;
    text-transform: uppercase;
    background-color: #000000;
    color: #fff;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

#registercontainer .createaccountbutton.cancel {
    background-color: #f1f1f1;
    color: #7d7d7d;
    width: 150px !important;
    margin-right: 10px;
}

#registercontainer .createaccountbutton:hover {
    background-color: #b1b1b1;
    color: #fff;
}

#registercontainer .createaccountbutton.cancel:hover {
    background-color: #eaeaea;
    color: #7d7d7d;
}

#registerusstatessselect ul {
    height: 200px;
}

#registercontainer .readonlytextbox {
    border: none;
}

/* My Account */
#myaccountcontainer {
    margin-bottom: 40px;
}

#myaccountcontainer .tablabel {
    width: 160px;
    height: 70px;
    float: left;
    text-align: center;
    line-height: 69px;
    background-color: #f8f8f8;
    color: #7d7d7d;
    text-transform: uppercase;
    font-family: MyriadCond;
    font-size: 17px;
    border-top: 1px solid #b1b1b1;
    border-right: 1px solid #b1b1b1;
    border-bottom: 1px solid #b1b1b1;
}

#myaccountcontainer .tablabel:first-child {
    border-left: 1px solid #b1b1b1;
    margin-left: 0;
}

#myaccountcontainer .tablabel.activetab {
    height: 71px !important;
    background-color: #ffffff !important;
    border-bottom: none !important;
}

#myaccountcontainer .tablabelfiller {
    width: 480px;
    height: 71px;
    float: left;
    border-bottom: 1px solid #b1b1b1;
}

#myaccountcontainer .tablabel:hover {
    text-decoration: underline;
    cursor: pointer;
}

#myaccountcontainer #tabcontentcontainer {
    width: 962px;
    min-height: 400px;
    border-left: 1px solid #b1b1b1;
    border-right: 1px solid #b1b1b1;
    border-bottom: 1px solid #b1b1b1;
}

#myaccountcontainer .tablabel a {
    text-decoration: none;
    color: #7d7d7d;
}

#myaccountcontainer #tabcontent {
    width: 840px;
    padding: 30px 60px;
}

#myaccountcontainer .tabcontent {
    width: 840px;
    padding: 30px 60px;
}

#myaccountcontainer h2 {
    font-size: 20px;
    font-weight: normal;
}

#myaccountcontainer .nextrow {
    margin-top: 20px;
}

#myaccountcontainer .nextsmallrow {
    margin-top: 10px;
}

#myaccountcontainer .nextsection {
    margin-top: 30px;
}

#myaccountcontainer .myinfodetailbox {
    width: 799px;
    padding: 15px 20px;
    border: 1px solid #b1b1b1;
    background-color: #f8f8f8;
    min-height: 200px;
    font-size: 14px;
    color: #7d7d7d;
}

#myaccountcontainer .detailname {
    width: 170px;
    display: inline-block;
}

#myaccountcontainer .detailvalue {
    display: inline-block;
}

#myaccountcontainer .editdetailbutton {
    display: inline-block;
    width: 140px;
    font-family: 'MyriadBoldCond';
    font-size: 15px;
    text-transform: uppercase;
    background-color: #b1b1b1;
    color: #fff;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

#myaccountcontainer .editdetailbutton:hover {
    background-color: #000;
    color: #fff;
}

#myaccountcontainer table, #myaccountcontainer th, #myaccountcontainer td,
#myaccountcontainer_shipping table, #myaccountcontainer_shipping th, #myaccountcontainer_shipping td {
    border: 1px solid #d7d7d7;
    padding: 10px 15px;
    text-align: left;
    vertical-align: top;
}

#myaccountcontainer #myaccountcontainer_shipping {
    margin-top: 0;
}

#registercontainer #myaccountcontainer_shipping #shiptypetable {
    width: 91%;
}

#addressbooktable {
    table-layout: fixed;
    width: 100%;
}

#addressbooktable tr:first-child {
    background-color: #f8f8f8;
}

#myaccountcontainer #commonaddresstable tr:first-child {
    background-color: #f8f8f8;
}

#myaccountcontainer table a {
    color: #7d7d7d;
    text-decoration: underline;
}

#myaccountcontainer table a:hover {
    color: #000000;
}

#addressbooktable .addresses {
    width: 610px;
}

#addressbooktable .edditaddress {
    width: 70px;
    text-align: center;
}

#addressbooktable .deleteaddress {
    text-align: center;
}

#myaccountcontainer .addnewaddressbutton {
    display: inline-block;
    width: 160px;
    font-family: 'MyriadBoldCond';
    font-size: 15px;
    text-transform: uppercase;
    background-color: #b1b1b1;
    color: #fff;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

#myaccountcontainer .addnewaddressbutton:hover {
    background-color: #000;
    color: #fff;
}

#myaccountcontainer .createaccountbutton {
    display: inline-block;
    width: 235px;
    font-family: 'MyriadBoldCond';
    font-size: 15px;
    text-transform: uppercase;
    background-color: #000000;
    color: #fff;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

#myaccountcontainer .createaccountbutton.cancel {
    background-color: #f1f1f1;
    color: #7d7d7d;
    width: 150px !important;
    margin-right: 10px;
}

#myaccountcontainer .createaccountbutton:hover {
    background-color: #b1b1b1;
    color: #fff;
}

#myaccountcontainer .createaccountbutton.cancel:hover {
    background-color: #eaeaea;
    color: #7d7d7d;
}

#myaccountcontainer .updateshippingbutton {
    display: inline-block;
    width: 140px;
    font-family: 'MyriadBoldCond';
    font-size: 15px;
    text-transform: uppercase;
    background-color: #b1b1b1;
    color: #fff;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

#myaccountcontainer .updateshippingbutton:hover {
    background-color: #000;
    color: #fff;
}

/* My Account My Profile */
#myaccountcontainer .leftfields {
    width: 390px;
    display: inline-block;
    padding-right: 57px;
}

#myaccountcontainer .leftfloatfields {
    width: 390px;
    float: left;
    padding-right: 60px;
}

#myaccountcontainer .rightfields {
    display: inline-block;
    width: 389px;
}

#myaccountcontainer .indentsmall {
    margin-right: 10px;
}

#myaccountcontainer .myprofiletextbox {
    width: 368px;
    height: 40px;
    border: 1px solid #b1b1b1;
    padding-left: 10px;
    padding-right: 10px;
    color: #7d7d7d;
    font-family: MyriadCond;
    font-size: 16px;
}

#myaccountcontainer #profilegendercontainer {
    margin-top: 3px;
}

#myaccountcontainer .dd-select, #registercontainer .dd-options {
    color: #7d7d7d;
    border-color: #b1b1b1
}

#myaccountcontainer .validatebutton {
    display: inline-block;
    width: 140px;
    font-family: 'MyriadBoldCond';
    font-size: 15px;
    text-transform: uppercase;
    background-color: #000000;
    color: #fff;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

#myaccountcontainer .validatebutton:hover {
    background-color: #b1b1b1;
    color: #fff;
}

#myaccountcontainer .validatebutton.cancel {
    background-color: #b1b1b1;
}

#myaccountcontainer .validatebutton.cancel:hover {
    background-color: #000000;
}

/* My Account Order History */
#recentordersgrid table, #recentordersgrid th, #recentordersgrid td {
    border: none;
    color: #7d7d7d;
    font-size: 15px;
}

#recentordersgrid table {
    table-layout: fixed;
    width: 100%;
}

#recentordersgrid th {
    color: #7d7d7d;
    text-transform: uppercase;
    font-weight: normal;
}

#recentordersgrid td a {
    color: #7d7d7d;
    text-decoration: underline;
    font-size: 15px;
}

#recentordersgrid tr:nth-child(even) {
    background-color: #f8f8f8;
}

#recentorders .orderno {
    width: 110px;
}

#recentorders .orderdate {
    width: 120px;
}

#recentorders .orderstatus {
    width: 200px
}

#recentorders .orderdateshipped {
    width: 195px;
}

#recentorders .orderdetails {
    width: 65px;
}

#myaccountcontainer .viewallordersbutton {
    display: inline-block;
    width: 70px;
    font-family: 'MyriadBoldCond';
    font-size: 15px;
    text-transform: uppercase;
    background-color: #b1b1b1;
    color: #fff;
    padding: 3px 0 3px 0;
    text-align: center;
    text-decoration: none;
}

#myaccountcontainer .viewallordersbutton:hover {
    background-color: #000;
    color: #fff;
}

#returnscontainer {
    color: #7d7d7d;
    font-size: 15px;
}

#returnscontainer a {
    color: #7d7d7d;
    text-decoration: underline;
}

#returnscontainer .returndescription {
    width: 715px;
    display: inline-block;
    line-height: 30px;
    padding: 0 15px;
}

#returnscontainer .returnview {
    width: 30px;
    display: inline-block;
    line-height: 30px;
    padding: 0 15px;
}

#returnscontainer .returnrow {
    width: 840px;
}

#returnscontainer div.returnrow:nth-child(odd) {
    background-color: #f8f8f8;
}

#checkoutflowgrid.orderhistorydetail {
    border: none !important;
    margin: 0 !important;
    padding: 30px !important;
}

#emailordersummary {
    margin-right: 20px;
}

/* My Account Your News */
#yournews.yournewswrapper {
    width: 775px;
    margin: 0 auto;
}

#subtext.fineprint {
    text-align: center;
    font-size: 13px;
    color: #7d7d7d;
}

#subtext.fineprint a {
    color: #7d7d7d;
    text-decoration: underline;
}

#subtext.fineprint a:hover {
    color: #000;
}

/* Wishlist */
/*
.wishlistwrapper {
    width: 964px !important;
    margin: 0 auto;
    font-family: 'MyriadCond';
    font-size: 16px;
}

.wishlistwrapper .wishlistbutton {
    display: inline-block;
    width: 140px;
    font-family: 'MyriadCond';
    font-size: 16px;
    text-transform: uppercase;
    background-color: #000000;
    color: #ffffff;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

.wishlistwrapper .wishlistbutton:hover {
    background-color: #b1b1b1;
    color: #ffffff;
}

.wishlistwrapper .wishlistbutton.grey {
    background-color: #b1b1b1;
    color: #ffffff;
}

.wishlistwrapper .wishlistbutton.grey:hover {
    background-color: #eaeaea;
    color: #7d7d7d;
}

.wishlistwrapper .wishlistcontainer {
    position: relative;
    padding: 60px 0;
    border-bottom: 1px solid #b1b1b1;
}

.wishlistwrapper .wishlistcontainer.noitems {
    border-bottom: none !important;
}

.wishlistwrapper .wishlistname {
    font-family: 'MyriadLightCondBold';
    font-size: 20px;
    text-transform: uppercase;
}

.wishlistwrapper .sharing {
    position: absolute;
    right: 0;
    top: 60px;
    width: 136px;
    height: 20px;
    z-index: 1000;
}

.wishlistwrapper .sharing a {
    margin-left: 15px;
}

.wishlistwrapper .sharing a:first-child {
    margin-left: 0;
}

.wishlistwrapper .sharing a img:hover {
    box-shadow: 0 0 5px #b1b1b1;
}

.wishlistwrapper .sharing-overlay {
    display: none;
    right: 0;
    top: 10px;
    width: 84px;
    height: 125px;
    background: #ffffff url('../images/icon18-overlay.png') no-repeat right top;
}

.wishlistwrapper .sharing-overlay-wrapper {
    position: absolute;
    top: 40px;
    width: 70px;
    height: 100px;
    margin-left: 10px;
}

.wishlistwrapper .fb {
    margin-left: -33px !important;
}

.wishlistwrapper .pnt {
    margin-left: 1px !important;
}

.wishlistwrapper .eml {
    margin-left: 40px !important;
}

.wishlistwrapper .pls {
    margin-left: 77px !important;
}

.wishlistcontainer .wishlistentry {
    position: relative;
    float: left;
    width: 418px;
    height: 120px;
    border: 1px solid #b1b1b1;
    padding: 20px;
    margin-top: 20px;
}

.wishlistcontainer .wishlistentry div.productimage {
    float: left;
    width: 110px;
    height: 118px;
    text-align: center;
}

.wishlistcontainer .wishlistentry div.productdesc {
    float: left;
    width: 290px;
}

.wishlistcontainer .wishlistentry p {
    margin-top: 5px;
}

.wishlistcontainer .wishlistentry .productname, .wishlistwrapper .wishlistentry .productprice {
    font-family: 'MyriadLightCondBold';
    font-size: 18px;
    text-transform: uppercase;
}

.wishlistcontainer .wishlistentry .productname a {
    color: inherit;
}

.wishlistcontainer .wishlistentry .addcart {
    color: #7d7d7d;
    margin-top: 10px;
    font-size: 15px;
}

.wishlistcontainer .wishlistentry .addcart:hover {
    color: #000000;
}

.wishlistcontainer .wishlistrow .wishlistentry:first-child {
    margin-right: 40px;
}

.wishlistcontainer .wishlistentry .wishlistentryclose {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.wishlistcontainer .wishlistactionrow {
    margin-top: 10px;
}

.wishlistcontainer .noitemcontainer {
    width: 964px;
    height: 50px;
    padding: 50px 0;
}

.wishlistcontainer .noitementry {
    width: 290px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    margin: 0 auto;
    border: 1px solid #b1b1b1;
    text-align: center;
}

.wishlistwrapper .bottombanner {
    margin-bottom: 60px;
}
*/
/* Add New/Edit Wishlist */
#wishlistaddnewcontainer, #wishlisteditcontainer {
    position: fixed;
    width: 615px;
    height: 185px;
    z-index: 5000;
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 2px 2px 7px #b1b1b1;
    left: 25%;
    font-family: 'MyriadCond';
    font-size: 17px;
}

.wishlistaddedit .wishlistaction {
    font-family: 'MyriadLightCondBold';
    font-size: 20px;
    text-transform: uppercase;
}

.wishlistaddedit .wishlistaction span {
    margin-left: 5px;
    color: #7d7d7d;
    text-transform: none;
}

.wishlistaddedit .nextsection {
    margin-top: 30px;
}

.wishlistaddedit .nextrow {
    margin-top: 20px;
}

.wishlistaddedit .wishlisttextbox {
    width: 585px;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    color: #7d7d7d;
    border: 1px solid #b1b1b1;
    font-family: 'MyriadCond';
    font-size: 16px;
}

.wishlistaddedit .wishlistbutton {
    display: inline-block;
    width: 140px;
    font-family: 'MyriadCond';
    font-size: 16px;
    text-transform: uppercase;
    background-color: #000000;
    color: #ffffff;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

.wishlistaddedit .wishlistbutton:hover {
    background-color: #b1b1b1;
    color: #ffffff;
}

.wishlistaddedit .wishlistbutton.grey {
    background-color: #b1b1b1;
    color: #ffffff;
}

.wishlistaddedit .wishlistbutton.grey:hover {
    background-color: #eaeaea;
    color: #7d7d7d;
}

.wishlistaddedit .wishlistbutton.create {
    width: 190px !important;
}

/* Pen and Inks Collection */
#collectionstop {
    max-width: 1024px;
    margin: 0 auto 20px;
    /*height: 65px;*/
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
}

#collectionstop h1 {
    color: #000000;
    font-size: 38px; /*font-family: 'myriad_procondensed'; font-weight: bold; */
    padding-top: 18px;
    border-bottom: 1px solid #e6e6e6;
}

#collectionstop h2 a {
    color: #000000;
    float: right;
    font-size: 17px;
    font-family: 'MyriadLightCondBold';
    padding-top: 33px;
    text-transform: uppercase;
}

#collectionstop h2 a:hover {
    color: #b1b1b1;
}

#collectionspanel {
    /*height: 406px;*/
    position: relative;
    width: 100%;
    background: url("/i/collections_background.png") no-repeat scroll center top;
    background-size: cover;
}

#collectionspanel .shade {
    margin-top: -2px;
}


#collectionspanel.mirrow {
    background: url("/i/collections_background_mirrow.png") repeat-x scroll center top;
}

#carouselCollection {
    /*height: 376px;*/
    margin: 0 auto;
    max-width: 1020px;
    /*overflow: hidden*/
}

#carouselCollection .carousel-frame {
    width: 100%;
}

/*
#fondCarouCollection .shade {
    width: 1260px;
    height: 70px;
    position: absolute;
    bottom: 0;
    z-index: 10;
    background: url(../img/carrousel-collection/bottomshade.png) no-repeat center top;
    left: 50%;
    margin-left: -630px;
}
*/
/* carrousel pens */
#carouselCollection #pens {
    /*padding-left: 2px;*/
    /*padding-right: 2px;*/
    max-width: 1020px;
    box-sizing: border-box;
    /*float: left;*/
    /*white-space: nowrap;*/
    text-align: center;

    -moz-display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    display: flex;
    -moz-align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

}

#carouselCollection #pens li {
    width: 150px;
    height: 376px;
    position: relative;
    overflow: hidden;
    display: block;
}

#carouselCollection #pens li a {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: flex-start;
}

#carouselCollection #pens li img {
    display: inline-block;
    max-width: none;
}

#carouselCollection #pens li div.name {
    position: absolute;
    color: #7d7d7d;
    font-family: 'myriad_procondensed';
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    top: 330px;
}

#carouselCollection #pens li span.from {
    text-transform: none;
    color: #000000;
    font-size: 16px;
}

/* carrousel writing types */
#carouselCollection #writingmodes {
    padding-left: 2px;
    padding-right: 2px;
    width: 1020px;
    float: left;
}

#carouselCollection #writingmodes li {
    width: 204px;
    height: 376px;
    position: relative;
    display: inline-block;
}

#carouselCollection #writingmodes li img {
    float: left;
}

#carouselCollection #writingmodes li div.name {
    position: absolute;
    color: #7d7d7d;
    font-family: 'myriad_procondensed';
    font-size: 14px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    top: 330px;
}

#carouselCollection #writingmodes li span.from {
    text-transform: none;
    color: #000000;
    font-size: 16px;
}

/* carrousel inks */
#carouselCollection #inks {
    padding-left: 2px;
    padding-right: 2px;
    max-width: 1020px;

    -moz-display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    display: flex;
    -moz-align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

}

#carouselCollection #inks li {
    width: 250px;
    height: 376px;
    position: relative;
    display: inline-block;
}

#carouselCollection #inks li img {
    float: left;
}

#carouselCollection #inks li div.name {
    position: absolute;
    color: #7d7d7d;
    font-family: 'myriad_procondensed';
    font-size: 14px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    top: 330px;
}

#carouselCollection #inks li span.from {
    text-transform: none;
    color: #000000;
    font-size: 16px;
}

#carouselCollection .super {
    font-size: 8px;
    vertical-align: 40%;
}

/* nav */
#carouselCollection .carousel-pagination {
    width: 60px;
    height: 20px;
    position: absolute;
    bottom: 0;
    z-index: 11;
    left: 50%;
    margin-left: -24px;
}

#carouselCollection .carousel-pagination li {
    width: 16px;
    height: 16px;
    background: url(/i/carrousel_puce.png) no-repeat left top;
    cursor: pointer;
    display: inline-block;
}

#carouselCollection .carousel-pagination li:first-child {
    margin-right: 6px;
}

#carouselCollection .carousel-pagination li:last-child {
    margin-left: 6px;
}

#carouselCollection .carousel-pagination li:hover, #carouselCollection .carousel-pagination li.carousel-pagination-active {
    background-position: left bottom;
}

/* switch */
#carouselswitch {
    width: 1024px;
    height: 92px;
    margin: 0 auto;
    position: relative;
}

#carouselswitch ul.holder {
    width: 326px;
    height: 50px;
    position: absolute;
    top: 21px;
    left: 50%;
    margin-left: -163px;
}

#carouselswitch ul.holder li.switchbtn {
    width: 96px;
    height: 12px;
    border: 1px solid #eee;
    background: #eee none;
    font: normal 15px/13px 'MyriadLightCondBold';
    color: #000;
    text-transform: uppercase;
    float: left;
    cursor: pointer;
    text-align: center;
    padding: 18px 0;
}

#carouselswitch ul.holder li.switchbtn:first-child {
    margin-right: 16px;
    padding: 18px 0;
    height: 12px;
}

#carouselswitch ul.holder li.switchbtn:last-child {
    margin-left: 16px;
    padding: 18px 0;
    height: 12px;
}

#carouselswitch ul.holder li.switchbtn.hover, #carouselswitch ul.holder li.switchbtn:hover {
    border: 1px solid #d6d6d6;
}

/* Pen Chooser Launcher */
#penchooserlauncher {
    display: block;
    width: 964px;
    height: 110px;
    margin: 0 auto 50px auto;
    background-color: #000000;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'MyriadBoldCond';
    font-size: 30px;
    line-height: 110px;
    text-align: center;
}

#penchooserlauncher:hover {
    background-color: #b1b1b1;
}

/* Sonnet Collection */

#collectionspanel .collectionfgimage {
    position: absolute;
    left: 40px;
    top: -40px;
}

#collectionspanel .collectionpanelwrapper {
    width: 964px;
    margin: 0 auto;
    position: relative;
}

#collectionspanel .collectioncontent {
    width: 470px;
    float: right;
    margin: 80px 0 0 0;
    color: #4b4b4b;
    font-family: 'MyriadLightSemiCond';
    font-size: 18px;
    text-align: right;
}

#collectionspanel .collectioncontent h1 {
    font-size: 48px;
    font-family: 'MyriadLightSemiCond';
    line-height: 40px;
}

#collectionspanel .collectioncontent p {
    margin-top: 20px;
    font-size: 16px;
}

#collectionspanel .buynow {
    display: inline-block;
    width: 65px;
    height: 30px;
    line-height: 30px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    font-family: 'MyriadLightCondBold';
    font-size: 17px;
    text-transform: uppercase;
}

#collectionspanel .buynow:hover {
    background-color: #b1b1b1;
    color: #FFFFFF;
}

#carouselbuttons {
    width: 1024px;
    height: 92px;
    margin: 0 auto;
    position: relative;
}

#carouselbuttons ul.holder {
    width: 401px;
    height: 116px;
    position: absolute;
    top: 21px;
    left: 50%;
    margin-left: -163px;
}

#carouselbuttons ul.holder li.switchbtn {
    width: 121px;
    height: 90px;
    margin-left: 16px;
    font: normal 15px 'MyriadLightCondBold';
    color: #7d7d7d;
    float: left;
    cursor: pointer;
    text-align: center;
    padding-bottom: 12px;
}

#carouselbuttons ul.holder li.switchbtn:first-child {
    margin-left: 0;
}

#carouselbuttons ul.holder li.switchbtn:hover {
    color: #000000;
}

#collectioninfo, #espot480container {
    width: 964px;
    margin: 0 auto 50px auto;
    border-top: 1px solid #eaeaea;
}

/* espot480 */
/*
.espot480 {
    width: 450px;
    height: 527px;
    background: url(../images/content/espot480bg.png) no-repeat left bottom;
}

.espot480.bgnone {
    background: none;
}

.espot480.noheight {
    height: auto !important;
}

.espot480 h1 {
    text-align: center;
    text-transform: uppercase;
    font-family: 'MyriadCond';
    font-size: 19px;
    margin-top: 30px;
}

.espot480 h2 {
    text-align: center;
    font-family: 'MyriadCond';
    font-size: 16px;
    margin-top: 5px;
}

.espot480 h3 {
    text-align: left;
    font-family: 'MyriadCond';
    font-size: 16px;
}

.espot480 p {
    width: 300px;
    margin: 30px auto;
    text-align: center;
    color: #000000;
    font-family: 'MyriadCond';
    font-size: 15px;
}

.espot480 ul, .espot480 li {
    list-style-type: square;
    color: #7d7d7d;
    font-family: 'MyriadCond';
    font-size: 15px;
    margin-top: 10px;
}

.espot480 li {
    display: list-item;
    margin-left: 15px;
}

.espot480divider {
    height: 527px;
    width: 1px;
    border-left: 1px solid #eaeaea;
    margin: 0 30px;
}

.espot480divider.noheight {
    height: auto !important;
    min-height: 250px;
}
*/
/*
#writingtypes {
    width: 964px;
    margin: 20px auto;
}

#writingtypes .heading {
    font-family: 'MyriadLightCondBold';
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#writingtypes .wtfountainpen {
    background: url(../images/sonnet_writing_type_fountain.png) no-repeat right top;
}

#writingtypes .wtrollerball {
    background: url(../images/sonnet_writing_type_roller.png) no-repeat right top;
}

#writingtypes .wtballpoint {
    background: url(../images/sonnet_writing_type_ball.png) no-repeat right top;
}
*/
/* box281 */
.box281 {
    width: 281px;
    height: 165px;
    float: left;
    margin-left: 45px;
}

.box281:first-child {
    margin-left: 0;
}

.box281 .contentarea {
    width: 150px;
}

.box281 h2 {
    font-family: 'MyriadLightCondBold';
    font-weight: normal;
    font-size: 18px;
}

.box281 p {
    font-family: 'MyriadCond';
    font-size: 15px;
    color: #000000;
}

.box281 .viewall {
    display: inline-block;
    width: 65px;
    height: 30px;
    line-height: 30px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    font-family: 'MyriadLightCondBold';
    font-size: 17px;
    text-transform: uppercase;
}

.box281 .viewall:hover {
    background-color: #b1b1b1;
    color: #FFFFFF;
}

/* Collection Overlay Image */
/*
#greyoutbg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3000px;
    z-index: 20000;
    background: rgba(0, 0, 0, 0.8) url('../images/transparent_black-box.png') repeat fixed center;
}
*/
#beautyshot.collectionoverlaycontainer, #interview.collectionoverlaycontainer {
    position: absolute;
    width: 964px;
    height: 600px;
    z-index: 21000;
    top: -50px;
    color: #ffffff;
}

.collectionoverlaycontainer h1 {
    color: #ffffff;
    float: left;
    font-size: 35px;
    font-family: 'MyriadLightCondBold';
    font-weight: normal;
}

.collectionoverlaycontainer h1 span {
    margin-left: 20px;
    font-size: 20px;
}

.collectionoverlaycontainer h2 a {
    color: #ffffff;
    float: right;
    font-size: 17px;
    font-family: 'MyriadLightCondBold';
    font-weight: normal;
    padding-top: 15px;
    text-transform: uppercase;
}

.collectionoverlaycontainer h2 a:hover {
    color: #b1b1b1;
    opacity: .5;
}

.collectionoverlaycontainer h2 a span {
    margin-left: 10px;
}

.collectionoverlaycontainer .photocontainer img, .collectionoverlaycontainer .videocontainer img {
    border: 1px solid #000000;
}

/*Collection For Parker 5th */
#inkcollectionstop {
    width: 964px;
    margin: 0 auto;
    height: 65px;
}

#inkcollectionstop h1 {
    color: #000000;
    float: left;
    font-size: 35px;
    font-family: 'MyriadLightCondBold';
}

#inkcollectionstop span.diptext {
    position: relative;
    top: 5px;
}

#inkcollectionstop .buynow {
    display: inline-block;
    width: 65px;
    height: 30px;
    line-height: 30px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    font-family: 'MyriadLightCondBold';
    font-size: 17px;
    text-transform: uppercase;
}

#inkcollectionstop .buynow:hover {
    background-color: #b1b1b1;
    color: #FFFFFF;
}

/*
#inkcollectionscontainer .inkcollectionswrapper {
    position: relative;
    width: 964px;
    height: 465px;
    text-align: center;
    margin: 0 auto;
    background: url(../images/parker5th_logo.png) no-repeat 97% 82%;
}

#inkcollectionscontainer .inkcollectionswrapper .inkimage940 {
    position: absolute;
    top: 250px;
}

#inkcollectionscontainer .inkcollectionswrapper h1 {
    font-weight: normal;
    font-style: italic;
    font-size: 68px;
    font-family: 'MyriadLightSemiCond';
    color: #666666;
}

#inkcollectionscontainer .inkcollectionswrapper h2 {
    font-weight: normal;
    font-size: 26px;
    font-family: 'MyriadCond';
    color: #000000;
    margin-top: 22px;
}

#inkcollectionscontainer .inkcollectionswrapper p {
    font-size: 18px;
    font-family: 'MyriadCond';
    color: #666666;
    margin-top: 20px;
}

#penfinderlauncher {
    display: block;
    width: 794px;
    padding-left: 170px;
    height: 110px;
    margin: 0 auto 50px auto;
    background: #000000 url(../images/pen_finder_logo.png) no-repeat 50px 20px;
    color: #ffffff;
    font-family: 'MyriadSemiCondBold';
    font-size: 18px;
    line-height: 110px;
}

#penfinderlauncher:hover {
    opacity: .5;
}
*/
/* Store Locator */
.storelocatorwrapper {
    width: 964px !important;
    margin: 0 auto;
    font-family: 'MyriadCond';
    font-size: 16px;
}

.storelocatorwrapper h1 {
    margin: 0;
    padding: 0;
    text-indent: 0;
    line-height: 40px;
    font: normal 36px 'MyriadLightCondBold';
}

.storelocatorwrapper h2 {
    font-size: 18px;
    font-weight: normal;
}

#storelocatorcontainer {
    margin-bottom: 30px;
}

#storelocatorcontainer .leftfields {
    width: 450px;
    display: inline-block;
    padding-right: 60px;
}

#storelocatorcontainer .leftfloatfields {
    width: 450px;
    float: left;
    padding-right: 60px;
}

#storelocatorcontainer .rightfields {
    display: inline-block;
    width: 449px;
}

#storelocatorcontainer .smallfield {
    width: 280px;
}

#storelocatorcontainer .nextrow {
    margin-top: 20px;
}

#storelocatorcontainer .nextsmallrow {
    margin-top: 10px;
}

#storelocatorcontainer .nextsection {
    margin-top: 45px;
}

#storelocatorcontainer .dd-select, #registercontainer .dd-options {
    color: #000000;
    border-color: #b1b1b1
}

#storelocatorcontainer #locatorcountryselect ul, #storelocatorcontainer #locatorcityselect ul {
    max-height: 200px;
}

#storelocatorcontainer #mapscontainer {
    width: 964px;
    height: 396px;
    position: relative;
}

#locationtotalresults .locationresults {
    color: #7d7d7d;
    text-transform: uppercase;
    margin-left: 20px;
}

#alphabetrow .lettersearch {
    float: left;
    font: normal 24px 'MyriadLightCondBold';
    color: #000000;
    text-transform: uppercase;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 20px;
}

#alphabetrow .lettersearch:first-child {
    margin-left: 0;
}

#alphabetrow .activeletter {
    text-decoration: none;
    cursor: text;
    color: #7d7d7d;
}

#lettersearchresults .lettersearchresultentry {
    float: left;
    width: 964px;
    padding: 20px 0;
    border-bottom: 1px solid #b1b1b1;
}

#lettersearchresults .lettersearchresultentry:first-child {
    border-top: 1px solid #b1b1b1;
}

#lettersearchresults .picturecolumn {
    float: left;
    width: 75px;
    margin-right: 10px;
}

#lettersearchresults .picturecolumn img:hover {
    box-shadow: 0 1px 5px #b1b1b1;
    cursor: pointer;
}

#lettersearchresults .storedescriptcolumn {
    float: left;
    width: 800px;
    font: normal 16px 'MyriadCond';
    color: #000000;
}

#lettersearchresults .buildingname a {
    text-transform: uppercase;
    font: normal 16px 'MyriadLightCondBold';
    color: #000000;
}

#lettersearchresults .buildingname a:hover {
    text-decoration: underline;
}

#storelocatorcontainer #morelocationresultsbar {
    margin-bottom: 50px;
}

#storelocatorcontainer #morelocationresultsbar a .morelocationresultsbtn {
    width: 994px;
    height: 35px;
    line-height: 35px;
    font-family: 'MyriadCond';
    font-size: 17px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    background-color: #b1b1b1;
}

#storelocatorcontainer #morelocationresultsbar a .morelocationresultsbtn:hover {
    box-shadow: 0 1px 5px #b1b1b1;
    cursor: pointer;
}

#lettersearchresults .locationtoolbar span {
    margin-left: 25px;
}

#lettersearchresults .locationtoolbar span:first-child {
    margin-left: 0;
}

#lettersearchresults .locationtoolbar span a {
    color: #7d7d7d;
}

#lettersearchresults .locationtoolbar span a:hover {
    text-decoration: underline;
}

#lettersearchresults .lettersearchresultentry .toggle {
    display: none;
}

/* Store Locator Map Overlay */
/*
#mapscontainer .mapshoutout {
    position: absolute;
    width: 457px;
    height: 213px;
    background: url(../images/store_locator_shoutbox.png) no-repeat left top;
}

#mapscontainer .shoutoutcontent {
    padding: 25px 20px;
    position: relative;
    width: 375px;
    height: 115px;
}

#mapscontainer .shoutoutclose {
    position: absolute;
    right: 0;
    top: 15px;
    cursor: pointer;
}

#mapscontainer .picturecolumn {
    float: left;
    width: 90px;
    margin-right: 10px;
}

#mapscontainer .picturecolumn img:hover {
    box-shadow: 0 1px 5px #b1b1b1;
    cursor: pointer;
}

#mapscontainer .storedescriptcolumn {
    float: left;
    width: 225px;
    font: normal 15px 'MyriadCond';
    color: #000000;
}

#mapscontainer .buildingname a {
    text-transform: uppercase;
    font: normal 15px 'MyriadLightCondBold';
    color: #000000;
}

#mapscontainer .buildingname a:hover {
    text-decoration: underline;
}

#mapscontainer .mapoverlaytoolbar {
    position: absolute;
    left: 0;
    top: 127px;
    text-align: center;
    width: 375px;
    padding-top: 8px;
    padding-left: 20px;
    padding-right: 20px;
    border-top: 1px solid #b1b1b1;
    font-size: 14px;
}

#mapscontainer .mapoverlaytoolbar span {
    margin-left: 15px;
}

#mapscontainer .mapoverlaytoolbar span:first-child {
    margin-left: 0;
}

#mapscontainer .mapoverlaytoolbar span a {
    color: #7d7d7d;
}

#mapscontainer .mapoverlaytoolbar span a:hover {
    text-decoration: underline;
}

#mapscontainer #directions_panel {
    width: 0;
    height: 100%;
    float: right;
    text-align: center;
}

#mapscontainer #directions_close {
    float: right;
    height: 5%;
    cursor: pointer;
}

#mapscontainer #directions {
    clear: right;
    height: 95%;
    overflow: auto;
}

#mapscontainer #map_canvas {
    width: 99.9%;
    height: 396px;
    float: left;
}

#mapscontainer #origin {
    border: 1px solid #D8D8D8;
    color: #B7B7B7;
    font: 17px 'MyriadCond';
    height: 37px;
    padding: 0 10px;
    text-align: left;
    width: 50%;
    clear: right;
}

#mapscontainer .directionsbtn {
    background-color: #B1B1B1;
    color: #FFFFFF;
    font-family: 'MyriadLightCondBold';
    font-size: 17px;
    height: 27px;
    margin: 10px 5px 5px 0;
    text-align: center;
    text-transform: uppercase;
    padding: 1px 5px 0;
    width: 150px;
    display: inline-block;
}

#mapscontainer .directionsbtn:hover {
    background-color: #7D7D7D;
    color: #FFFFFF;
}
*/
/* Pen Chooser Question*/
/*
.penchooserwrapper {
    width: 964px !important;
    margin: 0 auto;
    font-family: 'MyriadCond';
    font-size: 16px;
}

#penchoosercontainer {
    margin-bottom: 30px;
    height: 523px;
}

#penchoosercontainer .questionwrapper {
    position: relative;
    width: 964px;
    height: 465px;
    background: url(../images/content/penchooser_question.jpg) no-repeat left top;
}

#penchoosercontainer .questioncontent {
    position: absolute;
    top: 30px;
    left: 580px;
    width: 350px;
}

#penchoosercontainer .headertitle {
    min-width: 199px;
    margin: 0 auto;
}

#penchoosercontainer .headertitle h2 {
    margin: 0 31px 0 31px;
}

#penchoosercontainer .questioncontent h1 {
    font-family: 'MyriadLightSemiCond';
    font-size: 23px;
    text-align: center;
}

#penchoosercontainer .questioncontent h2 {
    font-family: 'MyriadLightSemiCond';
    font-size: 17px;
    text-align: center;
}

#penchoosercontainer .longdash {
    width: 31px;
    background: url(../images/longdash.png) no-repeat center center;
    margin: 0 10px;
}

#penchoosercontainer .surveyquestion {
    min-width: 270px;
    margin: 0 auto 20px;
}

#penchoosercontainer .ez-radio {
    background: transparent url('../images/checkbox-black-bg.png') 3px 4px no-repeat;
    display: inline-block;
}

#penchoosercontainer .ez-selected {
    background-position: 3px -14px;
}

#penchoosercontainer .surveyanswers {
    margin-left: 15px;
    font-size: 15px;
}

#penchoosercontainer .surveyanswers > div {
    margin-top: 25px;
}

#penchoosercontainer .surveyanswers > div:first-child {
    margin-top: 0;
}

#penchoosercontainer .survey {
    text-align: center;
}

#penchoosercontainer .answergroup {
    color: white;
    display: inline-block;
    text-align: center;
    vertical-align: top;
    margin-top: 20px;
}

#penchoosercontainer .answergroup label {
    display: block;
}
*/
/* sorry for the *display hack. this is necessary for IE7.  You don't want to know why */
/*
#penchoosercontainer label {
    display: inline-block;
    *display: inline;
    vertical-align: top;
    width: 280px;
}

#penchooserslider.choosersliderwrapper {
    width: 964px;
    height: 20px;
    position: relative;
    border-bottom: 1px solid #b1b1b1;
    padding: 15px 0;
    margin-top: 10px;
    font-family: 'MyriadLightCondBold';
    font-size: 17px;
    text-transform: uppercase;
}

#penchooserslider .back {
    margin-left: 8px;
}

#penchooserslider a {
    color: black;
}

#penchooserslider a:hover {
    text-decoration: underline;
}

#penchooserslider span.number {
    margin-left: 78px;
}

#penchooserslider .next {
    margin-right: 8px;
}

#penchooserslider #marker {
    position: absolute;
    width: 20px;
    height: 4px;
    background-color: #000000;
}

#penchooserslider .sliderbutton {
    width: 73px;
}
*/
#marker.q1 {
    top: 46px;
    left: 145px;
}

#marker.q2 {
    top: 46px;
    left: 232px;
}

#marker.q3 {
    top: 46px;
    left: 320px;
}

#marker.q4 {
    top: 46px;
    left: 409px;
}

#marker.q5 {
    top: 46px;
    left: 497px;
}

#marker.q6 {
    top: 46px;
    left: 585px;
}

#marker.q7 {
    top: 46px;
    left: 673px;
}

#marker.q8 {
    top: 46px;
    left: 761px;
}

#marker.q9 {
    top: 46px;
    left: 849px;
}

/*
#penchoosercontainer .displayareawrapper {
    position: relative;
    width: 964px;
    height: 523px;
    overflow: hidden;
}

#penchoosercontainer .questionarea {
    position: absolute;
    z-index: 0;
    width: 964px;
    height: 465px;
    background: white;
}

#penchoosercontainer .visible {
    z-index: 1;
}
*/
/* Pen Chooser Start */
/*
#penchoosercontainer .introwrapper {
    position: absolute;
    width: 964px;
    height: 523px;
    background-color: #000000;
}

#penchoosercontainer .chooserlogo {
    width: 226px;
    height: 128px;
    margin: 0 auto;
    padding: 145px 0 20px 0;
}

#penchoosercontainer .chooserslogan {
    color: #ffffff;
    text-align: center;
    font-family: 'MyriadLightSemiCond';
    font-size: 18px;
}

#penchoosercontainer .nextrow {
    margin-top: 30px;
}

#penchoosercontainer .launch {
    text-align: center;
}

#penchoosercontainer .startnowbutton {
    display: inline-block;
    width: 150px;
    font-family: 'MyriadLightCondBold';
    font-size: 16px;
    text-transform: uppercase;
    background-color: #ffffff;
    color: #000000;
    padding: 6px 0 6px 0;
    text-align: center;
    text-decoration: none;
}

#penchoosercontainer .startnowbutton:hover {
    background-color: #b1b1b1;
    color: #ffffff;
}
*/
/* Pen Chooser End Message */
/*
#penchoosercontainer .endmessagewrapper {
    position: absolute;
    width: 964px;
    height: 523px;
    background-color: #000000;
}

#penchoosercontainer .choosersmalllogo {
    width: 130px;
    height: 69px;
    padding: 40px 0 75px 30px;
}

#penchoosercontainer .exclamation {
    color: #ffffff;
    text-align: center;
    font-family: 'MyriadLightCondBold';
    font-size: 32px;
    text-transform: uppercase;
}

#penchoosercontainer .endmessagewrapper .divider {
    width: 75px;
    height: 1px;
    background-color: #7d7d7d;
    text-align: center;
    margin: 10px auto 20px auto;
}

#penchoosercontainer .endmessage {
    color: #ffffff;
    width: 670px;
    margin: 0 auto;
    text-align: center;
    font-family: 'MyriadCond';
    font-size: 26px;
    font-style: italic;
}
*/
/* Pen Chooser */
/*
#penchoosercontainer .resultswrapper {
    position: relative;
    width: 964px;
    height: 470px;
    overflow: hidden
}

#penchoosercontainer .resultswrapper.sonnet {
    background: url(../images/penchooser_result_sonnet.jpg) no-repeat left top;
}

#penchoosercontainer .restarttest {
    text-align: right;
    font-family: 'MyriadLightCondBold';
    font-size: 18px;
    text-transform: uppercase;
    padding-top: 105px;
}

#penchoosercontainer .restarttest a {
    color: #000000;
}

#penchoosercontainer .restarttest a:hover {
    color: #b1b1b1;
}

#penchoosercontainer .resultscontent {
    width: 510px;
    float: right;
    margin: 80px 40px 0 0;
    color: #7d7d7d;
    font-family: 'MyriadLightSemiCond';
    font-size: 18px;
    text-align: right;
}

#penchoosercontainer .resultscontent h1 {
    font-size: 38px;
    font-family: 'MyriadLightSemiCond';
    line-height: 40px;
}

#penchoosercontainer .resultscontent p {
    margin-top: 10px;
}

#penchoosercontainer .buynow {
    display: inline-block;
    width: 65px;
    height: 30px;
    line-height: 30px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    font-family: 'MyriadLightCondBold';
    font-size: 17px;
    text-transform: uppercase;
}

#penchoosercontainer .buynow:hover {
    background-color: #b1b1b1;
    color: #FFFFFF;
}

#productrelateditems .imagewrapper {
    width: 300px;
    height: 140px;
}

#penchooserresults .collectionfgimage {
    position: absolute;
    left: -70px;
    top: -70px;
}

#penchooserresultpanel {
    height: 406px;
    position: relative;
    width: 100%;
    background: url("../images/collections_background.png") repeat-x scroll center top;
}
*/
/* General Editorial */
#editorialtop {
    width: 964px;
    margin: 0 auto;
}

#editorialtop h1 {
    color: #000000;
    font-size: 35px;
    font-family: 'MyriadLightCondBold';
}

#contentarea {
    width: 964px;
    margin: 0 auto;
}

.espotoutline {
    margin-bottom: 30px !important;
}

.generalwrapper, #primarycontent.generalwrapper {
    width: 964px !important;
}

.generalwrapper h2 {
    margin: 0;
    padding: 0;
    text-indent: 0;
    line-height: 36px;
    font: normal 34px 'MyriadLightCondBold';
}

.generalwrapper p {
    font-family: 'MyriadCond';
    font-size: 16px;
    color: #000000;
}

/* General/404 Error */
#errorpagecontainer {
    font-family: 'MyriadCond';
    font-size: 18px;
    color: #000000;
    width: 964px;
    margin: 0 auto 60px auto;
}

.centerederrorwrapper {
    text-align: center;
}

.centerederrorwrapper h1 {
    font-family: 'MyriadLightSemiCond';
    font-size: 46px;
    font-weight: normal;
    color: #7d7d7d;
}

.centerederrorwrapper p {
    margin-top: 30px;
}

.centerederrorwrapper p span {
    font-size: 20px;
}

.centerederrorwrapper img {
    vertical-align: text-bottom;
}

#minimalfooter .bottomdivider {
    width: 100%;
    height: 30px;
    border-bottom: 1px solid #d7d7d7;
}

.generalwrapper .terms {
    color: #7d7d7d;
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
}

.generalwrapper a {
    color: #7d7d7d;
}

.generalwrapper .terms span.divider {
    margin: 0 10px;
}

.generalbutton200 {
    display: inline-block;
    width: 200px;
    font-family: 'MyriadCond';
    font-size: 16px;
    text-transform: uppercase;
    background-color: #f1f1f1;
    color: #7d7d7d;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

.generalbutton200:hover {
    background-color: #eaeaea;
    color: #7d7d7d;
}

.generalbutton210 {
    display: inline-block;
    width: 200px;
    font-family: 'MyriadCond';
    font-size: 16px;
    text-transform: uppercase;
    background-color: #111111;
    color: #7d7d7d;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

/* News and events */
/*
#newscontainer {
    position: relative;
    width: 964px;
    margin: 0 auto 50px auto;
    padding-bottom: 40px;
    min-height: 500px;
}

#newscontainer .sharing {
    position: absolute;
    right: 0;
    top: 0;
    width: 136px;
    height: 20px;
}

#newscontainer .sharing a {
    margin-left: 15px;
}

#newscontainer .sharing a:first-child {
    margin-left: 0;
}

#newscontainer .sharing a img:hover {
    box-shadow: 0 0 5px #b1b1b1;
}

#newscontainer .sharing-overlay {
    display: none;
    right: 0;
    top: 10px;
    width: 84px;
    height: 125px;
    background: #ffffff url('../images/icon18-overlay.png') no-repeat right top;
}

.sharing-overlay-wrapper {
    position: absolute;
    top: 40px;
    width: 70px;
    height: 100px;
    margin-left: 10px;
}

#newscontainer .fb {
    margin-left: -33px !important;
}

#newscontainer .pnt {
    margin-left: 1px !important;
}

#newscontainer .eml {
    margin-left: 40px !important;
}

#newscontainer .pls {
    margin-left: 77px !important;
}

#newscontainer .topbanner {
    width: 962px;
    height: 153px;
    border: 1px solid #b1b1b1;
}

#newscontainer #toptoolbar {
    width: 964px;
    height: 25px;
    line-height: 20px;
    padding: 5px 0;
    border-bottom: 1px solid #eaeaea;
}

#newscontainer #toptoolbar .filters {
    float: left;
}

#newscontainer #toptoolbar .links {
    float: right;
}

#newscontainer #toptoolbar .links a {
    font-family: 'MyriadLightCondBold';
    font-size: 16px;
    color: #000000;
    text-transform: uppercase;
}

#newscontainer #toptoolbar .filters div {
    float: left;
    margin-left: 35px;
    font-family: 'MyriadLightCondBold';
    font-size: 16px;
    color: #000000;
    text-transform: uppercase;
}

#newscontainer #toptoolbar .filters div span {
    color: #7d7d7d;
}

#newscontainer #toptoolbar .filters div:first-child {
    margin-left: 0;
    color: #7d7d7d;
    font-family: 'MyriadCond';
    text-transform: none;
    font-style: italic;
}

#newscontainer .storywrapper {
    padding: 50px 0;
    border-bottom: 1px solid #eaeaea;
}
 */
/*
#storiescontainer .datebar {
    font-family: 'MyriadLightCondBold';
    font-size: 44px;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

#storiescontainer .datebar .date {
    font-family: 'MyriadLightCondBold';
    position: absolute;
    top: -5px;
    left: 0;
}

#storiescontainer .datebar .day {
    float: left;
    font-size: 50px;
}

#storiescontainer .datebar .monthyear {
    float: left;
    padding: 12px 0 0 10px;
}

#storiescontainer .datebar .month {
    font-size: 20px;
    line-height: 14px;
}

#storiescontainer .datebar .year {
    font-size: 20px;
    color: #7d7d7d;
    font-family: 'MyriadLightSemiCond';
}

#storiescontainer .newseventtitle {
    padding: 0 0 0 130px;
}

#storiescontainer .boxtopcapbottom {
    text-align: center;
    margin: 30px auto 0 auto;
    font-size: 18px;
    color: #000000;
}

#storiescontainer .boxtopcapbottom div {
    margin: 0 auto;
}

#storiescontainer .boxleftcapright {
    text-align: left;
    margin-top: 30px;
    font-size: 18px;
    color: #000000;
}

#storiescontainer .boxleftcapright > div {
    float: left;
}

#storiescontainer .boxleftcapright h1 {
    font-family: 'MyriadLightCondBold';
    font-size: 44px;
    font-weight: normal;
}

#storiescontainer .boxleftcapright .headline {
    margin-left: 30px;
}

#storiescontainer .readmore {
    font-size: 20px;
    color: #000000;
}

#storiescontainer .readmore:hover {
    text-decoration: underline;
}
*/
#morecontentresultsbar {
    margin-bottom: 50px;
}

#morecontentresultsbar a .morecontentresultsbtn {
    width: 964px;
    height: 35px;
    line-height: 35px;
    font-family: 'MyriadCond';
    font-size: 17px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    background-color: #b1b1b1;
}

#morecontentresultsbar a .morecontentresultsbtn:hover {
    box-shadow: 0 1px 5px #b1b1b1;
    cursor: pointer;
}

/* Support */
#supportbottombanner {
    width: 964px;
    height: 50px;
    margin: 50px auto;
    background-color: #333333;
    color: #adadad;
    text-align: center;
    font-family: 'MyriadCond';
    font-size: 18px;
    line-height: 50px;
}

#supportbottombanner img {
    vertical-align: text-bottom;
    margin-right: 10px;
    position: relative;
    top: 5px;
}

#supportbottombanner span {
    color: #ffffff;
    text-transform: uppercase;
}

/* Care Guide */
#primarycontent.careguidewrapper {
    width: 964px !important;
    min-height: 0;
}

#primarycontent.careguidewrapper h2 {
    margin: 0;
    padding: 0;
    text-indent: 0;
    line-height: 36px;
    font: normal 34px 'MyriadLightCondBold';
}

#careguidecontainer {
    font-family: 'MyriadCond';
    font-size: 16px;
    padding: 20px 0;
}

#careguidecontainer .leftfloatfields {
    width: 420px;
    float: left;
}

#careguidecontainer .leftfloator {
    width: 115px;
    float: left;
    font-size: 30px;
    line-height: 70px;
    text-align: center;
}

#careguidecontainer .fieldlabel {
    font-size: 18px;
}

#careguidewritingtypeselect ul {
}

#careguidecollectionselect ul {
}

#careguidetips {
    width: 964px;
    margin: 20px auto 50px auto;
}

.tipbox300entry {
    display: inline-block;
    float: left;
    width: 300px;
    margin-left: 30px;
}

.tipbox300entry .heading {
    color: #000000;
    font-family: 'MyriadLightCondBold' !important;
    font-size: 16px !important;
}

.tipbox300entry:first-child {
    margin-left: 0;
}

.tipbox300entry div.content {
    width: 300px;
    margin: 0 auto;
    font-family: 'MyriadLightSemiCond';
    font-size: 14px;
    color: #7d7d7d;
    text-align: left;
}

.tipbox300entry img {
    margin: 0 auto;
    display: block;
}

#downloadcareguide a {
    font-family: 'MyriadCond';
    font-size: 14px;
    color: #7d7d7d;
}

#downloadcareguide a:hover {
    text-decoration: underline;
}

#scopeofservice {
    width: 964px;
    margin: 0 auto;
}

#scopeofservice .heading {
    font-family: 'MyriadLightCondBold';
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* FAQ */
#faqcontainer {
    margin: 30px 0 50px 0;
}

.faqentry {
    width: 964px;
    border-bottom: 1px solid #b1b1b1;
}

.faqentry:first-child {
    border-top: 1px solid #b1b1b1;
}

.faqentry .faqcategory a {
    font-family: 'MyriadSemiCondBold';
    font-size: 16px;
    color: #000000;
    line-height: 50px;
}

.faqentry .answers {
    display: none;
    padding-bottom: 20px;
    font-family: 'MyriadCond';
    font-size: 15px;
    color: #000000;
}

.faqentry .answers > div {
    margin-top: 15px;
}

.faqentry ul, .faqentry li {
    list-style-type: square;
}

.faqentry li {
    display: list-item;
    margin-left: 15px;
}

.faqentry .expand {
    display: block;
}

/* Contact us */
#contactcontainer {
    padding: 0 0 30px 0;
    font-family: 'MyriadCond';
    font-size: 15px;
    color: #000000;
}

#reasonradios > div {
    margin-bottom: 10px;
}

#contactcontainer .leftfields {
    width: 450px;
    display: inline-block;
    padding-right: 60px;
    font-family: 'MyriadLightCondBold';
    font-size: 15px;
}

#contactcontainer .rightfields {
    display: inline-block;
    width: 449px;
    font-family: 'MyriadLightCondBold';
    font-size: 15px;
}

#contactcontainer .contacttextbox {
    width: 428px;
    height: 40px;
    border: 1px solid #b1b1b1;
    padding-left: 10px;
    padding-right: 10px;
    color: #7d7d7d;
    font-family: MyriadCond;
    font-size: 16px;
}

#contactcontainer .fieldlabel {
    font-family: 'MyriadLightCondBold';
    font-size: 15px;
}

#contactcontainer .sendmessagebutton {
    display: inline-block;
    width: 235px;
    font-family: 'MyriadBoldCond';
    font-size: 15px;
    text-transform: uppercase;
    background-color: #000000;
    color: #fff;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

#contactcontainer .sendmessagebutton:hover {
    background-color: #b1b1b1;
    color: #fff;
}

#contactcontainer textarea {
    width: 100%;
    height: 120px;
    border: 1px solid #b1b1b1;
    padding: 3px;
    color: #7d7d7d;
    font-size: 14px;
    font-family: 'MyriadCond';
}

#contactcontainer .readfaq {
    color: #7d7d7d;
}

#contactcontainer .readfaq:hover {
    color: #000000;
}

#contactcontainer .chatbutton {
    display: inline-block;
    width: 165px;
    font-family: 'MyriadBoldCond';
    font-size: 15px;
    text-transform: uppercase;
    background-color: #000000;
    color: #fff;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

#contactcontainer .chatbutton:hover {
    background-color: #b1b1b1;
    color: #fff;
}

#contactcontainer .chatoffline {
    background-color: #b1b1b1;
    color: #fff;
    cursor: text;
}

/* Warranty */
#warrantycontainer {
    padding: 0 0 30px 0;
    font-family: 'MyriadCond';
    font-size: 15px;
    color: #000000;
}

#warrantycontainer .leftfields {
    width: 450px;
    display: inline-block;
    padding-right: 60px;
    font-family: 'MyriadLightCondBold';
    font-size: 15px;
}

#warrantycontainer .rightfields {
    display: inline-block;
    width: 449px;
    font-family: 'MyriadLightCondBold';
    font-size: 15px;
}

#warrantycontainer .warrantytextbox {
    width: 428px;
    height: 40px;
    border: 1px solid #b1b1b1;
    padding-left: 10px;
    padding-right: 10px;
    color: #7d7d7d;
    font-family: MyriadCond;
    font-size: 16px;
}

#warrantycontainer .fieldlabel {
    font-family: 'MyriadLightCondBold';
    font-size: 15px;
}

#warrantycontainer .sendmessagebutton {
    display: inline-block;
    width: 235px;
    font-family: 'MyriadBoldCond';
    font-size: 15px;
    text-transform: uppercase;
    background-color: #000000;
    color: #fff;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

#warrantycontainer .sendmessagebutton:hover {
    background-color: #b1b1b1;
    color: #fff;
}

#warrantycontainer textarea {
    width: 100%;
    height: 120px;
    border: 1px solid #b1b1b1;
    padding: 3px;
    color: #7d7d7d;
    font-size: 14px;
    font-family: 'MyriadCond';
}

#warrantycontainer .readfaq {
    color: #7d7d7d;
}

#warrantycontainer .readfaq:hover {
    color: #000000;
}

#warrantycontainer .chatbutton {
    display: inline-block;
    width: 165px;
    font-family: 'MyriadBoldCond';
    font-size: 15px;
    text-transform: uppercase;
    background-color: #000000;
    color: #fff;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

#warrantycontainer .chatbutton:hover {
    background-color: #b1b1b1;
    color: #fff;
}

#warrantycontainer .chatoffline {
    background-color: #b1b1b1;
    color: #fff;
    cursor: text;
}

#warrantycontainer #warrantygendercontainer {
    margin-top: 3px;
}

#warrantycontainer #warrantylanguagecontainer {
    margin-top: 3px;
}

#warrantycontainer #warrantyparkerpencontainer {
    margin-top: 3px;
}

#warrantycontainer #warrantywritingmodecontainer {
    margin-top: 3px;
}

#warrantycontainer #warrantycountrycontainer {
    margin-top: 3px;
}

#warrantycontainer .warrantylandingsubmit {
    background-color: #000000;
    color: #FFFFFF;
    display: inline-block;
    font-family: 'MyriadBoldCond';
    font-size: 15px;
    padding: 8px 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    width: 200px;
}

#warrantycontainer .warrantylandingsubmit:hover {
    background-color: #b1b1b1;
    color: #fff;
}

/* Site Map */
/*
.sitemapholder #sitemap div.subentry {
    width: 964px;
    height: 360px;
    padding: 0 0 30px 0;
    background: none #fff;
    top: 94px;
    z-index: 4;
    display: block;
}

.sitemapholder #sitemap div.subentry .shading {
    width: 1024px;
    height: 62px;
    background: url(../images/shade_overlay.png) no-repeat left top;
    bottom: -62px;
    left: 50%;
    margin-left: -512px;
    z-index: 3;
}

.sitemapholder #sitemap ul.mapgroup {
    display: inline-block;
    list-style: none;
    width: 100%;
    height: 100%;
}

.sitemapholder #sitemap ul.mapgroup li {
    display: inline-block;
    width: 220px;
    height: 100%;
    float: left;
    margin: 0 0 0 30px;
}

.sitemapholder #sitemap ul.mapgroup li.firstColumn {
    padding: 0;
    width: 160px;
}

.sitemapholder #sitemap ul.mapgroup li img {
    width: 100%;
}

.sitemapholder #sitemap ul.mapgroup li:first-child {
    padding: 0;
    width: 160px;
}

.sitemapholder #sitemap ul.mapgroup li .sublinks {
    width: 100%;
    height: 100%;
}

.sitemapholder #sitemap ul.mapgroup li .sublinks span {
    display: block;
    height: 40px;
    border: none;
    text-transform: uppercase;
    font: normal 17px 'MyriadLightCondBold';
    color: #333333;
    padding: 5px 0 0;
    text-align: left;
}

.sitemapholder #sitemap ul.mapgroup li .sublinks a {
    width: 100%;
    height: 20px;
    display: block;
    border-top: 1px solid #e5e5e5;
    font: normal 16px 'MyriadCond';
    color: #333333;
    text-align: left;
    padding: 8px 0 6px;
    letter-spacing: 0.03em
}

.sitemapholder #sitemap ul.mapgroup li .sublinks a:last-child {
    border-bottom: 1px solid #e5e5e5;
}

.sitemapholder #sitemap ul.mapgroup li .sublinks a:hover, .menuholder #subnav ul.pens li .sublinks a.hover {
    background: #f5f5f5 none;
}

.sitemapholder #sitemap ul.mapgroup li .push {
    width: 150px;
    margin-left: 6px;
    height: 130px;
    background: url(../images/pushpens.jpg) no-repeat left bottom;
    cursor: pointer;
}

.sitemapholder #sitemap ul.mapgroup li .pushtxt {
    width: 150px;
    margin-left: 6px;
    height: 85px;
    font: normal 15px 'MyriadCond';
    color: #000;
    text-align: left;
    padding-top: 15px;
}

.sitemapholder #sitemap ul.mapgroup li .pushtxt a {
    font: normal 15px 'MyriadCond';
    color: #000;
}

.sitemapholder #sitemap ul.mapgroup li .pushtxt a:hover, .menuholder #subnav ul.pens li .pushtxt a.hover {
    text-decoration: underline;
}

#sitemapcontainer {
    margin-bottom: 30px;
}

#sitemapcontainer .heading {
    font-family: 'MyriadLightCondBold';
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
*/
/* Press */
#presscontainer {
    width: 964px;
    margin: 0 auto 50px auto;
    min-height: 500px;
    font: normal 16px 'MyriadCond';
}

#countryselectresultscontainer .presscountryentry {
    font: normal 16px 'MyriadLightSemiCond';
    margin-bottom: 20px;
}

#countryselectresultscontainer .presscountryentry:first-child {
    margin-top: 20px;
}

#countryselectresultscontainer .contactcompany {
    font: normal 16px 'MyriadSemiCondBold';
    text-transform: uppercase;
    margin-bottom: 5px;
}

#countryselectresultscontainer .contactname {
    font-style: italic;
}

#pressreleasecontainer .datebarwrapper {
    padding: 10px 0;
    border-bottom: 1px solid #eaeaea;
}

#pressreleasecontainer .datebarwrapper:first-child {
    border-top: 1px solid #eaeaea;
}

#pressreleasecontainer .datebar {
    font: normal 16px 'MyriadCond';
    color: #7d7d7d;
    text-align: left;
    position: relative;
    padding-left: 120px;
}

#pressreleasecontainer .datebar a {
    font: normal 16px 'MyriadLightCondBold';
    color: #000000;
}

#pressreleasecontainer .datebar .date {
    font-family: 'MyriadLightCondBold';
    position: absolute;
    top: -5px;
    left: 0;
}

#pressreleasecontainer .datebar .day {
    float: left;
    font-size: 50px;
}

#pressreleasecontainer .datebar .monthyear {
    float: left;
    padding: 12px 0 0 10px;
}

#pressreleasecontainer .datebar .month {
    font-size: 20px;
    line-height: 14px;
}

#pressreleasecontainer .datebar .year {
    font-size: 20px;
    color: #7d7d7d;
    font-family: 'MyriadLightSemiCond';
}

#pressreleasecontainer .datebar .rightline {
    float: left;
    height: 34px;
    width: 4px;
    margin: 12px 0 0 12px;
    border-left: 1px solid #b1b1b1;
}

/* Newsletter */
#newslettercontainer {
    padding: 0 0 60px 0;
    font: normal 16px 'MyriadCond';
    color: #000000;
}

#newslettercontainer .leftfields {
    width: 450px;
    display: inline-block;
    padding-right: 60px;
    font-family: 'MyriadLightCondBold';
    font-size: 15px;
}

#newslettercontainer .rightfields {
    display: inline-block;
    width: 449px;
    font-family: 'MyriadLightCondBold';
    font-size: 15px;
}

#newslettercontainer .leftfloatfields {
    width: 450px;
    float: left;
    padding-right: 60px;
}

#newslettercontainer .newslettertextbox {
    width: 428px;
    height: 40px;
    border: 1px solid #b1b1b1;
    padding-left: 10px;
    padding-right: 10px;
    color: #7d7d7d;
    font-family: MyriadCond;
    font-size: 16px;
}

#newslettercontainer .newsletterconsent {
    font-size: 15px;
}

#newslettercontainer .newslettersubmit {
    display: inline-block;
    width: 235px;
    font-family: 'MyriadBoldCond';
    font-size: 15px;
    text-transform: uppercase;
    background-color: #000000;
    color: #fff;
    padding: 8px 0 8px 0;
    text-align: center;
    text-decoration: none;
}

#newslettercontainer .newslettersubmit:hover {
    background-color: #b1b1b1;
    color: #fff;
}

/* Landing */
#landingback {
    width: 100%;
    height: 700px;
    margin: 0 auto;
    background: #000 none;
}

#landingback .landingcontent {
    float: left;
    width: 250px;
    margin-left: 30px;
    position: relative;
    color: #ffffff;
    z-index: 1;
}

#landingback .landingwrapper {
    width: 1024px;
    height: 700px;
    margin: 0 auto;
}

#landingback .landingposter {
    position: absolute;
    left: -100px;
    top: 0;
    z-index: -1;
    width: 1385px;
    height: 700px;
    background: url(https://s7d9.scene7.com/is/image/NewellRubbermaid/ldg_mn?wid=1279&hei=646) no-repeat left top;
}

#landingback .headline {
    font: normal 32px 'MyriadLightCondBold';
    color: #ffffff;
    padding-top: 75px;
}

#landingback .selectlabel, #landingback .discoverlabel {
    font: normal 19px 'MyriadCond';
    margin-top: 35px;
    text-transform: uppercase;
}

#landingback .availcountryentry {
    border-bottom: 1px solid #7d7d7d;
    width: 205px;
}

#landingback .availcountryentry:first-child {
    border-top: 1px solid #7d7d7d;
}

#landingback .availcountryentry a {
    font: normal 15px 'MyriadCond';
    color: #ffffff;
    line-height: 35px;
}

#landingback .availcountryentry a:hover {
    opacity: .5
}

#landingback .dash {
    padding: 0 5px;
}

.landingback .discoverlabel {
    font: normal 19px 'MyriadCond';
    text-transform: uppercase;
}

#discovercontainer {
    clear: both;
    color: #fff;
    margin-left: 30px
}

#discovercontainer span.gt {
    padding-right: 5px;
}

#discovercontainer a {
    color: #ffffff;
    margin-left: 30px;
    font: normal 14px 'MyriadCond';
}

#discovercontainer a:first-child {
    margin-left: 0;
}

#discovercontainer a:hover {
    color: #eaeaea;
}

.rightcol {
    display: inline-block;
    color: #fff;
    text-align: center;
    float: right;
    margin-top: 30px;
}

.rightcol .txtimgright {
    margin-top: 30px;
}

/*
.signupform {
    background-color: White;
    display: none;
    width: 850px;
    z-index: 50;
}

.signupform .topCloseButton {
    position: relative;
    float: right;
    margin-right: 10px;
    margin-top: 10px;
}

.signupform .landingtextbox {
    width: 275px;
    height: 37px;
    border: 1px solid #7d7d7d;
    background-color: transparent;
    padding-left: 10px;
    padding-right: 10px;
    color: #B1B1B1;
    font-family: MyriadCond;
    font-size: 14px;
}

.signupform .dd-pointer-down {
    background: url("../images/dropdown-arrowdown-light.png") no-repeat scroll 96% 45% #ffffff;
}

.signupform .dd-pointer-up {
    background: url("../images/dropdown-arrowup-light.png") no-repeat scroll 96% 45% #ffffff !important;
}

.signupform .dd-select {
    border: 1px solid #7d7d7d;
    background-color: transparent;
}

.signupform .dd-options {
    background-color: #ffffff;
}

.signupform .dd-option-selected {
    background-color: #7d7d7d;
    color: #ffffff;
}

.signupform .signupcontainer {
    padding-right: 10px;
    font: normal 15px 'MyriadCond';
    margin: 40px 50px;
}

.signupsuccesscontainer {
    display: none;
    text-align: center;
    margin-bottom: 40px
}

.signupfailurecontainer {
    display: none;
    text-align: center;
    margin-bottom: 40px
}

.signupform .pageerrorbox {
    background-color: transparent;
    border: 1px solid #FF5252;
    width: 405px;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.signupform .pageerrorbox h2 {
    font-size: 18px;
}

.signupform .pageerrorbox p {
    color: #EAEAEA;
}

.signupform .leftfloatfields {
    float: left;
    width: 275px;
    margin-right: 20px;
}

.signupform .ez-checkbox-black-bg {
    background-color: transparent;
}

#consentmoreinfocontainer label {
    font-size: 14px;
    color: #7d7d7d;
}

.signupform .landingsubmit {
    background-color: #000000;
    color: #FFFFFF;
    display: inline-block;
    font-family: 'MyriadBoldCond';
    font-size: 15px;
    padding: 8px 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    width: 200px;
}

.signupform .landingsubmit:hover {
    background-color: #b1b1b1;
    color: #fff;
}
*/
/**
 * CSS Styles for ezMark jQuery Plugin
 *
 **/
/*
.ez-hide {
    opacity: 0;
    filter: alpha(opacity=0);
}

.ez-checkbox {
    background: transparent url('../images/checkbox.png') 3px 4px no-repeat;
    display: inline-block;
}

.ez-checkbox-black {
    background: transparent url('../images/checkbox-black.png') 3px 4px no-repeat;
    display: inline-block;
}

.ez-radio {
    background: transparent url('../images/radiobutton.png') 3px 2px no-repeat;
    display: inline-block;
}

.ez-checked, {
    background-position: 3px -14px;
}

.ez-selected {
    background-position: 3px -18px;
}
*/
.selectedfacet .ez-checkbox {
    background-position: 3px -14px;
}

.disabledfacet .ez-checkbox {
    opacity: 0.3;
}

.disabledfacet span.outline {
    opacity: 0.3;
}

/*
.ez-checkbox-green {
    background: transparent url('../images/checkbox.png') 0 1px no-repeat;
    display: inline-block;
    *display: inline;
}

.ez-checked-green {
    background-position: 0 -18px;
}
*/
.ez-checkbox, .ez-checkbox-black, .ez-radio {
    zoom: 1;
    *display: inline;
    _height: 30px;
}

.onrollover .beforerollover {
    display: none;
}

.onrollover .rolloveraction {
    display: block;
}

.erroroverlaybackground {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    opacity: .7;
    width: 100%;
    background-color: #F1F1F1;
    z-index: 999;
}

.wishlistoverlaybackground {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    opacity: .1;
    width: 100%;
    z-index: 999;
}

.wishlist_signin {
    text-decoration: underline;
    font-weight: bold;
}

.wishlist_register {
    text-decoration: underline;
    font-weight: bold;
}

#wishlistoverlay a:HOVER {
    cursor: pointer;
}

#wishlistoverlay .successmessage {
    color: #0000ff;
    font-family: 'MyriadCond';
    font-size: 16px;
    text-align: center;
    opacity: 0;
}

#searchresultsrefine label, #searchresultsrefine input {
    color: #000;
}

/* color hex facets */
.swatch .facetLabel {
    display: inline-block;
    height: 18px;
    width: 18px;
    border-radius: 1px 1px 1px 1px;
    border: thin solid #C1C1C1
}

.selectedfacet .swatch .facetLabel {
    border: thin solid #C1C1C1;
}

.swatch .swatchoutline {
    display: inline-block;
    padding: 4px;
    border: 1px dotted #FFFFFF;
}

.selectedfacet .swatch .swatchoutline {
    border: 1px dotted #000000;
}

.colorfacet input {
    display: none;
}

.swatch .count {
    display: none;
}

.colorfacet {
    float: left;
}

.colorfacet span {
    margin: 0 2px !important;
}

/* search result error messages */
.widget_search_results {
    border: thin solid #B1B1B1;
    color: #000000;
    font-family: 'MyriadCond';
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px;
}

.widget_search_results .item_spacer_10px {
    height: 5px;
}

.widget_search_results .results_description span {
    color: #0000ff;
    font-weight: bold;
}

/* progress bar */
#progress_bar {
    display: none;
    position: absolute;
}

#progress_bar .top_left, #progress_bar .top_right {
    display: none;
}

/* registration page */
.consentsection input {
    margin-bottom: 0 !important;
}

.consentsection .questionbox {
    margin-bottom: 10px;
}

.consentsection a:link {
    color: #7d7d7d;
    text-decoration: none;
}

.consentsection a:visited {
    color: #7d7d7d;
    text-decoration: none;
}

.consentsection a:hover {
    text-decoration: underline;
}

#primarycontent.registerwrapper {
    min-height: 500px !important;
}

/* checkout 1 */
.checkoutformwrapper #registercontainer {
    width: 890px;
}

.checkoutformwrapper #registercontainer .leftfloatfields {
    width: 390px;
    padding-right: 50px;
}

.checkoutformwrapper #registercontainer .registertextbox {
    width: 330px;
}

.checkoutformwrapper .nextsmallrow, .checkoutformwrapper .consentsection {
    width: 830px;
}

#checkoutflowgrid .pageerrorbox {
    width: 790px;
}

/* Jquery UI Datepicker */
.ui-widget {
    font-family: MyriadLightSemiCond !important;
}

.ui-widget select {
    font-family: MyriadLightCondBold !important;
}

.ui-state-default {
    background-color: #f1f1f1 !important;
}

/* Bizzare Voice Create Review Overlay */
/*
#createreviewoverlay {
    display: none;
    position: absolute;
    width: 900px;
    height: 600px;
    background-color: #ffffff;
    z-index: 1000;
    padding: 40px 30px 20px 30px;
    box-shadow: 2px 2px 7px #b1b1b1;
}

#createreviewoverlay .close {
    background: transparent url(../images/close_icon_grey.png) no-repeat;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    height: 20px;
    width: 20px;
}
#BVSubmissionContainer {
    overflow: auto;
    height: 590px;
}
*/

/* Vertical Navigation Widget */
/*
#verticalnav {
    position: fixed;
    display: block;
    right: 0;
    top: 49%;
    width: 50px;
    height: 50px;
    background: url(../images/vertical_nav_up.png) no-repeat scroll 19px 19px transparent;
    box-shadow: 0 1px 5px #b1b1b1;
}

#verticalnav:hover {
    box-shadow: 0 1px 5px #7d7d7d;
}
*/
/* Paymetric CC iFrame */
.DataInterceptCreditCardType {
    font-size: 14px;
    margin-top: 0;
    padding: 0 10px 0 0;
    color: #7d7d7d;
    font-family: 'MyriadLightSemiCond';
    margin-bottom: 15px;
    vertical-align: top;
}

.DataInterceptCreditCardType span img {
    padding-right: 15px;
}

.DataInterceptCreditCardType input {
    padding-right: 20px;
}

#Paymetric_CreditCardType {
    font-size: 14px;
    font-family: 'MyriadLightSemiCond';
    color: #7d7d7d;
    vertical-align: top;
}

.DataInterceptCreditCardNumber {
    font-size: 14px;
    margin-top: 0;
    padding: 0 10px 0 0;
    color: #7d7d7d;
    font-family: 'MyriadLightSemiCond';
}

#Paymetric_CreditCardNumber {
    margin-top: 5px;
    font-size: 14px;
    width: 160px;
    font-family: 'MyriadLightSemiCond';
    color: #7d7d7d;
    height: 30px;
    line-height: 30px;
    border: 1px solid #dadada;
    padding: 0 5px;
    margin-bottom: 15px;
}

.DataInterceptExpirationDate {
    font-size: 14px;
    margin-top: 0;
    padding: 0 10px 0 0;
    color: #7d7d7d;
    font-family: 'MyriadLightSemiCond';
}

#Paymetric_Exp_Month {
    width: 100px;
    margin-top: 5px;
    float: left;
    font-size: 14px;
    font-family: 'MyriadLightSemiCond';
    color: #7d7d7d;
    height: 25px;
    line-height: 25px;
    margin-bottom: 15px;
    border: 1px solid #dadada;
}

#Paymetric_Exp_Year {
    width: 60px;
    margin-top: 5px;
    font-size: 14px;
    font-family: 'MyriadLightSemiCond';
    color: #7d7d7d;
    height: 25px;
    line-height: 25px;
    margin-bottom: 15px;
    margin-left: 20px;
    border: 1px solid #dadada
}

#PaymetricYear {
    float: left;
    width: 60px;
    margin-top: 10px;
    margin-right: 7px;
    font-family: Verdana, sans-serif;
    color: #7d7d7d;
    height: 20px;
    display: none;
}

.DataInterceptCVV {
    font-size: 14px;
    padding: 0 10px 0 0;
    width: 70px;
    color: #7d7d7d;
    font-family: 'MyriadLightSemiCond';
    vertical-align: middle !important;
}

#Paymetric_CVV {
    float: left;
    width: 70px;
    height: 30px;
    line-height: 30px;
    margin-top: 5px;
    font-family: 'MyriadLightSemiCond';
    color: #7d7d7d;
    border: 1px solid #dadada;
    padding: 0 5px;
}

/* checkout 5 share button */
#checkoutShareDiv table, #checkoutShareDiv th, #checkoutShareDiv td {
    border: 0 !important;
    padding: 0 !important;
}

/* hidden submit button for form submission */
input.hidesubmit {
    border: 0 none;
    height: 0;
    width: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

/* Gigya share bar */
div.gig-button-text {
    display: none;
}

.disabledselect .dd-select {
    cursor: default;
}

#tabcontentshipping li {
    display: list-item;
    list-style: disc outside none;
}

img[bigpic] {
    cursor: pointer;
}

.bigpic {
    position: absolute;
    padding: 30px;
    display: none;
    margin: 0;
    text-align: center;
    border-color: rgb(128, 128, 128);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    z-index: 101;
    -moz-box-shadow: 0 0 5px #666;
    -webkit-box-shadow: 0 0 5px #666;
    box-shadow: 0 0 5px #666;
    background-color: white;
    color: red;

}

/*.bigpic div {display: block; background: url('/i/close.jpg') no-repeat top right;height: 20px;position: relative;margin:-25px -25px 5px 0;cursor:pointer;}*/

.bigpic .header {
    margin: -30px -30px 0 0;
    text-align: right;
    padding: 10px;
    font-size: 14px
}

.bigpic .header div {
    display: inline-block;
    margin: 0 10px;
    cursor: pointer;
    color: rgb(128, 128, 128);
    border-bottom: 1px dashed rgb(128, 128, 128);
}

.bigpic .header div, .bigpic .header div a {
    color: rgb(128, 128, 128);
    text-decoration: none
}

.bigpic img {
    position: relative;
    border: none;
}

.bigpic a { /*color:red;*/
}

.bigpic {
    margin: -10px 0 0 -490px;
    min-width: 860px;
}

.bigpic img {
    max-width: 800px
}

table.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    background-image: radial-gradient(rgba(100, 100, 100, 0.5), rgba(0, 0, 0, 0.1));
    z-index: 999;
}

table.popup > tbody > tr > td {
    vertical-align: middle;
    text-align: center;
}

table.popup > tbody > tr > td > * {
    display: inline-block;
    margin: auto;
    background-color: white;
    border: 1px solid #ccc;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    z-index: 101;
    -moz-box-shadow: 0 0 5px 20px #aaa;
    -webkit-box-shadow: 0 0 5px 20px #aaa;
    box-shadow: 0 0 20px #666;
    padding: 40px;
    text-align: left;
}

table.popup .viewdetails {
    background-color: #f1f1f1;
    color: inherit
}

.fields {
    /*margin: 0 -5px;*/
}

.fields > * {
    /*display: inline-block;*/
    /*margin: 0px 5px;*/
}

label {
    display: block;
    margin-bottom: 2px;
    margin-top: 10px;
    font-weight: normal;
    font: 14px myriad_prolight;
    white-space: normal;
}

input[type=text], input[type=password], textarea, select {
    padding: 5px 10px;
    border: 1px solid #ccc;
    font: 15px myriad_prolight;
    background-color: #f6f6f6;
    box-sizing: border-box !important;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    display: block;
    width: 100%;
}

option {
    font-weight: normal;
    font-size: 12px;
    font-family: Helvetica, Arial, sans-serif;
}

input.warning,
input.red {
    border-color: #ea8787;
    background-color: #fff4f7;

}

.subtitle {
    font-family: myriad_prolight;
    font-size: 26px;
    text-transform: uppercase;
}

.cartbuttons a {
    display: none;
}

.cartbuttons.incart a {
    display: block;
}

.cartbuttons.incart .buybutton {
    display: none;
}


.video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 0;
    height: 0;
    width: 100%;
    margin: 0 auto;
}

.video > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.text {
    vertical-align: middle;
    font-family: myriad_prolight;
    font-size: 16px;
}

.text a {
    color: inherit
}

table.with-border {
    margin: 20px 0;
    font-size: 0.9em;
}

table.with-border td {
    padding: 2px 20px;
    border: 1px solid #ccc;
    vertical-align: middle;
}
