/* Flipbook Plugin for jQuery
 * Author  :   Jon Raasch
 * Website :   http://jonraasch.com/blog/jquery-flipbook-movies
 * Contact :   jr@jonraasch.com
 * Version :   0.1
 *
 * Copyright (c)2008 Jon Raasch. All rights reserved.
 * Released under FreeBSD License, see readme.txt
 * Do not remove the above copyright notice or text
 * 
 * 
 * You must set a height and width for #flipbook and #flipbook IMG.  
 *
 */

#flipbook {
    position: relative;
    width: 450px;
    height: 600px;
    margin: auto;
}

#flipbook IMG {
    position: absolute;
    top: 0;
    left: 0;
    width: 450px;
    height: 600px;
    z-index: 8;
    opacity: 0.0;
}

#flipbook IMG.active {
    z-index:10;
    opacity: 1.0;
}

#flipbook IMG.last-active {
    z-index:9;
}