.stripViewer { /* this is the DIV container for your UL of images */
position: relative;
overflow: hidden; 
border: 2px solid #cac2bb; /* this is the border. should have the same value for the links */
margin:0px;
}
.stripViewer ul { /* this is your UL of images */
position: relative;
left: 0;
top: 0;
list-style-type: none;
margin:0px;
padding:0px;
}
.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)*/
overflow: auto;
width: 1%;
margin:0px;
padding:0px;
}
.stripTransmitter ul { /* the auto-generated set of links */
position: relative;
list-style-type: none;
margin:0px;
padding:5px 0px 0px 0px;

}
.stripTransmitter ul li{ /* in this list too, each LI is arranged horizontally */
width: 20px;
height:20px;
float:left;
margin: 0 4px 4px 0;
}
.stripTransmitter a{ /* the links. */
font-family:Arial, Helvetica, sans-serif;
font-size:10px;
text-align: center;
line-height: 20px;
background: #B2A69C;
color: #fff;
text-decoration: none;
display: block;
}
.stripTransmitter a:hover { /* hover */
background: #BF650F;
color: #fff;
}
.stripTransmitter a.current, .stripTransmitter a.current:hover { /* current */
background: #fff;
color: #ff0000;
}