		p#cross-links {text-align: center; }
		.stripViewer .panelContainer .panel ul {text-align: left; }
		
		.slider-wrap {position: relative; }/* This div isn't entirely necessary but good for getting the side arrows vertically centered */

		/* These 2 lines specify style applied while slider is loading */
		.csw {width: 100%; background: #fff; overflow: scroll; }
		.csw .loading {margin: 200px auto; text-align: center; }

		.stripViewer { /* This is the viewing window */
			position: relative; 
			overflow: hidden;  
			border: none; /* this is the border. should have the same value for the links */
			margin: 0 0 0 30px;
			width: 700px; /* Also specified in  .stripViewer .panelContainer .panel  below */
			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: 730px;
			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: 700px; /* Also specified in  .stripViewer  above */
		}
		
		.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
			padding: 0 30px; background:#fff; 
		}







		.stripNav {padding:0; display:block; }
		.stripNav{zoom:1; }
		.stripNav:after{content:"."; display:block; height:0; clear:both; visibility:hidden; }
		.stripNav{display:inline-block; } /*IE€*/* html .stripNav{height:1%; } .stripNav{display:block; height:100%; }/*IE*/

		.stripNav ul {list-style: none; display:block; margin:20px 0 0 20px; padding-left:40px; width: 680px; }
		.stripNav ul li {display: block; float: left; width:160px; }
		
		.stripNav a { /* The nav links */
			display: block;
			font-size: 13px;
			font-weight: bold;
			text-align: center;
			line-height: 24px;
			margin-bottom:10px; 
			padding: 0;
			border-left: solid 1px #ddd; 
			border-right: solid 1px #ccc; 
			border-bottom: solid 1px #ccc; 
			background: url(img/slider.gif) repeat-x;
		}
		
		.stripNav a:hover{background-position: 0 -50px; }
		.stripNav a.current {background-position: 0 -100px;  color: #fff; }
		
		.stripNav a:link,
		.stripNav a:visited{text-decoration: none; color:#444; }

		
		.stripNavL, .stripNavR { /* The left and right arrows */
			position: absolute; top: 400px; text-indent: -10000px;}
		
		.stripNavL a, .stripNavR a {height: 40px; width: 40px; }
		
		.stripNavL,
		.stripNavR {display: none; }
		.stripNavL {background: url("img/arrow-left.gif") no-repeat center; }
		.stripNavR {background: url("img/arrow-right.gif") no-repeat center; }
		
