LAYOUT
/* Layout: One Column
Theme: Basic v.2

The following styles control the general layout of your store
===============================================================*/

* {
    margin: 0;
    padding: 0;
}

img, img a {
    border: 0 none;
}

#wrapper {
    /* Wraps around everything and sets the total width of the storefront */
    position: relative;
    width: 960px;
    margin: 0 auto;
    padding: 10px 10px 0 10px;
}

#wrapperCheckout {
    /* Wrapper with 25px top margin to compensate for missing topNav on checkout pages */
    position: relative;
    width: 960px;
    margin: 30px auto 0 auto;
    padding: 10px 10px 0 10px;
}

/* TOP NAVIGATION AND HEADER
===============================================================*/

#topNav {
    /* Contains View Cart link and search field */
    width: 960px;
    height: 25px;
    margin: 10px auto 5px auto;
    font-size: 12px;
}

#topNav ul {
    list-style: none;
    margin: 0;
    text-align: end;
}

#topNav li {
    list-style-image: none;
    display: inline;
}

#header {
    /* The main header that contains your banner or logo */
    width: 960px;
    margin-bottom: 10px;
}

#nav {
    width: 960px;
    overflow: hidden;
    margin-top: 10px;
}

#nav ul {
	display: block;
	list-style: none;
	margin: 7px 0 7px 0;
	}

#nav li {
    list-style-image: none;
    display: inline;
}

#nav li a {
    padding: 9px 40px 7px 40px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
#NAVIGATION #nav li a
}

#nav li a:hover {
    padding: 9px 40px 7px 40px;
}

.navHeader {
    margin: 30px 0 0 10px;
}

#topNav a {
    padding: 30px 15px 10px 15px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

/* CONTENT / PRODUCT
===============================================================*/

#PRODUCT_DETAIL {
	display: flex;
	flex-wrap: wrap;
}

#productGrid {
    overflow: hidden;
    display: block;
    flex-wrap: wrap;
}

#content {
    /* Content wrapper used on browsing pages */
    position: relative;
    width: 960px;
    margin: 10px auto 0 auto;
}

#contentWide {
    /* Content wrapper used on checkout pages */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
    margin: 35px 0 0 0;
    padding: 20px 30px 30px 30px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    overflow: hidden;
}

.successfulPurchase{
    display:flex;
    justify-content: center;
}

#signinContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

#contentProductDetail {
    /* Content wrapper used on product details page */
    position: relative;
    width: 900px;
    margin: 40px 0 0 0;
    padding: 20px 30px 30px 30px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    min-height: 300px;
}

#promoBanner {
    /* Large banner on home page */
    margin-bottom: 20px;
}

#breadcrumbs {
    margin: 0 0 10px 0;
}

#breadcrumbs ul {
    list-style: none;
}

#breadcrumbs li {
	list-style-image: none;
	display: inline-block;
	}

#breadcrumbs li:after {
	/* Symbol to be displayed between breadcrumbs */
   content: ">";
   padding: 10px;
	}

#breadcrumbs li:last-child:after {
    /* Removes the > after last breadcrumb */
    content: "";
}

.productGridOneCol {
    /* Container for product image and description in product grid */
    position: relative;
    width: 460px;
    height: 300px;
    margin: 0 0 20px 0;
}

.productName {
    margin: 0 0 5px 0;
    padding: 0;
}

.priceBold {
    /* Paragraph on home page that contains product price */
    margin: -5px 0 5px 0;
    padding: 0;
    color: #14496E;
}

.rightAlign.rightAlignPrice{
    text-align: right;
    width: 100px;
}

.price {
    /* Paragraph on product details page that contains product price */
    margin: 0 0 15px 0;
}

.productImage {
    /* Contains the image that appears in the product grid */
    width: 170px;
    height: 170px;
    margin-bottom: 5px;
}

.productImage img {
    float: left;
}

.productImgContainer {
    margin: 6px 0px 40px 0;
    float: left;
    position: relative;
}

.productOutOfStockBanner {
    bottom: 0;
    height: 50px;
    left: 0;
    line-height: 50px;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    text-transform: uppercase;
    top: 0;
}

.productQty {
    /* Product quantity field on product details page */
    padding: 4px 4px 4px 6px;
    height: 14px;
    width: 22px;
    display: block;
    text-align: right;
    margin-bottom: 5px;
}

