		/* These 2 lines specify style applied while slider is loading */
		/*
		.csw {width: 100%; height: 460px; background: #fff; overflow: scroll}
		.csw .loading {margin: 200px 0 300px 0; text-align: center}
		*/
		
		.stripViewer { /* This is the viewing window */
			position: relative;
			overflow: hidden;
			border: 10px solid #fff; /* this is the border. should have the same value for the links */
			width: 694px; /* Also specified in  .stripViewer .panelContainer .panel  below */
			height: 412px; /* height: 400px; for the nav else 387 */
			clear: both;
			background: #fff;
		}
		
		.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: 694px; /* Also specified in  .stripViewer  above */
		}
		
		.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
			position:absolute;	
			z-index: 1;
			margin-top: 403px ;
			margin-left: 10px;
			background: #fff;
		}
		
		.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: 15px;
			color: #fff;
			text-decoration: none;
			display: block;
			padding: 0px 0px;
			height: 25px;
			width: 25px;
		}
		
		.stripNav li.tab1 a { background: url(../images/nav_1.png) no-repeat }
		.stripNav li.tab2 a { background: url(../images/nav_2.png) no-repeat }
		.stripNav li.tab3 a { background: url(../images/nav_3.png) no-repeat }
		.stripNav li.tab4 a { background: url(../images/nav_4.png) no-repeat }
		.stripNav li.tab5 a { background: url(../images/nav_5.png) no-repeat }
		.stripNav li.tab6 a { background: url(../images/nav_6.png) no-repeat }
		

		.stripNav li a.current {
			background:url(../images/button_selected.png) no-repeat;
			text-align: center;
			color: #fff;
		}
		
		
		
		.stripNav li.tab1 a.current { background: url(../images/nav_1_active.png) no-repeat }
		.stripNav li.tab2 a.current { background: url(../images/nav_2_active.png) no-repeat }
		.stripNav li.tab3 a.current { background: url(../images/nav_3_active.png) no-repeat }
		.stripNav li.tab4 a.current { background: url(../images/nav_4_active.png) no-repeat }
		.stripNav li.tab5 a.current { background: url(../images/nav_5_active.png) no-repeat }
		.stripNav li.tab6 a.current { background: url(../images/nav_6_active.png) no-repeat }