#horizontalwrap {
/* Following is the way to stack things dynamically */
display: inline; white-space: nowrap;
}
#mycustomscroll {
	/* Typical fixed height and fixed width example */
	width: 650px;
        height: 490px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
        margin-bottom: 0px;
}

#mycustomscroll-excerpt {
	/* Typical fixed height and fixed width example */
	width: 170px;
        height: 370px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;      
margin-bottom: 20px;
float: left;
background-color: FFF; padding-right: 10px
}

.lipsum {
/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
height: auto;
display: inline;
white-space: nowrap;
position: relative;
color: black;
padding: 1px;
}
