@charset "utf-8";
/* CSS Document */

	* { 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: 20px 0 0px 0;
			position: relative;
			width:650px;
			float:left;
			background:url(../images/slider-bottom-bg.jpg) no-repeat scroll bottom center;
		}

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

		.stripViewer { /* This is the viewing window */
			position: relative;
			overflow: hidden; 
			margin: auto;
			width: 650px; /* 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;
		
			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;
			padding:0px ;
			height: 100%;
			position: relative;
			width: 650px; /* Also specified in  .stripViewer  above */
			
		}
		
		.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
		}
		

		
		.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
			margin: auto;
			display:none;
			
		}
		
		.stripNav ul { /* The auto-generated set of links */
			list-style: none;
			padding:0;
		}
		
		.stripNav ul li {
			float: left;
			margin-right: 2px; /* If you change this, be sure to adjust the initial value of navWidth in coda-slider.1.1.1.js */
		}
		
		.stripNav a { /* The nav links */
			width:7px;	height:7px;
			/*text-align: center;*/
			text-decoration: none;
			display: block;
			margin-bottom:5px;
			text-indent:-9000px;
		}
		
		.stripNav li.tab1 a {background:url(../images/slider-bullet.jpg) no-repeat; width:7px;	height:7px; }
		.stripNav li.tab2 a { background:url(../images/slider-bullet.jpg) no-repeat; width:7px;height:7px; }
		.stripNav li.tab3 a { background:url(../images/slider-bullet.jpg) no-repeat; width:7px;height:7px; }
		.stripNav li.tab4 a { background:url(../images/slider-bullet.jpg) no-repeat; width:7px;height:7px; }
		.stripNav li.tab5 a { background:url(../images/slider-bullet.jpg) no-repeat; width:7px;height:7px; }
		
		.stripNav li a:hover {background:url(../images/slider-bullet-hover.jpg) no-repeat;}
		
		.stripNav li a.current {background:url(../images/slider-bullet-hover.jpg) no-repeat;}
		
				
		.stripNavL, .stripNavR { 
			position: relative;
			margin-top:5px;
		}
		
				
		.stripNavL {
			background:url(../images/previous-slide-btn.gif) no-repeat center; float:left; left:0px;	}
			
		.stripNavL a { height: 30px; width: 30px; display:block;}
		
		.stripNavR {
			background:url(../images/next-slide-btn.gif) no-repeat center; float:right; right:0px;	}
		
		.stripNavR a { height: 30px; width: 30px; display:block;}