/* ++ Basic CSS for Product List and Detail Pages in Modular Sites ++ */

/* ++ PRODUCT LIST PAGE ++ */
/* pagination and filtering */
div.mz_pagination {
    clear: both;
    overflow: hidden;
    padding: 5px 0 5px 15px;
    width: 100%;
}

ul.mz_paginationNav,
div.mz_sortResults,
div.mz_itemsPerPage {
    float: left;
    font-size: 90%;
    height: 25px;
    padding: 5px 15px 5px 0;
}

ul.mz_paginationNav {
    line-height: 2;
}

    ul.mz_paginationNav li {
        color: #afafaf;
        display: inline;
        padding: 0 5px 0 0;
    }

        ul.mz_paginationNav li a.current_page {
            background-color: #dfdfdf;
            color: #333333;
        }

div.mz_sortResults select,
div.mz_itemsPerPage select {
    color: #5f5f5f;
    padding: 2px;
}

div.mz_changeView {
    float: right;
    padding: 5px 0;
    width: 195px;
}

    div.mz_changeView ul {
        overflow: hidden;
    }

        div.mz_changeView ul li {
            float: left;
            width: 60px;
        }

            div.mz_changeView ul li a.tabGrid,
            div.mz_changeView ul li a.tabList,
            div.mz_changeView ul li a.tabQuick {
                background: transparent url(../images/sprite_nav_icons.png) no-repeat;
                display: block;
                font-size: 80%;
                height: 20px;
                padding: 0 10px 0 22px;
            }

                div.mz_changeView ul li a.tabGrid:link, div.mz_changeView ul li a.tabGrid:link {
                    background-position: 0 -600px;
                }

                div.mz_changeView ul li a.tabGrid:hover, div.mz_changeView ul li a.tabGrid:active {
                    background-position: 0 -625px;
                }

                div.mz_changeView ul li a.tabList:link, div.mz_changeView ul li a.tabList:visited {
                    background-position: 0 -650px;
                }

                div.mz_changeView ul li a.tabList:hover, div.mz_changeView ul li a.tabList:active {
                    background-position: 0 -675px;
                }

                div.mz_changeView ul li a.tabQuick:link, div.mz_changeView ul li a.tabQuick:visited {
                    background-position: 0 -700px;
                }

                div.mz_changeView ul li a.tabQuick:hover, div.mz_changeView ul li a.tabQuick:active {
                    background-position: 0 -725px;
                }

h1.mz_list_catTitle {
    border-top: 1px solid #b2b2b2;
    font-size: 160%;
    margin: 10px;
    padding: 10px;
}

/* product list elements */
ul.mz_suCalendarNav {
    overflow: hidden;
}

    ul.mz_suCalendarNav li {
        float: left;
        margin-right: 5px;
        width: 36px;
    }

        ul.mz_suCalendarNav li:last-child {
            margin-right: 0;
        }

        ul.mz_suCalendarNav li:first-child {
            border: none;
            font-weight: bold;
            margin-right: 10px;
            text-align: right;
            width: 130px;
        }

        ul.mz_suCalendarNav li a {
            display: block;
            text-align: center;
            padding: 5px;
            width: 24px;
            font-size: 85%;
            font-weight: bold;
            line-height: 1.2;
            text-decoration: none;
            text-transform: uppercase;
        }

            ul.mz_suCalendarNav li a:link,
            ul.mz_suCalendarNav li a:visited {
                background-color: #f9f9f9;
                border: 1px solid #dfdfdf;
            }

            ul.mz_suCalendarNav li a:hover,
            ul.mz_suCalendarNav li a:active {
                background-color: #fff;
                border: 1px solid #dfdfdf;
            }

            ul.mz_suCalendarNav li a.mz_suCal_curr {
                background-color: #dfdfdf;
                border: 1px solid #b2b2b2;
                color: #000;
            }

div.mz_prodList_section { /* container for all products on list page */
    clear: both;
    margin: 0 0 5px 0;
    overflow: hidden;
    padding: 5px;
}

    div.mz_prodList_section hr {
        display: none;
    }

        div.mz_prodList_section hr:nth-of-type(4n) {
            display: block;
            border: none;
            clear: both;
            height: 1px;
        }



/* individual products */
article {
    float: left;
    position: relative;
}

    article:hover,
    .mz_hover {
        box-shadow: 0 0 3px 1px rgba(85, 85, 85, 0.5);
    }

    article img {
        display: block;
        opacity: 1.0;
    }

.mz_gridView article {
    margin: 0 0 15px 0;
    padding: 5px;
    width: 180px;
}

article a.mz_list_imgLnk {
    display: block;
    padding: 0 0 5px 0;
    position: relative;
}

article h3 {
    font-size: 110%;
    padding: 0 0 0.3em 0;
}
    /* product title */
    article h3 a:link,
    article h3 a:visited {
        text-decoration: none;
    }

    article h3 a:hover,
    article h3 a:active {
        text-decoration: underline;
    }

article h4 {
    font-weight: normal;
}
/* product price */

/* individual products LIST MODE*/
div.nm_list_mode.mz_prodList_section hr,
.mq div.nm_list_mode.mz_prodList_section hr:nth-of-type(4n),
.mq div.nm_list_mode.mz_prodList_section hr:nth-of-type(5n) {
    display: none;
}

.nm_list_mode article {
    border-bottom: solid 1px #efefef;
    padding: 10px 5px;
    width: 98%;
}

    .nm_list_mode article img {
        display: none;
    }

    .nm_list_mode article h6.mz_baseListIcon_newin {
        background: transparent url(../images/sprite_list_icons.png) no-repeat;
        display: inline;
        float: left;
        height: 25px;
        left: 5px;
        top: 5px;
        width: 25px;
        text-indent: -9999px;
        z-index: 10;
        width: 25px;
    }
    /* icon */

    .nm_list_mode article a.mz_list_imgLnk {
        display: none;
    }

    .nm_list_mode article h5.mz_prodCode {
        display: inline-block;
        float: left;
        font-size: 0.8em;
        font-weight: normal;
        margin: 0 5px 0 30px;
        min-width: 90px;
        max-width: 90px;
        overflow: hidden;
        padding: 0 5px;
    }
    /* product code */
    .nm_list_mode article h3 {
        display: inline-block;
        min-width: 305px;
        max-width: 305px;
        padding: 0 5px;
    }
    /* product title */
    .nm_list_mode article h4 {
        display: inline-block;
        min-width: 73px;
        max-width: 73px;
        padding: 0 5px;
        vertical-align: top;
    }
    /* price */
    .nm_list_mode article h5.mz_promoMsg {
        display: inline-block;
        float: right;
        margin-left: 0;
        min-width: 215px;
        max-width: 215px;
        padding-right: 10px;
    }
/* custom message */

/* NEW PRICING */
article h4 span.mz_prevPrice {
    color: #999;
    text-decoration: line-through;
}
/* previous product price */
article h4 strong.mz_salePrice {
    color: #000;
    font-weight: bold;
}
/* sale product price */
article h5.mz_promoMsg {
    color: #000;
}
/* promotional message */

article h4.mz_hidePrice {
    color: #999;
}
/* optional hidden price message */

