/* the fabric background */
#page-container {
    /*background: #fff url("../bundles/ishaui/images/isha_patterns/fabric_beige.jpg") repeat fixed left bottom;*/
    /* overflow x: when sliding panels, background jumps otherwise */
    overflow-x: auto;
}

/* small monitors and large tables in a horizontal form are not showing properly. */
div[data-prototype] {
    overflow-x:auto;
}

.vertical-box-inner-cell {
    background-color: darkgray;
}

/* when searching people, and profile has wide image dont have overflow */
.image-inner {
    overflow: hidden;
}
/* name tag when searching people (search_categories). it is the name of the person that is being displayed on top of the image */
.caption-name {
    top:inherit!important;
    bottom:15px;
    width:100%;
    text-align: center;
}

.image-inner img,
.profile-image img {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}

.image:hover .image-inner img,
.profile-image:hover img {
    transform: translateZ(0) scale(1.3);
}