.sliderZone {
	position: relative;
	}

.stripViewer { /* This is the viewing window */
	background: transparent url(http://s3.amazonaws.com/wimgo/images/siteguide/slider_bkground.png) no-repeat;
	position: relative;
	top: -7px;
	overflow: hidden; 
	width: 941px; /* Also specified in  .stripViewer .panelContainer .panel  below */
	height: 350px;
	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;
	/* -moz-user-select: none; // This breaks CSS validation but stops accidental (and intentional - beware) panel highlighting in Firefox. Some people might find this useful, crazy fools. */
	}

.stripViewer .panelContainer .panel { /* Each panel is arranged end-to-end */
	float:left;
	height: 100%;
	position: relative;
	width: 941px; /* Also specified in  .stripViewer  above */
	}

.stripNavL, .stripNavR { /* The left and right arrows */
	position: absolute;
	top: 199px;
	text-indent: -9000em;
	z-index: 500;
	}

.stripNavL a, .stripNavR a {
	display: block;
	height: 47px;
	width: 47px;
	}

.stripNavL {
	left: -20px;
	}

.stripNavR {
	right: -20px;
	}

.stripNavL {
	background:url(http://s3.amazonaws.com/wimgo/images/siteguide/previous_button.gif) no-repeat center;
	}

.stripNavR {
	background:url(http://s3.amazonaws.com/wimgo/images/siteguide/next_button.gif) no-repeat center;
	}

