/* print.css */
body {
	float:none;
	width: auto;
}

#sidebarRight, #navlist, #search, #pdf, #pagination, #explore, #subhead, #social_ftr, footer, header .footer-bottom .pdf{
	display:none;
}
/*Trying to get the volume and issue to print*/
#sidebarRight p.sb_head {
	display:block!important;
}
/*Begin page break code*/
body, .container, .row, article, .col-md-9 { /*Added in an attempt to make page-break/widow/orphan functionality work*/
	display:block !important;
	float:none !important; 
	position: relative;
	overflow:initial !important;
}

p, h2, h3 { /*This is supposed to prevent widows and orphans, but doesn't appear to be working*/
	position: relative;
	orphans: 3; widows: 3; }

h2, h3 {  /*Does not appear to be working*/
	page-break-after: avoid;
}

.PrintTogether {
	page-break-inside: avoid;
}
/*End page break code*/
table {
	width: 100%;
	border-bottom:thin solid #333;
}

th, td {
	border:thin solid #E4E4E4;	
}
table td.shade {
	text-align:right;
	padding-right:15px;
	background-color: #CCC;
}

.standard td.shade {
	text-align:right;
	padding-right:15px;
	background-color: #CCC;
}

td.datacell, td.horbdr_data {
	text-align: center;	
}
h1 {
	line-height:normal;
	font-family: "adobe-text-pro",serif;
}

a:link:after, a:visited:after {content:"";} /*This removes the URL after links that is normally printed due to Bootstrap*/

/*.source {
 	clear: both;
	font-size: 80%;
}

img {
	clear: both;
	float:none;	
}*/
