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

.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
	position: relative;
	width: 1031px;
}

.sliderNav {
    position: relative;
}

/* These 2 lines specify style applied while slider is loading */
.csw {width: 1031px; height: 291px; overflow: hidden;}
.csw .loading {margin: 100px 0 400px 0; text-align: center}

.stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden; 
	margin: auto;
	width: 1031px; /* Also specified in  .stripViewer .panelContainer .panel  below */
	height: 291px;
	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;
	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: 1031px; /* Also specified in  .stripViewer  above */
}

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

#stripNav0 ul {
    padding: 0px;
    margin: 0px;
    width: 110px;
}

#stripNav0 li {
    background: none;
    padding: 0px;
    margin: 0px;
}

.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
	position: absolute;
	top: -30px;
	left: 926px;
}

/* Safari hack for placement */
@media screen and (-webkit-min-device-pixel-ratio:0){
.stripNav {top: -28px;}
}

.stripNav ul { /* The auto-generated set of links */
	/*display: none;*/
	list-style: none;
	margin: 0px;
	padding: 0px;
	
}

.stripNav ul li {
	float: left;
	margin-right: 0px; /* If you change this, be sure to adjust the initial value of navWidth in coda-slider.1.1.1.js */
	background: none;
	padding: 0px;
}

.stripNav a { /* The nav links */
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	text-decoration: none;
	width: 25px;
	height: 23px;
	padding: 7px 0px 0px 0px;
	display: block;
	margin: 0px 2px 0px 0px;
	background-color: #0c8ad6;
}

.stripNav li a:hover {
	background-color: #8fcc05;
}

.stripNav li a.current {
	background: #8fcc05;
	color: #fff;
}

/* Safari hack for placement */
@media screen and (-webkit-min-device-pixel-ratio:0){
.stripNav a {
	margin: -2px 2px 0px 0px;
}
}

.stripNavL, .stripNavR { /* The left and right arrows */
	position: absolute;
	top: 305px;
	text-indent: -9999em;
	display: none;
}

.stripNavL a, .stripNavR a {
	display: block;
	width: 12px;
	height: 11px;
}

.stripNavL {
	left: 277px;
	background: url(../images/leftArrow.gif) no-repeat center;
}

.stripNavR {
	right: 275px;
	background: url(../images/rightArrow.gif) no-repeat center;
}





