a:focus { outline:none }

noscript p, noscript ol { color: #a00; font-size: 13px; line-height: 1.4em; text-align: left }
noscript a { color: #a00; text-decoration: underline }
noscript ol { margin-left: 25px; }
		
.stripViewer .panelContainer .panel ul {
	text-align: left;
	margin: 0 25px;
}
		
.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
	background-color: none;
	margin: 0 auto;
	position: relative;
	width: 950px;
}

/* These 2 lines specify style applied while slider is loading */
.csw {
	width: 950px;
	height: 200px;
	background: transparent;
	overflow: scroll;
}

.csw .loading {
	margin: 100px 0 0 375px; 
	text-align: left;
}

.wrapper p {
	clear: both;
}

.stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	padding: 0;
	width: 950px; /* Also specified in  .stripViewer .panelContainer .panel  below */
	height: 200px;
	clear: both;
	background: transparent;
}
		
.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: 950px;
	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: 950px; /* 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;
}

.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
	position: absolute;
	width: 60px;
	height: 12px;
	top: 15px;
	right: 60px;
	cursor: pointer;
	z-index: 501;
}
		
.stripNav ul { /* The auto-generated set of links */
	list-style: none;
	width: 60px;
}
		
.stripNav ul li {
	float: left;
	width: 12px;
	margin-right: 2px; /* If you change this, be sure to adjust the initial value of navWidth in coda-slider.1.1.1.js */
}
		
.stripNav ul li a { /* The nav links */
	background: url('../images/bg_tab1.png') transparent no-repeat center;
	display: block;
	width: 10px;
	text-decoration: none;
	padding: 0 5px;
}

/*
.stripNav li.tab1 a { background: transparent }
.stripNav li.tab2 a { background: transparent }
.stripNav li.tab3 a { background: transparent }
*/

.stripNav ul li a:hover {
	background: url('../images/bg_tab2.png') transparent no-repeat center;
}

.stripNav ul li a.current {
	background: url('../images/bg_tab2.png') transparent no-repeat center;
}

.stripNavL { /* The left arrow */
	position: absolute;
	top: 150px;
	left: 0;
	width: 40px;
	margin: 0 auto;
	background: url('../images/slider/nav/arrow_l.png') no-repeat center;
	cursor: pointer;
	text-indent: -9000em;
	z-index: 500;
}

.stripNavR { /* The right arrow */
	position: absolute;
	top: 150px;
	left: 45px;
	width: 40px;
	margin: 0 auto;
	background: url('../images/slider/nav/arrow_r.png') no-repeat center;
	cursor: pointer;
	text-indent: -9000em;
	z-index: 499;
}

.stripNavL a, .stripNavR a {
	display: block;
	height: 30px;
	width: 40px;
	border: none;
}