body {
	background-color: #transparent;
	margin: 0;
	padding: 0;
	font-family: "Trebuchet MS", Trebuchet, Verdana, Sans-Serif;
	font-size: 10px;
}
#mycustomscroll2 {
	/* Typical fixed height and fixed width example, hier breite des feldes eintragen, height ist abstand der scrollbar */
    width: 65%;
	height: 115px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
    position: absolute;
	padding: 0px;
	left: 0;
	top: 105%;
	z-index: 1;
}
.fixedwidth {
	/* a wide div is used for creating horizontal scrollbars for demonstration purposes, hier scrollbreite eintragen */
    width: 702px;
	height: auto;
	position: absolute;
	color: black;
	padding: 0px;
}
