#print-schedule {
	display: block;
}

.print-schedule-page {
	position: relative;
	display: block;
	width: 8.5in;
	height: 11in;
	padding: 0.5in;
	margin: 0.25in auto;
	box-sizing: border-box;
	background-color: #fff;
	box-shadow: 0 0 50px rgba(0,0,0,0.2);
}

.print-schedule-content {
	position: relative;
	display: block;
	width: 7.5in;
	height: 10in;
	box-sizing: border-box;
	border: solid 0.04in #005BAC;
}

#print-schedule-header {
	position: relative;
	display: block;
	width: 100%;
	height: 0.75in;
	background-color: #005BAC;
}

#print-schedule-header h1 {
	position: relative;
	font-family: "Arvo", serif;
	font-weight: 400;
	font-size: 28pt;
	line-height: 1;
	color: #fff;
	padding: 0.18in 0.15in;
	margin: 0;
	float: left;
	z-index: 1;
	display: block;
}

#print-schedule-header img {
	position: relative;
	padding: 0.15in;
	height: 0.45in;
	width: auto;
	float: right;
	z-index: 2;
}

#print-background-color {
	position: absolute;
	display: block;
	width: 7.45in; /*increase from 7.42 to fix px/in conversion issues*/
	height: 0.75in;
	z-index: 0;
	display: none;
}

.print-schedule-body {
	position: relative;
	display: block;
	width: 100%;
	height: 8.67in; /*8.75in without border*/
	margin: 0.25in 0;
}

.print-left-side {
	float: left;
	width: 5in;
	height: 8.67in; /*8.75in without border*/
}

.print-right-side {
	float: left;
	width: 2.4in; /*subtract (border (0.04) * 2)*/
	border-left: 0.02in solid #000;
	box-sizing: border-box;
	padding: 0 0.15in;
	height: 8.67in; /*8.75in without border*/
}

.print-info-block {
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 0.25in;
}

.print-info-block::after {
	content: "";
	display: block;
	clear: both;
}

.print-course-title-block {
	position: relative;
	display: block;
	float: left;
	width: 2in;
	box-sizing: border-box;
	padding: 0 0.15in;
}

.print-course-details {
	position: relative;
	display: block;
	float: left;
	width: 3in;
	margin: 0;
	box-sizing: border-box;
	padding-left: 0;
	padding-right: 0.15in;
	list-style: none;
}

.print-course-title-block h2, .print-course-title-block h3, .print-person-information h2 {
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	font-size: 10.5pt;
	line-height: 1.5;
	color: #000;
	margin: 0;
}

.print-person-information h2::after {
	content: ":";
}

.print-course-title-block h3 {
	color: #000; /* Opacity needs to be set instead of using #888 (for printing purposes) */
	opacity: 0.5;
}

.print-person-details li, .print-course-details li {
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 10.5pt;
	line-height: 1.5;
	color: #000;
	margin: 0 0 0 20px; /*20px right margin is for indent*/
	text-indent: -20px;
	padding: 0;
	list-style: none;
}

.print-person-information {
	box-sizing: border-box;
	margin-bottom: 0.25in;
}

.print-person-details {
	padding: 0;
	margin: 0;
}

@page {
	margin: 0.5in;
}

@media print {
	body {
		background-color: #fff;
	}

	#print-schedule-information {
		display: none;
	}

	#print-schedule-header h1 {
		display: none;
	}

	#print-background-color {
		display: block;
	}

	.print-schedule-page {
		width: auto;
		height: auto;
		padding: 0;
		margin: 0;
		box-shadow: none;
		page-break-after: always;
	}
}
