.stripViewer .panelContainer .panel ul {
	width: 518px;	
	text-align: left;
	margin: 0;
}

.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
   width: 518px;
   margin: 0;    
   border: none;
   position: relative;	
   left: 0; top: 0;
}

/* These 2 lines specify style applied while slider is loading */
.csw {width: 518px; background: none; overflow: none}
.csw .loading {width: 518px; height: 210px; margin: 0; padding: 0px; position: relative; left: 0; top: 80px; background: none; text-align: center}

.stripViewer { /* This is the viewing window */
	position: relative;	
	left: 0; top: 0px;
	overflow: hidden; 
	/* this is the border. should have the same value for the links */
	padding: 0;
	margin: 0 0 0 10px;
    border-width: 4px 1px 1px 1px;
    border-color: #93AE0D; 
    border-style: solid; 	
	width: 518px; /* Also specified in  .stripViewer .panelContainer .panel  below */	
	height: 210px;
	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;	
	padding: 0;
	margin: 0;
	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;
	padding: 0;
	margin: 0;	
	position: relative;	
	width: 518px; /* Also specified in  .stripViewer  above */	
	height: 210px;
}

.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
	padding: 0;
	margin: 0;	
	width: 518px;	
	height: 210px;
}

.stripNav { /* This is the div to hold your nav (the UL generated at run time) */    
    height: 24px;
	margin: 0 0 0 10px;
	padding: 0;	
	position: relative;
	left: 0; top: 0;		 
}

.stripNav ul { /* The auto-generated set of links */
	margin: 0;
	padding: 0;
    width: 518px;    
    height: 26px;
    border-width: 0 0 0 1px;	
	border-style: solid;
	border-color: #93AE0D;     
	list-style: none;		
}

.stripNav ul li {
	float: left;
	padding: 0px;
	margin: 0px; /* 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 */	
	color: #93AE0D;
	text-align: center;
	text-decoration: none;	
	padding: 5px 0 0 0;
	margin: 0px;
    width: 37px;
	height: 20px;
	display: block;
	border-width: 1px 1px 1px 0;	
	border-style: solid;
	border-color: #93AE0D; 
}

.stripNav li.tab1 a { background: #cc0000}
.stripNav li.tab2 a { background: #60c }
.stripNav li.tab3 a { background: #63f }
.stripNav li.tab4 a { background: #63c }
.stripNav li.tab5 a { background: #00e }

.stripNav li a:hover {
    padding: 5px 0 0 0;		
	color: #ffffff;
	text-decoration: none;	
	height: 20px;
	background: #93AE0D; 	
}

.stripNav li a.current {
	padding: 5px 0 0 0;		
	color: #ffffff;
	height: 20px;
	background: #93AE0D; 	
}


