#main {
	width: 100%; 
	height: 100%; 
	overflow: hidden;
	
}
.cbp-bislideshow {
	list-style: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	padding: 0;
	margin: 0;
}
.cbp-bislideshow li {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: opacity 1s;
	-moz-transition: opacity 1s;
	transition: opacity 1s;
}

/* If background-size supported we'll add the images to the background of the li */
.backgroundsize .cbp-bislideshow li {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	background-position: center center;
}

/* ...and hide the images */
.backgroundsize .cbp-bislideshow li img {
	display: none;
}
.cbp-bislideshow li img {
	display: block;
	width: 100%;
	height: 100%;
}
.cbp-bicontrols {
	position: fixed;
	top: 40%;
	width: 100%;
	height: auto;
}
.cbp-bicontrols span {
	float: left;
	width: 100px;
	height: 100px;
	position: relative;
	cursor: pointer;
}
span.cbp-binext {
	margin-right: 4%;
	width: 50px;
	height: 50px;
	background: url(../images/arrow_next.png);
	opacity: 0.7;
}
span.cbp-binext:hover {
	margin-right: 4%;
	width: 50px;
	height: 50px;
	background: url(../images/arrow_next.png);
	opacity: 1;
}
span.cbp-biprev {
	margin-left: 4%;
	width: 50px;
	height: 50px;
	background: url(../images/arrow_prev.png);
	opacity: 0.7;
}
span.cbp-biprev:hover {
	margin-left: 4%;
	width: 50px;
	height: 50px;
	background: url(../images/arrow_prev.png);
	opacity: 1;
}
.cbp-bicontrols span.cbp-binext {
	float: right;
}

/* Fallback */
.no-js.no-backgroundsize .cbp-bislideshow li:first-child {
	opacity: 1;
}
.no-js.backgroundsize .cbp-bislideshow li:first-child img {
	display: block;
}