#mycustomscroll {
/* Typical fixed height and fixed width example */
width: 330px;
padding-right:5px;
height: 230px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
}

#mycustomscroll2 {
/* Typical fixed height and fixed width example */
width: 325px;
height: 80px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
}

#mycustomscroll3 {
/* Typical fixed height and fixed width example */
width: 325px;
height: 300px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
}

#mycustomscroll4 {
/* Typical fixed height and fixed width example */
width: 325px;
height: 350px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
}

#mycustomscroll5 {
/* Typical fixed height and fixed width example */
width: 300px;
height: 180px;
overflow: auto;
padding-left:10px;
text-align:left;
/* 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;
}
