﻿/* Stylesheet for slideshow */

/* Main wrapper */
div.slideshow {
    height:250px;
    max-height:250px;
    overflow:hidden;
    display:block;
}

    div.slideshow div.frame {
        height:250px; /* Slideshow requires height/width be explicitly set in order to work, using 100% makes it die in IE6 */
        width:100%;
        color:#000000;
        font-size:30px;
        background-color:White;
    }
    
        div.slideshow div.frame div.captionWrapper {
            border-top:solid 1px #222222;
            position:absolute;
            bottom:0px;
            height:100px;
            width:100%;
        }
    
            /* iestyles */
            div.slideshow div.captionBack {
                position:absolute;
                width:100%;
                height:100%;
                background:transparent url('../images/slideshowCaptionGradient.png');    
            }
            
            div.slideshow div.captionContent {
                color:#ffffff;
            }
            
                div.captionHeader {
                    font-size:20px;
                    font-weight:bold;
                    margin-left:20px;
                    margin-bottom:10px;
                }
                
                div.captionText { 
                    margin-left:20px;    
                }