style type="text/css">
		
* { margin: 0; padding: 0 }
		/* I've used a hard CSS reset above, but you should consider a more sophisticated reset, such as this one: http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ */
a:focus { outline:none }
		
img { border: 0 }
		
.stripViewer .panelContainer .panel ul {
			text-align: left;
			margin: 0 15px 0 30px;
}
		
.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
			margin: 0px;
			position: relative;
			width: 100%;
			height: 319px;
}

/* These 2 lines specify style applied while slider is loading */
.csw {width: 100%; height: 460px; background: #fff; overflow: scroll}
.csw .loading {margin: 200px 0 300px 0; text-align: center}

.stripViewer { /* This is the viewing window */
position: relative;
overflow: hidden; 
margin: 0 auto;
width: 740px; /* Also specified in  .stripViewer .panelContainer .panel  below */
height: 319px;
clear: both;
background: #d5d4d4;
}
		
.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;
			margin: 0px
			width: 740px;
			list-style-type: none;
			height: 319px;
			/* -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: 740px; /* Also specified in  .stripViewer  above */
}
		
.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 */
			list-style: none;
			display: none;
}
		
		
		.stripNavL, .stripNavR { /* The left and right arrows */
			position: absolute;
			top: 115px;
			text-indent: -9000em;
		}
		
		.stripNavL a, .stripNavR a {
			display: block;
			height: 70px;
			width: 70px;
		}
		
		.stripNavL {
			left: 30px;
		}
		
		.stripNavR {
			right: 30px;
		}
		
		.stripNavL {
			background: url("aka_leftarrow.jpg") no-repeat center;
		}
		
		.stripNavL:hover {
			background: url("AKA_leftarrowHover.jpg") no-repeat center;
		}	
		
		.stripNavR {
			background: url("aka_rightarrow.jpg") no-repeat center;
		}
		
		.stripNavR:hover {
			background: url("AKA_rightarrowHover.jpg") no-repeat center;
		}	
		
		
	</style>