/* CSS - Cascading Style Sheet for simpleCart shopping cart */

/* style links to look like buttons */
a.button, a.simpleCart_empty, a.simpleCart_checkout {
    background: transparent url('images/style/bg_button_a.gif') no-repeat scroll top right;
    color: #3D55E0;
    display: block;
    float: left;
    font: bold 12px arial, sans-serif;
    height: 24px;
    margin-right: 6px;
	margin-left:40px;
    padding-right: 18px; /* sliding doors padding */
    text-decoration: none;
}

a.button span, a.simpleCart_empty span, a.simpleCart_checkout span {
    background: transparent url('images/style/bg_button_span.gif') no-repeat;
    display: block;
    line-height: 14px;
    padding: 5px 0 5px 18px;
} 
a.button:active, a.simpleCart_empty:active, a.simpleCart_checkout:active {
    background-position: bottom right;
    color: #7DA5E0;
    outline: none; /* hide dotted outline in Firefox */
}

a.button:active span, a.simpleCart_empty:active span, a.simpleCart_checkout:active span {
    background-position: bottom left;
    padding: 6px 0 4px 18px; /* push text down 1px */
} 

/* */
.simpleCart_empty{ background-color:#93BAFF; color:#ddd; font-weight:normal;}
.simpleCart_items{}
.itemContainer{
	clear:both;
	font-size:11px;
	}
.itemImage{
	float:left;
	width:50px;
}
.itemName{
	float:left;
}
.itemOptions{
	font-size:smaller;
	float:left;
		}
.itemPrice{
	float:left;
	width:50px;
	color:#7DA5E0;
	font-weight:bold;
}
.itemQuantity{
	float:left;
	width:35px;
	vertical-align:middle;
}
.itemQuantity input{
	width:15px;
	border:1px solid #ccc;
}
.itemShipping{
			float:left;
			width:60px;
			margin-left:15px;
			color:#999999;
			height:25px;
		}
.itemTotal{
	float:left;
	color:#c23f26;
}
.totalItems{display:none;}
.totalPrice{color:#c23f26;float:right;clear:both;}
.totalPost{color:#999999;float:right;clear:both;}