
.stripViewer .panelContainer .panel ul {
	text-align: left;
	margin: 0;
	
}
.stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden; 
	margin: 0;
	width: 357px; /* Also specified in  .stripViewer .panelContainer .panel  below */
	height: 160px;
	clear: both;
	background:inherit;
	
	
}

.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;
	list-style-type: none;
	margin:0;
	padding:0;
	height: 185px;
	overflow: hidden;
	
	/* -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: 160px;
	position: relative;
	width: 357px; /* Also specified in  .stripViewer  above */
	overflow: hidden;
}



.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
	margin: 0;
	padding:0;
	
}

.stripNav ul { /* The auto-generated set of links */
	list-style: none;
}

.stripNav ul li {
	float: left;
	margin: 0;
	position:relative;
display:inline;
width:117px;

	
	/* If you change this, be sure to adjust the initial value of navWidth in coda-slider.1.1.1.js */
}

.stripNav li a,
.stripNav li a:link,
.stripNav li a:visited,
.stripNav li a:hover { /* The nav links */
	font-size: 10px;
	font-family:arial;
	line-height: 26px;
	color: #565656;
	text-decoration: none;
	display: block;
	padding-left:5px;
	margin:0;
	
}

.stripNav li.tab2 a { background: #D6C996 }
.stripNav li.tab2 a:hover {
	background: #D6C996;
}

.stripNav li.tab2 a.current {
	background: #D6C996;
	color: #565656;
	overflow: hidden;		
}

.stripNav li.tab3 a { background: #E1D6B2 }		
.stripNav li.tab3 a:hover {
	background: #E1D6B2;
}

.stripNav li.tab3 a.current {
	background: #E1D6B2;
	color: #565656;
	overflow: hidden;	
}

.stripNav li.tab1 a { background: #BAAE7E}
.stripNav li.tab1 a:hover {
	background: #BAAE7E;
}

.stripNav li.tab1 a.current {
	background: #BAAE7E;
	overflow: hidden;		
}

