 .gallery-1 { padding:20px 0; }
.gallery-2 { margin:20px 0; }
 
 .stripViewer .panelContainer .panel ul {
			text-align: left;
			margin: 0 15px 0 0px;
		}
		
		.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
			margin: 0 0 20px 0;
			position: relative;
			width: 100%;
		}

		/* 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; 
			/*border: 1px solid #63686B;  this is the border. should have the same value for the links */
			/*border-top: 5px solid #63686B; border-bottom: 5px solid #63686B;*/
			margin: auto;
			width: 655px; /* Also specified in  .stripViewer .panelContainer .panel  below */
			/*height: 400px;*/
			clear: both;
			/*background:url("../img/bg/gallery-bg.gif") no-repeat;*/
		}
		
		.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;
			/* -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: auto;
			position: relative;
			width: 655px; /* 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;
			/*height:380px;*/
		}
		
		.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
			 
		}
		
		.stripNav ul { /* The auto-generated set of links */
			list-style: none;  margin-left: 3px;
		}
		
		.stripNav ul li {
			float:left;
			margin-right: 1px; /* If you change this, be sure to adjust the initial value of navWidth in slideviewer.js */
		}
		
		.stripNav a { /* The nav links */
	        
			font-size: 11px;
			font-weight: normal;
			text-align: center;
			line-height: 12px;
			border-right: solid 1px #CCC;
			/*background: url("../img/bg/bg.gif") repeat-x center;
			border: solid 1px #ddd; border-bottom:none;*/
			color: #000 !important;
			text-decoration: none;
			display: block;
			padding: 4px 7px;
			font-family:Georgia, "Times New Roman", Times, serif;
		}
		
		.stripNav a:focus { outline:none; }
		
		
		.stripNav a:hover, .stripNav a.current {
		/*background:url("../img/bg/bg_on.gif") repeat 0 -9px; text-decoration:none !important; color:#fff;*/
		color: #F59104 !important; 
		<!--border-bottom: solid 1px #F59104;-->
		/*border: solid 1px #F1D8AE; border-bottom:none;*/
		}
		
		.stripNavL, .stripNavR { /* The left and right arrows */
			position: absolute;
			top: 230px;
			text-indent: -4000px;
			
		}
		
		.stripNavL a, .stripNavR a {
			display: block;
			height: 40px;
			width: 40px;
		}
		
		.stripNavL {
			left: -5px;  top: 485px; 
		}
		
		.stripNavR {
			right: -5px; top: 485px; 
		}
		
		.stripNavL  {
			background: url("../img/arrow-left.gif") no-repeat center;
			z-index:100;
		}
		
		.stripNavR  {
			background: url("../img/arrow-right.gif") no-repeat center;
		}
		

