/*
// 
// 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;
    margin:                 20px auto;
    background-color:       #f0f0f0;
    border:                 1px solid #d0d0d0;
    border-radius:          5px;
}

.frame {
    position:               absolute;
    top:                    10px;
    left:                   10px;
    visibility:             hidden;
}

.logo {
    position:               absolute;
    top:                    10px;
    left:                   10px;
    z-index:                2;
    visibility:             hidden;
}

.frame img {
    border:                 10px solid black;
    border-radius:          5px;
}

.logo img{
    border:                 10px solid #f0f0f0;
}

.captions {
    width:                  100%;
    height:                 75px;
    display:                flex;
    flex-direction:         column;
    align-items:            center;
    justify-content:        center;
    background-color:       #f0f0f0;
}

p.title,
p.photographer {
    font-family:            tahoma, verdana, arial;
    font-size:              12px;
    font-weight:            bold;
    text-align:             center;
    padding:                0;
    margin:                 0;
    background-color:       #f0f0f0;
}

p.club,
p.award,
p.class {
    font-family:            tahoma, verdana, arial;
    font-size:              12px;
    text-align:             center;
    padding:                0;
    margin:                 0;
    background-color:       #f0f0f0;
}

p.club {
    font-style:             italic;
}

p.award {
    color:                  #d00202;
    font-weight:            bold;
}
