/* This div isn't entirely necessary but good for getting the side arrows vertically centered */
.slider-wrap{ margin:0px auto; position:relative; width:920px;}

/* These 2 lines specify style applied while slider is loading */
.csw{ width:920px; height:402px; padding:0px; margin:0px; overflow:hidden;}
.csw .loading { text-align:center; padding:0px;	margin:0px auto; height:402px;}

/* This is the viewing window */
.stripViewer{ position: relative; overflow: hidden; margin: 0px auto; padding:0px; width:920px; height:402px;}

/* This is the big long container used to house your end-to-end divs. Width is calculated and specified by the JS  */
.stripViewer .panelContainer{ position:relative; top:0px; left:0px; 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. */

/* Each panel is arranged end-to-end */
.stripViewer .panelContainer .panel{ float:left;  height:100%; position:relative; width:920px;}
		
 /* Wrapper to give some padding in the panels, without messing with existing panel width */
.stripViewer .panelContainer .panel .wrapper{ padding:0px; margin:0px;}
		
/* This is the div to hold your nav (the UL generated at run time) */
.stripNav{ margin:0px; padding:0px;}
		
/* The auto-generated set of links */
.stripNav ul{ list-style: none; width:740px;}
.stripNav ul li{ float: left;}
.stripNav a{font-size:0px; text-align:center; line-height:1px; color:#585858; text-decoration: none; padding:0px; margin:0px;}
.stripNav li a:hover{background:#CCCCCC;}
		

 /* The left and right arrows */
.stripNavL { position:absolute; top:178px; text-indent:-9000em; z-index:100;}
.stripNavR { position:absolute; top:178px; text-indent:-9000em; z-index:100;}
		
.stripNavL a, .stripNavR a{ display:block; height:51px; width: 51px;}
.stripNavL { background: url(../images/arrow-left.png) no-repeat center; right:849px;}
.stripNavR { background: url(../images/arrow-right.png) no-repeat center; left:849px;}