/**
 * BxSlider v4.0 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2012
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */
 
 @import url(https://fonts.googleapis.com/css?family=Poppins:400,300,500,600,700&subset=latin,latin-ext);


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	margin: 0 auto;
	padding: 0;
	*zoom: 1;
	overflow: hidden; 
}

.bx-wrapper img {
	width: 100%;
	display: block;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport {
	border: none;
	background: none;
	max-height: none;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(images/bx_loader.gif) center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager {
	display: block;
}

#bx-pager {
	width: 150px;
	height: auto;
	display: block;
	margin: 0px auto 0px auto;
	background: none;
	z-index: 9999;
	position: absolute;
	top: 96%;
	left: 46%;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

#bx-pager a {
	text-decoration: none;
	width: 15px;
	height: 15px;
	background: #fff;
	border-radius: 15px;
	display: inline-block;
	float: left;
	margin: 0px 0px 5px 5px;
	text-decoration: none;
	border: none;
}

#bx-pager a.active, #bx-pager a:hover {
    background: #fcbe01;
	text-decoration: none;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left: 10px;
	background: url(images/arrow_left.png) 5px 5px no-repeat;
}

.bx-wrapper .bx-next {
	right: 5px;
	background: url(images/arrow_right.png) 0px 5px no-repeat;
}

.bx-wrapper .bx-prev:hover {
	background-position: 0px 5px;
}

.bx-wrapper .bx-next:hover {
	background-position: 5px 5px;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 45%;
	margin-top: 0px;
	outline: 0;
	width: 40px;
	height: 38px;
	text-indent: -9999px;
	z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}


/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(images/controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(images/controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0px;
	left: 0px;
	background: none;
	width: 100%;
	color: #fff;
	font-family: "Poppins", san-serif;
	text-transform: uppercase;
	text-shadow: 5px 5px 0px rgba(0,0,0,0.7);
	font-size: 72px;
	font-weight: 500;
	text-align: right;
}