.slider-wrap {
			width: 100%;
	position: relative;
	clear: both;
	padding: 0 0 10px;
	margin: 0;
}

		/* These 2 lines specify style applied while slider is loading */
		.csw {width: 100%; overflow: scroll}
		.csw .loading { text-align: center;
	margin-left: 0;
	margin-right: 0;
}

		.stripViewer { /* This is the viewing window */
			position: relative;
			overflow: hidden;
			width: 870px;
	padding: 0;
	margin: 0 auto 0 45px;
}
		
		.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;
	margin-top: 0;
}
		
		.stripViewer .panelContainer .panel { /* Each panel is arranged end-to-end */
			float:left;
			position: relative;
			width: 870px;
	height: 100%;
	margin: 0;
}
		
		.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
			padding: 0;
	margin: 0;
}
		
		.stripNav {
	margin-left: auto;
	margin-right: 45px;
	position: relative;
	top: 65px;
	float: right;
}
		
		.stripNav ul { /* The auto-generated set of links */
			list-style: none;
	margin: 0;
	padding: 0;
}
		
		.stripNav ul li {
			float: left;
	margin: 0 1px;
	padding: 0;
	list-style-type: none;
}
		
		.stripNav a { /* The nav links */
			font-size: 10px;
			font-weight: bold;
			text-align: center;
			color: #ccc;
			text-decoration: none;
			display: block;
			padding: 0 5px;
	line-height: 15px;
}
		
		.stripNav li.tab1 a { background: #f5f5f5;
	margin: 0;
}
		.stripNav li.tab2 a { background: #f5f5f5}
		
		.stripNav li a:hover {
			background: #29568f;
	color: #fff;
}
		
		.stripNav li a.current {
			background: #f5f5f5;
			color: #666;
		}
		
		.stripNavL, .stripNavR { /* The left and right arrows */
			position: absolute;
			top: 25px;
			text-indent: -9000em;
}
		
		.stripNavL a, .stripNavR a {
			display: block;
			height: 28px;
			width: 28px;
}
		
		.stripNavL {
			left: 10px;
			background: url("img/arrow-left.gif") no-repeat center;
		}
		
		.stripNavR {
			right: 10px;
			background: url("img/arrow-right.gif") no-repeat center;
		}