/* Section Styles */

#pricingTable {
	font-variant: small-caps;
	font-family: "Times New Roman", Georgia, Serif;
	font-size: 1.1em;
	border-radius: 16px;
   padding: 8px;
	background: #999999;
	position: absolute;
	display: block;
	left: 50%;
	width: 600px;
	height: 290px;
	margin-left: -180px;
	margin-top: 75px;
	border: 20px solid rgba(0, 0, 0, 0.3);
}

#canvasTable {
	font-variant: small-caps;
	font-family: "Times New Roman", Georgia, Serif;
	font-size: 1.1em;
	border-radius: 16px;
   padding: 8px;
	background: #999999;
	position: absolute;
	display: block;
	left: 50%;
	width: 600px;
	height: 290px;
	margin-left: -180px;
	margin-top: 500px;
	border: 20px solid rgba(0, 0, 0, 0.3);
}

caption {
	font-size: 20px;
}

/* Table Styles */

.printPrice, .canvasPrice {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #d6d6d6;
	border-collapse: collapse;
	text-align: center;
}

.printPrice td, .canvasPrice td {
	border-left: 1px solid #d6d6d6;
	border-right: 1px solid #d6d6d6;
	height: 30px;
}

.printPrice th, .canvasPrice th {
	border-left: 1px solid #d6d6d6;
	border-right: 1px solid #d6d6d6;
	width: 50%;
	height: 44px;
	border-bottom: 1px solid #d6d6d6;
	background-color: #f2f2f2;
	padding: 0 10px;
}

.printPrice tr:nth-child(even), .canvasPrice tr:nth-child(even) {
	background-color: #FFFFFF;
}

.printPrice tr:nth-child(odd), .canvasPrice tr:nth-child(odd) {
	background-color: #f2f2f2;
}

.printPrice td:first-child, .printPrice th:first-child, .canvasPrice td:first-child, .canvasPrice th:first-child {
	border-left: none;
}

.printPrice td:last-child, .printPrice th:last-child, .canvasPrice td:last-child, .canvasPrice th:last-child {
	border-right: 0;
}

.tfoot td {
	background-color: #FFFFFF;
}