@charset "UTF-8";

/* CSS Document */



a:focus {
	outline:none
}

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

/* These 2 lines specify style applied while slider is loading */
.csw {
	width: 100%;
	height: 100%;
	overflow: hidden
}

.csw .loading {
	margin: 200px 0 300px 0;
	text-align: center
}

.stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden;
	width: 694px; /* Also specified in  .stripViewer .panelContainer .panel  below */
	height: 550px;
	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: 693px;             /* Make 1 px less to remove Firefox border */
}

.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
	margin: auto;
}

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

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

.stripNavL a, .stripNavR a {
	display: block;
	height: 10px;
	width: 70px;
}

.stripNavL {
	left: 538px;
	background-image: url(images/previous.gif);
	background-repeat: no-repeat;
	background-position: 0px -40px;
	overflow: hidden;
}

.stripNavL a:hover {
	left: 530px;
	background-image: url(images/previous.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	overflow: hidden;
}

.stripNavR {
	left: 600px;
	right: 0px;
	background-image: url(images/next.gif);
	background-repeat: no-repeat;
	background-position: 0px -40px;
	overflow: hidden;
}

.stripNavR a:hover {
	right: 0px;
	background-image: url(images/next.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	overflow: hidden;
}


