.slider_container{
padding:0 0 10px 40px;
}
.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
margin:0px 0;
position: relative;
width: 100%;
}

.stripViewer { /* This is the viewing window */
position: relative;
overflow: hidden; 
border: 0; /* this is the border. should have the same value for the links */
margin: 0;
width:370px; /* Also specified in  .stripViewer .panelContainer .panel  below */
clear: both;
background: #fff;
}
	
.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:100px;
position: relative;
width:370px; /* 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;
}
	
.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
margin: 0;
float:left;
}

.stripNav ul { /* The auto-generated set of links */
list-style: none;
display:block;
width:300px;
padding:0 0 10px 20px;
margin:0px;
}
	
.stripNav ul li {
float: left;
}

	
.stripNav a {
text-align: center;
background: #F7F7F7;
color: #000;
font-size:10px;
text-decoration: none;
display: block;
padding:3px 5px 3px 5px;
border:1px #EFEFEF solid;
margin:0 5px 0 0;
}
	
.stripNav li.tab1 a,
.stripNav li.tab2 a,
.stripNav li.tab3 a,
.stripNav li.tab4 a { background: #F7F7F7; }
.stripNav li a:hover {
background: #D1E7EF;
}
	
.stripNav li a.current {
background: #D1E7EF;
color: #000;
}
	
.stripNavL, .stripNavR { /* The left and right arrows */
position: absolute;
top: 230px;
text-indent: -9000em;
}
	
.stripNavL a, .stripNavR a {
display: none;
height: 40px;
width: 40px;
}
	
.stripNavL {
left: 0;
}
	
.stripNavR {
right: 0;
}
	
