

/* Styles to be used for print displays */

@page {
	size: 8.5in 11in portrait;
	margin: 0.5in
}

/* Hide page elements that will not be printed */
 header, nav, footer {
	display: none;
}

section#right {
	width: 60%;
	background-color: ivory;
	margin: 1in;
	border: 5px solid black;
	text-align: center;
	-o-transform: none;
	-moz-transform: none;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}

section#main {
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}

section#right h2{
	text-shadow: none;
	
}

section#right p {
	-o-transform: none;
	-moz-transform: none;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}


/* Setting the page breaks in the document */

article {
	display: block;
	page-break-after: always;
	page-break-inside: avoid;
	text-align: right;
}

article  h3{
	display: block;
	clear: right;
	float: left;
	

}

article p {
	display: none;
}

/*Styles for the h1 heading */

h1 {
	font-size: 28pt;
	text-align: center;
	width: 100%;
}


/* Styles for the figure boxs */

figure {
	display: block;
	text-align: center;
	page-break-after: always;
	page-break-inside: avoid;
}

figure img {
	width: 5in;
}

figure figcaption {
	font-size: 20pt;
}

figure:last-of-type {
	page-break-after: avoid; 	
}

article iframe {
	display: none;
}