article h5.mz_altInfo {
    color: #999;
    font-size: 85%;
    font-weight: normal;
    padding: 0 0 0.2em 0;
}
/*div.mz_list_addedInfo { background: #fdfdfd; border-top: 1px solid #efefef; margin-top: 5px; padding: 5px; }*/
article div.mz_list_addedInfo h5 {
    color: #5f5f5f;
    font-size: 85%;
    font-weight: normal;
}

div.mz_list_addedInfo div.mz_errorMsg {
    clear: both;
    color: #c00;
    float: left;
    font-size: 85%;
    margin: 5px 0;
    padding: 5px;
}

span.mz_numInBasket,
span.mz_noStockFlag,
span.mz_discontinueFlag,
article a.mz_list_quickLnk {
    display: block;
    font-size: 85%;
    font-weight: bold;
    line-height: 1.2;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    width: 180px;
}

span.mz_numInBasket {
    background: rgb(255,255,153);
    background: rgba(255,255,153,0.8);
    bottom: 5px;
    line-height: 1;
    padding: 5px 0;
}

span.mz_noStockFlag {
    background: rgb(102,0,0);
    background: rgba(102,0,0,0.7);
    color: #fff;
    top: 25%;
    padding: 10px 0;
}

span.mz_discontinueFlag {
    background: rgb(153,153,153);
    background: rgba(153,153,153,0.6);
    color: #fff;
    top: 0;
    height: 95px;
    padding: 85px 0 0 0;
}

    span.mz_discontinueFlag span {
        cursor: pointer;
        text-decoration: underline;
    }

/* ++ previously purchased ++ */
/* simple article highlight - recommended */
article.mz_prevPurch {
    background: #eeffee;
}

/* image only outline highlight */
/* article.mz_prevPurch { padding: 0 0 5px 0; width: 190px; }
article.mz_prevPurch a.mz_list_imgLnk { padding: 5px; background: #eeffee; } */

/* possible icon option */
/* article.mz_prevPurch div.mz_product_info h3 { background: url(../images/sprite_left_icons.png) 0 0 no-repeat; padding-left: 15px; } */

#magipixGallery img.mz_prevPurch {
    background: #eeffee;
}
/* detail page highlight - image only */



/* may need to revise this depending on javascript */
article a.mz_list_quickLnk {
    background: #ccc;
    padding: 5px 0;
    width: 120px;
    position: absolute;
    top: 155px;
    left: 35px;
    z-index: 999;
}

    article a.mz_list_quickLnk:link,
    article a.mz_list_quickLnk:visited {
        border: 1px solid #999;
    }

    article a.mz_list_quickLnk:hover,
    article a.mz_list_quickLnk:active {
        border: 1px solid #666;
    }


/* buy from list page option */
article fieldset {
    overflow: hidden;
    padding-top: 3px;
}

    article fieldset input,
    article fieldset a.mz_listBuyNow,
    article fieldset a.mz_listBackorder
    /*article fieldset a.mz_listWishlist*/ {
        float: left;
        padding: 2px;
    }

    article fieldset input {
        border: 1px solid #b2b2b2;
        margin-right: 5px;
        width: 29px;
    }

    article fieldset a.mz_listBuyNow,
    article fieldset a.mz_listBackorder
    /*article fieldset a.mz_listWishlist*/ {
        color: #fff;
        text-align: center;
        text-decoration: none;
        width: 119px;
    }

    article fieldset a.mz_listAddList {
        display: block;
        clear: both;
        font-size: 0.75em;
        font-weight: bold;
        margin: 3px 0 0 0;
        padding: 3px 0;
    }

    article fieldset a.mz_listBuyNow:link,
    article fieldset a.mz_listBuyNow:visited {
        border: 1px solid #666;
        background-color: #666;
    }

    article fieldset a.mz_listBuyNow:hover,
    article fieldset a.mz_listBuyNow:active {
        border: 1px solid #333;
        background-color: #333;
    }

    article fieldset a.mz_listBackorder {
        font-size: 0.75em;
        padding: 5px 2px 4px 2px;
    }

    article fieldset a.mz_listNotify {
        display: block;
        font-size: 0.75em;
        padding: 5px 2px 4px 2px;
        text-align: center;
    }

        article fieldset a.mz_listNotify:link,
        article fieldset a.mz_listNotify:visited,
        article fieldset a.mz_listBackorder:link,
        article fieldset a.mz_listBackorder:visited {
            border: 1px solid #999;
            background-color: #999;
            color: #fff;
            text-decoration: none;
        }

        article fieldset a.mz_listNotify:hover,
        article fieldset a.mz_listNotify:active,
        article fieldset a.mz_listBackorder:hover,
        article fieldset a.mz_listBackorder:active {
            border: 1px solid #666;
            background-color: #666;
            color: #fff;
        }


    /*
article fieldset a.mz_listWishlist:link,
article fieldset a.mz_listWishlist:visited { border: 1px solid #ccc; background-color: #ccc; color: #666; }
article fieldset a.mz_listWishlist:hover,
article fieldset a.mz_listWishlist:active { border: 1px solid #999; background-color: #999; color: #fff; }
*/
    article fieldset.mz_noPurchase {
        visibility: hidden;
    }

/* ++ DETAIL PAGE ++ */
/* detail page structural elements */
#mz_detailPrimary {
    overflow: hidden;
    text-align: left;
    width: 100%;
}

#mz_detailPrimary_main {
    overflow: hidden;
    position: relative;
}

#magipixGallery {
    float: left;
    overflow: hidden;
    position: relative;
    width: 380px;
}

#mz_prodDetails,
#mz_titlePrice {
    float: right;
    overflow: hidden;
    padding: 0 10px 10px 10px;
    width: 590px;
}

div.mz_upsell,
div.mz_recentViews {
    clear: both;
    overflow: hidden;
    width: 100%;
}

#mz_additionalInfo {
    clear: both;
    width: 100%;
}

#mz_detailPrimary img {
    display: block;
}

/* magipix gallery content */
#magipixGallery img.magipix_MediumImg {
    border: 1px solid #efefef;
    padding: 4px;
}

#magipixGallery a.magipix_button {
    float: left;
    font-size: 90%;
    margin: 0 10px 0 0;
    padding: 5px 0 5px 18px;
    width: 155px;
    text-transform: uppercase;
}

#magipixGallery a.magipix_ViewLarge {
    background: transparent url(../images/sprite_left_icons.png) 0 -240px no-repeat;
}

#magipixGallery a.magipix_ViewVideo {
    background: transparent url(../images/sprite_left_icons.png) 0 -420px no-repeat;
}

#magipixGallery ul#magipix_Thumbs {
    clear: left;
    padding-top: 10px;
    overflow: hidden;
}

    #magipixGallery ul#magipix_Thumbs li {
        float: left;
        margin: 0 10px 10px 0;
        width: 102px;
    }

        #magipixGallery ul#magipix_Thumbs li a {
            display: block;
        }

            #magipixGallery ul#magipix_Thumbs li a:link,
            #magipixGallery ul#magipix_Thumbs li a:visited {
                background-color: #efefef;
            }

            #magipixGallery ul#magipix_Thumbs li a:hover,
            #magipixGallery ul#magipix_Thumbs li a:active {
                background-color: #ccc;
            }

            #magipixGallery ul#magipix_Thumbs li a img {
                padding: 1px;
            }

