/* 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: 8px;
background-color: #838071;
}
.vscrollerbar {
width: 8px;
background-color: #9f9c8f;
}
.hscrollerbase {
height: 8px;
background-color: #838071;
}
.hscrollerbar {
height: 8px;
background-color: #9f9c8f;
}

.scrollerjogbox {
width: 8px;
height: 8px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background-color: gray;
}
#mycustomscroll {
/* percentage width without the fix*/
width: 85%;
height: 460px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
margin: 0.3em auto;
padding-top: 0px;
padding-right:15px;
}

#mycustomscroll2 {
/*percantage width: make it 100% to match container*/
width: 100%;
height: 460px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
margin: 0.3em auto 0.3em -20px;
/* negative left margin to compensate for the padding,
not related to fleXcroll, and may not be needed elsewhere */
padding: 10px;
}
.percentagewrap {
	width: 80%;
	margin: 0 auto;
	padding: 10px;
	}
	
.fixedwidth {
/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
width: 262px;
height: auto;
position: relative;
color: black;
padding: 1px;
}

