#page-wrap {
	margin: 0px 10px 30px 10px;
}
	/* 
	Generic Styling, for Desktops/Laptops 
	*/
#page-wrap table { 
		width: 100%; 
		border-collapse: collapse; 
	}
	/* Zebra striping *
#page-wrap tr:nth-of-type(odd) { 
		background: #FADBD8; 
	}
#page-wrap tr:nth-of-type(even) { 
	background: #FCF3CF; 
}
*/
#page-wrap th {
		color: white; 
		font-weight: bold; 
	}
#page-wrap td, #page-wrap th { 
		padding: 6px;
		text-align: left; 
	}
/**************************************************/

/* 
	Max width before this PARTICULAR table gets nasty
	This query will take effect for any screen smaller than 760px
	and also iPads specifically.
	*/
	@media 
	only screen and (max-width: 760px),
	(min-device-width: 768px) and (max-device-width: 1024px)  {
	
		/* Force table to not be like tables anymore */
#page-wrap table,#page-wrap thead,#page-wrap tbody,#page-wrap th,#page-wrap td,#page-wrap tr { 
			display: block; 
		}
		
		/* Hide table headers (but not display: none;, for accessibility) */
#page-wrap thead tr { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		
#page-wrap tr { border: 1px solid #ccc; }
		
#page-wrap td { 
			/* Behave  like a "row" */
			border: none;
			/*border-bottom: 1px solid #eee; */
			position: relative;
			padding-left: 50%; 
		}
		
#page-wrap td:before { 
			/* Now like a table header */
			position: absolute;
			/* Top/left values mimic padding */
			top: 6px;
			left: 6px;
			width: 45%; 
			padding-right: 10px; 
			white-space: nowrap;
		}
#page-wrap td.font-day {
    font-weight: bold;
}
		
		/*
		Label the data
		*/
		
#page-wrap td:nth-of-type(1):before { content: "Date"; }
#page-wrap td:nth-of-type(2):before { content: "Fajr"; }
#page-wrap td:nth-of-type(3):before { content: "Sunrise"; }
#page-wrap td:nth-of-type(4):before { content: "Dhuhr"; }
#page-wrap td:nth-of-type(5):before { content: "Asr"; }
#page-wrap td:nth-of-type(6):before { content: "Sunset"; }
#page-wrap td:nth-of-type(7):before { content: "Maghrib"; }
#page-wrap td:nth-of-type(8):before { content: "Isha"; }

	}
	
	/* Smartphones (portrait and landscape) ----------- */
	@media only screen
	and (min-device-width : 320px)
	and (max-device-width : 480px) {
		body { 
			padding: 0; 
			margin: 0; 
			width: 320px; }
			
			
	.a2a_kit.a2a_kit_size_32.a2a_floating_style.a2a_vertical_style {
			display:none;
		}
	
	}
	
	/* iPads (portrait and landscape) ----------- */
	@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
		body { 
			width: 495px; 
		}
	}