@charset "utf-8";
/* CSS Document */





/* ============================   Start of  MOBILE PHONE   =========================== */

/* Mobile Layout: 480px and below.  THIS IS FOR A MOBILE PHONE  */

/* IMAGE FOR BOTH CARS AND BIKES - MOBILE PHONE */
.css_image_car_and_bike {
	width: 80%;
	height: auto;
	border: none;
	padding: none;
	margin: 0 auto 0 auto;
	background-color: #fff;
}






/* ============================  End of  MOBILE PHONE   =========================== */





  
/* =================================   Start of  TABLET   =========================== */


/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout.   THIS IS FOR A TABLET */



@media only screen and (min-width: 481px) {
	
/* IMAGE FOR BOTH CARS AND BIKES - TABLET */
.css_image_car_and_bike {
	width: 70%;
	height: auto;
	border: none;
	padding: none;
	margin: 0 auto 0 auto;
	background-color: #fff;
}
	

	
	
	


}

/* ================++++++++++============   End of  TABLET   =========================== */	
	
	
	
/* ============================   Start of  DESKTOP COMPUTER    =========================== */



/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout.  THIS IS FOR A DESKTOP COMPUTER */

@media only screen and (min-width: 769px) {
	
/* IMAGE FOR BOTH CARS AND BIKES - DESKTOP PC */
.css_image_car_and_bike {
	width: 50%;
	height: auto;
	border: none;
	padding: none;
	margin: 0 auto 0 auto;
	background-color: #fff;
}
	
	
	
}

