@charset "UTF-8";
/* CSS Document */

a:focus { outline:none }

		
		.stripViewer .panelContainer .panel ul {
	text-align: left;
	margin: 0 15px 0 30px;
	width: 500px;
		}
		
		.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
	margin: 0;
	position: relative;
	width: 600px;
		}

		/* These 2 lines specify style applied while slider is loading */
		.csw {
	width: 100%;
	visibility: hidden;
}
		.csw .loading {
	text-align: center;
	visibility: hidden;
}

		.stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden;
	border: 0px solid #000; /* this is the border. should have the same value for the links */
	margin: auto;
	width: 498px; /* Also specified in  .stripViewer .panelContainer .panel  below */
	height: 291px;
	clear: both;
	background: #FFFEF6;
		}
		
		.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: 498px;
	list-style-type: none;
	height: 873px;			/* -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. */
	padding-left: 9px;
		}
		
		.stripViewer .panelContainer .panel { /* Each panel is arranged end-to-end */
	float:left;
	height: 291px;
	position: relative;
	width: 498px;
		}
		
		.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
	padding: 10px;
	width: 498px;
		}
		
		.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
			visibility: hidden;
		}
			
		.stripNavL, .stripNavR { /* The left and right arrows */
	position: absolute;
	top: 180px;
	text-indent: -9000em;
		}
		
		.stripNavL a, .stripNavR a {
	display: block;
	height: 19px;
	width: 14px;
		}
		
		.stripNavL {
			left: 29px;
		}
		
		.stripNavR {
			right: 30px;
		}
		
		.stripNavL {
	background: url(../images/arrow-left.gif) no-repeat center;
		}
		
		.stripNavR {
	background: url(../images/arrow-right.gif) no-repeat center;
		}
		
		.stripNavL:hover {
	background: url(../images/arrow-left_hover.gif) no-repeat center;
		}
		
		.stripNavR:hover {
	background: url(../images/arrow-right_hover.gif) no-repeat center;
		}

