#mycustomscroll {
/* Typical fixed height and fixed width example */
width: 570px;
height: 420px;
overflow: auto;
border-width: thin;
border-color:#000000;
/* IE overflow fix, position must be relative or absolute*/
position: relative;

}


#sponsorscroll {
/* Typical fixed height and fixed width example */
width: 360px;
height: 420px;
overflow: auto;
/* 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: 570px;
height: auto;
position: relative;
color: black;

}