#designerScrollBar {
	/* Typical fixed height and fixed width example */
	width:495px;
	_width:505px;
	height:166px;
	overflow:auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	margin: 0;
	padding:0 0 0 10px;
	vertical-align:top;
}

#custServiceScrollBar {
	/* Typical fixed height and fixed width example */
	width:735px;
	_width:745px;
	height:400px;
	overflow:auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	margin: 0;
	padding: 0 0 0 10px;
	vertical-align:top;
}

#productScrollBar {
	/* Typical fixed height and fixed width example */
	width:215px;
	_width:225px;
	height:308px;
	overflow:auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	margin: 0;
	padding: 0 10px 10px 0;
	vertical-align:top;
}

#pressText {
	/* Typical fixed height and fixed width example */
	width:502px;
	_width:512px;
	height:110px;
	_height:80px;
	overflow:auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	margin: 0;
	padding: 0 8px 0 0;
	vertical-align:top;
}

#scrollBar {
	/* Typical fixed height and fixed width example */
	width:215px;
	_width:225px;
	height:367px;
	overflow:auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	margin: 0.3em auto;
	padding: 0 10px 5px 0;
	vertical-align:top;
}

.jScrollPaneContainer {
	position: relative;
	overflow: hidden;
	z-index: 1;
	margin: 0;
	padding: 0;
}

.jScrollPaneTrack {
	position: absolute;
	cursor: pointer;
	right: 0;
	top: 0;
	height: 100%;
	background: #0f0;
}
.jScrollPaneDrag {
	position: absolute;
	background: #foo;
	cursor: pointer;
	overflow: hidden;
}
.jScrollPaneDragTop {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}
.jScrollPaneDragBottom {
	position: absolute;
	bottom: 0;
	left: 0;
	overflow: hidden;
}
a.jScrollArrowUp {
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	text-indent: -2000px;
	overflow: hidden;
	/*background-color: #666;*/
	height: 5px;
}
a.jScrollArrowUp:hover {
	/*background-color: #f60;*/
}

a.jScrollArrowDown {
	display: block;
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 0;
	text-indent: -2000px;
	overflow: hidden;
	/*background-color: #666;*/
	height: 5px;
}
a.jScrollArrowDown:hover {
	/*background-color: #f60;*/
}
a.jScrollActiveArrowButton, a.jScrollActiveArrowButton:hover {
	/*background-color: #f00;*/
}

.jScrollPaneTrack {
	background: url(images/scroll_background.gif) repeat-y;
}
.jScrollPaneDrag {
	background: url(images/scroll_scrollbar.gif) repeat-y;
}
.jScrollPaneDragTop {
	background: transparent;
	height: 0;
}
.jScrollPaneDragBottom {
	background: transparent;
	height: 0;
}
a.jScrollArrowUp {
	height: 7px;
	background: url(images/scroll_arrow_top.gif) no-repeat 0 0;
}
a.jScrollArrowDown {
	height: 7px;
	background: url(images/scroll_arrow_bottom.gif) no-repeat 0 0;
}