/**
*  Product Listing
*/
#product_container{
    width:100%;
}
.item_column
{
    min-height:200px;
    padding: 10px 10px 20px;
    float:left;
    text-align: center;
}
/* Product Name h2 for multiple h3 for single product*/
.item_column h3
{
    width:100%;
    float:left;
    text-align:left;
}
.list_product_name 
{
    font-size: 12px;
    font-weight: bold;
}
/* Product Image */
.img_div
{
    width:inherit;
    height: 160px;
    display: table-cell;
    vertical-align: middle;
    background:white;
    border:8px solid #fff;    
}
.display_img
{
    width:100%;
    display:block;
}

/* Multiple product per row */
.thumb_title {
    width:70%;
    margin:5px 0 5px 0;
    float:left;
    color: #3c3c3c;
    font-size: 12px; 
    font-weight: bold;
    text-align:left;
}

.thumb_title a.list_product_name{
    color: #3c3c3c;
    text-decoration: none;
}

.thumb_title a.list_product_name:hover{
    color: #981c30;
    text-decoration: none;
}


.thumb_price {
    margin:5px 0 5px 0;
    margin:auto;
    color: #1b5c64;
    font-size: 12px;
    font-weight: bold;
    letter-spacing:-1px;
}
/* Single Image Per Row */
.detail_div
{
    position: relative;
}
.out_stock
{
    margin:10px 0 0 0;
    text-align:center;
}
#add_cart_button
{
    width: 100px;  
}

/**
* Product detail
*/
.product_name
{
    padding-bottom: 10px;
    color:#981C30;
    font-size: large;
    font-weight: bold;
}
/* Mainly for SKU label */
.label_detail_info
{
    width:30%;
    padding:3px;
    display:inline-block;
    font-weight: bold;
}
/**
* Cart Listing/Order Listing
*/
.error
{
    color: #FF0000;
}
/* For every shopping cart page title */
.nav_link{
    font-weight:bold;
    font-size:20px;
}
/* All shopping cart page cover by wrapper*/
.wrapper{
   width:630px;
   float:left; 
}
/* Position for each button */
.checkout, .clear_cart, .update_cart, .confirm_next, .confirm_payment, .confirm_purchase, .back_cart
{
    margin:10px 0 0 10px;
    float:right;
    text-decoration: none;
}
.back_cart
{
    float:left;
}
/**
* Cart Item
*/
.wrapper table tr th, .wrapper table tr td {
    padding: 10px;
    background: none repeat scroll 0 0 #3B3B3B;
    color: #FFFFFF;
    text-align: left;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.wrapper table tr td {
    background: none repeat scroll 0 0 #F0EFE2;
    border-top: 1px solid #FFFFFF;
    color: #47433F;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.cart_table
{ 
    width:650px;
    display:block;	
}
table.cart_table td
{
    padding:10px;
}
.cart_subitem
{
    text-align:center;
}
.cart_desc
{
    width:300px;
}
.cart_qty
{
    width:60px;
}
.cart_option{
}
/* hides the text of the Remove Product Icon */
button.negative.button, button.negative.button:hover
{
	visibility:hidden;
	display:none;
}
/* Inserts the Icon for the Remove Product */
table.cart_table a.remove
{
    width:16px;
    height:16px;
    margin:auto;
    display:block;
    background:url(images/delete.png) no-repeat;
}
/**
* Ship Info
*/
.row
{
    width:100%;
    margin:4px;
    padding:3px;
    float:left;
}
.row label{
    width:150px;
    padding: 3px;
    float:left;
    clear:both;
}
.row.span2{
    float:left;
}
/* For each title info display below each shopping cart */
.confirm_title{
    padding-top:10px;
    clear:both;
    font-weight:bold;
    font-size:18px;
}
/* Offline Payment info */
.payment_info{
    clear:both;
    padding: 5px;
}




 
