/**
 * 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;
	margin: 0;
	padding: 0;
	*zoom: 1;
}

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

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



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

.bx-wrapper .bx-pager.bx-default-pager a {
	background:radial-gradient(#fefefe, #adadad);
	text-indent: -9999px;
	display: block;
	width: 12px;
	height: 12px;
	margin: 0 10px;
	outline: 0;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: radial-gradient(#3fa5c3, #377c90);
}

/* DIRECTION CONTROLS (NEXT / PREV) */


.bx-wrapper .bx-controls-direction a{
	position: absolute;
	top: 50%;
	margin-top: -1em;
	width: 100%;
	height: 0px;
	text-indent: -9999px;
	z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.bx-prev {
	width:40px ;
	height:40px;
	top:45%;
	left: 17vw;
	z-index:100;
	background: url(../images/top/btn_prev.png) no-repeat;
}

.bx-wrapper .bx-controls-direction a.bx-next {
	width:40px ;
	height:40px;
	top:45%;
	left: 80vw;
	z-index:100;
	background: url(../images/top/btn_next.png) no-repeat;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}
@media screen and (max-width: 768px) {
	.bx-wrapper .bx-controls-direction a.bx-prev {
		left: 5vw;
	}
	.bx-wrapper .bx-controls-direction a.bx-next {
		left: 87vw;
	}
}
