.zoom {
    border: 2px solid #000000; 
    border-radius: 20px; 
animation:animatezoom 0.9s}
@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)

    }
}

.bw {
    position: relative; 
    opacity: 1; 
    transition: 0.3s ease; 
    transform: scale(1, 1);  
    }

.bw:hover {
    -webkit-filter: grayscale(100%); 
    filter: grayscale(100%);
	transform: scale(1.1, 1.1); 
    opacity: 1; 
    z-index: 1; 
    }
	
.button {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 1px 6px;
    border: 2px solid #ededed;
    border-radius: 5px;
    background: #3c9fe9;
    background: -webkit-gradient(linear, left top, left bottom, from(#3c9fe9), to(#25628f));
    background: -moz-linear-gradient(top, #3c9fe9, #25628f);
    background: linear-gradient(to bottom, #3c9fe9, #25628f);
    font: normal normal bold 13px arial;
    color: #ffffff;
    text-decoration: none;
}
.button:hover,
.button:focus {
    border: 2px solid #ededed;
    background: #48bfff;
    background: -webkit-gradient(linear, left top, left bottom, from(#48bfff), to(#2c76ac));
    background: -moz-linear-gradient(top, #48bfff, #2c76ac);
    background: linear-gradient(to bottom, #48bfff, #2c76ac);
    text-shadow: #ffffff 1px 1px 1px;
    color: #000000;
    text-decoration: none;
}
.button:active {
    background: #25628f;
    background: -webkit-gradient(linear, left top, left bottom, from(#25628f), to(#25628f));
    background: -moz-linear-gradient(top, #25628f, #25628f);
    background: linear-gradient(to bottom, #25628f, #25628f);
}

.button2 {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 1px 6px;
    border: 2px solid #ededed;
    border-radius: 5px;
    background: #08cd5e;
    background: -webkit-gradient(linear, left top, left bottom, from(#08cd5e), to(#057e3a));
    background: -moz-linear-gradient(top, #08cd5e, #057e3a);
    background: linear-gradient(to bottom, #08cd5e, #057e3a);
    text-shadow: #034f24 1px 1px 1px;
    font: normal normal bold 13px arial;
    color: #ffffff;
    text-decoration: none;
}
.button2:hover,
.button2:focus {
    background: #0af671;
    background: -webkit-gradient(linear, left top, left bottom, from(#0af671), to(#069746));
    background: -moz-linear-gradient(top, #0af671, #069746);
    background: linear-gradient(to bottom, #0af671, #069746);
    text-shadow: #ffffff 1px 1px 1px;
    color: #000000;
    text-decoration: none;
}
.button2:active {
    background: #057e3a;
    background: -webkit-gradient(linear, left top, left bottom, from(#057e3a), to(#057e3a));
    background: -moz-linear-gradient(top, #057e3a, #057e3a);
    background: linear-gradient(to bottom, #057e3a, #057e3a);
}

a.gallery {
    display: inline-block;
    border: 1px solid #0B610B;
    border-radius: 4px;
    padding: 5px;
    transition: 0.3s;
    opacity: 1;
    filter: alpha(opacity=100);
}

a.gallery:hover {
    box-shadow: 0 0 2px 3px rgba(0, 128, 0, 1);
    opacity: 0.5;
    filter: alpha(opacity=50);
}