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

    

    
    .slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
	position: relative;
	height: auto;
    }
    
    /* These 2 lines specify style applied while slider is loading */
    .csw {
	visibility:hidden;
    }
    .csw .loading {
	visibility:hidden;
}
    
    .stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden; /* this is the border. should have the same value for the links */
	margin: auto;
	width: 390px; /* Also specified in  .stripViewer .panelContainer .panel  below */
	height: 200px;
	clear: both;
	margin-right: 0px;
    }
    
    .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: 390px;
	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. */
	height: 120px;
    }
    
    .stripViewer .panelContainer .panel { /* Each panel is arranged end-to-end */
	float:left;
	height: 200px;
	position: relative;
	width: 390px;
	margin-left: 0px;
    }
    
    .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;
    }
    
    .stripNav ul { /* The auto-generated set of links */
    list-style: none;
    }
    
    .stripNav ul li {
	float: left; /* 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 */
	font-size: 10px;
	font-weight: bold;
	text-align: center;
	line-height: 32px;
	color: #000000;
	text-decoration: none;
	display: block;
	padding: 0 15px;
	background-color: #000000;
	visibility: hidden;
    }
    
    .stripNavL, .stripNavR { /* The left and right arrows */
	position: absolute;
	top: 50px;
	text-indent: -9000em;
    }
    
    .stripNavL a, .stripNavR a {
    display: block;
    height: 40px;
    width: 40px;
    }
    
    .stripNavL {
	right: 400px;
    }
    
    .stripNavR {
	right: -20px;
    }
    
    .stripNavL {
    background:  url("../img/slider/prev.png") no-repeat center;
    }
    
    .stripNavR {
    background: url("../img/slider/next.png") no-repeat center;
    }
    