.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: 0;
    position: relative;
    width: 100%;
}

/* These 2 lines specify style applied while slider is loading */
.csw {width: 100%; height: auto; background: #fff}
.csw .loading {display: none; margin: 15px 0 15px 0; text-align: center; font-size: 40px; color: #999}

.stripViewer { /* This is the viewing window */
    position: relative;
    overflow: hidden; 
    margin: auto;
    width: 735px; /* Also specified in  .stripViewer .panelContainer .panel  below */
    height: auto;
    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;
    margin: 0;
    /* -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: 100%;
    position: relative;
    width: 735px; /* 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;
    width: 735px;
}

.stripNav ul { /* The auto-generated set of links */
    list-style: none;
    width: 735px;
}

.stripNav ul li {
    display: block;
    float: left;
    margin: 0 0 4px 0; /* If you change this, be sure to adjust the initial value of navWidth in coda-slider.1.1.1.js */
    padding: 0 2px;
}

.stripNav ul li.tab1 {
	padding-left: 0;
	}

.stripNav ul li.tab7 {
	padding-right: 0;
	border-right: 0;
	}

.stripNav a { /* The nav links */
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    background: #fff;
    padding: 0 15px;
    height: 32px;
    line-height: 32px;
    border: 1px solid #e6e6e6;
}

.stripNav li.tab1 a { color: #ff006a; background: #ffe6f0; border-color: #ffcce1; }
.stripNav li.tab2 a { color: #d70017; background: #fbe6e8; border-color: #f7ccd0; }
.stripNav li.tab3 a { color: #7e00ff; background: #f2e6ff; border-color: #e5ccff; }
.stripNav li.tab4 a { color: #ff6200; background: #ffefe6; border-color: #ffdfcc; }
.stripNav li.tab5 a { color: #00D0D0; background: #e6fafa; border-color: #ccf5f5; }
.stripNav li.tab6 a { color: #0072ff; background: #e6f1ff; border-color: #cce2ff; }
.stripNav li.tab7 a { color: #00c755; background: #e6f9ee; border-color: #ccf3dd; }

.stripNav li a:hover {
	text-decoration: underline;
	}

.stripNav li a.current {
	color: #fff;
	text-decoration: none;
}

.stripNav li.tab1 a.current { background: #ff006a; border-color: #c0004f; }
.stripNav li.tab2 a.current { background: #d70017; border-color: #a20011; }
.stripNav li.tab3 a.current { background: #7e00ff; border-color: #5f00c0; }
.stripNav li.tab4 a.current { background: #ff6200; border-color: #c04900; }
.stripNav li.tab5 a.current { background: #00D0D0; border-color: #009c9c; }
.stripNav li.tab6 a.current { background: #0072ff; border-color: #0056c0; }
.stripNav li.tab7 a.current { background: #00c755; border-color: #009640; }

.stripNavL, .stripNavR { /* The left and right arrows */
    position: absolute;
    top: 6px;
    text-indent: -9000em;
    overflow: hidden;
}

.stripNavL a, .stripNavR a {
    display: block;
}

.stripNavL {
    left: 0;
}

.stripNavR {
    right: 0;
}

.stripNavL {
    background: url("../images/coda-slider/arrow-left.png") no-repeat center;
    z-index: 1;
    display: none;
}
.stripNavL a {
	height: 32px;
	width: 126px;
}

.stripNavR {
    background: url("../images/coda-slider/arrow-right.png") no-repeat center;
    display: none;
}
.stripNavR a {
    height: 32px;
    width: 91px;
}
