
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.glitterbubble{
list-style-type:none;
margin:0;
padding:3px;
background-color: #DBDEE0;
}

.glitterbubble li{
display:inline;
width: 65px;
height:32px;
}

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

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

.glitterbubble li::after{
	display: none;
}
#styles {
	text-align:center;
	margin: 0 auto;
	margin-bottom: 30px; 
	width: 80%;
	border:1px solid #c0c0c0;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	box-shadow: 7px 7px 8px #818181;
	-webkit-box-shadow: 7px 7px 8px #818181;
	-moz-box-shadow: 7px 7px 8px #818181;
}

.border_shadow {
	text-align:center;
	margin: 0 auto;
	margin-bottom: 30px;
	padding: 10px;
	width: 80%;
	background-color: #DBDEE0;
	border:1px solid #c0c0c0;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	box-shadow: 7px 7px 8px #818181;
	-webkit-box-shadow: 7px 7px 8px #818181;
	-moz-box-shadow: 7px 7px 8px #818181;
}