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

img.banner {
	display: block;
	margin: auto;
	max-width:60%;
}


/* TABLET view, PORTRAIT orientation */
@media only screen and (hover: none) and (pointer: coarse) and (orientation: portrait) and (max-device-width:800pt) {
    
}

/* TABLET view, LANDSCAPE orientation */
@media only screen and (hover: none) and (pointer: coarse) and (orientation: landscape)  and (max-device-width:1100pt) {

}

/* PHONE view, PORTRAIT orientation */
@media only screen and (hover: none) and (pointer: coarse) and (orientation: portrait) and (max-device-width:480pt)
/* @media only screen and (max-width: 480px) and (orientation: portrait) */
/* @media only screen and (max-device-width:480pt) and (orientation: portrait) and (hover: none) and (pointer: coarse) */
{
	
	img.banner {
		width:100%;
		max-width:100%;
	}

}

/* PHONE view, LANDSCAPE orientation */
@media only screen and (hover: none) and (pointer: coarse) and (orientation: landscape) and (max-device-width:480pt) {

}