/**
 * @about: 	style.css - Contains all styles for the image-fullwidth article template
 */

.at-is-content-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	padding: 0;
	z-index: 1;
}

/**
 * at-header-image-fullwidth
 */

.at-is {
	position: relative;
}

.at-is .at-is-content {
	display: block;
	max-width: 960px;
	height: 100%;
	margin: 0 auto;
	padding: 80px 8%;
	overflow: auto;
	text-align: left;
}

/**
 * slideshow
 */

.at-is-images {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	vertical-align: top;
}

.at-is-images ul {
	margin: 0;
	list-style: none;
	vertical-align: top;
}

.at-is-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	z-index: 500;
	transition: opacity 2s, height .2s;
	background: transparent none no-repeat 50% 50%;
	background-size: cover;
}

.at-is-image.show {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	z-index: 1000;
	transition: opacity 2s;
}

.at-is-next, .at-is-previous {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	padding: 8px 10px;
	line-height: 1.5em;
	text-decoration: none;
	font-weight: normal;
	font-size: 150%;
	color: #fff;
	transition: 0.1s linear all;
	z-index: 1000;
	user-select: none;
}

.at-is-next {
	left: auto;
	right: 0;
}

.no-touch .at-is-next:hover, .no-touch .at-is-previous:hover,
.touch .at-is-next:active, .touch .at-is-previous:active {
	bottom: .8em 2.5em;
	opacity: .8;
}

.ie8 .at-is-next:hover,
.ie8 .at-is-previous:hover {
	background-color: #6e6f6f;
}

/*.at-is-previous .icon-left-dir:before,*/
/*.at-is-next .icon-right-dir:before {*/
	/*margin: 0;*/
	/*font-size: 1.5em;*/
	/*font-weight: bold;*/
	/*text-decoration: none;*/
/*}*/

.at-is-arrow-text {
	display: none;
}