
#bigSlider {
	width: 1000px;
	height: 374px;
	overflow: hidden;
	position: relative;
}

#smallSlider {
	width: 1000px;
	height: 226px;
	overflow: hidden;
	position: relative;
}

#bigSlider .csw {
	height: 374px;
}

#smallSlider .csw {
	height: 226px;
}

.csw {width: 100%; background: #fff; overflow: hidden}

#bigSlider .csw .loading {margin: 177px 0 300px 0; text-align: center}
#smallSlider .csw .loading {margin: 117px 0 300px 0; text-align: center}

#bigSlider .stripViewer {
	height: 374px;
}

#smallSlider .stripViewer {
	height: 226px;
}

.stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden; 
	border: 0px;
	margin: auto;
	width: 1000px;
	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: 1000px; /* Also specified in  .stripViewer  above */
}

#bigSlider .stripViewer .panelContainer .panel .wrapper {
	height: 374px;
}

#smallSlider .stripViewer .panelContainer .panel .wrapper {
	height: 226px;
}

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

.stripViewer .panelContainer .panel .wrapper .scrollImage {
	position: absolute;
	top: 0px;
	left: 0px;
}

.stripViewer .panelContainer .panel .wrapper .scrollButton {
	position: absolute;
	bottom: 0px;
	left: 440px;
}

.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: 1000px;
	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;
}