@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:700);




.wrapper {
  width: 40%;
  margin: 40px auto;
}

div.geleria {
  margin-top: 30px;
}

div.geleria ul {
  list-style-type: none;
  margin-left: 0px;
}

/* animation */
div.geleria ul li, div.geleria li img {
  -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

div.geleria ul li {
  position: relative;
  float: left;
  width: 130px;
  height: 130px;
  margin: 5px;
  padding: 5px;
  z-index: 0;
}

/* Make sure z-index is higher on hover */
/* Ensure that hover image overlapped the others */
div.geleria ul li:hover {
  z-index: 5;
}

/* Image is position nicely under li */
div.geleria ul li img {
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #dddddd;
  padding: 5px;
  width: 130px;
  height: 130px;
  background: #f0f0f0;
}

div.geleria ul li img:hover {
  width: 200px;
  height: 200px;
  margin-top: -130px;
  margin-left: -130px;
  top: 65%;
  left: 65%;
}

p.attribution {
  font-family: 'Consolas';
  color: #000;
  clear: both;
  text-align: center;
  line-height: 25px;
  padding-top: 30px;
}

p.attribution a {
  color: #4c8d7c;
}

/* Responsive hack */
@media only screen and (min-width: 499px) and (max-width: 1212px) {
  .wrapper {
    width: 500px;
  }
}

@media only screen and (max-width: 498px) {
  .wrapper {
    width: 300px;
  }

  div.geleria ul {
    list-style-type: none;
    margin: 0;
  }
}



.modal {
    overflow: hidden;
}

.modal-header {
  height:65px;
  background-color:#18456b;
  color:white;
}
.modal-title {
  margin-top:-10px;
  font-size:16px;
}
.modal-header .close {
  margin-top:-10px;
  color:#fff;
}
.modal-body {
  color:#888;
  padding: 5px 35px 20px;
}
.modal-body h3 {
  color: #18456b;
  text-align: center;
}
.modal-body p {
  text-align: justify; 
  color:#18456b; 
  line-height: 1.2; 
  font-size: 14px;
}