#magipixGallery span.mz_numInBasket {
    width: 378px;
    top: 1px;
    left: 1px;
    height: 10px;
    padding: 10px 0;
}


/* product details primary content */
ul.mz_nextprev {
    float: right;
    list-style: none;
    margin: 0 0 10px 10px;
}

    ul.mz_nextprev li {
        display: inline;
        font-size: 85%;
        text-transform: uppercase;
    }

        ul.mz_nextprev li.prev-prod {
            border-right: 1px solid #5f5f5f;
            margin: 0 5px 0 0;
            padding: 0 5px 0 0;
        }

#mz_titlePrice h1 {
    font-size: 175%;
    font-weight: normal;
    line-height: 1.2;
    padding: 0 0 1.0em 0;
}

#mz_titlePrice h2#mz_det_price {
    border-bottom: 1px solid #efefef;
    clear: both;
    color: #333;
    font-size: 200%;
    font-weight: normal;
    padding: 0 0 0.5em 0;
}

    /* NEW PRICING */
    #mz_titlePrice h2#mz_det_price span.mz_prevPrice {
        color: #999;
        text-decoration: line-through;
    }

    #mz_titlePrice h2#mz_det_price strong.mz_salePrice {
        color: #000;
    }

    #mz_titlePrice h2#mz_det_price span.mz_hidePrice {
        font-size: 14px;
    }

#mz_titlePrice h3#mz_used_price {
    font-size: 90%;
    font-weight: bold;
    padding: 5px 0;
}

    #mz_titlePrice h3#mz_used_price span.mz_used_priceTitle,
    #mz_titlePrice h3#mz_used_price span.mz_used_priceMsg {
        font-weight: normal;
    }

    #mz_titlePrice h3#mz_used_price span.mz_used_priceTitle {
        text-transform: uppercase;
    }

#mz_titlePrice h2#mz_det_price span.mz_packUnit,
#mz_itemAdded_item h4 span.mz_packUnit,
#mz_titlePrice h2#mz_det_price span.mz_regRRP,
#mz_itemAdded_item h4 span.mz_regRRP,
#mz_titlePrice h2#mz_det_price span.mz_taxTag,
#mz_itemAdded_item h4 span.mz_taxTag {
    text-decoration: none;
    font-size: 75%;
}

    #mz_titlePrice h2#mz_det_price span.mz_regRRP strong,
    #mz_itemAdded_item h4 span.mz_regRRP strong {
        font-weight: normal;
    }

#mz_prodDetails h5 {
    color: #999;
    font-size: 85%;
    padding: 0.5em 0;
    text-transform: uppercase;
}

#mz_prodDetails a.mz_det_logo {
    border: 1px solid #efefef;
    float: right;
    margin: 0 0 10px 10px;
    padding: 2px;
    width: 100px;
}

h5 + div.mz_det_shortDesc {
    clear: none;
}

div.mz_det_promo {
    clear: right;
    border-bottom: 1px solid #efefef;
    padding: 10px 0;
}

    div.mz_det_promo h3 {
        border: 1px dotted #f0b2b2;
        background: #fae5e5;
        font-size: 110%;
        padding: 10px;
        text-align: center;
    }

div.mz_reviewIntro {
    border-bottom: 1px solid #efefef;
    padding: 0 0 10px 0;
}

    div.mz_reviewIntro ul {
        list-style: none;
    }

        div.mz_reviewIntro ul li {
            background: #fcfcfc url(../images/bg_review_star.png) top left no-repeat;
            display: inline-block;
            height: 11px;
            margin-right: 5px;
            padding: 5px 0;
            width: 22px;
            text-indent: -9999px;
        }

            div.mz_reviewIntro ul li.mz_activeStar {
                background: #fc0 url(../images/bg_review_star.png) top left no-repeat;
            }

            div.mz_reviewIntro ul li.mz_reviewLnk {
                background: none;
                padding-left: 10px;
                width: auto;
                text-indent: 0;
            }

div.mz_prodInfo_icons {
}

div.mz_prodInfo_legend {
    padding: 20px 10px;
}

    div.mz_prodInfo_legend h2 {
        font-size: 125%;
        padding: 0 0 10px 0;
    }

    div.mz_prodInfo_icons ul,
    div.mz_prodInfo_legend ul {
        list-style: none;
        overflow: hidden;
    }

        div.mz_prodInfo_icons ul li,
        div.mz_prodInfo_legend ul li {
            background-image: url(../images/sprite_prodInfo_icons.png);
            background-repeat: no-repeat;
            float: left;
            margin: 0 10px 10px 0;
        }

        /* adjust heights and widths below according to icons used on site */
        div.mz_prodInfo_icons ul li {
            height: 70px;
            text-indent: -9999px;
            width: 70px;
        }

        div.mz_prodInfo_legend ul li {
            color: #999;
            height: 55px;
            font-size: 85%;
            font-weight: bold;
            line-height: 1.2;
            padding: 15px 0 0 75px;
            max-width: 135px;
            text-transform: uppercase;
        }
/* up to 25 icons - add as required and adjust background positions accordingly */
li.mz_prodInfo_icon01 {
    background-position: 0 0;
}

li.mz_prodInfo_icon02 {
    background-position: 0 -70px;
}

li.mz_prodInfo_icon03 {
    background-position: 0 -140px;
}

li.mz_prodInfo_icon04 {
    background-position: 0 -210px;
}

li.mz_prodInfo_icon05 {
    background-position: 0 -280px;
}

#mz_prodDetails div.mz_genericContent {
    padding: 5px 10px 10px 0;
}

    #mz_prodDetails div.mz_genericContent p {
        padding-right: 2.0em;
    }

#mz_prodDetails div.mz_det_prodConfigInfo {
    background: #fdfdfd;
    border-top: 1px solid #efefef;
    clear: both;
    margin: 5px 0 15px 0;
    padding: 5px;
}

    #mz_prodDetails div.mz_det_prodConfigInfo h5 {
        color: #5f5f5f;
        font-size: 100%;
        font-weight: normal;
        padding: 0.2em 0;
        text-transform: none;
    }

        #mz_prodDetails div.mz_det_prodConfigInfo h5 strong {
            font-weight: bold;
        }

#mz_det_tiered {
    padding: 0 0 10px 0;
}

    #mz_det_tiered h3 {
        font-size: 110%;
        padding: 0 0 5px 0;
    }

    #mz_det_tiered table.mz_tieredTbl {
        border-bottom: 1px solid #efefef;
        width: 300px;
    }

        #mz_det_tiered table.mz_tieredTbl tr {
        }

        #mz_det_tiered table.mz_tieredTbl th,
        #mz_det_tiered table.mz_tieredTbl td {
            border-top: 1px solid #efefef;
            padding: 3px 5px;
        }

        #mz_det_tiered table.mz_tieredTbl th {
            border-top: 1px solid #efefef;
            text-align: right;
        }

        #mz_det_tiered table.mz_tieredTbl td {
            text-align: left;
        }

        #mz_det_tiered table.mz_tieredTbl tr.mz_alt_row th,
        #mz_det_tiered table.mz_tieredTbl tr.mz_alt_row td {
            background-color: #fdfdfd;
        }

