#photoSlider {
	width: 914px;
	height: 230px;
	overflow: hidden;
	position: relative;
	padding-bottom: 2px;
	padding-top: 2px;
}

.csw {width: 100% height: 230px; background: #fff; overflow: hidden}
.csw .loading {
	margin: 0px 0 0px 0;
	text-align: center
}

.stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden;
	border: 0px;
	margin: auto;
	width: 914px;
	height: 230px;
	clear: both;
	background: #fff;
}

.stripViewer .panelContainer {
	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: 914px; /* 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;
	height: 230px;
	position: relative;
}

.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 50;
}

.stripNav ul { /* The auto-generated set of links */
	list-style: none;
	width: 914px;
	height: 20px;
}

.stripNav ul li {
	float: left;
	margin-right: 8px; /* 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 */
	width: 20px;
	height: 20px;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	display: block;
	color: black;
	background: #cccccc;
	opacity: .3;
	filter: alpha(opacity=30);
	-moz-opacity: 0.3;
}

.stripNav li a.current {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8	;
}

.stripNav li a:hover {
	opacity: 1.0;
	filter: alpha(opacity=100);
	-moz-opacity: 1.0;
}

