/* MENU */

.ppMenu {
    margin-bottom: 20px;
    padding-left: 45px;
    background: white;
    position: fixed;
    width: 150px;
    height: 700px;
    z-index: 2;
    opacity: .8;
    -webkit-transition: opacity .5s ease-in;
    -moz-transition: opacity .5s ease-in;
}
.ppMenu.hover, .ppMenu:hover {
    opacity: 1;
}
.ppMenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
}
.ppMenu ul ul {
    margin-top: 2px;
    margin-bottom: 5px;
    padding-left: 15px;
    font-size: 11px;
}
.ppMenu .inactive ul {
    display: none;
}

/* SUBALBUMS */

.ppSubAlbums {
    position: absolute;
    left: 210px;
    right: 0;
}
.ppSubAlbum {
    display: block;
    float: left;
    margin-right: 5px;
}

/* PHOTOS */

.ppPhotos {
    position: absolute;
    overflow: hidden;
    display: block;
    width: 100000px;
    height: 700px;
}
.ppBelowPhotos {
    position:fixed;
    z-index:1000;
}

/* PHOTO */

.ppPhotos .ppPhoto {
    float: left;
    position: relative;
}
.ppPhotos .ppPhoto .ppVideo {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url('/media/res/img/VideoPlayButtonOverlay.png') no-repeat 50% 50%;
}
.ppPhotos .ppPhoto .ppVideo embed,
.ppPhotos .ppPhoto .ppVideo object,
.ppPhotos .ppPhoto .ppVideo video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}