/* 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: white;
}
.vscrollerbar {
width: 8px;
background-color: black;
}
.hscrollerbase {
height: 8px;
/*background-color: white;*/ border-bottom:1px solid #adadad;
}
.hscrollerbar {
height: 8px;
background-color: #adadad;
}
.fixedwidth table{ float:left;

}
.scrollerjogbox {
width: 8px;
height: 8px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background-color: gray;
}

.copyrightnotice {
	font-size: 70%;
	font-weight: bold;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	text-indent: 0;
}

#mycustomscroll {
/* Typical fixed height and fixed width example */
width: 300px;
height: 250px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
background-color: #E7EADE;
margin: 0.3em auto;
padding: 15px;
}

#mycustomscroll2 {
/* Typical fixed height and fixed width example */
width: 780px;
height: 80px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
/*margin: 0.2em auto;*/
padding: 0px 15px 22px 0px;
}


.fixedwidth {
/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
width: 2000px;
height: 60px;
position: relative;
padding: 1px;
}
