/* Basic jQuery Slider essential styles */

ul.bjqs{position:relative; list-style:none;padding:0;margin:0;overflow:hidden; display:none;}
li.bjqs-slide{position:absolute; display:none;}
ul.bjqs-controls{list-style:none;margin:0;padding:0;z-index:9999;}
ul.bjqs-controls.v-centered li a{position:absolute;}




ul.bjqs-controls.v-centered li.bjqs-next a{
	-webkit-transition: all 0.1s ease-in-out;
	right:0;
	width: 30px;
	height: 30px;
	background-color: #0a4961;
	opacity: 1;
	border-radius: 50%;
	background-image: url(../images/next-ico.png);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center center;
}

ul.bjqs-controls.v-centered li.bjqs-next a:hover{
	-webkit-transition: all 0.1s ease-in-out;
	right:0;
	width: 30px;
	height: 30px;
	background-color: #0a4961;
	opacity: 0.7;
	border-radius: 50%;
	background-image: url(../images/next-ico.png);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center center;
}


ul.bjqs-controls.v-centered li.bjqs-prev a{
	-webkit-transition: all 0.1s ease-in-out;
	width: 30px;
	height: 30px;
	background-color: #0a4961;
	opacity: 1;
	border-radius: 50%;
	left:0;
	background-image: url(../images/prew-ico.png);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center center;
}

ul.bjqs-controls.v-centered li.bjqs-prev a:hover{
	-webkit-transition: all 0.1s ease-in-out;
	width: 30px;
	height: 30px;
	background-color: #0a4961;
	opacity: 0.7;
	border-radius: 50%;
	left:0;
	background-image: url(../images/prew-ico.png);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center center;
}





ol.bjqs-markers{list-style: none; padding: 0; margin: 0; width:100%;}
ol.bjqs-markers.h-centered{text-align: center;}
ol.bjqs-markers li{display:inline;}
ol.bjqs-markers li a{display:inline-block;}
p.bjqs-caption{display:block;width:96%;margin:0;padding:2%;position:absolute;bottom:0;}