.als-container {
	position: relative;
	width: 100%;
	margin: 0px auto;
	z-index: 0;
}

/****************************************
 * viewport styling
 ***************************************/

.als-viewport {
	position: relative;
	overflow: hidden;
	margin: 0px auto;
}

/***************************************************
 * wrapper styling
 **************************************************/

.als-wrapper {
	position: relative;
	/* if you are using a list with <ul> <li> */
	list-style: none;
}

/*************************************
 * item: single list element
 ************************************/

.als-item {
	position: relative;
	display: block;
	text-align: center;
	cursor: pointer;
	float: left;
	width: 175px !important;
}

/***********************************************
 * prev, next: buttons styling
 **********************************************/
 
 @media (max-width: 1240px) {
	 .als-prev {
		left: 5px;
	 }
	 
	 .als-next {
		right: 5px;
	 }
 }
 
 @media (min-width: 1241px) {
	.als-prev {
		left: 105px;
	 }
	 
	 .als-next {
		right: 105px;
	 }
 }
 
.als-prev, .als-next {
	position: absolute;
	cursor: pointer;
	clear: both;
	top: 5px;
	/*opacity: 0.75;*/
}

.als-prev:hover, .als-next:hover {
	background: #F39814;
	opacity: 1;
}

.als-prev img, .als-next img {
	height: 40px;
	width: 30px !important;
}