@charset "utf-8";
/* CSS Document */



.tablestyle table { 
		width: 100%; 
		border-collapse: collapse; 
		color:#333;
	}
	/* Zebra striping */
	.tablestyle tr:nth-of-type(odd) { 
		background: #eee; 
	}
	.tablestyle th { 
		background:#CCC;
		color:#333;
		font-weight: bold; 
	}
	.tablestyle td, th { 
		padding: 6px; 
		border: 1px solid #ccc; 
		text-align: left; 
			
	}
	.tablestyle a
	{
		color:#F00;
	}
	
	
	
	
	
	.tablestyle1 table { 
		width: 100%; 
		border-collapse: collapse; 
		color:#333;
		background-color:#CCC;
	}
	/* Zebra striping */
	.tablestyle1 tr:nth-of-type(odd) { 
		background: #eee; 
	}
	.tablestyle1 th { 
		background:#CCC;
		color:#333; 
		font-weight: bold; 
	}
	.tablestyle1 td, th { 
		padding: 6px; 
		border: 1px solid #ccc; 
		text-align: left; 
			
	}
	.tablestyle1 a
	{
		color:#333;
	}
	
	
	
	
	
	
	
	
	
	/* 
	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 */
		.tablestyle table, thead, tbody, th, td, tr { 
			display: block; 
			font-size:12px;
		}
		
		/* Hide table headers (but not display: none;, for accessibility) */
		.tablestyle thead tr { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		
		.tablestyle tr { border: 1px solid #ccc; }
		
		.tablestyle td { 
			/* Behave  like a "row" */
			border: none;
			border-bottom: 1px solid #eee; 
			position: relative;
			padding-left: 50%; 
		}
		
		.tablestyle 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;
		}
		
		.tablestyle td:nth-of-type(1):before { content: "Hotel Name"; }
		.tablestyle td:nth-of-type(2):before { content: "Location"; }
		.tablestyle td:nth-of-type(3):before { content: "Hotel Class"; }
		.tablestyle td:nth-of-type(4):before { content: "Photo Gallery"; }
		
		/*
		Label the data
		*/
		
		
		/* Force table to not be like tables anymore */
		.tablestyle1 table, thead, tbody, th, td, tr { 
			display: block; 
		}
		
		/* Hide table headers (but not display: none;, for accessibility) */
		.tablestyle1 thead tr { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		
		.tablestyle1 tr { border: 1px solid #ccc; }
		
		.tablestyle1 td { 
			/* Behave  like a "row" */
			border: none;
			border-bottom: 1px solid #eee; 
			position: relative;
			padding-left: 50%; 
		}
		
		.tablestyle1 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;
		}
		
		.tablestyle1 td:nth-of-type(1):before { content: "No of Person @ Price"; }
		.tablestyle1 td:nth-of-type(2):before { content: "Hotel Class"; }
		.tablestyle1 td:nth-of-type(3):before { content: "Transport"; }
		.tablestyle1 td:nth-of-type(4):before { content: "Enquire Now"; }
		
		/*
		Label the data
		*/
		
		