/*
	Coin Slider jQuery plugin CSS styles
	http://workshop.rs/projects/coin-slider
*/


.coin-slider { overflow: hidden; zoom: 1; position: relative; }



.cs-prev {
	width: 60px;
	height:60px;
    background: url('images/arrow-left.png') no-repeat scroll center center transparent;
    display: block;
    position: absolute;
    z-index: 100;
	 padding:0px 10px;
}


.cs-next { 	width: 60px;
	height:60px;
    background: url('images/arrow-right.png') no-repeat scroll center center transparent;
    display: block;
    position: absolute;
    z-index: 100;
	 padding:0px 10px;}



/* captions, styled fo the overlay variant */
.cs-title {
  position: absolute;
  bottom: 7em;
   z-index: 12;
   
}
.coin-slider .cs-title {
  position: relative;
  left:20%;
  background-color: rgba(0, 0, 0, 0.54);
  color: #fff;
  font-size:26px;
  padding: 0.4em 1em;
  -webkit-border-radius: 1.2em;
  -moz-border-radius: 1.2em;
  -ms-border-radius: 1.2em;
  -o-border-radius: 1.2em;
  border-radius: 1.2em;
}
.coin-slider .cs-title a:link, .coin-slider .cs-title a:visited {
  color: #e24b70;
  font-weight: 600;
  text-decoration: none;
}
.coin-slider .cs-title a:hover, .coin-slider .cs-title a:focus {
  text-decoration: underline;
}
@media only screen and (max-device-width: 480px), screen and (max-width: 480px) {
  .cs-title {
    left: 0;
    bottom: 0.4em;
  }
  .coin-slider .cs-title {
    left: 0;
    padding: 0.2em 0.4em;
    font-size: 0.92em;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
  }
}

.coin-slider a{
    text-decoration: none;
    outline: none;
    border: none;
    }

.cs-buttons {
    font-size: 0px;
    padding: 10px;
    float: left;
    }

.cs-buttons a {
    margin-left: 5px;
    height: 10px;
    width: 10px;
    float: left;
    border: 1px solid #B8C4CF; 
    border-radius: 100%;
    color: #B8C4CF;
    text-indent: -1000px;
    }

.cs-active {
    background-color: #454545;
    color: #FFFFFF;
    }
