.stripViewer .panelContainer .panel ul {
	text-align: left;
}
/* These 2 lines specify style applied while slider is loading */
.csw {
	width: 440px;
	height: 210px;
	background: #957c4d;
	overflow: hidden;
	text-indent:-10000px;
}
.csw .loading {
	background:url("../img-css/loader.gif") no-repeat center center;
	text-align: center;
	width: 440px;
	height: 210px;
}
.stripViewer { /* This is the viewing window */
	position: relative;
	overflow:hidden;
	width: 440px; /* Also specified in  .stripViewer .panelContainer .panel  below */
	height: 210px;
	clear: both;
	background: #957c4d;
}
.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: 0px;
	top: 0;
	width: 200px;
	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;
	width: 440px;
	height:210px;
}
.stripViewer .panelContainer .panel .wrapper {
}
.stripNav {
	position:absolute;
	z-index:10;
	right:0;
	bottom:0;
}
.stripNav ul { /* The auto-generated set of links */
	list-style: none;
}
.stripNav ul li { /* If you change this, be sure to adjust the initial value of navWidth in coda-slider.1.1.1.js */
	float: left;
}
.stripNav a { /* The nav links */
	text-align: center;
	background: #fff;
	color: #957c4d;
	text-decoration: none;
	display: block;
	padding:3px 12px;
	margin:2px;
	font:14px Georgia, "Times New Roman", Times, serif;
}
.stripNav li {
}
.stripNav li a:hover {
	background: #313e02;
	color:#fff;
}
.stripNav li a.current {
	background: #313e02;
	color: #fff;
}
.stripNavL, .stripNavR { /* The left and right arrows */
	text-indent:-10000px;
}
.stripNavL a, .stripNavR a {
	display: block;
	height: 0px;
	width: 0px;
}
.stripNavL {
	background:#000 url("images/arrow-left.gif") no-repeat center;
}
.stripNavR {
	background:#000 url("images/arrow-right.gif") no-repeat center;
}