.stripViewer .panelContainer .panel ul {
	text-align: left;
	margin: 0 15px 0 30px;
}

.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
	margin: 20px 0;
	position: relative;
	width: 100%;
}

/* These 2 lines specify style applied while slider is loading */
.csw {width: 100%; height: 460px; background: #fff; overflow: scroll}
.csw .loading {margin: 200px 0 300px 0; text-align: center}

.stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden; 
	margin: auto;
	width: 896px; /* Also specified in  .stripViewer .panelContainer .panel  below */
	height: 387px;
	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: 896px; /* Also specified in  .stripViewer  above */
}

.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
	padding: 10px;
}

.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
	margin: auto;
	padding-top:5px;
}

.stripNav ul { /* The auto-generated set of links */
	list-style: none;
	width:960px;
}

.stripNav ul li {
	float: left;

	/*margin-right: 2px; /* 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 */
	text-indent:-9000px;
	text-decoration: none;
	display: block;
	width:240px;
	height:80px;
}

.stripNav li.tab1 a {background:url(../images/tab_BA_01.png) no-repeat left}
.stripNav li.tab1 a:hover {background:url(../images/tab_BA_02.png) no-repeat left}
.stripNav li.tab1 a.current {background:url(../images/tab_BA_03.png) no-repeat left}

.stripNav li.tab2 a { background:url(../images/tab_mokken_01.png) no-repeat left}
.stripNav li.tab2 a:hover { background:url(../images/tab_mokken_02.png) no-repeat left}
.stripNav li.tab2 a.current { background:url(../images/tab_mokken_03.png) no-repeat left}


.stripNav li.tab3 a { background:url(../images/tab_caps_01.png) no-repeat left}
.stripNav li.tab3 a:hover { background:url(../images/tab_caps_02.png) no-repeat left}
.stripNav li.tab3 a.current { background:url(../images/tab_caps_03.png) no-repeat left}

.stripNav li.tab4 a { background:url(../images/tab_handdoeken_01.png) no-repeat left}
.stripNav li.tab4 a:hover { background:url(../images/tab_handdoeken_02.png) no-repeat left}
.stripNav li.tab4 a.current { background:url(../images/tab_handdoeken_03.png) no-repeat left}

.stripNav li.tab5 a { background:url(../images/tab_ballen_01.png) no-repeat left}
.stripNav li.tab5 a:hover { background:url(../images/tab_ballen_02.png) no-repeat left}
.stripNav li.tab5 a.current { background:url(../images/tab_ballen_03.png) no-repeat left}

.stripNav li.tab6 a { background:url(../images/tab_stoelen_01.png) no-repeat left}
.stripNav li.tab6 a:hover { background:url(../images/tab_stoelen_02.png) no-repeat left}
.stripNav li.tab6 a.current { background:url(../images/tab_stoelen_03.png) no-repeat left}

.stripNav li.tab7 a { background:url(../images/tab_geurkaartjes_01.png) no-repeat left}
.stripNav li.tab7 a:hover { background:url(../images/tab_geurkaartjes_02.png) no-repeat left}
.stripNav li.tab7 a.current { background:url(../images/tab_geurkaartjes_03.png) no-repeat left}

.stripNav li.tab8 a { background:url(../images/tab_custommade_01.png) no-repeat left}
.stripNav li.tab8 a:hover { background:url(../images/tab_custommade_02.png) no-repeat left}
.stripNav li.tab8 a.current { background:url(../images/tab_custommade_03.png) no-repeat left}




.stripNavL, .stripNavR { /* The left and right arrows */
	position: absolute;
	top: 110px;
	text-indent: -9000em;
}

.stripNavL a, .stripNavR a {
	display: block;
	height: 186px;
	width: 28px;
}

.stripNavL {
	left: 0;
	background: url("../images/arrow-left.png") no-repeat center;
}

.stripNavR {
	right: 0;
	left:auto;
	background: url("../images/arrow-right.png") no-repeat center;
}