fieldset#mz_det_versionOptions {
    overflow: hidden;
}

    fieldset#mz_det_versionOptions select,
    fieldset#mz_det_versionOptions input {
        border: 1px solid #b2b2b2;
        color: #5f5f5f;
        font-family: Arial, Helvetica, sans-serif;
        margin: 5px 10px 5px 0;
    }

    fieldset#mz_det_versionOptions select {
        float: left;
        padding: 0.3em 3px;
        width: 300px;
    }

    fieldset#mz_det_versionOptions input {
        clear: left;
        float: left;
        padding: 10px 3px;
        width: 44px;
    }

    fieldset#mz_det_versionOptions table.mz_dataTbl input {
        clear: none;
        float: none;
        padding: 3px;
        width: 30px;
    }

    fieldset#mz_det_versionOptions span.mz_instockMsg,
    fieldset#mz_det_versionOptions span.mz_lowstockMsg,
    fieldset#mz_det_versionOptions span.mz_nostockMsg,
    fieldset#mz_det_versionOptions span.mz_discontinuedMsg {
        clear: left;
        display: block;
        font-size: 85%;
        font-weight: bold;
        line-height: 1.2;
        padding: 3px 0;
        text-transform: uppercase;
    }

    /* wide table specific */
    fieldset#mz_det_versionOptions div.mz_tableContainer {
        overflow: auto;
        width: 590px;
    }

        fieldset#mz_det_versionOptions div.mz_tableContainer table.mz_dataTbl th {
            white-space: nowrap;
        }

a.mz_det_infolink {
    float: left;
    font-size: 85%;
    margin: 5px 0 0 0;
    padding: 0.3em 0;
    text-transform: uppercase;
    width: 100px;
}

a#mz_btn_giant,
a#mz_btn_giant02,
a#mz_btn_giant03 {
    float: left;
    margin: 5px 10px 10px 0;
    padding: 10px;
    width: 175px;
}

a#mz_btn_giant {
    color: #fff;
    font-size: 130%;
    text-align: center;
    text-decoration: none;
}
    /* add to cart or make enquiry button */
    a#mz_btn_giant:link,
    a#mz_btn_giant:visited {
        background-color: #666;
    }

    a#mz_btn_giant:hover,
    a#mz_btn_giant:active {
        background-color: #333;
    }

a#mz_btn_giant02 {
    background: transparent url(../images/sprite_left_icons.png) 0 -350px no-repeat;
    font-size: 110%;
    padding-left: 20px;
    width: 165px;
}
/* add to wishlist */
a#mz_btn_giant03 {
    font-size: 130%;
    margin-top: 0;
    text-align: center;
    text-decoration: none;
}
    /* third action button, e.g. book an appointment */
    a#mz_btn_giant03:link,
    a#mz_btn_giant03:visited {
        background-color: #ccc;
        color: #666;
    }

    a#mz_btn_giant03:hover,
    a#mz_btn_giant03:active {
        background-color: #999;
        color: #fff;
    }

#mz_prodDetails div.mz_feedbackMsg {
    display: block;
    clear: both;
    padding: 0;
}

    #mz_prodDetails div.mz_feedbackMsg h3 {
        padding: 0 10px;
    }

#mz_clickCollect {
    background: #fdfdfd;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    padding: 10px;
}

    #mz_clickCollect h3 {
        font-size: 110%;
        padding: 0 0 5px 0;
    }

    #mz_clickCollect p {
        padding: 0.2em 2.0em 0.8em 0;
    }

    #mz_clickCollect fieldset {
        overflow: hidden;
    }

        #mz_clickCollect fieldset select {
            border: 1px solid #b2b2b2;
            color: #5f5f5f;
            float: left;
            font-family: Arial, Helvetica, sans-serif;
            margin: 5px 10px 5px 0;
            padding: 0.3em 3px;
            width: 300px;
        }

            #mz_clickCollect fieldset select optgroup {
                font-style: normal;
                font-weight: bold;
                border-top: 1px solid #efefef;
                margin: 5px;
                padding-top: 5px;
            }

        #mz_clickCollect fieldset a.mz_btnSecondary {
            clear: none;
            margin: 5px 0 10px 0;
        }

dl#mz_det_addedInfo_accordion {
    border-bottom: 1px solid #efefef;
    clear: left;
    margin: 15px 0;
}

    dl#mz_det_addedInfo_accordion dt {
        background: transparent url(../images/sprite_nav_icons.png) right -95px no-repeat;
        border-top: 1px solid #efefef;
        color: #333;
        cursor: pointer;
        display: block;
        font-size: 110%;
        padding: 10px 0;
    }

        dl#mz_det_addedInfo_accordion dt:hover {
            background-color: #fdfdfd;
            background-position: right -145px;
            color: #000;
        }

        dl#mz_det_addedInfo_accordion dt.mz_det_infoOpen {
            background-position: right -195px;
        }

            dl#mz_det_addedInfo_accordion dt.mz_det_infoOpen:hover {
                background-position: right -245px;
                color: #000;
            }

    dl#mz_det_addedInfo_accordion dd {
        background-color: #fcfcfc;
        border-top: 1px solid #efefef;
        padding: 5px 10px 10px 5px;
    }

    dl#mz_det_addedInfo_accordion ul.mz_detResources {
        list-style: none;
        margin-left: 0;
    }

ul.mz_detResources li a {
    background: transparent url(../images/sprite_left_icons.png) no-repeat;
    display: block;
    padding: 0.3em 0 0 22px;
}

    ul.mz_detResources li a.assetDoc {
        background-position: 0 -480px;
    }

    ul.mz_detResources li a.assetSpread {
        background-position: 0 -540px;
    }

    ul.mz_detResources li a.assetPdf {
        background-position: 0 -600px;
    }

    ul.mz_detResources li a.assetTxt {
        background-position: 0 -660px;
    }

    ul.mz_detResources li a.assetZip {
        background-position: 0 -720px;
    }

dl#mz_det_addedInfo_accordion dd table {
    width: auto;
    border-bottom: 1px solid #ccc;
}

    dl#mz_det_addedInfo_accordion dd table th,
    dl#mz_det_addedInfo_accordion dd table td {
        background: transparent;
    }

        dl#mz_det_addedInfo_accordion dd table th:first-child,
        dl#mz_det_addedInfo_accordion dd table td:first-child {
            text-align: right;
        }

    dl#mz_det_addedInfo_accordion dd table th {
        border-bottom: 1px solid #ccc;
        border-top: 1px solid #ccc;
    }

    dl#mz_det_addedInfo_accordion dd table td {
    }

a.mz_quickview_lnkThru {
    display: none;
}

#mz_det_altReviews {
    margin: 0 0 15px 0;
    overflow: hidden;
    padding: 10px 0;
}
/* container for Trustpilot, etc. */
#mz_det_socialSharing {
}
/* container for Facebook, ShareThis, AddThis, etc. */
#mz_facebook_like {
    margin: 0 0 15px 0;
    overflow: hidden;
    padding: 10px 0;
}

