		/* These 2 lines specify style applied while slider is loading */
		.csw, .csw .loading, .stripNavL, .stripNavR {display: none; visibility: hidden}

		.stripViewer { /* This is the viewing window */
			z-index: 90;
			position: absolute;
			top: 0px;
			right: 0px;
			overflow: hidden; 
			border: 2px solid white; /* this is the border. should have the same value for the links */
			margin: auto;
			width: 500px; /* Also specified in  .stripViewer .panelContainer .panel  below */
			height: 115px;
			clear: both;
			background: transparent
		}
		
		.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;
			position: relative;
			height: 100%;
			width: 500px; /* 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
		}
		
		.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
			z-index: 100;
			position: absolute;
			top: 0;
			right: 0
		}
		
		.stripNav ul { /* The auto-generated set of links */
			list-style: none;
			position: absolute;
			top: 105px;
			right: 0;
			width: 500px
		}
		
		.stripNav ul li {
			float: left;
			margin-right: 10px; /* 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;
			background: white;
			color: black;
			text-decoration: none;
			display: block;
			padding: 3px 20px;
		}
		
		
		.stripNav li a:hover {
			background: #c10404;
			color: #fff;
		}
		
		.stripNav li a.current {
			background: #c10404;
			color: #fff;
		}
