.bubblewrap{
list-style-type:none;
margin:0;
padding:0;
}

.bubblewrap li{
display:inline-block;
zoom:1; /*Trigger haslayout in IE7 and less*/
*display:inline; /*For IE7 and less*/
position:relative;
width: 45px;
height:42px;
}

.bubblewrap li img{
position:absolute;
/*width: 40px;*/ /*default width of each image.*/
/*height: 44px;*/ /*default height of each image.*/
left:0;
top:0;
border:0;
}

.bubblewrap .tooltip{ /*CSS for image tooltip (alt attribute of image)*/
position:absolute;
font: 12px Tahoma;
font-weight: sbold;
padding:2px;
width:120px; 
height:10px;
text-align:center;
background:;
}

/*CSS for 2 demos on the page*/
#orbs li{
width: 35px; /*width of image container. Should be wider than contained images (before bubbling) */
height:28px; /*height of image container. Should be taller than contained images (before bubbling) */
}

#orbs li img{
width: 40px; /*width of each image before bubbling*/
height: 44px; /*height of each image*/
z-index:auto;
}

#squares li{
width: 47px; /*width of image container. Must be wider than contained images (before bubbling) */
height:47px; /*height of image container. Must be taller than contained images (before bubbling) */
}

#squares li img{
width: 41px; /*width of each image before bubbling*/
height: 41px; /*height of each image*/
}

