﻿/*****************************************************
 * generic styling for ALS elements: outer container
 ******************************************************/

.als-container {
	position: relative;
	width: 100%;
	margin: 0px auto;
	z-index: 0;
    display:inline-block;
}

/****************************************
 * viewport styling
 ***************************************/

.als-viewport {
	position: relative;
	overflow: hidden;
	margin: 0px auto;
    height:21px !important;
    display:inline-block;
    
}

/***************************************************
 * wrapper styling
 **************************************************/

.als-wrapper {
	position: relative;
	/* if you are using a list with <ul> <li> */
	list-style:  none;
    
    height:21px !important;
    display:inline-block;
}

/*************************************
 * item: single list element
 ************************************/

.als-item {
	position: relative;
	display: block;
	text-align: center;
	cursor: pointer;
	float: left;
    display:inline-block;
}

/***********************************************
 * prev, next: buttons styling
 **********************************************/
 
.als-prev, .als-next {
	position: absolute;
	cursor: pointer;
	clear: both;
    display:inline-block;
}

/*************************************
 * specific styling for #demo3
 ************************************/

#Scroller {
	margin: 0px auto;
}

#Scroller .als-item {
	/*margin: 0px 5px;
	padding: 4px 0px;
	min-height: 20px;
	min-width: 85px;*/
	text-align: center;
}

#Scroller .als-item img {
	display: block;
	margin: 0 auto;
	vertical-align: middle;
}

#Scroller .als-prev, #Scroller .als-next {
	top:1px;
}

#Scroller .als-prev {
	left: -15px;
}

#Scroller .als-next {
	right: -15px;
}

.HideScrollArrows {display:none;}
.ShowScrollArrows {display:inline-block;}