/*** Main Slider ***/
#homepageSliderContainer
{
    position: relative;
    height: 300px;
    overflow: hidden;
    background-color: #3A3A3A;
    margin-bottom: 20px;
}
#homepageSliderContainer .slide
{
    position: absolute;
    display: block;
    width:100%;
    left: 100%;
    transition: left .5s;
    -webkit-transition: left .5s;
    background-color: #3A3A3A;
}
#homepageSliderContainer .slide:first-child
{
    left: 0;
}
img
{
    display: block;
    max-width: 100%;
    max-height: 400px;
}
#controls
{
    position: absolute;
    width:100%;
    bottom: 0px;
    z-index: 1;
    background-color: rgba( 0 , 0 , 0 , 0.35 );
}
#controls div
{
    width: 10px;
    height: 10px;
    margin-top: 2px;
    margin-bottom: 2px;
    border: 2px solid white;
    border-radius:100%;
    cursor: pointer;
    -webkit-transition: all .5s;
    transition: all .5s;
}
#controls div.current
{
    background-color: white;
}
#controls td
{
    width:40px;
    align-content: center;
    padding: 5px 0px;
}
#controls tr td:first-child
{
    width:auto;
}
#controls tr td:last-child
{
    width:auto;
}

/*** Sponsor Slider ***/
#sponsorSlider
{
    position: relative;
    height: 400px;
    overflow: hidden;
}
#sponsorSlider .slide
{
    position: absolute;
    transition: all .5s;
    -webkit-transition: all .5s;
    cursor: pointer;
}
#sponsorSlider .first
{
    max-width: 25%;
    left: 0%;
    top: 17%;
}
#sponsorSlider .second
{
    max-width: 40%;
    left: 30%;
    top: 0;
}
#sponsorSlider .third
{
    max-width: 25%;
    left: 75%;
    top: 17%;
}
#sponsorSlider .left
{
    max-width: 15%;
    left: -15%;
    top: 35px;
    opacity: 0;
}
#sponsorSlider .right
{
    max-width: 15%;
    left: 100%;
    top: 17%;
    opacity: 0;
}