/* CSS Document */

body {
	font-family: Verdana, Arial;
	background: #1a1a1a;
	color: #000;
	width:720px;
}


.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
	margin: 0;
	position: relative;
	width: 100%;
}

/* These 2 lines specify style applied while slider is loading */
.csw {width: 100%; height: 460px; background: #1A1A1A; overflow: hidden}
.csw .loading {margin: 200px 0 300px 0; text-align: center}
.stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden; 
	width: 730px; /* Also specified in  .stripViewer .panelContainer .panel  below */
	height: 470px;
	background: #1A1A1A;
}
		
.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;
}
		
.panel { /* Each panel is arranged end-to-end */
	float:left;
	position: relative;
	width: 730px;
}

	
.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
	position:absolute;
	top:475px;
	z-index:3;
}

.stripNav ul { /* The auto-generated set of links */
	padding:0px;
	margin:0px;
	width:600px;
}

.stripNav ul li {
	float: left;
	list-style:none;
}

.stripNav li{
	width:25px;
}

.stripNav li a{
	font-size:1.1em;
	padding:0 3px;
	color:#363636;
}
	
.stripNav li a:hover {
	color:#FFFFFF;
}
		
.stripNav li a.current {
	color: #999999;
}

.stripNavL, .stripNavR { /* The left and right arrows */
	position: absolute;
	top: 475px;
}
		
.stripNavL a, .stripNavR a {
	display: block;
	height: 17px;
	width: 17px;
}

.stripNavL a:hover, .stripNavR a:hover{
	color:#FFFFFF;
}		
		
.stripNavL {
	right: 45px;
	z-index:2;
}
		
.stripNavR {
	right: -5px;
}

.stripNavL a, .stripNavR a{
	font-size:1.1em;
	color:#363636;
}

