		.csw {
	width: 187px;
	height: 220px;
	background: #fff;
	overflow: hidden
}
		.csw .loading {
	margin: 15px 0 15px 0;
	text-align: center;
	display: hidden;
}

		.stripViewer { /* This is the viewing window */
			position: relative;
			overflow: hidden; 
			width: 187px; /* Also specified in  .stripViewer .panelContainer .panel  below */
			height: 225px;
			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;
			background: #FFFFFF;
			/* -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: 187px; /* Also specified in  .stripViewer  above */
		}
		
		.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
			padding: 10px;
		}
		
		.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
			margin: auto;
		}
		
		
		.stripNav a { /* The nav links */
			font-size: 9px;
			font-weight: bold;
			text-align: left;
			color: #999999;
			text-decoration: none;
			display: block;
			padding: 0 20px;
		}
		
		.stripNav a:hover {
			background: #9cf;
		}
		
		.stripNav a.current {
			background: #39c;
			color: #fff;
		}
		
		.stripNavL, .stripNavR { /* The left and right arrows */

		}
		
		.stripNavL a, .stripNavR a {

		}
		
		.stripNavL {
			left: 0;
		}
		
		.stripNavR a{
			margin-top: 3px;
			font-size: 9px;
			font-weight: bold;
		background: url(../images/next.png) no-repeat center right;
			color: #999999;
			text-decoration: none;
			padding-right: 10px;
		}

		.stripNavR a:hover{
			color: #999999;
			text-decoration: underline;
		}		
		
		.stripNavR {
		width: 185px;
		background: url(../images/next.png) no-repeat 1px 1px;
		margin-top: 5px;
		}
		
