/*iPad in ngang*/
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
	#about .img-map{
		display: inline-block;
		float: none;
		width: 100%;
		margin: 0;
	}
	
	
}

/*iPad in doc*/
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
	#about .img-map{
		display: inline-block;
		float: none;
		width: 100%;
		margin: 0;
	}
	
	
}

/*iPad 3,4 in portrait & landscape ngang*/
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape)
and (-webkit-min-device-pixel-ratio: 2) {
	#about .img-map{
		display: inline-block;
		float: none;
		width: 100%;
		margin: 0;
	}
	
	
}


/*iPad 3,4 in portrait & landscape doc*/
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait)
and (-webkit-min-device-pixel-ratio: 2) {
	#about .img-map{
		display: inline-block;
		float: none;
		width: 100%;
		margin: 0;
	}
	
	
}

/*iPhone 6 in ngang*/
@media only screen 
and (min-device-width : 360px) 
and (max-device-width : 667px) 
and (orientation : landscape) {
	#about .img-map{
		display: inline-block;
		float: none;
		width: 100%;
		margin: 0;
	}
	
	
}

/*iPhone 6 in doc*/
@media only screen 
and (min-device-width : 360px) 
and (max-device-width : 667px) 
and (orientation : portrait) {
	#about .img-map{
		display: inline-block;
		float: none;
		width: 100%;
		margin: 0;
	}
	
	
}

/*iPhone 5 & 5S in ngang*/
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) 
and (orientation : landscape) {
	#about .img-map{
		display: inline-block;
		float: none;
		width: 100%;
		margin: 0;
	}
	
	
}

/*iPhone 5 & 5S in doc*/
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) 
and (orientation : portrait) {
	#about .img-map{
		display: inline-block;
		float: none;
		width: 100%;
		margin: 0;
	}
	
	
}