#mycustomscroll {
/* Typical fixed height and fixed width example */
width: 333px;
height: 420px;
overflow: auto;
background-color:#000000;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
border-bottom-style:none;
}
.fixedwidth {
/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
width: 550px;
height: auto;
position: relative;
color: black;
padding: 1px;
}