/* ++ upsell and recently viewed ++ */
/* upsell and recently viewed shared styles */
div.mz_upsell div.mz_upsellGrid,
div.mz_recentViews div.mz_upsellGrid {
    overflow: hidden;
    padding: 5px 5px 10px 5px;
    width: 100%;
}

div.mz_upsell div.mz_upsellGrid_item,
div.mz_recentViews div.mz_upsellGrid_item {
    float: left;
    margin: 0 5px 10px 0;
    padding: 3px;
    width: 110px;
}

    div.mz_upsell div.mz_upsellGrid_item:hover,
    div.mz_recentViews div.mz_upsellGrid_item:hover {
        box-shadow: 0 0 3px 1px rgba(85, 85, 85, 0.5);
    }

div.mz_upsellGrid_item h3 {
    font-size: 85%;
    font-weight: normal;
}

div.mz_upsellGrid_item h4 {
    font-size: 85%;
}

    div.mz_upsellGrid_item h4 span.mz_prevPrice {
        color: #999;
        font-weight: normal;
        text-decoration: line-through;
    }
    /* previous product price */
    div.mz_upsellGrid_item h4 strong.mz_salePrice {
        color: #000;
        font-weight: bold;
    }
/* sale product price */
div.mz_upsellGrid_item h5,
div.mz_upsellGrid_item h5.mz_promoMsg {
    color: #000;
    font-size: 75%;
    font-weight: normal;
    text-transform: uppercase;
}

/* upsell content */
div.mz_upsell h2 {
    font-size: 125%;
    padding: 0 0 5px 10px;
}

div.mz_upsell a.mz_upsellGrid_img {
}

div.mz_upsell img {
    border: 1px solid #efefef;
}

div.mz_upsell hr {
    display: none;
}

/* recently viewed products content */
div.mz_recentViews {
    text-align: left;
}

    div.mz_recentViews h2 {
        padding: 5px;
    }

    div.mz_recentViews a.mz_upsellGrid_img {
    }

    div.mz_recentViews img {
        border: 1px solid #efefef;
    }

a.recView_clearAll {
    float: right;
    font-size: 75%;
    margin: 0 10px 10px 0;
    padding: 5px;
    text-align: center;
    text-transform: uppercase;
    width: 90px;
}

    a.recView_clearAll:link,
    a.recView_clearAll:visited {
        background-color: #efefef;
        border: 1px solid #dfdfdf;
        text-decoration: none;
    }

    a.recView_clearAll:hover,
    a.recView_clearAll:active {
        background-color: #efefef;
        border: 1px solid #999;
    }


/* additional information content */
#mz_additionalInfo {
    overflow: hidden;
    margin: 0 0 20px 0;
    width: 100%;
}

div.detailTabs {
    margin-bottom: 20px;
}

div.tabContent {
    border: 1px solid #efefef;
    margin: -1px 10px 0 0;
    overflow: hidden;
    padding: 10px;
}

ul.detailLinks {
    display: block;
    height: 40px;
    overflow: hidden;
    padding: 0 0 0 10px;
}

    ul.detailLinks li {
        border: 1px solid #efefef;
        border-bottom: none;
        float: left;
        height: 40px;
        margin-right: 10px;
    }

        ul.detailLinks li a {
            background-color: #f9f9f9;
            display: block;
            height: 18px;
            font-size: 110%;
            padding: 10px;
            text-decoration: none;
        }

            ul.detailLinks li a:link,
            ul.detailLinks li a:visited {
                border-bottom: 1px solid #efefef;
            }

            ul.detailLinks li a:hover,
            ul.detailLinks li a:active,
            ul.detailLinks li a.currentDetail {
                border-bottom: 1px solid #efefef;
                background-color: #fff;
                color: #000;
            }

            ul.detailLinks li a.currentDetail {
                border-bottom: 1px solid #ffffff;
            }





/* ++ POP UPS ++ */
/* item added to cart pop-up */
#mz_itemAdded_pop {
}

    #mz_itemAdded_pop div.mz_feedbackMsg {
        margin: 0 0 15px 0;
    }

#mz_itemAdded_item {
    border-right: 1px solid #efefef;
    float: left;
    margin: 0 0 15px 0;
    padding: 0 10px 0 0;
    width: 375px;
}

#mz_itemAdded_cart {
    float: right;
    margin: 0 0 15px 0;
    width: 285px;
}

#mz_itemAdded_pop div.mz_upsell,
#mz_itemAdded_pop div.mz_recentViews {
    border-top: 1px solid #efefef;
    clear: both;
    padding: 10px 0;
    width: 680px;
}

#mz_itemAdded_item h2,
#mz_itemAdded_cart h2 {
    font-size: 175%;
    font-weight: normal;
    padding: 0 0 0.5em 0;
}

#mz_itemAdded_item h2 {
    background: transparent url(../images/sprite_left_icons.png) 0 0 no-repeat;
    color: #090;
    padding: 0 0 0.5em 15px;
}

#mz_itemAdded_item img.pop_singleImg {
    border: 1px solid #efefef;
    float: left;
    margin: 10px 10px 10px 0;
    width: 180px;
}

#mz_itemAdded_item h3 {
    font-size: 125%;
    font-weight: normal;
    padding: 1.5em 0 0.5em 0;
}

#mz_itemAdded_item h4 {
    font-size: 125%;
    font-weight: normal;
    padding: 0 0 0.4em 0;
}

    #mz_itemAdded_item h4 span {
        color: #999;
        text-decoration: line-through;
    }

    #mz_itemAdded_item h4 strong {
        color: #000;
        font-weight: bold;
    }

#mz_itemAdded_item h5 {
    color: #999;
    font-size: 85%;
    font-weight: normal;
    text-transform: uppercase;
}

#mz_itemAdded_item table.mz_dataTbl img {
    border: 1px solid #efefef;
}

#mz_itemAdded_item table.mz_dataTbl th {
    padding: 5px;
}

#mz_itemAdded_item table.mz_dataTbl td {
    padding: 5px;
    vertical-align: top;
}

#mz_itemAdded_item table.mz_dataTbl h3 {
    font-size: 100%;
    padding: 0 0 0.5em 0;
}

#mz_itemAdded_item table.mz_dataTbl h6 {
    font-size: 125%;
    font-weight: normal;
    padding: 0 0 0.4em 0;
    text-align: right;
}

#mz_itemAdded_cart table.mz_dataTbl td {
    padding: 10px;
}

    #mz_itemAdded_cart table.mz_dataTbl td:first-child {
        text-align: right;
    }

#mz_itemAdded_cart a.mz_btnPrimary {
    float: right;
    width: 202px;
}

#mz_itemAdded_cart a.mz_btnSecondary {
    clear: right;
    float: right;
    margin: 10px 0;
    padding: 5px;
    text-align: center;
    width: 210px;
}

#mz_itemAdded_pop div.mz_upsellGrid_item {
    margin: 0 15px 10px 0;
}

/* add to wishlist pop-up */
#mz_wishlistlogin_pop {
}

    #mz_wishlistlogin_pop div.mz_splitContainer {
        margin-top: 20px;
    }

    #mz_wishlistlogin_pop div.mz_mainHalf {
        width: 330px;
    }

