/* print.css */

/* File Description: 
* CSS for when the print this page button is clicked on */
/* Validate that each page is printed neatly */

/*

Remove Unnecessary Sections
Before doing anything else, remove and collapse redundant content with display: none;. 

Typical unnecessary sections on paper could include 
navigation menus, hero images, headers, footers, forms, 
sidebars, social media widgets, 
and advertising blocks (usually anything in an iframe):


*/


/*
page {
	size: auto;   
    margin: 0;  
}

*/

body {
	/*font-size: 90%; */
	
	/* so we don't have a lot of whitespace on top of page 1 of print out*/
	padding-top: 0px;

}

/* note: iframe was removed */
header, aside, nav, form, .menu, .hero, .adslot {
  display: none;
}

form {
	display: none;
}

/* hiding the social media icons at the bottom of the footer */

#socialMediaIcons {
	display: none;
}

/* hiding the share to facebook, print this page, send email when printing out the page */
#buttonsUnderView, #contactTempleHeaderInFooter {
	display: none;
}

/* override the iframes in order to display the map for print outs */
/* break-before is used so that temple map and information is printed on its own page */
#templeMapIframe {
 	/*page-break-before: always;
	display: block;
	idth: 1280px;
    height: 786px; 
    border: 0;*/
}

/* To avoid having images/graphics split across pages */
table, img, svg {
  break-inside: avoid;
}

/* to avoid printing href content of hyperlinks */
@media print {
  a[href]:after {
    content: none !important;
  }
}

#myCarousel{
 display: none;
}
