/* Contenedor General de la foto principal y los thumbnails*/
.taWebImageGallery .taWebImageGallery_Body{
    margin-left: auto;
    margin-right: auto;
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
    height: 566px;
    width: 565px;
}

/* Imagen principal grande */
.taWebImageGallery .taWebImageGallery_Body .taWebImageGallery_Image{
    height: 500px;
    width: 565px;
    cursor: default;
    position: relative;
    z-index: 2;
    transition: transform 1s;
    transform-origin: top left;
}

.taWebImageGallery .taWebImageGallery_Body .taWebImageGallery_Image:hover{
    transform: scale(1.35,1.35);
    z-index: 3;
}

/* Contenedor de los thumbnails debajo a todo lo ancho de la imagen grande */
.taWebImageGallery .taWebImageGallery_Body .taWebImageGallery_Gallery{
    margin: 3px;
    height: 50px;
    width: 565px;
    /*float: left;*/
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.taWebImageGallery .taWebImageGallery_Body .taWebImageGallery_ThumbDiv{
    margin: 3px;
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
    float: left;
    overflow: hidden;
    width: 44px;
    height: 44px;
}

/*********************/
/* Imagenes pequeñas */
/*********************/
.taWebImageGallery .taWebImageGallery_Body .taWebImageGallery_ThumbImage{
    float: left;
    cursor: pointer;
    width: 42px;
    height: 42px;
}

.taWebImageGallery .taWebImageGallery_Body .taWebImageGallery_ThumbImage:hover {
    border: 1px solid #E80000;
}
