/*    Styles for scrolling layers  	 Specify width and height in hold and wn, and in clip for wn */body {	background: #363124;	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */	padding: 0;}div#hold	{ 	position:relative; overflow:hidden;	left:0px; top:0px; 	width:670px; height:490px; 	padding-left:0px;	z-index:50; 	}div#wn	{ 	position:absolute; 	left:0px; top:0px; 	width:670px; height:490px; 	clip:rect(0px 670px 490px 0px); 	overflow:hidden;		z-index:1; 	}div.content { 	position:absolute; 	left:0px; top:0px; 	z-index:1; 	padding-left:14px;	}/* Set small font-size or size/position of div's will be off in some browsers  */div#scrollbar {   position:relative; left:=-20px; top:0px;  width:20px; height:490px;   font-size:1px; z-index:1;  }div#track {   position:absolute; left:-1px; top:11px;  width:21px; height:468px;  background: #f2f0eb;  z-index:1;  }div#dragBar {  position:absolute; left:0px; top:0px;  width:20px; height:40px;  background:#c7ccd2;  z-index:1;  }  div#up { position:absolute; left:0; top:0; z-index:2 }  div#down { position:absolute; left:0; bottom:0; z-index:3 }  