#productDetails {
    /* Container on product details that wraps around everything from product name to add to cart button */
	padding: 0 20px 0 20px;
    width: 515px;
}

#productDescription {
    /* Contains the long product description on product details page */
    width: 100%;
    clear: both;
    padding: 20px 0 0 0;
}

.productDescriptionShort {
    /* Paragraph for short product description on product details page */
    margin: 0;
}

.productDescriptionFront {
    /* Paragraph for product description in product grid */
    margin: 0 0 60px 0;
    width: 450px;
}

#productDetails ul {
    margin: 15px 0 25px 0;
    width: 960px;
}

#productDetails li {
    list-style-type: none;
    width: 400px;
}

.productDrop {
    /* Dropdown list for product options */
    margin: 0;
}

.optionName {
    /* Label for product option dropdown */
    width: 60px;
    height: 20px;
    float: left;
}

table.productTable {
    margin: 20px 0 0 10px;
    padding: 4px;
}

.productTable td {
    padding: 4px;
}

td.bottom {
    vertical-align: bottom;
}

/* CART AND CHECKOUT
===============================================================*/

input {
    margin: 0 0 7px 0;
}

/* Cart contents
---------------------------------------------*/

.qtyField {
    /* Quantity field in cart */
    padding: 4px 4px 4px 6px;
    height: 14px;
    width: 20px;
    display: block;
    text-align: right;
    margin: 0 auto;
    margin-bottom: 5px;
}

.cartThumb {
    /* Product thumbnail image in cart */
    margin: 4px 0 8px 0;
}

.cartProduct {
    margin: -2px 0 0 0;
    padding: 0;
}

.updateCart {
    font-size: 10px;
}

.updateCart a:link {
    text-decoration: none;
}

.paymentLabel {
    display: block;
}

.choosePlan {
    /* Class for radio buttons */
    margin-right: 5px;
}

.promoCode {
    /* Table that contains promo code field */
    border-collapse: collapse;
    margin-bottom: 40px;
}

.promoCode td {
    height: 30px;
}

.shippingOptions {
    /* Radio buttons for shipping options */
    margin: 0 10px 3px 0;
}

.address, .editInfo, .shippingOptions, .cardInfo, .shipInfo {
    margin: 0 0 4px 0;
    display: block;
}

.billName, .billStreet, .billCity, .shipName, .shipStreet, .shipCity {
    margin: 0;
    display: block;
}

/* Form fields and labels
---------------------------------------------*/

.checkout {
    /* Form fields used in checkout forms */
    padding: 4px 4px 4px 6px;
    margin: 0;
    width: 200px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}
.checkoutButton {
    margin: 0 15px
}
.checkoutBottom {
    /* Provides bottom padding for last form field in a form */
    padding: 4px 4px 4px 6px;
    margin: 0 0 20px 0;
    width: 200px;
    height: 18px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

.checkoutTop {
    /* Provides top padding for first form field in a form */
    padding: 4px 4px 4px 6px;
    margin: 10px 0 0 0;
    width: 200px;
    height: 18px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

.checkoutTopShort {
    /* Provides top padding for first form field in a form */
    padding: 4px 4px 4px 6px;
    margin: 10px 0 0 0;
    width: 125px;
    height: 18px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

.checkoutLabel {
    /* Checkout form label */
    padding: 0 0 -3px 0;
    margin: 0 0 -3px 0;
}

.checkoutShort, .search, .promoField {
    /* Smaller form field */
    padding: 4px;
    margin: 0 15px;
    width: 125px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

.checkoutShortest {
    /* Even smaller form field */
    padding: 5px;
    margin: 0;
    width: 70px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

.signinField {
    /* Shorter form field for sign in table */
    padding: 4px 4px 4px 6px;
    margin: 0 0 0 0;
    width: 160px;
    height: 18px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

.signinTop {
    /* Provides top padding for first form field in sign in form */
    padding: 4px 4px 4px 6px;
    margin: 10px 0 0 0;
    width: 160px;
    height: 18px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

.signinLabel {
    /* Text label used in sign in table */
    text-align: right;
    width: 150px;
}

.paymentIcon {
    margin: 0 7px -5px 4px;
}

.addressTableInfo {
    /* Verbiage in Shipping and Billing table ('Shipping is the same as billing', etc.) */
    padding-bottom: 15px;
}

/* Tables
---------------------------------------------*/

#BRIEF_PRODUCT_SUMMARY {
    width:100%;
}

#BILLING_ENTRY{
    width:48.8%;
}

#SHIPPING_ENTRY{
    width:48.8%;
}

#PROMO_CODE{
    width:100%;
}

#UP_SELLS{
    width: 100%;
}

.viewCart {
    border-collapse: collapse;
    margin-bottom: 20px;
}

.viewCart th, .viewCartShort th, .payPlan th, .summaryCart th, .shippingInfo th, .billingInfo th, .billingTable th, .shippingTable th, .paymentInfo th, .signinTable th, .paymentMethodTable th {
    text-align: start;
    padding: 10px 10px 10px 15px;
}

.viewCart td, .viewCartShort td, .payPlan td, .summaryCart td, .billingTable, .shippingInfo td, .billingInfo td, .paymentInfo td, .paymentMethodTable td {
	padding: 10px 10px 10px 10px;
	vertical-align: top;
	}

.payPlan {
    /* Table on view cart page that contains available pay plans */
    width: 270px;
    border-collapse: collapse;
    margin: 20px 0 40px 0;
}

.tableContainer {
    /* Wraps around cart table to make it stretch to 100% width when no payment plans are displayed */
    overflow: hidden;
    padding: 1px;
}

.tableContainer > table {
    /* Sets cart table to 100% width when no payment plans are displayed */
    width: 100%;
}

#summaryContainer {
    display:flex;
    justify-content: space-between;
}

.customerInfoTitle{
    width:100%;
}

.billingTable {
    /* Table for entering billing address */
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    clear: both;
}

#FULL_PRODUCT_SUMMARY{
    width: 100%;
}

