/* scrollable div area */
			#scrollable1 {
				float: left;
				width: 300px;
				height: 200px;
				border: 1px solid #ccc;
				overflow: hidden;
				white-space: nowrap;
			}
		
			
			/* vertical track */
			#track1 {
				float: left;
				width: 15px;
				height: 200px;
				margin-left: 10px;
				background-color: #ccc;
			}
			
			/* vertical track handle */
			#handle1 {
				width: 15px;
				height: 20px;
				background-color: #f00;
				cursor: move;
			}
			
			/* horizontal track */
			#track2 {
				float: left;
				clear: both;
				width: 300px;
				height: 15px;
				margin-top: 10px;
				background-color:#ccc;
			}
			
			/* horizontal track handle */
			#handle2 {
				width: 20px;
				height: 15px;
				background-color: #f00;
				cursor: move;
			}
			
		
			
			/* wrap to make sure that image area is clickable */
			#wrap3 {
				float: left;
				width: 19px;
				height: 385px;
				background: transparent url(../img/services/scrollbar-blueV.gif) no-repeat bottom left;
			}
			
			/* top image of track */
			#track3-top {
				position: absolute;
				width: 15px;
				height: 15px;
				background: transparent url(../img/services/scrollbar-blueV.gif) no-repeat top left;
			}
			
			/* vertical track */
			#track3 {
				position: absolute;
				width: 15px;
				height: 385px;
			}
			
			/* vertical track handle */
			#handle3 {
				width: 15px;
				height: 37px;
			}


		
