﻿/* 
    02/06/09 - The cart page does not yet conform to the faux-absolute
    positioning that the rest of the site uses, so there will be some
    CSS styles that are overwrote to make the cart look correct.
*/

img
{
    /* OVERWRITES img in davinci-styles.css Needed to corrent display images */
    display: inline;
}

/* This is a container that encpsulates the cart. */
.dataGrid
{
    border: 0;
}

/*-------------- ADD-ONS --------------*/
    /* Examples: Mark-It Dots, Supply Pack, Valance, Magnetic Push Pins */
    .add-on-selection
    {
        font-size: 11px;
    }

    /* Mark It Dots */
    .markitdot
    {
        position: relative;
        top: -4px;
        font-size: 11px;
    }

    /* Valances */
    .valance
    {
        position: relative;
        top: -2px;
    }

    /* 'Add to Cart' text link that appears with the Add-Ons */
    div.addToCartLink
    {
        float: left;
        width: 100px;
    }

    /* 'Add to Cart' text link that appears with the Add-Ons */
    div.addToCartLink a
    {
        color: #428eef;
        font-size: 14px;
        text-decoration: none;
    }

    /* 'Add to Cart' arrow image link that appears with the Add-Ons */
    div.addToCartLink a img
    {
        border-width: 0px;
    }

    /* 'Continue Shopping' that appears under the Checkout button */
    a.cartLink
    {
        color: #428eef;
        font-size: 12px;
        text-decoration: none;
    }

    /* The circular blue button that accompanies the 'Continue Shopping' */
    a.cartLink img
    {
        border-width: 0px;
    }

    /* The light grey area that encapsulates the rest of the cart */
    .CartContainer
    {
        background-color: #e6e6e6;
        border: solid 1px #868686;
        font-family: Arial;
        margin: 15px;
        padding: 15px;
        margin-top: 20px;
        text-align: left;
    }

    /* Contains the top checkout button and the continue shopping link */
    .TopCheckoutButton
    {
        color: #428eef;
        float: right;
        font-size: 13px;
        text-align: right;
    }

    /* The items name, QTY, and Price */
    .CartItemHeader {
        background-color: #a6a6a6;
        border: solid 1px #868686;
        color: #ffffff;
        font-size: 13px;
        font-weight: bold;
        height: 15px;
        padding: 10px 5px 5px 5px;
        width: 611px;
    }
        .CartItemHeaderItemName
        {
            float: left;
            width: 469px;
        }
        .CartItemHeaderQty
        {
            float: left;
            padding-left: 5px;
            width: 70px;
        }
        .CartItemHeaderPrice
        {
            float: right;
        }
    .CartItemDescription
    {
        background-color: #ffffff;
        border: solid 1px #868686;
        border-top-width: 0px;
        height: 125px;
        margin-bottom: 15px;
        width: 621px;   
    }
        .CartItemDescriptionImage
        {
            float: left;
            padding: 5px 5px 5px 5px;
            width: 187px;
        }
        .CartItemDescriptionText
        {
            border-right: solid 1px #868686;
            float: left;
            height: 115px;
            padding: 5px 5px 5px 5px;
            width: 266px;
        }
        .CartItemDescriptionProductName
        {
            font-size: 15px;
            font-weight: bold;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            width: 266px;
        }