
/* slideViewer 1.0 default styles */

.stripViewer { /* this is the DIV container for your UL of images */
position: relative;
overflow: hidden; 
/*border: 5px solid #ff0000;  this is the border. should have the same value for the links */
margin: 0 0 0px 0;
}
.stripViewer ul { /* this is your UL of images */
position: relative;
left: 0;
top: 0;
width: 1%;
list-style-type: none;
}
.stripViewer ul li { /* each image is arranged horizontally */
float:left;
}
.stripTransmitter { /* this is the DIV for your transmitter (the UL generated at run time that commands the list)*/
width: 1%;
display:inline;
}
.stripTransmitter ul { /* the auto-generated set of links */
display:inline;
position: relative;
list-style-type: none;
}
.stripTransmitter ul li{ /* in this list too, each LI is arranged horizontally */
display:inline;
width: 20px;
float:left;
margin: 0 1px 1px 0;
}
.stripTransmitter a{ /* the links. */
font: bold 10px Verdana, Arial;
text-align: center;
line-height: 22px;
background: #efa300;
color: #fff;
text-decoration: none;
display: block;
}
.stripTransmitter a:hover { /* hover */
background: #3e3e3e;
color: #fff;
}
.stripTransmitter a.current, .stripTransmitter a.current:hover { /* current */
background: #f0f0f0;
color: #000000;
}
/* end slideViewer default styles */

.tooltip
{
padding: 0em;
background: #fff;
color: #000;
border: 5px solid #dedede;
}


