.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%;
}

/* 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: auto;
	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;
			margin-bottom: 1em
		}
		
		.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;
			display: block;
			background: url(/images/greydot.png) no-repeat center center;
behavior: url(/scripts/iepngfix.htc);
			border: 0;
			text-indent: -9999px
		}
		
		.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: 0px;
			text-indent: -9000em;
			z-index: 55;
			display: none
		}
		
		.stripNavL a, .stripNavR a {
			display: block;
			height: 29px;
			width: 29px;
			border: 0
		}
		
		.stripNavL {
			left: -50px;
		}
		
		.stripNavR {
			right: -50px;
		}
		
		.stripNavL {
			background: url(/images/previousnext.png) 0 0
		}
		
		.stripNavR {
			background: url(/images/previousnext.png) 29px 0
		}