/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	padding: 0;
	*zoom: 1;}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

/** THEME
===================================*/


/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left: 0;
	background:url(../../img/prev.png) no-repeat;
}

.bx-wrapper .bx-next {
	right: 0;
	background:url(../../img/next.png) no-repeat;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 300px;
	outline: 0;
	width: 34px;
	height: 34px;
	text-indent: -9999px;
	z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

@media screen and (max-width:768px) {
.bx-wrapper .bx-prev {
	left: -2.5%;
	background:url(../../img/prev.png) no-repeat;
}

.bx-wrapper .bx-next {
	right: -2.5%;
	background:url(../../img/next.png) no-repeat;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 150px;
	outline: 0;
	width: 34px;
	height: 34px;
	text-indent: -9999px;
	z-index: 99;
}

}