@charset "utf-8";
/* CSS Document */

<style type="text/css">

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

.bubblewrap li{
display:inline;
width: 65px;
height:60px;
}

.bubblewrap li img{
width: 60px; /* width of each image.*/
height: 60px; /* height of each image.*/
border:0;
margin-right: 7px; /*spacing between each image*/
-moz-transition:-moz-transform 0.1s ease-in; /*animate transform property */
-webkit-transition:-webkit-transform 0.1s ease-in; 
-o-transition:-o-transform 0.1s ease-in; /*animate transform property in Opera */
}

.bubblewrap li img:hover{
-moz-transform:scale(2.3); /*scale up image 1.8x*/
-webkit-transform:scale(2.3);
-o-transform:scale(2.3);
}


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

.bubblewrapsaqu li{
display:inline;
width: 15px;
height:80px;
}

.bubblewrapsaqu li img{
width: 90px; /* width of each image.*/
height: 100px; /* height of each image.*/
border:0;
margin-right: 1px; /*spacing between each image*/
-moz-transition:-moz-transform 0.1s ease-in; /*animate transform property */
-webkit-transition:-webkit-transform 0.1s ease-in; 
-o-transition:-o-transform 0.1s ease-in; /*animate transform property in Opera */
}

.bubblewrapsaqu li img:hover{
-moz-transform:scale(1.8); /*scale up image 1.8x*/
-webkit-transform:scale(1.8);
-o-transform:scale(1.8);
}

</style>
