﻿
/** slideshowOuter - the container div around the whole control **/
.slideshowOuter
{
    width:422px;
    background-color:#f87621;
    color:#ffffff;
    font-size:10px; 
    text-align:center;
}




/****************************************Slides**************************************/
/* slideshowSlideContainer - specify the width and height of the slides.  Also any background color / image if not all slides are identical widths. Do NOT specify a width here */
.slideshowSlideContainer 
{
    background-color:#f87621;
    height:186px;
}




/****************************************Navigation**************************************/
/* slideshowNavigationContainer - the container div around the navigation controls */
.slideshowNavigationContainer
{
    width:422px;
    background-color:#f87621;   
}




/****************************************Descriptions**************************************/
/* slideshowDescriptionsContainer - the container div around the whole set of descriptions. Specify a width here. */
.slideshowDescriptionsContainer
{
    display:block;       /*set to "none" to hide titles*/
    width:422px;
    height:72px;
    background-color:#f87621;   
}

/*slideshowDescriptionContainer - the container around each individual descriptions - DO specify width here*/
.slideshowDescriptionContainer
{
    width:422px;
    overflow:visible;
    text-align:center;
    color:#ffffff;
    background-color:#f87621;
}

/*slideshowDescriptionText - specify any text styles for the descriptions*/
.slideshowDescriptionText
{
    font-size:10px;
    padding:8px 25px 3px 25px;
    background-color:#f87621;
}

