	/*
	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 */
		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 {
			/* Behave  like a "row" */
			border: none;
			border-bottom: 1px solid #eee;
			position: relative;
			padding-left: 30%;
			margin:10px;
		}

		td:before {
			/* Now like a table header */
			position: absolute;
			/* Top/left values mimic padding */
			left: 6px;
			width: 30%;
			padding-right: 10px;
			white-space: nowrap;
		}

		/*
		Label the data
		*/
		.tbl_price td:nth-of-type(1):before { content: "Number of tourists "; }
		.tbl_price td:nth-of-type(2):before { content: "Adult"; }
		.tbl_price td:nth-of-type(3):before { content: "Children"; }
		.tbl_price td:nth-of-type(4):before { content: "Single"; }
		.tbl_price td:nth-of-type(5):before { content: "Extra bed"; }
		.tbl_price td:nth-of-type(6):before { content: "Note"; }
		
		.pr_day2 td:nth-of-type(1):before { content: "Điểm đến"; }
		.pr_day2 td:nth-of-type(2):before { content: "Ngày đi"; }
		.pr_day2 td:nth-of-type(3):before { content: "Ngày về"; }
		.pr_day2 td:nth-of-type(4):before { content: "Giá(VNĐ)"; }
		.pr_day2 td:nth-of-type(5):before { content: "Số chỗ còn nhận"; }
	}

	/* Smartphones (portrait and landscape) ----------- */
	@media only screen
	and (min-device-width : 320px)
	and (max-device-width : 480px) {
		body {
			padding: 0;
			margin: 0;
			/*width: 320px; */}
		}

	/* iPads (portrait and landscape) ----------- */
	@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
		body {
			width: 495px;
		}
	}
@media (min-width: 768px) {	
table {
		border-collapse: collapse;
		width: 100%;
		}
		/*tr:nth-of-type(2n+1) {
			background: none repeat scroll 0 0 #f7f7f7;
		}*/
		th {
			color: #1a3459;
			font-size:85%;
			font-weight: bold;
			text-align:center;
			white-space:nowrap;
		}
		td, th {
			border: 1px dotted #ccc;
			padding: 10px;
		}
}
	.content_program {
		background-color:#bfd9b3;
	}	
	.content_program1 {
		background-color:#fcdeb8;
	}
	.content_program2 {
		background-color:#dcddab;
	}
	.content_program3 {
		background-color:#f799d1;
	}
	.content_program4 {
		background-color:#cfcced;
	}
	.content_program5 {
		background-color:#fde0e2;
	}
	.content_program:hover, .content_program1:hover, .content_program2:hover, .content_program3:hover, .content_program4:hover, .content_program5:hover {
		box-shadow: 5px 5px 5px #888888;
	}
	.content_program i, .content_program1 i, .content_program2 i, .content_program3 i, .content_program4 i, .content_program5 i {
		font-size:90%;
	}