﻿/*****************************************************
 * 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;
	cursor: pointer;
	float: left;
}

/***********************************************
 * prev, next: buttons styling
 **********************************************/

.als-prev
{
    position: absolute;
	cursor: pointer;
	clear: both;
    left:25px;
    top:190px;
}

.als-next {
	position: absolute;
	cursor: pointer;
	clear: both;
    left:25px;
    top:140px;
}

.als-close
{
    position:absolute;
    right:20px;
    top:20px;
}