﻿/*--Window/Masking Styles--*/
.window
{
    height: 281px;
    width: 688px;
    overflow: hidden; /*--Hides anything outside of the set width/height--*/
    position: relative;
}
.image_reel
{
    position: absolute;
    top: 0;
    left: 0;
}
.image_reel img
{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
    opacity: 0.0;
}
.image_reel img.active
{
    z-index: 10;
    opacity: 1.0;
}
.image_reel img.last-active
{
    z-index: 9;
}
/*--Paging Styles--*/
.paging
{
    position: absolute;
    bottom: 0px;
    right: 10px;
    height: 40px;
    z-index: 100; /*--Assures the paging stays on the top layer--*/
    text-align: center;
    line-height: 40px;
    display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging a
{
    border: 1px #fff solid;
    color: #fff;
    font-size: 1.2em;
    padding: 2px 5px 2px 5px;
    text-decoration: none;
}
.paging a.active
{
    background: #75b723;
    border: 1px solid #fff;
    font-weight: bold;
    -moz-border-radius: 3px;
    -khtml-border-radius: 3px;
    -webkit-border-radius: 3px;
}
.paging a:hover
{
    font-weight: bold;
}

