/* Style sheet to allow left-right scrolling of tables on mobile devices */

.scroller {			
	padding: 5px;			/* protect box-shadow of enclosed table */	
	margin-left: -5px;		/* offsets padding */
	overflow: auto;
	}
.scrollnote {
	display: none;
	}

@media only screen and (max-width: 480px) and (max-device-width: 480px) {
.scrollnote {
	display: block;
	font-style: italic;
	}
}
