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

 a.glow, a.glow:hover, a.glow:focus  
    {  
        text-decoration: none;  
        color: #aaf;  
        text-shadow: none;  
        -webkit-transition: 150ms linear 0s;  
        -moz-transition: 150ms linear 0s;  
        -o-transition: 150ms linear 0s;  
        transition: 150ms linear 0s;  
        outline: 0 none;  
    }  
	    a.glow:hover, a.glow:focus  
    {  
        color: #000;  
        text-shadow: -1px 1px 8px #ffc, 1px -1px 8px #000;  
    }

.thumb_hover img{
-webkit-transform:scale(0.7); /*Webkit 0.7 times the original Image size*/
-moz-transform:scale(1); /*Mozilla 0.7 times the original Image size*/
-o-transform:scale(0.7); /*Opera 0.7 times the original Image size*/
-webkit-transition-duration: 0.5s; /*Webkit: Animation duration*/
-moz-transition-duration: 0.5s; /*Mozilla Animation duration*/
-o-transition-duration: 0.5s; /*Opera Animation duration*/
opacity: 0.5;
}

.thumb_hover img:hover{
-webkit-transform:scale(1.1); /*Webkit: 0.5 times the original Image size*/
-moz-transform:scale(1); /*Mozilla 0.5 times the original Image size*/
-o-transform:scale(1.1); /*Opera 0.5 times the original Image size*/
box-shadow:0px 0px 30px gray;
-webkit-box-shadow:0px 0px 30px gray;
-moz-box-shadow:0px 0px 30px gray;
opacity: 1;
}