/* list page quickview pop-up */
div.mz_quickview_pop {
    background-color: #fff;
    overflow: hidden;
    padding: 5px 10px 20px 20px;
    position: fixed;
    text-align: left;
    width: 770px;
    z-index: 25000;
}

    div.mz_quickview_pop #mz_detailPrimary {
        clear: both;
        max-height: 550px;
        overflow-y: auto;
    }

    div.mz_quickview_pop #mz_detailPrimary_main {
        width: 760px;
    }

    div.mz_quickview_pop #magipixGallery {
        width: 380px;
    }

    div.mz_quickview_pop #mz_prodDetails,
    div.mz_quickview_pop #mz_titlePrice {
        padding: 10px 10px 0 10px;
        width: 360px;
    }

    div.mz_quickview_pop fieldset#mz_det_versionOptions div.mz_tableContainer {
        width: 360px;
    }

    div.mz_quickview_pop div.mz_feedbackMsg {
        margin: 0 0 15px 0;
    }

    div.mz_quickview_pop a#mz_btn_giant {
        margin: 5px 0;
    }

    div.mz_quickview_pop a#mz_btn_giant02 {
    }

    div.mz_quickview_pop #magipixGallery a.magipix_button,
    div.mz_quickview_pop #magipixGallery ul#magipix_Thumbs,
    div.mz_quickview_pop ul.mz_nextprev,
    div.mz_quickview_pop h3#mz_used_price,
    div.mz_quickview_pop div.mz_det_shortDesc,
    div.mz_quickview_pop div.mz_reviewIntro,
    div.mz_quickview_pop div.mz_prodInfo_icons,
    div.mz_quickview_pop #mz_prodDetails div.mz_det_prodConfigInfo,
    div.mz_quickview_pop #mz_det_tiered,
    div.mz_quickview_pop #mz_clickCollect,
    div.mz_quickview_pop dl#mz_det_addedInfo_accordion,
    div.mz_quickview_pop #mz_det_socialSharing,
    div.mz_quickview_pop div.mz_upsell,
    div.mz_quickview_pop div.mz_recentViews,
    div.mz_quickview_pop #mz_additionalInfo,
    div.mz_quickview_pop div.mz_prodInfo_legend,
    div.mz_quickview_pop div.nosto_element {
        display: none;
    }

    div.mz_quickview_pop a.mz_quickview_lnkThru {
        clear: both;
        display: block;
        padding: 10px 5px;
        text-align: right;
    }

/* new add to multiple lists popup */
#mz_selectList_pop #mz_form fieldset ul li {
    padding-left: 0;
}

#mz_selectList_pop #mz_form ul li div {
    clear: both;
}

#mz_selectList_pop #mz_form fieldset.mz_newList label,
#mz_selectList_pop #mz_form fieldset.mz_newList input,
#mz_selectList_pop #mz_form fieldset.mz_newList textarea {
    float: none;
}

#mz_selectList_pop #mz_itemAdded_item {
    border-right: none;
    float: none;
    margin: 0 0 15px 0;
    padding: 0;
    width: 100%;
}

/* ++ COMMON ELEMENTS FOR LIST AND DETAIL PAGES ++ */

/* special category icons - option to have up to 19 but ONLY EVER APPEARS ONE AT A TIME */
/* set heirarchy is as below i.e. new is lowest/least important and customIcon10 would be highest/most important */
article h6,
#mz_detailPrimary_main h6 {
    background: transparent url(../images/sprite_specialCat_icons.png) no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    height: 60px;
    width: 60px;
    text-indent: -9999px;
    z-index: 10;
}

    /* classes for standard special category icons */
    article h6.mz_baseIcon_new,
    #mz_detailPrimary_main h6.mz_baseIcon_new {
        background-position: 0 0;
        z-index: 10;
    }
    /* new item */
    article h6.mz_baseIcon_excl,
    #mz_detailPrimary_main h6.mz_baseIcon_excl {
        background-position: 0 -60px;
        z-index: 20;
    }
    /* exclusive */
    article h6.mz_baseIcon_freeDel,
    #mz_detailPrimary_main h6.mz_baseIcon_freeDel {
        background-position: 0 -120px;
        z-index: 30;
    }
    /* free delivery */
    article h6.mz_baseIcon_bestSell,
    #mz_detailPrimary_main h6.mz_baseIcon_bestSell {
        background-position: 0 -180px;
        z-index: 40;
    }
    /* bestseller */
    article h6.mz_baseIcon_spOffer,
    #mz_detailPrimary_main h6.mz_baseIcon_spOffer {
        background-position: 0 -240px;
        z-index: 50;
    }
    /* special offer */
    article h6.mz_baseIcon_sale,
    #mz_detailPrimary_main h6.mz_baseIcon_sale {
        background-position: 0 -300px;
        z-index: 60;
    }
    /* sale */
    article h6.mz_baseIcon_furRed,
    #mz_detailPrimary_main h6.mz_baseIcon_furRed {
        background-position: 0 -360px;
        z-index: 70;
    }
    /* further reduced */
    article h6.mz_baseIcon_clear,
    #mz_detailPrimary_main h6.mz_baseIcon_clear {
        background-position: 0 -420px;
        z-index: 80;
    }
    /* clearance */
    article h6.mz_baseIcon_multi,
    #mz_detailPrimary_main h6.mz_baseIcon_multi {
        background-position: 0 -480px;
        z-index: 90;
    }
/* multibuy */

/* classes for standard category list only icons */

div.mz_prodList_section table h6 {
    background: transparent url(../images/sprite_list_icons.png) no-repeat;
    top: 0;
    right: 0;
    height: 25px;
    width: 25px;
    text-indent: -9999px;
    z-index: 10;
}

    div.mz_prodList_section table h6.mz_baseListIcon_justin {
        background-position: 0 0;
    }
/* just in */
table.mz_listTbl tr td {
    vertical-align: top;
}

table.mz_listTbl tr td {
    background-color: #fff;
    border-top: 1px solid #efefef;
    padding: 5px 10px;
    background-color: #fff;
}

/* classes for site specific custom special category icons - adjust positions as required */
article h6.mz_customIcon01,
#mz_detailPrimary_main h6.mz_customIcon01 {
    background-position: 0 -540px;
    z-index: 100;
}
/* custom icon 01 */
article h6.mz_customIcon02,
#mz_detailPrimary_main h6.mz_customIcon02 {
    background-position: 0 -540px;
    z-index: 110;
}
/* custom icon 02 */
article h6.mz_customIcon03,
#mz_detailPrimary_main h6.mz_customIcon03 {
    background-position: 0 -540px;
    z-index: 120;
}
/* custom icon 03 */
article h6.mz_customIcon04,
#mz_detailPrimary_main h6.mz_customIcon04 {
    background-position: 0 -540px;
    z-index: 130;
}
/* custom icon 04 */
article h6.mz_customIcon05,
#mz_detailPrimary_main h6.mz_customIcon05 {
    background-position: 0 -540px;
    z-index: 140;
}
/* custom icon 05 */
article h6.mz_customIcon06,
#mz_detailPrimary_main h6.mz_customIcon06 {
    background-position: 0 -540px;
    z-index: 150;
}
/* custom icon 06 */
article h6.mz_customIcon07,
#mz_detailPrimary_main h6.mz_customIcon07 {
    background-position: 0 -540px;
    z-index: 160;
}
/* custom icon 07 */
article h6.mz_customIcon08,
#mz_detailPrimary_main h6.mz_customIcon08 {
    background-position: 0 -540px;
    z-index: 170;
}
/* custom icon 08 */
article h6.mz_customIcon09,
#mz_detailPrimary_main h6.mz_customIcon09 {
    background-position: 0 -540px;
    z-index: 180;
}
/* custom icon 09 */
article h6.mz_customIcon10,
#mz_detailPrimary_main h6.mz_customIcon10 {
    background-position: 0 -540px;
    z-index: 190;
}
/* custom icon 10 */

