#mycustomscroll {
/* Typical fixed height and fixed width example */
margin-top:10px;
width: 720px;
height: 360px;
overflow: auto;
overflow-x:hidden;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
}

.fixedwidth {
/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
width: 200px;
height: auto;
position: relative;
color: black;
padding: 1px;
}
