
/* These 2 lines specify style applied while slider is loading */
.csw {width: 940px; height: 370px; background: #fff; overflow: hidden; float:left; visibility:hidden; margin: 0 auto;}
.csw .loading {width: 940px; height: 370px; text-align: center}

.stripViewer { /* This is the viewing window */
    display:block;
    position: relative;
    overflow: hidden; 
    float:left;
    width: 940px; /* Also specified in  .stripViewer .panelContainer .panel  below */
    height: 370px;
    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: 100%;
    position: relative;
    width: 940px; /* Also specified in  .stripViewer  above */
}

.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
    
    font-size:16px;
    height:370px;
}

.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
    margin: 0 auto;
}

.stripNav ul {
    margin:0;
    padding:0;
    list-style: none;
}

.stripNav ul li {
    float: left;
    margin-right: 2px;
}

.stripNav a {
    font-size: 16px;
    font-weight: normal;
    width:144px;
    margin:0;
    height:40px;
    text-align: center;
    line-height: 130%;
    background: #fff;
    border: 1px dotted #ddd;
    color: #000;
    text-decoration: none;
    display: block;
    padding: 5px;
}
/*
.stripNav li.tab1 a { background: #60f }
.stripNav li.tab2 a { background: #60c }
.stripNav li.tab3 a { background: #63f }
.stripNav li.tab4 a { background: #63c }
.stripNav li.tab5 a { background: #00e }
.stripNav li.tab6 a { background: #00e }
*/
.stripNav li a:hover {
    background: #fff;
    color:#000;
    border: 3px solid #cfec82;
    padding:3px;
}

.stripNav li a.current {
    background: #cfec82;
    color: #000;
    border: 3px solid #cfec82;
    padding:3px;
    font-weight:bold;
}

.stripNavL, .stripNavR { /* The left and right arrows */
    
    text-indent: -9000em;
}

.stripNavL a, .stripNavR a {
    display: block;
    height: 25px;
    width: 25px;
}

.stripNavL {
    display:none;
    float:left;
    margin-left:10px;
}

.stripNavR {
    display:none;
    float:right;
    margin-right: 10px;
}

.stripNavL {
    background: url("images/welcome/arrow-left.gif") no-repeat center;
}

.stripNavR {
    background: url("images/welcome/arrow-right.gif") no-repeat center;
}

.slider-wrap {
    width:940px;
    margin:auto;
}