#BILL_SHIP_PAYMENT_SUMMARY{
    width: 100%;
}

.shippingTable {
    /* Table for entering shipping address */
    width:100%;
    border-collapse: collapse;
    margin: 20px 0;
}

#PAYMENT_SELECTION {
    width: 100%;
}

.paymentMethodTable {
    /* Table for entering payment method */
    width: 100%;
    border-collapse: collapse;
	margin: 0 0 20px 0;
	}

td.pay1 {
    /* First column in .paymentMethodTable */
    width: 220px;
    padding-bottom: 20px;
}

td.pay2 {
    /* First column in .paymentMethodTable */
    width: 231px;
    padding-bottom: 20px;
}

td.pay3 {
    /* First column in .paymentMethodTable */
    width: 162px;
    padding-bottom: 20px;
}

td.pay4 {
    /* First column in .paymentMethodTable */
    padding-bottom: 20px;
}

.signinTable {
    /* Table for signing in or registering new customer */
    width: 340px;
    border-collapse: collapse;
    margin: 0 0 120px 20px;
    text-align: left;
    float: left;
}

.signinTable td {
    padding: 5px 10px 3px 10px;
    vertical-align: top;
}

.signinTable th {
    padding: 10px 15px;
}

.shippingTable td, .billingTable td {
    border: none;
    padding: 5px 10px;
}

td.rightAlign, th.rightAlign {
    text-align: end;
    vertical-align: top;
    padding-top: 10px;
}

td.rightAlignTop, th.rightAlignTop {
    text-align: end;
    vertical-align: top;
    padding-top: 20px;
    width: 150px;
}

td.rightAlignBottom {
    text-align: end;
    vertical-align: top;
    padding: 10px 10px 20px 10px;
    width: 150px;
}

td.leftAlign, th.leftAlign {
    text-align: start;
}

td.centerAlign, th.centerAlign {
    text-align: center;
}

td .rightCell {
    text-align: right;
}

.summaryCart {
    /* Table that contains content of shopping cart, displayed on summary page */
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    float: left;
}

.shippingInfo {
    /* Table on summary page that contains shipping info */
    width: 287px;
    border-collapse: collapse;
    margin: 0 0 20px 0;
}

.billingInfo {
    /* Table on summary page that contains billing info */
    width: 287px;
    border-collapse: collapse;
}

.paymentInfo {
    /* Table for pay plan info and scheduled payments on summary page */
    width: 287px;
    border-collapse: collapse;
}

#CHECKOUT_LINKS_TOP{
    z-index: 100;
    width: 100%;
}

.checkoutLinksTop {
    /* Container for 'Checkout' and 'Continue Shopping' buttons */
    display: flex;
    justify-content: flex-end;
    margin: 20px 0 -35px 0;
    right: 30px;
}

