@charset "utf-8";
/* CSS Document */

* { 
	margin: 0; 
	padding: 0; 
}

#page-wrap {
	margin: 10px;
}
p {
	margin: 10px 0; 
}

	/* 
	Generic Styling, for Desktops/Laptops 
	*/
	table { 
		width: 100%; 
		border-collapse: collapse; 
	}
	/* Zebra striping */
	tr:nth-of-type(odd) { 
		/*background: #eee; */
	}
	th {
	font-weight: bold;
	/*background-color: #999;*/
	color:#250B02;
	}
	tr {
	background-color: #f8f8f8;
	}
	td, th {
	padding: 6px;
	text-align: left;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ccc;
	}
	
	
	 
	@media only screen and (min-width: 768px) and (max-width: 1024px) {
  {
	
		/* Force table to not be like tables anymore */
		table, thead, tbody, th, td, tr { 
			display: block; 
		}
		
		/* Hide table headers (but not display: none;, for accessibility) */
		thead tr { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		
		tr { border: 1px solid #ccc; }
		
		td {
	position: relative;
	padding-left: 50%;
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #ccc;
		}
		
		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;

		}
		
		/*
		Label the data
		*/
		td:nth-of-type(1):before { content: "Room Categories"; }
		td:nth-of-type(2):before { content: "01 Apr 2013 to 31 Sep 2013"; }
		td:nth-of-type(3):before { content: "01 Oct 2013 to 31st Mar 2013"; }
		td:nth-of-type(4):before { content: "Adult"; }
		td:nth-of-type(5):before { content: "Child"; }
		
		/*
		Label the data
		*/
		td:nth-of-type(1):before { content: "Room Categories"; }
		td:nth-of-type(2):before { content: "01 Apr 2013 to 31 Sep 2013"; }
		td:nth-of-type(3):before { content: "Adult"; }
		td:nth-of-type(4):before { content: "Child"; }
		
		/*
		Label the data
		*/
		td:nth-of-type(1):before { content: "Meal Plan "; }
		td:nth-of-type(2):before { content: "Break Fast"; }
		td:nth-of-type(3):before { content: "Lunch"; }
		td:nth-of-type(4):before { content: "Dinner"; }


	}
	
	/* Smartphones (portrait and landscape) ----------- */
	@media only screen
	and (min-device-width : 320px)
	and (max-device-width : 480px) {
		body { 
			padding: 0; 
			margin: 0; 
			}
		}
	
	/* iPads (portrait and landscape) ----------- */
	@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
		
	}