@charset "UTF-8";
/* CSS Document */

/* the overlayed element */
.apple_overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	background-image:url(white.png);
	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:780px;		
	
	/* some padding to layout nested elements nicely  */
	padding:5px;

	/* a little styling */	
	font-size:12px;
}

/* default close button positioned on upper right corner */
.apple_overlay .close {
	background-image:url(close.png);
	position:absolute; right:5px; top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}

#cartback{
	margin-bottom: 8px;
background-color:rgba(255,255,255,0.9);
border-width:1px;
border-color:#999999;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
/*IE DOES NOT SUPPORT BORDER RADIUS*/
-moz-box-shadow:0px 0px 5px #000000;
-webkit-box-shadow:0px 0px 5px #000000;
box-shadow:0px 0px 5px #000000;
width:150px;
padding:10px;
margin-top:50px;
		}
		
		
		.simplecart_total{
			padding-top:50px;}