/*My slider styles*/
 

#my_slider {

    width:700px;
    height:300px;
    overflow: hidden;
    position: relative;
    list-style: none outside none;
    padding:0;
    margin:0;
   
    border-radius: 5px;
}

#my_slider li {
    position: absolute;
    top: 0px;
    left: 0px;
    display:none;
}
#my_slider li:first-child {
    display:block;
}




