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


/* ==================================================================================
   LAYOUT
   ================================================================================== */
/* ---- base (all) ---- */ 
.bxslider {
    list-style-type: none;
    
}
.bx-wrapper {
    /*height: 746px !important;
    /*max-height: 746px;
	max-height: 46.625rem;*/
	position: relative;
	margin: 0 auto;
	padding: 0;
	*zoom: 1;
}
.bx-wrapper img {
	max-width: 100%;
	display: block;
}

.bill-img {min-height: 100%;}

/*.bx-viewport {height: 100% !important;}*/


/* ==================================================================================
   PAGER DOTS
   ================================================================================== */
/* ---- base (all) ---- */ 
.bx-pager, .bx-controls-auto {display: none;}
/* ---- 768 ( + ) ---- */
@media screen and (min-width: 48em){ /* 768px */
.bx-pager, .bx-controls-auto {display: inherit;position: absolute;bottom: 10px;width: 100%;}
.bx-pager {
    z-index: 99;
	text-align: center;
	font-size: 1em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}
.bx-pager .bx-pager-item,
.bx-controls-auto .bx-controls-auto-item {display: inline-block;*zoom: 1;*display: inline;}
.bx-pager.bx-default-pager a {
	background: #666;
	text-indent: -9999px;
	display: block;
	width: 11px;
	height: 11px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.bx-pager.bx-default-pager a:hover,
.bx-pager.bx-default-pager a.active {background: #f4efe6;}
}


/* ==================================================================================
   DIRECTION CONTROLS (NEXT / PREV)
   ================================================================================== */
/* ---- base (all) ---- */ 
.bx-prev, .bx-next {display: none;}
/* ---- 768 ( + ) ---- */
@media screen and (min-width: 48em){ /* 768px */
.bx-prev, .bx-next {display: inherit;}
.bx-prev {
    left: 2em;
    background: url("../img/global/arrow-prev.png") no-repeat;
    -webkit-backface-visibility: hidden; /*prevents safari flicker*/
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.bx-next {
    right: 2em;
    background: url("../img/global/arrow-next.png") no-repeat;
    -webkit-backface-visibility: hidden; /*prevents safari flicker*/
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.bx-prev:hover {opacity: 0.5;}
.bx-next:hover {opacity: 0.5;}
.bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -60px;
	outline: 0;
	width: 35px;
	height: 84px;
	text-indent: -9999px;
	z-index: 9999;
}
.bx-controls-direction a.disabled {display: none;}
}
/* ---- 960 ( + ) large desktop ---- */
@media screen and (min-width: 60em){ /* 960px */
.bx-prev {left: 3em;}
.bx-next {right: 3em;}
}

/* ORIGINAL DIRECTION CONTROLS */
/*.bx-prev {left: 3em;background: url("../js/bxslider/images/controls.png") no-repeat 0 -32px;}
.bx-next {right: 3em;background: url("../js/bxslider/images/controls.png") no-repeat -43px -32px;}
.bx-prev:hover {background-position: 0 0;}
.bx-next:hover {background-position: -43px 0;}
.bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 9999;
}
*/
