.slider-wrap {
	position: relative;
	width: 520px;
}
/* These 2 lines specify style applied while slider is loading */
.csw {
	width: 100%;
	height: 460px;
	background: #FFFFFF;
	overflow: scroll;
}
.csw .loading {
	margin: 200px 0px 333px 0px;
	text-align: center;
}
.stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden;
	margin: auto;
	width: 512px;
	clear: both;
}
.stripViewer .panelContainer { /* This is the big long container used to house your end-to-end divs. Width is calculated and specified by the JS  */
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	list-style-type: none;
}
.stripViewer .panelContainer .panel { /* Each panel is arranged end-to-end */
	float:left;
	position: relative;
	width: 512px;
	height:600px;
}
.stripViewer .panelContainer .panel .wrapper {
	float:left;
	clear:both;
	display:inline-block;
	width:100%;
	height:612px;
}
.stripViewer .panelContainer .panel .wrapper img {
	margin-right:0px;
	float:left;
	width:512px;
}
.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
	padding:22px 0px 0px 70px;
	width:716px;
	height:28px;
}
.stripNav ul { /* The auto-generated set of links */
	clear:both;
	margin:0px;
	padding:0px;
	list-style:none;
}
.stripNav li {
	float:left;
	margin:0px;
	padding:0px;
	width:15px;
	height:9px;
	text-align:left;
}
.stripNav a { /* The nav links */
	font-size:9px;
	display:block;
	width:9px;
	height:9px;
	outline:none;
	background:url(/_resources/images/design/slider_green_dots.gif) 0px 0px no-repeat;
}
.stripNav a:hover, .stripNav a.current {
	background:url(/_resources/images/design/slider_blue_dots.gif) 0px 0px no-repeat;
}
.stripNavL, .stripNavR { /* The left and right arrows */
	position: absolute;
	top: 10px;
}
.stripNavL a, .stripNavR a {
	display: block;
	height: 27px;
	width: 27px;
}
.stripNavL {
	left: 0;
	margin-left:20px;
	background: url("/_resources/images/design/slider_button_left.gif") no-repeat center;
}
.stripNavR {
	right: 0;
	margin-right:20px;
	background: url("/_resources/images/design/slider_button_right.gif") no-repeat center;
}