.stripViewer { /* This is the viewing window */
			position: relative;
			overflow: hidden; /* this is the border. should have the same value for the links */
			margin: 0;
	clear: both;
	border-style: none;
}
		
		.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;
			list-style-type: none;
	padding: 0;
	float: left;
	width: 100%;
	display: inline;
	margin: 0;
}
		
		.stripViewer .panelContainer .panel { /* Each panel is arranged end-to-end */
			float:left;
			height: 100%;
			position: relative;
			width: 205px;
	margin-right: 10px;
}
		
		.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
			margin: auto;
		}
		
		.stripNav ul { /* The auto-generated set of links */
			list-style: none;
		}
		
		.stripNav ul li {
			float: left;
			margin-right: 2px; /* If you change this, be sure to adjust the initial value of navWidth in coda-slider.1.1.1.js */
		}
		
		.stripNav a { /* The nav links */
			font-size: 10px;
			font-weight: bold;
			text-align: center;
			line-height: 32px;
			background: #c6e3ff;
			color: #fff;
			text-decoration: none;
			display: none;
}
		
		.stripNavL, .stripNavR {
			text-indent: -9000em;
		}
		
		.stripNavL a, .stripNavR a {
			display: block;
		}
		
		.stripNavL {
			background: url(img/arrow2.gif) no-repeat 0 0;
	width: 10px;
	height: 20px;
	margin: 0;
	padding: 0;
	display: block;
	float: left;
	position: relative;
	top: 80px;
	left: 10px;
	z-index: 5;
}
		
		.stripNavR {
	background: url(img/arrow2.gif) no-repeat right 0;
	width: 10px;
	height: 20px;
	margin: 0;
	padding: 0;
	position: relative;
	top: 60px;
	float: right;
	display: block;
	right: 10px;
	z-index: 10;
}