/*
 The list is shrunk down, with only the active item displayed.
 A cool alternative to this is to display the list with "overflow: auto" to
 the side of your photos, as the script allows you to click items to jump to them!
 You could have a list of thumbnails, linking to the full-size images, and use
 photoItemActive to put a border/background around the active image...
*/

.photoListActive {
 margin: 0 0 1em 0;
 padding: 0em 6em;
 text-align: center;
 vertical-align: middle;
 list-style: none;
}
.photoListActive li {
 margin: 0;
 padding: 0;
 color: #567;
 display: none;
}
.photoListActive li.photoItemActive {
 display: block;
}
.photoListActive a {
 color: #34C;
}


/* It's a good idea to wrap your photos in an area the size of the largest photo */

.photoContainer {
 display: table-cell;
 height: 210px;
 vertical-align: middle;
}

.photoContainerTeam {
 display: table-cell;
 height: 420px;
 vertical-align: middle;
}

.photoContainerInterni {
 display: table-cell;
 height: 500px;
 vertical-align: middle;
}

/* OK, the photo area itself. Nothing too special here, a border and some padding. */

.photoArea {
 vertical-align: middle;
 position: relative;
 visibility: hidden;
 margin: 0 auto 0 auto;
}
.photoAreaActive {
 display: table-cell;
 visibility: visible;
 border: 0px solid #C0C0C0;
 padding: 4px;
 vertical-align: middle;
}
