/**
 * 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
 */


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

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


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

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-controls-direction a {
    position:absolute;
	top:94px;
    left:-44px;
    width:70px;
    height:70px;
    border-radius:50%;
    overflow:hidden;
    font-size:0;
    line-height:0;
    color:transparent;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
}
.bx-controls-direction a:before {
    display:block;
    width:24px;
    height:59px;
    content:"";
    background:url(../images/slider-prev-next.png) no-repeat;
    -webkit-transition: margin .3s linear;
    -moz-transition: margin .3s linear;
    transition: margin .3s linear;
}
.bx-controls-direction .bx-next {
    left:auto;
    right:-46px;
}
.bx-controls-direction .bx-next:before {
    background-position:-24px 0;
    margin:3px 0 0 28px;
}
.bx-controls-direction .bx-next:hover:before {
    background-position:-24px -59px;
    margin:3px 0 0 36px;
}
.bx-controls-direction .bx-prev:before {
    background-position:0 0;
    margin:3px 0 0 19px;
}
.bx-controls-direction .bx-prev:hover:before {
    background-position:0 -59px;
    margin:3px 0 0 11px;
}
.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

@media screen and (max-width: 980px) {
    .bx-controls-direction .bx-prev { left: -10px;}
    .bx-controls-direction .bx-next { right: -10px;}
}