article.mz_prevPurch h6.mz_ppIcon_su1to3,
article.mz_prevPurch h6.mz_ppIcon_su4to6,
article.mz_prevPurch h6.mz_ppIcon_su7to9,
article.mz_prevPurch h6.mz_ppIcon_su10to12,
article.mz_prevPurch h6.mz_ppIcon_su13to15,
#magipixGallery h6.mz_ppIcon_su1to3,
#magipixGallery h6.mz_ppIcon_su4to6,
#magipixGallery h6.mz_ppIcon_su7to9,
#magipixGallery h6.mz_ppIcon_su10to12,
#magipixGallery h6.mz_ppIcon_su13to15 {
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    height: 20px;
    width: 24px;
    padding: 5px;
    position: absolute;
    top: 0;
    left: 0;
    text-indent: 0;
    overflow: hidden;
}

article.mz_prevPurch h6.mz_ppIcon_su1to3,
#magipixGallery h6.mz_ppIcon_su1to3 {
    background: #ff9;
}

article.mz_prevPurch h6.mz_ppIcon_su4to6,
#magipixGallery h6.mz_ppIcon_su4to6 {
    background: #fc0;
}

article.mz_prevPurch h6.mz_ppIcon_su7to9,
#magipixGallery h6.mz_ppIcon_su7to9 {
    background: #f60;
    color: #fff;
}

article.mz_prevPurch h6.mz_ppIcon_su10to12,
#magipixGallery h6.mz_ppIcon_su10to12 {
    background: #c00;
    color: #fff;
}

article.mz_prevPurch h6.mz_ppIcon_su13to15,
#magipixGallery h6.mz_ppIcon_su13to15 {
    background: #600;
    color: #fff;
}


span.mz_packUnit,
span.mz_regRRP,
span.mz_regRRP strong,
span.mz_taxTag {
    color: #5f5f5f;
}

span.mz_regRRP,
span.mz_taxTag {
    font-size: 85%;
}

span.mz_packUnit ~ span.mz_taxTag ~ span.mz_regRRP { /* need to set combos site by site depending on configuration possibilities */
}


/* ++ CATEGORY LANDING PAGE WIDGETS - SHARED WITH HOMEPAGE, SPECIFIC CSS IN HOME.CSS ++ */
/* structural elements */
#custom_catFeatures {
    overflow: hidden;
    width: 100%;
}

    #custom_catFeatures img {
        display: block;
    }

div.mz_prodSect,
div.mz_featureSect {
    overflow: hidden;
    width: 100%;
}

div.mz_prodSect {
    padding: 0 0 20px 0;
}

div.mz_priFeature_1col,
div.mz_priFeature_2col,
div.mz_priFeature_3col {
    float: left;
    overflow: hidden;
}

div.mz_priFeature_1col {
    float: none;
}

#custom_catFeatures div.mz_priFeature_1col {
    margin: 0 0 10px 0;
    width: 792px;
}

#custom_catFeatures div.mz_priFeature_2col {
    margin: 0 10px 10px 0;
    width: 391px;
}

#custom_catFeatures div.mz_priFeature_3col {
    margin: 0 10px 10px 0;
    width: 257px;
}

/* featured product elements */
#custom_catFeatures article {
    width: 100%;
}

    #custom_catFeatures article:hover,
    #custom_catFeatures .mz_hover {
        border: none;
        box-shadow: none;
    }

h3.mz_indProd_title { /* to be styled on site by site basis if required */
}

/* position background in relation to <h6> icons as required */
#custom_catFeatures div.mz_prodSect article {
    background: transparent url(../images/sprite_feature_icons.png) right 0 no-repeat;
}

    #custom_catFeatures div.mz_prodSect article h6 {
        top: 0;
        right: 60px;
    }

#custom_catFeatures div.mz_prodSect div.mz_priFeature_1col a.mz_list_imgLnk,
#custom_catFeatures div.mz_prodSect div.mz_priFeature_1col div.mz_product_info,
#custom_catFeatures div.mz_prodSect div.mz_priFeature_2col a.mz_list_imgLnk,
#custom_catFeatures div.mz_prodSect div.mz_priFeature_2col div.mz_product_info {
    float: left;
}

#custom_catFeatures div.mz_prodSect div.mz_priFeature_1col a.mz_list_imgLnk {
    margin: 0 10px 0 0;
    width: 235px;
}

#custom_catFeatures div.mz_prodSect div.mz_priFeature_2col a.mz_list_imgLnk {
    margin: 0 10px 0 0;
    width: 180px;
}

#custom_catFeatures div.mz_prodSect div.mz_priFeature_1col div.mz_product_info {
    padding: 65px 0 0 0;
    width: 485px;
}

#custom_catFeatures div.mz_prodSect div.mz_priFeature_2col div.mz_product_info {
    padding: 65px 0 0 0;
    width: 200px;
}


/* category list features */
h3.mz_indCat_title { /* to be styled on site by site basis if required */
}

ul.mz_indCat_list {
    border-top: 1px solid #efefef;
    list-style: none;
}

    ul.mz_indCat_list li {
        border-bottom: 1px solid #efefef;
    }

        ul.mz_indCat_list li a {
            display: block;
            padding: 5px;
        }

            ul.mz_indCat_list li a:link, ul.mz_indCat_list li a:visited {
                text-decoration: none;
            }

            ul.mz_indCat_list li a:hover, ul.mz_indCat_list li a:active {
                background-color: #fdfdfd;
                color: #000;
            }

div.mz_priFeature_3col a.mz_feature_imgLnk img.mz_indCat_img {
    height: 150px;
}

div.mz_priFeature_2col a.mz_feature_imgLnk img.mz_indCat_img,
div.mz_priFeature_2col ul.mz_indCat_list {
    float: left;
}

div.mz_priFeature_2col a.mz_feature_imgLnk img.mz_indCat_img {
    border: 1px solid #efefef;
    height: 180px;
    margin-right: 10px;
    padding: 4px;
    width: 180px;
}

div.mz_priFeature_2col ul.mz_indCat_list {
    width: 191px;
}


/* image list / split graphic generic styles */
ul.mz_imgList {
    list-style: none;
    overflow: hidden;
    width: 100%;
}

    ul.mz_imgList li {
        float: left;
    }

        ul.mz_imgList li a {
            display: block;
        }


