  /*
Welcome to the SlideShow.css file.
This file defines the attributes and stylings required for creating the main slideshow.
*/
#slideShow
{
    width: 950px;
    height: 300px;
    position: relative;
    margin: 20px auto;
    border-radius: 8px;
    z-index: 5;
}
/*elements is the wrapper for element*/
.elements
{
    border-radius: inherit;
}
/*this is the object that changes */
.elements .element
{
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 8px;
    width: 920px;
    height: 300px;
}
.elements .element img
{
    border-radius: 8px;
}
.elements .element.current
{
    display: block;
    z-index: 5;
}
.elements .element.next
{
    z-index: 4;
}
/*these define the location of the next and prev buttons */
#ssLeft, #ssRight
{
    display: none;
    position: absolute;
    top: 120px;
    z-index: 995;
}
#ssLeft
{
    left: -20px;
}
#ssRight
{
    left: 923px;
}
/*the nav, 1 2 3 4, adjust location to move */
#ssNav
{
    height: 20px;
    line-height:20px;
    padding: 2px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 888;
    border-radius: 5px;
    color: white;
    background:rgba(0,0,0,.6);
    
}
#ssNav li
{
    list-style-image: url('/static/css/bgs/whitedot.png');
    float: left;
    width: 17px;
    height: 17px;
}
#ssNav a:hover, #ssNav .activeSlide
{
    background:white;
    border-radius:2px;
    color:Black;
}
#ssNav a
{
    color: white;
    display: inline-block;
    padding: 0 4px 0 4px;
    text-decoration: none;
    cursor: pointer;
}
