/*
percentage width: the real percentage is done by the wrapper
this is to fix various IE6 bugs
*/
.percentagewrap {
	margin: 0 auto;
	padding: 10px;
	}
	
.fixedwidth {
/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
width: 550px;
height: auto;
position: relative;
color: black;
padding: 1px;
}
#myone {	/*percantage width: make it 100% to match container*/
	width: 100%;
	height: 100%;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
position: absolute;
	left: 88px;
	top: 378px;
	outline: none;
}
#mytwo {
	/*percantage width: make it 100% to match container*/
width: 362px;
	height: 301px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
position: absolute;
	/* negative left margin to compensate for the padding,
not related to fleXcroll, and may not be needed elsewhere */
padding: 5px;
	left: 374px;
	top: 378px;
	outline: none;
}
#mythree {
	width: 129px;
	height: 307px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
position: absolute;
	/* negative left margin to compensate for the padding,
not related to fleXcroll, and may not be needed elsewhere */
padding: 5px;
	left: 830px;
	top: 377px;
	outline: none;
}
#myfour {
	width: 195px;
	height: 232px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
position: absolute;
	/* negative left margin to compensate for the padding,
not related to fleXcroll, and may not be needed elsewhere */
padding: 5px;
	left: 390px;
	top: 786px;
	outline: none;
}
#myfive {
	width: 245px;
	height: 217px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
position: absolute;
	/* negative left margin to compensate for the padding,
not related to fleXcroll, and may not be needed elsewhere */
padding: 5px;
	left: 689px;
	top: 791px;
	outline: none;
}
#caption {
	width: 141px;
	height: 323px;
	position: absolute;
	scrolling: false;
	padding: 5px;
	left: 827px;
	top: 456px;
	outline: none;
}
#menu {
	width: 132px;
	height: 238px;
	overflow: auto;
	position: absolute;
	padding: 5px;
	left: 133px;
	top: 368px;
	outline: none;
}
