/* Scroll Bar Master Styling Starts Here */
/* All comments can be freely removed from the css */

.scrollgeneric {
	width:5px;
position: absolute;
top: 25px; left: 0;
}

/* scroll bar base color */
.vscrollerbase {
width: 8px;
background-color: #090a0b;
}
/* scroll bar color */
.vscrollerbar {
width: 8px;
background-color: #63666b;
}


.scrollerjogbox {
}


#mycustomscroll {
/* Typical fixed height and fixed width example */
	width: 472px;
	height:327px;
	overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	padding: 25px;
	float:left;
	color:#FFF;
}
#mycustomscroll  p{
	margin: 0px; 
	padding: 0px 0px 12px;
	line-height: 11pt;
}


