/* Container for table of prices */
#prices-container {
	width: 750px;
	float: left;
	background-color: #D3D3D3;
}
/* Complete row of the table */
.price-row {
	width: 700px;
	margin-left: 25px;
	float: left;
	font-weight: bold;
}
/* Text */
.price-text {
 	width: 625px;
	float: left;
}
/* Amount */
.price-amount {
	width: 75px;
	text-align: right;
	float: right;
}
.clear-both {
	clear: both;
}
