﻿.Scroller
{
	position: relative;									/* Do not change: effects text placement when removed or changed												*/
	overflow: hidden;									/* Do not change: scroller creates text beyond the component bounds in order to scroll the text onto the screen	*/
	width: auto;										/* Do not change: auto width for div is 100%																	*/
	height: 18px;										/* User editable: height of scroller																			*/
	line-height: 18px;									/* User editable: should be the same as height to vertically align text											*/
	padding: 5px 0px 5px 0px;							/* User editable: <top right bottom left> padding																*/
	border: solid 1px black;							/* User editable: border around component																		*/
	cursor: pointer;									/* User editable: cursor to display when hovering over															*/
    font-weight: normal;								/* User editable: default boldness of scroller font																*/
    font-size: 8pt;										/* User editable: default font size																				*/
    font-family: Arial, Verdana, Helvetica, sans-serif;	/* User editable: default font to use																			*/
}