/*preload classes*/
 .svw {
     width: 50px;
     height: 20px;
     background: #fff;
 }
 .svw ul {
     position: relative;
     left: -999em;
 }

/*core classes*/
 .stripViewer {
     position: relative;
     overflow: hidden;
     border: 5px solid #ff0000;
     margin: 0 0 1px 0;
 }
 .stripViewer ul {
 /* this is your UL of images */
     margin: 0;
     padding: 0;
     position: relative;
     left: 0;
     top: 0;
     width: 1%;
     list-style-type: none;
 }
 .stripViewer ul li {
     float:left;
 }
 .stripTransmitter {
     width: 20px;
     padding: 5px;
 }
 .stripTransmitter a{
     font: bold 10px Verdana, Arial;
     text-align: center;
     line-height: 22px;
     background: #ff0000;
     color: #fff;
     text-decoration: none;
     display: block;
 }
 .stripTransmitter a:hover, a.current{
     background: #fff; color: #ff0000;
 }

/*tooltips formatting*/
 #tooltip {
     background: #fff;
     color: #000;
     opacity: 0.85;
     border: 5px solid #dedede;
 }
 #tooltip h3 {
     font: normal 10px Verdana;
     margin: 0;
     padding: 6px 2px;
     border: 0;
 } 