/* CSS for mobile devices */

* {
	float: none;       /* Screens are not big enough to account for floats */
	background: #fff;  /*  As much contrast as possible */
	color: #000;
}


@media screen and (orientation:portrait) { 
	/* Style adjustments for portrait mode goes here */

}

@media screen and (orientation:landscape) { 
	/* Style adjustments for landscape mode goes here */

}

@media screen and (max-device-width: 480px) {

}
