@charset "UTF-8";

.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 */
	width: 100%;
	position: relative;
	margin: 20px 0;
}
/* These 2 lines specify style applied while slider is loading */
.csw {
	width: 50px;
	height: 20px;
	overflow: hidden;
}
.stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden;
	margin: auto;
	/* border: 5px solid #39c;  this is the border. should have the same value for the links */
	width: 700px; /* Also specified in  .stripViewer .panelContainer .panel  below */
	clear: both;
	margin-top:-20px;
}
.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; /* Stops the panels from highlighting/selecting, which I found problematic in Firefox. Also stops the CSS from validating though. Oh well. */
}
.stripViewer .panelContainer .panel { /* Each panel is arranged end-to-end */
	float:left;
	width: 700px; /* Also specified in  .stripViewer  above */
	height: 100%;
}
.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
	padding: 10px 0;
}
#container div.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
	position: absolute;
	left: 580px;
	top: -190px;
}
.stripNav ul { /* The auto-generated set of links */
	list-style: none;
}
.stripNav ul li {
	margin-bottom:2px;
}
.stripNav a { /* The nav links */
	line-height: 2em;
	color: #999;
	text-decoration: none;
	display: block;
	padding: 0 15px;
	width: 130px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-color: rgba(0, 0, 0, 0.4);
}
.stripNav a:hover {
	background: #39c;
	color:#FFF;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.stripNav a.current {
	background: #666;
	color: #fff;
}
.stripNavL, .stripNavR { /* The left and right arrows */
	position: absolute;
	top: 230px;
	text-indent: -9000em;
}
.stripNavL a, .stripNavR a {
	display: block;
	height: 40px;
	width: 40px;
}
.stripNavL a:hover, .stripNavR a:hover {
}
.stripNavL {
	left: 0;
}
.stripNavR {
	right: 0;
}
.stripNavL {
	background: url("../images/arrow-left.gif") no-repeat center;
}
.stripNavR {
	background: url("../images/arrow-right.gif") no-repeat center;
}
