/*****************************************************
 * generic styling for ALS elements: outer container
 ******************************************************/

.als-container {
	position: relative;
	width: 100%;
	margin: 0px auto;
	z-index: 0;
	padding: 0;
}

/****************************************
 * viewport styling
 ***************************************/

.als-viewport {
	position: relative;
	overflow: hidden;
    max-width: 940px;
	margin: 0px auto;
    height: auto !important;
}
@media (max-width: 960px) {
	.als-viewport {
		max-width: 720px;
	}
}
@media (max-width: 768px) {
	.als-viewport {
		max-width: 480px;
	}
}
@media (max-width: 588px) {
	.als-viewport {
		max-width: 240px;
	}
}

/***************************************************
 * wrapper styling
 **************************************************/

.als-wrapper {
	position: relative;
}

/*************************************
 * item: single list element
 ************************************/

.als-item {
	position: relative;
	display: block;
	float: left;
	width: 240px;
    padding: 0 20px;
    min-height: 260px;
}

/***********************************************
 * prev, next: buttons styling
 **********************************************/

.als-prev, .als-next {
	position: absolute;
	cursor: pointer;
	clear: both;
	top: 30%;
	z-index: 2;
}
.als-prev{
	left: -50px;
}
@media (max-width: 1157px) {
	.als-prev{
		left: 10px;
	}
}
.als-next{
	right: -50px;
}
@media (max-width: 1157px) {
	.als-next{
		right: 10px;
	}
}
