#ImgSlider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
#ImgSliderMover img{
  display: block;
  float: left;
}
#BtBL {
  position: absolute;
  height: 100%;
  width: 40px;
  left: 40px;
  background-image: url("img/main/slider/BtnL.png");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
#BtSL {
  background-image: url("img/main/slider/BtnL.png");
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 40px;
}
#BtBR {
  position: absolute;
  right: 40px;
  height: 100%;
  width: 40px;
  background-image: url("img/main/slider/BtnR.png");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
#BtSR {
  background-image: url("img/main/slider/BtnR.png");
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 40px;
}
.brS {
  background-image: url("img/main/slider/GridRaster.png");
  position: absolute;
  width: 20px;
  height: 100%;
  z-index: 2;
}
.brW {
  background-image: url("img/main/slider/GridRaster.png");
  position: absolute;
  width: 100%;
  height: 20px;
  font-size: 30px;
  display: flex;
  z-index: 2;
  text-align: center;
}
.brImg {
  width: 20px;
  height: 20px;
  top 0px;
}
#brImgA {
  background-image: url(img/main/slider/dotActive.png);
}
#brImgN {
  background-image: url(img/main/slider/dotNormal.png);
}
.pause {
  animation-play-state: paused;
  -webkit-animation-name: mymove2;
  -webkit-animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-name: mymove2;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
}
.play {
  animation-play-state: running;
  -webkit-animation-name: mymove;
  -webkit-animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-name: mymove;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
}
#ImgSliderMover {
  position: absolute;
}

@-webkit-keyframes mymove {
  0% {left: 0%;}
  100% {left: -100%;}
}

@keyframes mymove {
  0% {left: 0%;}
  100% {left: -100%;}
}
