/* Cart CSS */

#cart-container {
	position:absolute;
	right:1px;
	top:1px;
	z-index:1000;
	width:170px;
}

#cart-header {
	position:absolute;
	right:0px;
	top:-10px;
	width:180px;
	height:30px;
	padding-top:10px;
	background:#d15902;
	-moz-border-radius:10px 10px 0px 0px;
	-webkit-border-radius:10px 10px 0px 0px;
}

#cart-header:hover {
	background:#d15902;
	cursor:pointer;
}

#cart-header > img {
	padding:0px 10px;
}

#cart-list-container {
	left:-330px;
	position:absolute;
	top:30px;
	width:470px;
	padding:15px;
	background:#f17319;
	clear:both;
	color:#FFF;
	-moz-border-radius:0px 0px 10px 10px;
	-webkit-border-radius:0px 0px 10px 10px;
}

#cart-detail p {
	float:left;
	padding-bottom:15px;
	font-size:125%;
}

#cart-detail {
	border-bottom:2px dotted #f3873c;
}	

#cart-detail #cart-label-product {
	width:305px;
}

#cart-detail #cart-label-price {
	width:80px;
	float:right;
}

#cart-detail #cart-label-qty {
	width:45px;	
}


.cart-item {
	padding:15px 0px;
	color:#FFF;
	border-bottom:2px dotted #f3873c;
}

.cart-item-description {
	width:280px;
	float:left;
}

.cart-item-description strong,
.cart-item-description em {
	display:block;
}

.cart-item-price {
	width:80px;
	float:right;
	margin-top:7px;
	font-size:100%;
}

.cart-item-qty {
	width:35px;
	float:left;
	text-align:center;
	border:1px solid #b95207;
	margin-top:5px;
}

.cart-item-remove {
	width:15px;
	height:15px;
	margin:5px 15px 0px 0px;
	float:left;
	background:url('/images/public/btn_cart_remove.jpg') no-repeat 0px 0px;
	border:none;
}

.cart-item-remove:hover {
	cursor:pointer;
	background:url('/images/public/btn_cart_remove.jpg') no-repeat 0px -15px;
}

#cart-report-container {
	margin:30px 0px 15px 0px;
	width:215px;
	float:right;
}

#cart-report-container div {
	border-bottom:2px dotted #f3873c;
	padding-bottom:10px;
	margin-bottom:10px;
}

#cart-report-container div span {
	font-size:125%;
	float:right;
}

#cart-report-container div span#cart-total {
	font-weight:bold;
}


#cart-btn-checkout {
	display:block;
	padding:10px;
	background:#d15902;
	text-decoration:none;
}

#cart-report-container div#cart-total-container {
	margin-bottom:30px;
}


