/* Prevent the slideshow from flashing on load */
    
#slides {
      
display: none
    
}

    
/* Center the slideshow */

    
.container {
      
margin: 0 auto
    }

    

/* Show active item in the pagination */
    
.slidesjs-pagination 
.active {
      
color:red;
    
}

    

/* Media quires for a responsive layout */

    

/* For tablets & smart phones */
    

@media (max-width: 100%) {
      
body {
        
padding-left: 0px;
        
padding-right: 0px;
      }
      
.container {
        width: auto
      }
    }

    

/* For smartphones */
    
@media (max-width: 480px) {
      
.container {
        width: auto
      }
    }

    
/* For smaller displays like laptops */
    

@media 
(min-width: 768px) and (max-width: 100%) {
      
.container {
        width: 724px
      }
    }

  
  
/* For larger displays */
    
@media (min-width: 100%) {
      
.container {
        
width: 100%
      }
    }
  