@charset "utf-8";
/* CSS Document */
.thumbnail {
      width: 200px;
      cursor: pointer;
  	  margin: 0px 0px 0px 15px; 
      border:1px solid #CCCCCC; 
      box-shadow:-5px 5px 5px #CCCCCC;
      float:right;
    }
#popup {
      display: none;
      position: fixed;
      top: 50px;
      left: 50%;
      background: white;
      transform: translateX(-50%);
      z-index: 1000;
      padding: 4px 4px 0px 4px;
      border: 1px solid #CCCCCC; 
      box-shadow:-5px 5px 5px #CCCCCC;
    }
#popup img {
      max-width: 80vw;
      max-height: 80vh;
    }
#cerrar {
      position: absolute;
      top: 5px;
      right: 10px;
      cursor: pointer;
      font-weight: bold;
      color: #888;
    }


