/*
// 
// Copyright (c) 2007-2012, BrightImaging. All Right Reserved.
//
// This source must be licensed for use, and must not be modified
// or distributed without permission from BrightImaging.
// All other rights reserved.
//
// THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY 
// KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
//
// Contact: photoexhib@brightimaging.com
//
// This slideshow code obtained (and lightly modified) from:
//      http://jonraasch.com/blog/a-simple-jquery-slideshow
//      Copyright (c) 2008 Jon Raasch (http://jonraasch.com/)
//
*/

#slideshow {
    position:               relative;
    width:                  300px;
    height:                 252px;
    margin:                 20px auto;
    background-color:       #f0f0f0;
    border:                 1px solid #d0d0d0;
    -webkit-border-radius:  5px;
    -moz-border-radius:     5px;
    border-radius:          5px;
    text-align:             center;
}

#slideshow DIV {
    position:               absolute;
    z-index:                8;
    opacity:                0.0;
    width:                  300px;
    height:                 252px;
}

#slideshow DIV.active {
    z-index:                10;
    opacity:                1.0;
}

#slideshow DIV.last-active {
    z-index:                9;
}

#slideshow DIV IMG {
/*    width:                  220px; */
/*    height:                 170px; */
    display:                block;
    border:                 0;
    margin:                 10px auto 6px auto;
}

p.title {
    font-family:            tahoma, verdana, arial;
    font-size:              10px;
    font-weight:            bold;
    text-align:             center;
    padding:                0px;
    margin:                 6px 0px 0px 0px;
    background-color:       #f0f0f0;
}

p.award {
    font-family:            tahoma, verdana, arial;
    font-size:              10px;
    text-align:             center;
    padding:                0px;
    margin:                 0 0 5px 0;
    background-color:       #f0f0f0;
}
