.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
	margin:0px auto;
	position:relative;
	width:900px;
	padding-bottom:14px;}

/* These 2 lines specify style applied while slider is loading */
.csw {
	width: 100%;
	height: auto;
	padding:0px; margin:0px;
	overflow:hidden;}
	
.csw .loading { 
	text-align:center;
	padding:0px;
	margin: 0px auto;}

.stripViewer { /* This is the viewing window */
			position: relative;
			overflow: hidden; 
			margin: 0px auto;
			padding:0px;
			width: 830px; /* Also specified in  .stripViewer .panelContainer .panel  below */
			height:209px;
			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;
			top:0; left: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: 900px; /* Also specified in  .stripViewer  above */}
		
.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
			padding:0px; margin:0px;}
		
.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
			margin:0px; padding:0px; display:none;}
		
.stripNav ul { /* The auto-generated set of links */
			list-style: none; width:900px;}
		
.stripNav ul li {
			float: left;/* If you change this, be sure to adjust the initial value of navWidth in coda-slider.1.1.1.js */}
		
.stripNav a { 
			font-size:0px;
			text-align:center;
			line-height:0px;
			color: #FFF;
			text-decoration: none;
			padding:0px;
			margin:0px;}
		
		
.stripNav li a:hover {
			background: #FFF;}
		
.stripNav li a.current {
			background: #FFF;
			color: #FFF;}
		
.stripNavL { position:absolute; top:74px; text-indent: -9000em;}
.stripNavR { position:absolute; top:74px; text-indent: -9000em;}
		
.stripNavL a { display: block; height:34px; width:34px;}
.stripNavR a { display: block; height:34px; width:34px;}
		
.stripNavL { background: url(../images/arrow_lft.gif) no-repeat center; left:0px; z-index:200;}
.stripNavR { background: url(../images/arrow_rgt.gif) no-repeat center; right:0px;}