.stripViewer .panelContainer .panel ul {
	display: none
}
		
.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
	position: relative;
	width: 100%;
	float: right;
	width: 720px;
	margin-top: -1em
}

/* These 2 lines specify style applied while slider is loading */
.csw {width: 100%; height: 460px; background: #fff; overflow: hidden; background: #0f0f0f}
.csw .loading {margin: 200px 0 300px 0; text-align: center}

.stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden; 
	margin: 0 10px;
	width: 700px; /* Also specified in  .stripViewer .panelContainer .panel  below */
	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: 700px; /* Also specified in  .stripViewer  above */
		}
		
		.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;
			float: left;
			display: inline
		}
		
		.stripNav ul li {
			float: left;
			margin-right: 0; /* 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 */
			width: 20px;
			height: 15px;
			background: url(/images/greydot.png) no-repeat center center;
behavior: url(/scripts/iepngfix.htc);
			border: 0;
			text-indent: -9999px;
			display: none;
			outline: none
		}
		
		.stripNav li a:hover {
			background: url(/images/lightgreydot.png) no-repeat center center;
behavior: url(/scripts/iepngfix.htc);
		}
		
		.stripNav li a.current {
			background: url(/images/whitedot.png) no-repeat center center;
behavior: url(/scripts/iepngfix.htc)
		}
		
		.stripNavL, .stripNavR { /* The left and right arrows */
			position: absolute;
			top: 10px;
			text-indent: -9000em;
			z-index: 55;
			display: block
		}
		
		.stripNavL a, .stripNavR a {
			display: block;
			height: 22px;
			width: 22px;
			border: 0;
			behavior: url(/scripts/iepngfix.htc);
			outline: none
		}
		
		.stripNavL {
			left: -55px;
		}
		
		.stripNavR {
			left: -30px;
		}
		
		.stripNavL a {
			background: url(/images/left.png) right
		}
		.stripNavL a:hover {
			background: url(/images/left.png) left
		}
		
		.stripNavR a {
			background: url(/images/right.png) left
		}
		.stripNavR a:hover {
			background: url(/images/right.png) right
		}