/*#mycustomscroll {
	
	width: 445px;
	height: 340px;
	overflow: auto;


	position: relative;
	background-color: ;
	margin: 0px;
	padding: 20px;
	top: -20px;
	z-index: 1;
}*/

#mycustomscroll {
/* Typical fixed height and fixed width example */
width: 445px;
height: 290px;
overflow: auto;

/* IE overflow fix, position must be relative or absolute*/
position: relative;
background-color:Transparent;
margin: 0px;
padding: 20px;

}

#mycustomscroll2 {
/* Typical fixed height and fixed width example */
width: 450px;
height: 220px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
background-color:;
margin: 5px;
padding: 0px;
}


.fixedwidth {
/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
width: 450px;
height: auto;
position: absolute;
color: black;
padding: 0px;
}

