/* Print Style Sheet */
@media print {
	body {
		background: none repeat scroll 0 0 white;
		color: black;
		margin: 0;
		float: none;
		font-size: 12pt;
	}
	
	/*Don't show navigation, social icons, search, breadcrumbs, edit link or title area*/
	.nav-primary, .hdr-social, #search-3, .sidebar, .breadcrumb, .post-edit-link, div.title-area {
		display: none;
	}
	
	/* Show the logo before the content 
	main.content:before {
		content: url(https://www.abrightclearweb.com/wp-content/uploads/2014/07/A-Bright-Clear-Web-Logo.jpg);
		display: block;
		margin-top: 65px;
	}
	*/
	
	/*Underline links*/
	body a {
		text-decoration: underline;
	}
	
	/*Reduce the space after each entry - particularly for Blog page*/
	body .entry,
											body .page.page-template-page_blog-php .entry {
		border-bottom: 1px dotted #ddd;
		padding-bottom: 0;
		padding-bottom: 0;
		margin-bottom: 10px;
		margin-bottom: 1rem;
	}
	
	/*Put link URL after the link text*/
	article.entry a:after {
		content: " (" attr(href) ") ";
		font-size: .8em;
		font-weight: normal;
	}
	
	/*No link URLs here*/
	span.entry-comments-link a:after, span.entry-categories a:after, span.entry-tags a:after {
		content: "";
	}
	
	a.entry-author-link:after {
		content: "" !important;
	}
	
	p.site-title a:after, a.comment-author-link:after, time.comment-time a:after {
		content: "";
	}
	
	.entry-comments, .entry-comments .comment, .entry-comments .comment-reply, .ping-list {
		margin-bottom: 10px !important;
		margin-bottom: 1rem !important;
	}
	
	a.comment-reply-link {
		display: none;
	}
	
	#simple-social-icons-2 {
		display: none;
	}
	
	/*move the content up*/
	.site-inner {
		margin-top: -17rem;
	}
	
	/*widen content out to 100%*/
	main.content {
		width: 100%;
	}
	
	/*Hide the header widget area*/
	aside.widget-area.header-widget-area {
		display: none;
	}
	
	/*Avoid page breaks within images*/
	img {
		page-break-before: auto;
		page-break-after: auto;
		page-break-inside: avoid;
	}
	
	/*Hide simple share buttons and the Leave a reply box*/
	div.ssba, div#respond {
		display: none;
	}
	
	/*Hide related posts*/
	div#jp-relatedposts {
		display: none !important;
	}
	
	/*Hide footer widgets, go to top link & after footer areas*/
	div.gototop, .footer-widgets, .after-footer-left, .after-footer-right {
		display: none;
	}
	
	div.creds {
		color: black;
	}
	
	/*No borders for footer*/
	footer.site-footer {
		border-top: none;
		border-bottom: none;
	}
	
	/*Blue link for footer*/
	footer.site-footer a {
		color: #0A5FAF;
	}
}



