/* code provided by TyStelmach found at http://www.jqueryscript.net/rotator/Simple-Text-Slider-Rotator-with-jQuery-CSS.html */
#slides {
  overflow: hidden;
  position: relative;
  width: 100%;
}
 
#slides ul {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
 
#slides li {
  width: 100%;
  float: left;
  text-align: center;
  position: relative;
  font-family: lato, sans-serif;
}

#btn-bar
{
	width:100%;
}
#buttons
{
	position:relative;
	width:150px;
	height:40px;
	margin:0 auto;
}

#buttons a
{
	font-family:Arial, sans-serif;
	font-size:20px;
	background:rgba(0,0,0,0.3);
	width:35px;
	height:35px;
	line-height:35px;
	display:block;
	text-align:center;
	color:#FFF;
	text-decoration:none;
	border-radius:100px;
	-webkit-border-radius:100px;
	-moz-border-radius:100px;
	float:left;
	margin:0 10px;
}

.nexttextArrows a
{
	position:absolute;
	right:0px;
}

.prevtextArrows a
{
	position:absolute;
	left:10px;
}

#buttons a:hover
{
	background:#000;
}
