/* Generic page elements */

.sectionContainer {
	position: relative;
	;
	background: white;
	opacity: 0.95;
	filter: alpha(opacity=95);
	margin-top: 50px;
	margin-left: 50px;
	width: 1050px;
	-moz-box-shadow: 0 0 30px 0 #000000;
	-webkit-box-shadow: 0 0 30px 0 #000000;
	box-shadow: 0 0 30px 0 #000000;

	/* This means that padding and border are factored into the width so you don't have to shrink the width
        to account for the padding */
	box-sizing: border-box;
}

@media print {
	.sectionContainer {
		opacity: 1;
		filter: alpha(opacity=100);
		--moz-box-shadow: 0 0 0 #000000;
		--webkit-box-shadow: 0 0 0 #000000;
		box-shadow: 0 0 0 #000000;
		page-break-after: always;
	}
}

.sectionTitle {
	position: relative;
	margin-top: 5px;
	text-align: center;
	width: 100%;
	font-weight: bolder;
	font-size: 30px;
}

.sectionChart {
	position: relative;
	margin-top: 25px;
	margin-left: 22px;
	width: 900px;
	height: 350px;
}

@media screen and (min-width: 1600px) {
	.sectionChart {
		margin-left: 75px;
	}
  }

.tableTitle {
	position: relative;
	width: 100%;
	text-align: center;
	font-weight: bolder;
	font-size: 30px;
}

.sectionTableDiv {
	position: relative;
	margin-top: 50px;
	width: 100%;
}

.pdfButton {
	position: relative;
	left: 0px;
	top: 12px;
	bottom: 0px;
	width: 120px;
	background-color: #CA2C2C;
	color: white;
	font-weight: bold;
	min-height: 25px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}