/** Galería de fotos CSS3 */
html, body, ul.thumb, ul.thumb li {
    font-family: "Lucida Grande", Verdana, Arial;
    padding: 0;
    margin: 0;
    font-size: 0.9em;
}
html, body, ul.thumb {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
ul.thumb {
    position: relative;
    list-style: none;
    background: -webkit-gradient(radial, 45 45, 50, 50 10, 640, from(#555), to(#222)) !important;
    background: #666;
}
ul.thumb li {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 6px 6px 24px 6px;
    background: #FFF;
    width: 150px;
    height: 130px;
    -moz-box-shadow:1px 1px 6px #222;
	-webkit-box-shadow:1px 1px 6px #222;
	box-shadow:1px 1px 6px #222;
    -webkit-transition: all 3s ease-in-out;
	-moz-transition: all 3s ease-in-out;
    z-index: 0;
}
ul.thumb li img {
    width: 100%;
    height: 100%;
}
ul.thumb li:nth-child(1) {
    margin-top: -130px;
    margin-left: -130px;
    -moz-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
}
ul.thumb li:nth-child(2) {
    margin-top: -120px;
    margin-left: -10px;
    -moz-transform: rotate(19deg);
    -webkit-transform: rotate(19deg);
    transform: rotate(19deg);
}
ul.thumb li:nth-child(3) {
    margin-top: -10px;
    margin-left: -180px;
    -moz-transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
}
ul.thumb li:nth-child(4) {
    margin-top: -50px;
    margin-left: -80px;
    -moz-transform: rotate(12deg);
    -webkit-transform: rotate(12deg);
    transform: rotate(12deg);
}
ul.thumb li:nth-child(5) {
    margin-top: 20px;
    margin-left: 30px;
    -moz-transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
}
ul.thumb li:hover{
	font-size: 1.3em;
    z-index: 10;
    width: 480px;
    height: 322px;
    margin-top: -151px;
    margin-left: -240px;
    -moz-box-shadow:8px 8px 24px #111;
	-webkit-box-shadow:8px 8px 24px #111;
	box-shadow:8px 8px 24px #111;
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
div.derechosfotos {
    position: fixed;
    width: 100%;
    bottom: 20px;
    color: #fff;
    text-align: center;
    font-family: sans-serif;
    font-size: 8pt;
}
div.derechosfotos a {
    color: #efefef;
    text-decoration: none;
    border-bottom: 1px dotted #efefef;
}
div.derechosfotos a:hover {
    color: #fff;
    border-bottom: 1px dotted #fff;
}

