#rightscroll {
/* Typical fixed height and fixed width example */
width: 410px;
height: 380px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
border:3px solid #d5d6d8;
border-bottom:0px solid;
margin: 20px 0 0 37px;
padding:10px;
z-index:100;
}
#rightscroll p{
	text-indent:16px;
	margin:0 0 5px 0;
}
#leftscroll {
/* Typical fixed height and fixed width example */
width: 150px;
height: 470px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
border:3px solid #d5d6d8;
border-bottom:0px solid;
margin: 10px 0 0 0;
padding:10px;
z-index:100;
}
#leftscroll p{
	margin:0 0 5px 0;
}
.fixedwidth {
/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
width: 550px;
height: auto;
position: relative;
color: black;
padding: 1px;
}


