#shopping_cart {
	border-bottom: 1px solid #000;
	margin-bottom: 10px;
}

table {
	border-collapse: collapse;
	border-left: 1px solid #000;
	border-top: 1px solid #000;
	margin-bottom: 10px;
	width: 100%;
}
	th {
		padding: 5px 10px;
		text-align: left;
		background: #f8edd1;
		font-family: Georgia, serif;
		color: #000;
	}
	td {
		padding: 5px 10px;
		vertical-align: top;
		background: #fff;
	}
	th, td {
		border-right: 1px solid #000;
		border-bottom: 1px solid #000;
	}
	td.price, td.quantity, td.remove {
		text-align: center;
		padding: 5px 0;
	}
	.quantity {
		text-align: center;
	}

	.coupon_info {
		text-align: right;
	}
	#coupon_code {
		width: 7em;
		margin-right: 2em;
	}
	.subtotal {
		padding: 5px 10px;
		text-align: right;
		background: #f8edd1;
		font-size: 1.2em;
	}
		.subtotal span {
			margin-left: 3em;
			font-weight: bold;
			width: 10em;
		}
		
#update_cart, #continue, #checkout {
	background: #d5d3d3;
	border: 1px solid #000;
	padding: 2px 5px;
}
	#update_cart:hover, #continue:hover, #checkout:hover {
		background: #f8edd1;
	}