/* Scroll Bar Master Styling Starts Here *//* All comments can be freely removed from the css */.scrollgeneric {	line-height: 1px;	font-size: 1px;	position: absolute;	top: 0;	left: 0;}.vscrollerbase {	width: 7px;	background-color: #E5E5E5;}.vscrollerbar {	width: 7px;	background-color: #323232;}.hscrollerbase {	height: 7px;	background-color: white;}.hscrollerbar {	height: 7px;	background-color: #4C94FF;}.scrollerjogbox {	width: 7px;	height: 7px;	top: auto; left: auto;	bottom: 0px; right: 0px;	background-color: gray;}#mycustomscroll {/* Typical fixed height and fixed width example */	width: 270px;	height: 650px;overflow: auto;/* IE overflow fix, position must be relative or absolute*/	position: relative;	border:solid 2px #E5E5E5;	background-color: #FFFFFF;	margin: 0 auto;	padding:0px;}#mycustomscroll2 {/* Typical fixed height and fixed width example */	width: 340px;	height: 250px;	overflow: auto;/* IE overflow fix, position must be relative or absolute*/	position: relative;	background-color: #D5EADE;	margin: 0.3em auto;	padding: 15px;}
