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

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

/* These 2 lines specify style applied while slider is loading */
.csw { width: 100%; height: 320px; 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: 0 auto;
	padding:0;
	width: 640px; /* Also specified in  .stripViewer .panelContainer .panel  below */
	height: 360px;
	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: 640px;
	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;
	position: relative;
	display: block;
	height: 360px;
	width: 640px; /* Also specified in  .stripViewer  above */
	margin: 0;
	padding: 0;
}

.panel img.tabimage {
	position: absolute;
	z-index: 1;
}

.panel div.tabtext {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 40px;
	z-index: 10;
	width: 220px;
	height: 360px;
	margin: 0;
	background: url(layer.png) no-repeat left top;
	color: #fff;
}

.panel div.tabtext h3,
.panel div.tabtext h4 {
	margin: 15px 10px 5px;
	padding: 0;
	font-size: 140%;
	line-height: 100%;
	color: #fff;
}

.panel div.tabtext p {
	margin: 10px;
	line-height: 120%;
}

.panel div.tabtext p a:link, .panel div.tabtext p a:visited {
	display: block;
	height: 30px;
	width: 200px;
	margin-top: 20px;
	background: #ccc;
	text-align: center;
	line-height: 30px;
	font-weight: bold;
	font-size: 120%;
}

.panel div.tabtext p a:hover, .panel div.tabtext p a:focus {
	background: #fff;
}

.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
	/*position: absolute;
	right: 65px;
	bottom: 15px;
	z-index: 10;*/
	display: none;
}

.stripNav ul { /* The auto-generated set of links */
	list-style: none;
}

.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 */
	font-size: 13px;
	font-weight: bold;
	text-align: center;
	line-height: 30px;
	background: url(tab-circle.png) no-repeat center center;
	color: #fff;
	text-decoration: none;
	display: block;
	height: 30px;
	width: 30px;
	margin-right: 3px;
}
/*
.stripNav li.tab1 a { 	background: url(../styles/schmerzklinik/tab-circle.png); }
.stripNav li.tab2 a { background: #c06 }
.stripNav li.tab3 a { background: #c06 }
.stripNav li.tab4 a { background: #c06 }
.stripNav li.tab5 a { background: #c06 }
*/
.stripNav li a:hover {
	background: url(tab-circle-on.png) no-repeat center center;
}

.stripNav li a.current {
	background: url(tab-circle-on.png) no-repeat center center;
	color: #fff;
}

.stripNavL, .stripNavR { /* The left and right arrows */
	position: absolute;
	top: 110px;
	z-index: 50;
	text-indent: -9000em;
}

.stripNavL a, .stripNavR a {
	display: block;
	height: 100px;
	width: 40px;
}

.stripNavL {
	left: 0;
}

.stripNavR {
	right: 0;
}

.stripNavL {
	background: url("book-previous.png") no-repeat center;
}

.stripNavR {
	background: url("book-next.png") no-repeat center;
}