.checkoutLinks {
    /* Container for 'Checkout' and 'Continue Shopping' buttons */
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
    display: flex;
    justify-content: flex-end;
}

.checkoutLinksBottom {
    /* Container for 'Checkout' and 'Continue Shopping' buttons */
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

#checkoutLinksSummary {
    /* Container for 'Checkout' and 'Continue Shopping' buttons on summary page */
    position: absolute;
    top: 570px;
    right: 0;
    width: 300px;
    height: 30px;
    margin: 17px 0 30px 0;
    text-align: right;
    float: right;
}

/* Forgot password
---------------------------------------------*/

#forgotPasswordWindow {
    /* Container for forgot password information */
    width: 400px;
    margin: 40px auto 0 auto;
    padding: 20px;
}

p.forgotPassword {
    /* Explanation in forgot password window */
    margin: 10px 0 0 0;
    padding: 0;
}

.forgotPasswordTable th {
    text-align: left;
    padding-left: 15px;
}

.forgotPasswordTable td {
    padding: 5px 10px 3px 15px;
}

.forgotPasswordTable input {
    /* Form fields in forgot password window */
    padding: 4px 4px 4px 6px;
    margin: 0 0 0 0;
    width: 160px;
    height: 28px;
}

/* UPSELLS
===============================================================*/

#upsellContainer {
    /* Contains all upsells */
    display: flex;
    flex-wrap: wrap;
    clear: both;
    padding-bottom: 20px;
}

#upsellContainer h2 {
    width:100%;
}

#upsellContainer li {
    display: inline;
    margin-right: 20px;
}

.upsell {
    /* Box that contains single upsell */
    width: 244px;
    padding: 10px 20px 20px 20px;
    margin: 5px;
}

.upsellImage {
    margin: 5px 0;
}

.upsellItem {
    font-size: 15px;
    font-weight: bold;
}

.subscriptionPrice {
    margin: 0;
}

.upsellAdd {
    /* Add to cart button for upsells */
    margin: 10px 0 0 0;
}

/* TYPOGRAPHY
===============================================================*/

h1 {
    /* Used for product and page headers */
    margin: 0 0 18px 0;
}

h3 {
    /* Used for product grid headline */
    margin: 0 0 15px 0;
    padding-bottom: 3px;
}

h4 {
    margin: 20px 0 5px 0;
}

h5 {
    margin: 2px 0 5px 5px;
}

#upsellContainer h4 {
    margin: 0 0 5px 0;
}

.tableHeader {
    margin: 20px 0 5px 0;
    display: block;
}

p.homeLink {
    float: right;
    margin-bottom: 40px;
}

.shippingOptions {
    /* Radio buttons for shipping options */
    margin: 0 10px 3px 0;
}

.address, .editInfo, .shippingOptions, .cardInfo, .shipInfo {
    margin: 0 0 4px 0;
    display: block;
}

.billName, .billStreet, .billCity, .shipName, .shipStreet, .shipCity {
    margin: 0;
    display: block;
}

p.signupInfo {
    margin: 0 0 20px 0;
}

/* LINKS AND BUTTONS
===============================================================*/

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.codeButton {
    padding: 4px 15px 4px 15px;
    cursor: pointer;
}

.continueButton, .formButton {
    margin: 0 10px;
    padding: 4px 15px;
    cursor: pointer;
}

.cartButton, .continueButton, .formButton {
    margin: 0 10px;
    padding: 4px 15px;
    cursor: pointer;
}

.newsButton {
    margin-left: 85px;
    padding: 4px 15px;
    cursor: pointer;
}

.searchButton {
    margin: 1px 0 0 5px;
    padding: 4px 9px 4px 9px;
    cursor: pointer;
}

.upsellButton {
    padding: 2px 7px 3px 7px;
    cursor: pointer;
}

.buttonRight a:hover, .buttonLeft a:hover {
    text-decoration: none;
}

/* FOOTER
===============================================================*/

#footer {
    position: relative;
    margin-top: 20px;
    padding-top: 30px;
    width: 100%;
    height: 50px;
    text-align: center;
    clear: both;
}

/* HTML AREAS
===============================================================*/

#customCheckoutBottom {
    clear: both;
}

#customHomeProductGridTop {
    width: 740px;
    margin-bottom: 20px;
}

/* MISC
===============================================================*/

.payPalImage {
    margin: 0 0 -5px 0;
}

p.successMessage {
    margin: 20px 0 20px 0;
}

