#mycustomscroll {
/* Typical fixed height and fixed width example */
width: 376px;
height: 264px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
background-color: #363636;
margin:0;
padding:0;
scrollbar-face-color: #BE648A;
scrollbar-shadow-color: #363636;
scrollbar-highlight-color: #363636;
scrollbar-3dlight-color: #363636;
scrollbar-darkshadow-color: #363636;
scrollbar-track-color: #363636;
scrollbar-arrow-color: #363636;
}
.fixedwidth {
/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
width: 310px;
height: auto;
position: relative;
color: #f00;
padding:0;
}

