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

.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;
	float: left;
	
	margin: 0px 45px;
	padding: 4px 0px;
	min-height: 120px;
	min-width: 100px;
	text-align: center;
}
.als-item ul{
	padding:0px;	
}
.als-item .model-name{
	display:block;
}
.als-item .model-photo{
	text-align:center;
	width:285px;
	height:125px;
	display:block;
}
.als-item img{
	display: inline-block;
	margin: 0 auto;
	vertical-align: bottom;
}
.als-item .features{
	list-style:none;
	display:block;
}
/***********************************************
 * prev, next: buttons styling
 **********************************************/
 
.als-prev, .als-next {
	position: absolute;
	cursor: pointer;
	clear: both;
}
.als-prev{
	left:0px;
	top:50%;
}
.als-next{
	right:0px;
	top:50%;
}
