/* Bare minimum styles */

.slider {

    -ms-touch-action: pan-y; /* Prevent default touch actions on Windows 8. Only required for IE10 */

    overflow: auto; /* Not required but recommended for accessibility when JavaScript is turned off */

    position: relative;

    touch-action: pan-y; /* Prevent default touch actions on Windows 8. Supported in IE11+ */

}



/* AnySlider can be styled to your liking. This is just example styles */

.slider {

    height: 460px;

    margin: 0px auto 40px auto;

    padding: 5px;

    text-align: center;

    width: 100%;

}

.as-slide-inner ul {

  list-style: none;

  padding: 0;

}

.as-slide-inner ul li {
  display: inline-block;
  height: 191px;
  margin: 20px;
  width: 202px;
}


/* The arrows can of course also be styled to your liking. This is just example styles */

.as-prev-arrow,

.as-next-arrow {
	display: none;

    background: url(../images/arrows.png) no-repeat;

    cursor: pointer;

    filter: alpha(opacity=0);

    height: 40px;

    opacity: 0;

    overflow: hidden;

    position: absolute;

    text-indent: 100%;

    top: 220px;

    white-space: nowrap;

    width: 40px;

    z-index: 1;

}



.as-prev-arrow {

    left: 0;

}



.as-next-arrow {

    background-position: -40px 0;

    right: 0;

}



.slider:hover .as-prev-arrow,

.slider:hover .as-next-arrow {

    filter: alpha(opacity=1);

    opacity: 1;

}



/* The same rules for styling apply here. Style to your liking */

.as-nav {
	
	display: none;

  position: absolute;

  text-align: center;

  top: -30px;

  width: 100%;

  z-index: 1;

}



.as-nav a {

    background: url(../images/bullets.png) no-repeat;

    height: 30px;

    display: inline-block;

    margin: 0 1px;

    overflow: hidden;

    text-indent: 100%;

    white-space: nowrap;

    width: 30px;

}



.as-active,

.as-nav a:hover {

    background-position: 0 -30px;

}



/* Other styles not related to AnySlider */

body {

    background-color: #fff;

    color: #333;

    font: 12px "Trebuchet MS", sans-serif;

    margin: 0;


}



section {

    display: block;

}



.content {

    margin: 0 auto;

    position: relative;

    width: 80%;

}



h1 {

    font-size: 20px;

    margin: 10px 0;

}



p {

    margin: 10px 0;

}



ul {

    margin: 0;

    padding: 0;

}



.slider-wrapper {

    height: 275px;

    position: relative;

}

