﻿/* 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 {
		right: 0;
	}

	ul.bjqs-controls.v-centered li.bjqs-prev a {
		left: 0;
	}

ol.bjqs-markers {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
    position:relative;
    top:-30px;
    margin-left:10px;
}

	ol.bjqs-markers.h-centered {
		text-align: center;
	}

	ol.bjqs-markers li {
		display: inline;
        
	}

	ol.bjqs-markers li a {
		display: inline-block;
        color:#EBE6DC;
        width:10px;
        height:10px;
        background-color:#EBE6DC;
        margin-left:10px;
        text-decoration:none;
        font-size:0;
        border-radius:5px;
	}

        ol.bjqs-markers li a:hover {
            text-decoration:none;
        }

    ol.bjqs-markers li.active-marker a
    {
        color:#F07800;
        background-color:#F07800;
    }

ul.bjqs {
	-webkit-border-top-right-radius: 12px;
	-moz-border-radius-topright: 12px;
	border-top-right-radius: 12px;
}

	ul.bjqs li div.title {
		font-family: "Open Sans", sans-serif !important;
		position: absolute;
		margin: 15px;
		width: 675px;
		min-height: 80px;
		height: auto;
		background-color: rgba(0, 0, 0, 0.3);
		border-radius: 6px;
		color: #fff;
	}

		ul.bjqs li div.title h1,
		ul.bjqs li div.title p {
			color: #fff;
			margin: 15px;
			font-size: 14px;
			letter-spacing: .5px;
			word-spacing: 2px;
		}

		ul.bjqs li div.title h1 {
			font-size: 22px;
			font-weight: 400;
		}

p.bjqs-caption {
	display: block;
	width: 96%;
	margin: 0;
	padding: 2%;
	position: absolute;
	bottom: 0;
}