div.slider_box {position: relative;}

/* These 2 lines specify style applied while slider is loading */
.csw {
    width: 100%; 
    height: 316px; 
    overflow: hidden; 
    clear: both;
    background-color: #01787b;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}
.csw .loading {margin: 120px 0 200px 200px;}
        
.stripViewer { /* This is the viewing window */
    position: relative;
    overflow: hidden; 
    margin: auto;
    width: 620px; /* Also specified in  .stripViewer .panelContainer .panel  below */
    height: 316px;
    clear: both;
}

.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;
    position: relative;
    width: 620px; /* Also specified in  .stripViewer  above */
    height: 298px;
    padding: 9px 0;
    
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

.stripViewer .panelContainer .panel div.media_box,
.stripViewer .panelContainer .panel div.media_box div.media_frame 
{
  height: 100%;
  width: 100%;
}

.stripViewer .panelContainer .panel img,
.stripViewer .panelContainer .panel .panel_content
{position: absolute;}

.stripViewer .panelContainer .panel div.panel_content#panel_content_link
{
  bottom: 20px;
  right: 20px;
}

.stripViewer .panelContainer .panel h3
{
  margin-bottom: 0;
  font-size: 1.3em;
  font-weight: bold;
  line-height: 1.2em;
}

.stripViewer .panelContainer .panel p
{
  line-height: 1.2em;
}

.stripViewer .panelContainer .panel ul li {margin: .5em 0; list-style-type: none;}

.stripViewer .panelContainer .panel a.call_to_action {font-size: 1.2em;}

.stripViewer .panelContainer .panel div.media_box
{
  background-color: black;
  border: none;
  
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}

.stripViewer .panelContainer .panel object {
  outline-style: none;
  outline-width: 0;
}

.stripViewer .panelContainer .panel.video {
    padding: 0;
    height: 316px;
}

.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
    margin: auto;

}

.stripNav ul
{
    margin: 0 0 0 10px;
}

.stripNav ul li {
    list-style: none;
    float: left;
    margin-right: 5px; /* 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: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
    background: #015a5c;
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 0 15px;
    
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
}

.stripNav li a:hover {
    background: #006F6F;
}

.stripNav li a.current {
    background: #003F3F;
    color: #fff;
}

.stripNav ul.invert a {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
}