/* 
    Document   : slide
    Created on : 27 oct. 2014, 14:43:43
    Author     : Eric
    Description:
        Purpose of the stylesheet follows.
*/
.cont-slide{
    position: relative;
    width: 100%;
    overflow: hidden;
    /*height: 450px;*/
    height: 300px;
}    
.cycle-slideshow img{
    width: 920px;
    height: auto;
}
#prev, #next {
    background-color: #7c7c7e;
    display: inline-block;
    float: right;
    height: 40px;
    padding: 20px;
    position: absolute;
    top:110px;
    z-index: 2000;
    -moz-opacity: .8;
    -ms-opacity: .8;
    -o-opacity: .8;
    -webkit-opacity: .8;
    -khtml-opacity: .8;
    opacity: .8;
}
#prev{
    left: 0;
    -moz-border-radius: 0 5px 5px 0;
    -ms-border-radius: 0 5px 5px 0;
    -o-border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    -khtml-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
}
#next{
    right: 0px;
    -moz-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    -khtml-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
}


