/**
 * 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 auto;
	padding: 0;
 *zoom: 1;
}
.bx-wrapper img {
	max-width: 100%;
	display: block;
}
/** THEME
===================================*/


@media screen and (min-width:769px){
/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left: 0;
	background: url(../../img/top/prev.png) no-repeat 0 0;
	background-size: contain;
}
.bx-wrapper .bx-next {
	right: 0;
	background: url(../../img/top/next.png) no-repeat 0 0;
	background-size: contain;
}
.bx-wrapper .bx-controls-direction a {
	position: absolute;
	bottom: 0;
	width:55px;
	height:55px;
	text-indent: -9999px;
	z-index: 9999;
}
}
@media screen and (max-width:768px) {
/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left: 0;
	background: url(../../img/top/prev_sp.png) no-repeat 0 0;
	width: 30px;
	height: 30px;
	background-size: contain;
}
.bx-wrapper .bx-next {
	right: 0;
	width: 30px;
	height: 30px;
	background: url(../../img/top/next_sp.png) no-repeat 0 0;
	background-size: contain;
}
.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	outline: 0;
	text-indent: -9999px;
	z-index: 9999;
}
}