/***** SHOPPING CART *****/

table.cart {
	width: 700px;
	border-collapse: collapse;
	font-size: 12px;
}

	table.cart th {
		padding: 2px 0px;
		border-bottom: 1px solid #ccc;
	}

	table.cart .imgcell { width: 75px; text-align: center; }
	table.cart .namecell { width: 385px; text-align: left; }
	table.cart .qtycell { width: 80px; text-align: center; }
	table.cart .pricecell { width: 80px; text-align: center; }
	table.cart .pricecell_r { width: 80px; text-align: right; }
	table.cart .blankcells { width: 460px; text-align: center; border-bottom: 1px solid #fff; }

	table.cart .continue { width: 460px; border: 0; }
	table.cart .proceed { width: 240px; border: 0; text-align: right; }

	table.cart td {
		padding: 5px 0px;
		border-bottom: 1px solid #ccc;
	}

form.checkoutform h2 {
	margin-bottom: 10px;
}

form.checkoutform p { margin: 10px 0; }
	
form.checkoutform label {
	float: left;
	width: 120px;
	padding-left: 20px;
}

form.checkoutform input {
	border: 1px solid #ccc;
}