/* CSS Document */

		
		.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
			left:20px;
			position: absolute;
			width: 750px;
		}

		/* These 2 lines specify style applied while slider is loading */
		.csw {width: 750px; height: 458px; background: #fff; overflow: hidden}
		.csw .loading {margin: 200px 0 300px 0; text-align: center}

		.stripViewer { /* This is the viewing window */
			position: relative;
			overflow: hidden; 
			width: 750px; /* Also specified in  .stripViewer .panelContainer .panel  below */
			height: 458px;
			clear: both;
			background: #fff;
		}
		
		.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: absolute;
			left: 0; top: 0;
			width: 1000px;
			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: 980px; /* Also specified in  .stripViewer  above */
		}
		
		.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
			padding-top: 20px;
			padding-left:33px;
			
		}

		.stripNavL, .stripNavR { /* The left and right arrows */
			position: absolute;
			top: 490px;
			left:753px;
			text-indent: -9000em;
			width:87px;
			outline:none;
		}
		
		.stripNavL a, .stripNavR a {
			display: block;
			height: 75px;
			width: 87px;
			outline:none;
		}

		.stripNavR {
			background: url("../imgs/more.gif") no-repeat center;
		}

.stripNavR a:hover{
			background: url("../imgs/more.gif") no-repeat center;
		}
		
				.stripNav {
				width:700px;
				margin-left:-8px;
				.margin-top:15px;
		}
		
		.stripNav ul { /* The auto-generated set of links */
			list-style: none;
		}
		
		.stripNav ul li {
			float: left;
			margin: 3px; /* If you change this, be sure to adjust the initial value of navWidth in slideviewer.js */
		}
		
		.stripNav a { /* The nav links */
			font-size: 14px;
			text-align: left;
			color: #000;
			text-decoration: none;
		}
		
		.stripNav a:hover {
			color: #FF007F;
		}
		
		.stripNav a.current {
			color: #FF007F;
		}

		