.checkoutWithPayPalLink {
    cursor: pointer;
    display: inline-block;
}

.checkoutWithPayPalImg {
    display: block;
    margin: 0 0 -8px;
}

.payPalPayWithCardInstead, .creditCardPayWithPayPalInstead {
    cursor: pointer;
}

.payPalPaymentInfoImage {
    margin: 10px 0 0 0;
}

.payPalPaymentInfoMessage {
    width: 440px;
}

/* PAYPAL LIGHTBOX
===============================================================*/

.payPalLightboxIcon {
    float: right;
    padding: 20px;
}

.payPalMessage {
    padding: 55px 30px 0;
}

.closePayPalLightbox {
    margin-right: 30px;
    margin-top: 50px;
    float: right;
}

.payPalGo {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: url("https://www.paypalobjects.com/en_US/i/pui/core/btn_bg_sprite.gif") repeat-x scroll left 17.5% #FFA822;
    border-color: #D5BD98 #935E0D #935E0D #D5BD98;
    border-image: none;
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 30px;
    margin-top: 10px;
    padding: 1px;
}

/*# RESPONSIVE */
body{overflow-x:hidden}#wrapper,#topNav,#nav,#header,#content,#customHomeProductGridTop,#contentProductDetail{width:auto;max-width:960px;background:transparent!important}@media (min-width: 760px){#productGrid{column-gap:30px;column-count:2}}.productGridOneCol{box-sizing:border-box;display:inline-block;width:100%;height:auto;margin:0 0 20px 0;padding:20px;float:none;border:1px solid #dcdcdc;border-radius:4px}.productGridOneCol img{display:block;margin:0 auto 20px auto;border:none !important}.productGridOneCol img[src^="/cart/pimg"]{display:none}.productGridOneCol a{float:left;width:70%}.productGridOneCol a:first-child{width:30%;padding-right:20px;box-sizing:border-box}.productDescriptionFront{width:100%;margin-bottom:0}.productImgContainer{margin:0;width:100%}.productImgContainer img{margin:0 auto;display:block}@media (min-width: 760px){.productImgContainer{width:30%}}#productDetails{width:100%;padding:0;margin-top:30px}@media (min-width: 760px){#productDetails{margin-top:0;float:left;width:70%;padding:0 0 0 30px;box-sizing:border-box}}#productDetails ul{width:100%}#BREAD_CRUMBS{margin-top:30px}img{max-width:100%;height:auto}#CART_COUNT a{background-color:#0298d1;color:white}#CART_COUNT a:first-child{display:none}#NAVIGATION #nav{margin:0 0 20px 0;padding-bottom:10px;overflow:visible;border:none;border-bottom:1px solid #dcdcdc;border-radius:0;text-align:center}#NAVIGATION #nav li{display:inline-block;margin:10px 15px}#NAVIGATION #nav li a{    font-weight: bold;position:relative;margin:0;padding:0;border:none;color:#0298d1;font-size:21px;white-space:nowrap;transition:all 0.2s ease-in-out 0s}#NAVIGATION #nav li a:before{position:absolute;top:100%;right:-10px;bottom:-10px;left:-10px;border-radius:4px;background-color:#0298d1;content:"";transition:all 0.2s ease-in-out 0s;visibility:hidden;z-index:-1}#NAVIGATION #nav li a:hover{background-color:transparent;color:white}#NAVIGATION #nav li a:hover:before{top:-10px;visibility:visible}#featured h3{border-bottom:none;font-size:0px;font-weight:0}.productName{margin-bottom:20px;color:#444;font-size:22px;font-weight:normal}.pribody{overflow-x:hidden}#wrapper,#topNav,#nav,#header,#content,#customHomeProductGridTop,#contentProductDetail{width:auto;max-width:960px;background:transparent!important}@media (min-width: 760px){#productGrid{column-gap:30px;column-count:2}}.productGridOneCol{box-sizing:border-box;display:inline-block;width:100%;height:auto;margin:0 0 20px 0;padding:20px;float:none;border:1px solid #dcdcdc;border-radius:4px}.productGridOneCol img{display:block;margin:0 auto 20px auto;border:none !important}.productGridOneCol img[src^="/cart/pimg"]{display:none}.productGridOneCol a{float:left;width:70%}.productGridOneCol a:first-child{width:30%;padding-right:20px;box-sizing:border-box}.productDescriptionFront{width:100%;margin-bottom:0}.productImgContainer{margin:0;width:100%}.productImgContainer img{margin:0 auto;display:block}@media (min-width: 760px){.productImgContainer{width:30%}}#productDetails{width:100%;padding:0;margin-top:30px}@media (min-width: 760px){#productDetails{margin-top:0;float:left;width:70%;padding:0 0 0 30px;box-sizing:border-box}}#productDetails ul{width:100%}#BREAD_CRUMBS{margin-bottom:30px}img{max-width:100%;height:auto}#CART_COUNT a{background-color:#0298d1;color:white}#CART_COUNT a:first-child{display:none}#NAVIGATION #nav{margin:0 0 20px 0;padding-bottom:10px;overflow:visible;border:none;border-bottom:1px solid #dcdcdc;border-radius:0;text-align:center}#NAVIGATION #nav li{display:inline-block;margin:10px 15px}#NAVIGATION #nav li a{    font-weight: bold;position:relative;margin:0;padding:0;border:none;color:#0298d1;font-size:21px;white-space:nowrap;transition:all 0.2s ease-in-out 0s}#NAVIGATION #nav li a:before{position:absolute;top:100%;right:-10px;bottom:-10px;left:-10px;border-radius:4px;background-color:#0298d1;content:"";transition:all 0.2s ease-in-out 0s;visibility:hidden;z-index:-1}#NAVIGATION #nav li a:hover{background-color:transparent;color:white}#NAVIGATION #nav li a:hover:before{top:-10px;visibility:visible}#featured h3{border-bottom:none;font-size:0px;font-weight:400}.productName{margin-bottom:20px;color:#444;font-size:22px;font-weight:normal}.priceBold{display:inline-block;padding:5px 10px;border-radius:4px;background-color:#0298d1;color:white;font-weight:400}.productDescriptionFront{float:left}.productDescriptionFront:empty{display:none}#productDescription h2{margin-top:30px;border-bottom:none;font-size:32px;font-weight:400}#footer{border:none}.cartButton{background:#0298d1;border:none;text-shadow:none;box-shadow:none;padding:10px 15px}.cartButton:hover{background:#02739e}@media (max-width: 760px){.viewCart .productRow td{width:auto;padding-left:10px !important;padding-right:10px !important}.viewCart .productRow td:first-child,.viewCart .productRow td:last-child{padding-left:10px !important;padding-right:10px !important}.viewCart .productRow img{min-width:50px;max-width:100%;height:auto}}.spiffy-storefront .cartButton{border:2px #0298d1 solid}.spiffy-storefront .cartButton.processing{border:2px #0298d1 solid;background:transparent;color:#0298d1}.spiffy-storefront .cartButton.added{border:2px #83d010 solid;background:#83d010;color:#ffffff}.spiffy-storefront a.spiffyCheckout{padding-left:15px}

