﻿/*--Window/Masking Styles--*/
.window {
    height: 300px;
    width: 560px;
    overflow: hidden; /*--Hides anything outside of the set width/height--*/
    position: relative;
    z-index: 1;
}



.image_reel {
    position: absolute;
    top: 0;
    left: 0;
}

    .image_reel img {
        float: left;
        position: relative;
    }



