@charset "utf-8";
/* CSS Document */
body{margin:0px; padding:0px;}
.slider {
    position:relative;
    height:580px;
    width:100%;
    overflow:hidden;
  }
  .slider .slider-pointer {
    position: absolute;
    bottom:20px;
    color: #fff;
    list-style: none;
    padding: 0;
    z-index: 999;
  }
  .slider .slider-pointer li {
    display: inline-block;
    margin:0 5px;
    width:100px;
    height:10px;
    border-radius:15px;
    background-color:#ffffff;
  }
  .slider .slider-pointer li:hover {
    background-color: #e30006;
  }
  .slider .slider-pointer li.active {
    background-color: #b00005;
  }
  .slider .slider-inner {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .slider .slider-inner .item {
    width:100%;
    height:100%;
    float:left;
  }
  .slider .slider-inner .img {
    background-position: center top !important;
    width:100%;
    height:100%;
	display:block;
  }
  
