/* outermost element for the scroller (stays still) */
#panorama {
	margin: 25px 5px 5px 5px;
	float: right;
}
#scrollwrap {
	width: 325px;	
	height: 250px;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
	border: 1px solid #000;
/*	-moz-box-shadow:0 0 20px #666;
	-webkit-box-shadow:0 0 20px #666;*/
}
/* the element that moves forward/backward */
#scroll { 	
	background: url(../images/panorama_nacht.jpg);
	color: #000000;
	font: bold 36px sans-serif;
	text-align: left;
	text-shadow: 5px 1px 1px #000;
	height: 250px;
	width: 5014px;
	left: 0px;	
	padding: 20px 30px;
	position: relative;
}
.slider { 
	position: relative; 
	cursor: pointer;
	height: 1px;
	border: 1px solid #000000;	
	width: 325px;
/*	-moz-border-radius:2px;
	-webkit-border-radius:2px;*/
}

.progress {
	background-color: #aa392b;
	height: 3px;
	position: absolute;
	width: 0;
}

.handle { 
	border: 1px solid #cfcfcf;
	background-color: #fff;
	height: 20px;
	width: 20px;
	position: absolute; 
	top: -12px;
	display: block;
	cursor: move;
/*	-moz-border-radius:14px;
	-webkit-border-radius:14px;*/
}

.handle:active {
	background: #aa392b;		
}

.range {
	display: none;
}

