		.stripViewer .panelContainer .panel ul {
			text-align: left;
			margin: 0 15px 0 30px;
		}
		
		.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
			position: relative;
			width: 100%;
			margin:20px 0;
			margin:0 0 20px;/*takes care of empty space in the top due to the relative position*/
		}
		
		.slider-wrap p { text-align: left; margin: 15px 0 }
		
		

		/* 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: 1px solid #9ABFC0; /* this is the border. should have the same value for the links */
			margin: auto;
			width: 552px; /* Also specified in  .stripViewer .panelContainer .panel  below */
			height: 356px;
			clear: both;
			background: #fff;
			/*minus 80px for arrows*/
			width: 428px;
			/*after killing the arrows*/
			width:508px;
		}
		
		.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: 552px; /* Also specified in  .stripViewer  above */
			/*minus 80px for arrows*/
			width: 428px;
			/*after killing the arrows*/
			width:508px;
		}
		
		.stripViewer .panelContainer .panel .wrapper {padding: 10px;}		
		.stripNav {
			margin: auto;
			position:relative;
			top:378px; /*initial height of the stripviewer +50px*/
			margin-top:-20px;/*takes care of empty space in the top due to the relative position*/
			z-index:9999;
		}
		
		.stripNav ul {
			list-style: none;
			float: left !important;
			left:0 !important;
			position:static !important;
			margin:0 !important;/* If you change this, be sure to adjust the initial value of navWidth in coda-slider.1.1.1.js */
 			padding-left:0 !important;
		}
		
		.stripNav ul li {
			float: left;
			margin:0 2px 0 0 !important;/* 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: 20px;
			background: transparent;
			color: #0077C0;
			text-decoration: none;
			display: block;
			padding: 0 12px;
			border: 1px solid #9ABFC0;
			border-top:0;
		}
		
		.stripNav a span{opacity:0.5;}
		
		.stripNav li.tab1 a { background: transparent;}
		.stripNav li.tab2 a { background: transparent;}
		.stripNav li.tab3 a { background: transparent;}
		.stripNav li.tab4 a { background: transparent;}
		.stripNav li.tab5 a { background: transparent;}
		.stripNav li.tab6 a { background: transparent;}
		
		.stripNav li a:hover {background: #ccdfdf;}
		.stripNav li a:hover span,
		.stripNav li a.current span{opacity:1;}
		.stripNav li a.current {
			background: #ffffff;
			color: #0077C0;
		}
		
		.stripNavL, .stripNavR { /* The left and right arrows */
			position: absolute;
			top: 230px;
			text-indent: -9000em;
		}
		
		.stripNavL a, .stripNavR a {
			display: block;
			height: 40px;
			width: 40px;
		}
		
		.stripNavL {left: 0;}		
		.stripNavR {right: 0;}		
		.stripNavL {background: url('../codasliderimages/arrow-left.gif') no-repeat center;}
		.stripNavR {background: url('../codasliderimages/arrow-right.gif') no-repeat center;}

		/*killing the arrows*/
		.stripNavR, .stripNavL {display:none;}