/*# BREADCRUMB Hack */
#breadcrumbs{display:none;}
/* PAYPAL CHECKOUT===============================================================*/.checkoutPaypalSmartPaymentButtons { margin: 0 20px 40px 0; float: right; clear: both; background: #fff; padding: 10px;}.checkoutButtonList { float: right; clear: both; width: 960px;}.payPalOption td { width: 220px;}.payPalOption td div { float: left; clear: both;}ceBold{display:inline-block;padding:5px 10px;border-radius:4px;background-color:#8ec337;color:white;font-weight:400}.productDescriptionFront{float:left}.productDescriptionFront:empty{display:none}#productDescription h2{margin-top:30px;border-bottom:none;font-size:32px;font-weight:400}#footer{border:none}.cartButton{background:#0298d1;border:none;text-shadow:none;box-shadow:none;padding:10px 15px}.cartButton:hover{background:#02739e}@media (max-width: 760px){.viewCart .productRow td{width:auto;padding-left:10px !important;padding-right:10px !important}.viewCart .productRow td:first-child,.viewCart .productRow td:last-child{padding-left:10px !important;padding-right:10px !important}.viewCart .productRow img{min-width:50px;max-width:100%;height:auto}}.spiffy-storefront .cartButton{border:2px #0298d1 solid}.spiffy-storefront .cartButton.processing{border:2px #0298d1 solid;background:transparent;color:#0298d1}.spiffy-storefront .cartButton.added{border:2px #83d010 solid;background:#83d010;color:#ffffff}.spiffy-storefront a.spiffyCheckout{padding-left:15px}
