.cycle-slideshow, .cycle-slideshow * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.cycle-slideshow {
	width: 100%;
	height: 100%;
	color: #fff;
	overflow: hidden;
	background: url(http://malsup.github.com/images/spinner.gif) 50% 50% no-repeat;
}
.cycle-slideshow ul, .cycle-slideshow li {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.cycle-slideshow li div {
	width: 400px;
	padding: 20px;
	background: rgba(51,51,51,.8);
	border: 1px solid rgba(255,255,255,.2);
	margin: 300px 0 0 200px;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}
.cycle-slideshow .button {
	-webkit-transition: all 0.5s ease-in-out;
	nowhitespace: afterproperty;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	width: auto;
	background: #444;
	border-bottom: 3px solid #333;
	color: white;
	cursor: pointer;
	display: inline-block;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	margin: 0;
	padding: 10px 20px 11px;
	position: relative;
	text-align: center;
	text-decoration: none;
	-webkit-transition: background-color 0.15s ease-in-out;
	-moz-transition: background-color 0.15s ease-in-out;
	-o-transition: background-color 0.15s ease-in-out;
	transition: background-color 0.15s ease-in-out;/* Hovers */ /* Sizes */ /* Colors */ /* Radii */ /* Layout */ /* Disabled ---------- */
}
.cycle-slideshow .button:hover, .cycle-slideshow .button:focus {
	color: white;
	background-color: #333;
	padding: 12px 20px 9px;
}
.cycle-slideshow .button:active {
	-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset;
	-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset;
}
.cycle-slideshow .prev:before, .next:before {
	font-family: 'Fontawesome';
	color: #FFF;
	font-weight: normal;
	font-size: 40px;
	position: absolute;
}
.cycle-slideshow .prev {
	opacity: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	cursor: pointer;
	height: 60px;
	width: 40px;
	position: absolute;
	left: 15px;
	top: 50%;
	margin-top: -25px;
	z-index: 1002;
	margin: 0;
	text-align: center;
	background:url(../img/bkg_arrows.png);
}
.cycle-slideshow .next {
	opacity: 0;
 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	cursor: pointer;
	height: 60px;
	width: 40px;
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -25px;
	z-index: 1002;
	margin: 0;
	text-align: center;
	background:url(../img/bkg_arrows.png);
}
.cycle-slideshow .next:before {
	content: "\f105";
    right: 12px;
    color: #1377ce;
    top: 25px;
    font-family: FontAwesome;
}
.cycle-slideshow .prev:before {
	content: "\f104";
    left: 12px;
    color: #1377ce;
    top: 25px;
    font-family: FontAwesome;
}
.cycle-slideshow:hover .prev {
	-moz-animation: bounceInLeft 0.7s;
	-webkit-animation: bounceInLeft 0.7s;
	animation: bounceInLeft 0.7s;
 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
}
.cycle-slideshow:hover .next {
	-moz-animation: bounceInRight 0.7s;
	-webkit-animation: bounceInRight 0.7s;
	animation: bounceInRight 0.7s;
 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
}
