/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Feb 11, 2015, 2:26:15 AM
    Author     : PENUNES
*/
#gallery {
    margin: 10px 10px 30px 10px;
    content: "";
    display: table;
    clear: both;
}
#gallery img {
    width: 200px;
    border-radius: 2px;
}
#gallery li {
    list-style: outside none none;
    perspective:80;
    margin: 1px;
    float: left;
    position: relative;
    transition: all 0.1s ease 0s;
    border-radius: 2px;

}
#gallery li.loaded:hover {
    z-index: 2;
    transform: scale(1.4);
}
#gallery li.loaded a:hover {

    transition: all 0.1s ease 0s;

}
#gallery li.loaded:hover img {
    transform: scale(1.3);
}
#gallery a img:hover {

    box-shadow: 0px 0px 0px 2px #004400, 0px 0px 2px 2px #004400;
}
#gallery a img {
    transition: all 0.3s ease-out 0s;
}

