@CHARSET "UTF-8";
/**
 * MiniCart as requested in TT12302
 */

#mini_cart {
    text-align: left;
    font-size: 11px;
    color: black;
}

/**
 * Margin top will completely hide the empty bag text in IE6, 
 * 
 * if you modify this, please remember to check also the IE6 css 
 */
#mini_empty {
    text-align: center;
    margin-top: -4px;
}

a#mini_cart_button {
    display: block;
    color: #663399;
    font-weight: bold;
    font-size: 13px;
    padding: 7px 10px 7px 10px;
}

a#mini_cart_button:hover {
    background-color: #ed008c;
}

#mini_cart .bd {
    padding: 25px 20px 16px 20px;
    text-align: left;
}

#mini_cart a, #mini_cart a:hover{
    font-size: 12px;
    font-weight: bold;
    color: #ff0000;
    text-decoration: none;
}

#mini_cart .group {
    font-size: 13px;
    font-weight: bold;
    color: #fd007a;
    margin-bottom: 5px;
}

#mini_cart hr {
    clear: both;
    height: 1px;
    border: 0;
    margin: 0 0 10px 0;
    !margin-bottom: 5px;
    background: #aaa;
}

#mini_cart .item {
    clear: both;
}

#mini_cart .item img {
    float: left;
    margin: 10px 5px 20px 0;
}

#mini_cart .name {
    font-size: 11px;
    font-weight: bold;
    color: #8b0080;
    margin-bottom: 6px;
    padding-left: 4px;
}

#mini_cart .info {
    margin-bottom: 2px;
    padding-left: 4px;
}

#mini_cart .qty,
#mini_cart .size  {
    margin-bottom: 5px;
}

#mini_cart .price {
    font-weight:bold;
    color: black;
}

/**
 * Every action that inserts or deletes should not be a GET call, this remove "link"
 * is in reality a form button. All look and feel was copied from "#mini_cart a"
 */
#mini_cart form.remove input{
    border: 0;          /* reset from here */
    padding: 0;
    background: transparent;
    cursor: pointer;    /* reset until here */
    font-size: 12px;
    font-weight: bold;
    color: #ff0000;
}

#mini_cart .middle_ruler {
    margin:0 0 20px 0;
}

#mini_cart .bottom_ruler {
    height:3px;
    margin:0 0 10px 0;
}

#mini_footer {
    clear: both;
}

#mini_footer .subtotal {
    text-align: right;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 16px;
}

#mini_edit {
    float: left;
    margin-top: 6px;
}

#mini_checkout {
    float: right;
}