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

/*
************************************************************************
 *  Author: Lois Jones | jonesloism.net | jonesloism@gmail.com
 *  History: Created 2014-June
 *  Description:
 *
 *
 *
 ************************************************************************
 */


/*Styles for screen [769px..1048px] */
@media screen and (max-width: 1048px){
	.banner img {
		//border: solid purple 3px;
		width: 100%;
		height: auto;
	}
}


/*Styles for screen [481px..768px] */
@media screen and (max-width: 768px) {
	.banner img {
		//border: solid blue 3px;
		width: 100%;
		height: auto;
	}
}

/*Styles for screen [321px..480px] */
@media only screen and (max-width : 480px) {
	.banner img {
		//border: solid red 3px;
		width: 100%;
		height: auto;
	}
}

/*Smartphone    screen size [1px..320px]      */
@media only screen and (max-width : 320px) {
	.banner img {
		//border: solid green 3px;
		width: 100%;
		height: auto;
	}

}