/* logo list specific */
div.mz_priFeature_1col ul.mz_imgList {
    padding: 10px 0;
}

    div.mz_priFeature_1col ul.mz_imgList li {
        width: 132px;
        margin: 0 0 5px 0;
    }

        div.mz_priFeature_1col ul.mz_imgList li a {
            padding: 1px;
            width: 110px;
        }

            div.mz_priFeature_1col ul.mz_imgList li a:link,
            div.mz_priFeature_1col ul.mz_imgList li a:visited {
                background: #fff;
            }

            div.mz_priFeature_1col ul.mz_imgList li a:hover,
            div.mz_priFeature_1col ul.mz_imgList li a:active {
                background: #ccc;
            }

/* split graphic specific */
div.mz_priFeature_1col_alt {
    margin: 0 0 10px 0;
    width: 792px;
}
    /* set background colour or image based on site specific design requirements */
    div.mz_priFeature_1col_alt ul.mz_imgList {
        margin: 0 auto;
        width: 792px;
    }

        div.mz_priFeature_1col_alt ul.mz_imgList li {
            float: left;
            height: 50px;
        }
            /* set height based on site specific design requirements */
            div.mz_priFeature_1col_alt ul.mz_imgList li a,
            div.mz_priFeature_1col_alt ul.mz_imgList li img {
                display: block;
            }

/* sitewide graphic specific */
div.mz_sitewideFeature div.mz_priFeature_1col_alt {
    margin: 0 auto;
    width: 980px;
}

    div.mz_sitewideFeature div.mz_priFeature_1col_alt ul.mz_imgList {
        margin: 0 auto;
        width: 980px;
    }

        div.mz_sitewideFeature div.mz_priFeature_1col_alt ul.mz_imgList li {
            height: 30px;
        }
/* set height based on site specific design requirements */

/* generic text sections with image above */
div.mz_priFeature_3col a.mz_feature_imgLnk img.mz_indText_img,
div.mz_priFeature_4col a.mz_feature_imgLnk img.mz_indText_img {
    height: 150px;
}

/* shared half, third and quarter column width generic content styles */
div.mz_priFeature_1col .mz_genericContent,
div.mz_priFeature_2col .mz_genericContent,
div.mz_priFeature_3col .mz_genericContent,
div.mz_priFeature_4col .mz_genericContent {
    padding: 0 10px 20px 0;
}

    div.mz_priFeature_1col .mz_genericContent p,
    div.mz_priFeature_2col .mz_genericContent p,
    div.mz_priFeature_3col .mz_genericContent p,
    div.mz_priFeature_4col .mz_genericContent p {
        padding: 0.2em 1em 0.8em 0;
    }

    div.mz_priFeature_1col .mz_genericContent ul,
    div.mz_priFeature_2col .mz_genericContent ul,
    div.mz_priFeature_3col .mz_genericContent ul,
    div.mz_priFeature_4col .mz_genericContent ul {
        margin: 0.3em 1em 0.3em 30px;
    }

/* expandable text with image content feature */
div.mz_priFeature_1col img.mz_expText_img {
    float: left;
    border: none;
    margin: 0 15px 10px 0;
    padding: 0;
    width: 315px;
}

div.mz_priFeature_1col .mz_genericContent {
}

div.mz_contentExpand {
}

a.mz_readMore_lnk {
}

a.mz_readLess_lnk {
}


/* taxation text tag - features, list, and detail page */
span.mz_taxTag {
    color: #999;
    font-size: 85%;
    font-weight: normal;
    text-decoration: none;
}

div.mz_upsell h4 span.mz_taxTag {
}

div.mz_recentViews h4 span.mz_taxTag {
}

#mz_prodDetails h2#mz_det_price span.mz_taxTag,
#mz_itemAdded_item h4 span.mz_taxTag {
    text-decoration: none;
}


/* OLD price range slider */
#price-range {
    border: 1px solid #ccc;
    height: 10px;
    margin: 0 3px 10px 3px;
    position: relative;
}

    #price-range div.ui-slider-range {
        background-color: #efefef; /*border: none;*/
        height: 100%;
        position: absolute;
        z-index: 1;
    }

    #price-range a.ui-slider-handle {
        background: #999 url(../images/sprite_nav_icons.png) 0 -880px no-repeat;
        border: 1px solid #666;
        height: 18px;
        margin-left: -5px;
        position: absolute;
        top: -5px;
        width: 18px;
        z-index: 2;
    }

#mz_supportContent fieldset #price-range a {
    width: 10px;
}

#price-range-info {
    font-size: 90%;
    margin-bottom: 5px;
}

    #price-range-info span {
        font-weight: bold;
    }


/* miscellaneous*/
#overlay {
    background: #fff;
    opacity: 0.8;
    overflow: hidden;
    position: absolute;
    z-index: 2000;
}

#products-loading-image {
    position: absolute;
    z-index: 3000;
}


/* ++ media queries ++ */
@media screen and (min-width: 1250px) {
    .mq #custom_catFeatures div.mz_priFeature_1col,
    .mq #custom_catFeatures div.mz_priFeature_1col_alt {
        width: 966px;
    }

    .mq #custom_catFeatures div.mz_priFeature_2col {
        width: 478px;
    }

    .mq #custom_catFeatures div.mz_priFeature_3col {
        width: 315px;
    }

    .mq div.mz_priFeature_1col ul.mz_imgList li {
        width: 160px;
    }

    .mq #custom_catFeatures div.mz_prodSect div.mz_priFeature_1col div.mz_product_info {
        width: 600px;
    }

    .mq div.mz_priFeature_2col ul.mz_indCat_list {
        width: 278px;
    }

    .mq #mz_detailPrimary_main {
        float: left;
        width: 914px;
    }

    .mq #mz_prodDetails,
    .mq #mz_titlePrice {
        width: 514px;
    }

    .mq #mz_quickview_pop #mz_detailPrimary_main {
        width: 760px;
    }

    .mq div.mz_upsell {
        clear: none;
        float: right;
        width: 250px;
    }

    .mq #mz_itemAdded_pop div.mz_upsell {
        float: none;
        width: 100%;
    }

    .mq div.mz_upsell hr {
        border: none;
        clear: both;
        display: block;
        height: 1px;
        width: 100%;
    }
    /* .mq div.mz_upsell div.mz_upsellGrid_item:nth-child(odd) { clear: left; } */ /* remove hrs and try this in future */
    .mq div.mz_recentViews div.mz_upsellGrid_item {
        margin-right: 25px;
        padding: 5px;
    }

    .mq div.mz_prodList_section hr:nth-of-type(4n) {
        display: none;
    }

    .mq div.mz_prodList_section hr:nth-of-type(5n) {
        display: block;
        border: none;
        clear: both;
        height: 1px;
    }

    .mq fieldset#mz_det_versionOptions div.mz_tableContainer {
        width: 524px;
    }

    .mq .nm_list_mode article h3 {
        display: inline-block;
        min-width: 475px;
        max-width: 475px;
        padding: 0 5px;
    }
    /* product title */

    .mq ul.mz_suCalendarNav li {
        width: 45px;
        margin-right: 10px;
    }

        .mq ul.mz_suCalendarNav li:first-child {
            width: 130px;
        }

        .mq ul.mz_suCalendarNav li a {
            width: 33px;
        }
}
