﻿/*****************************************************
 * 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;
	
    margin: 0px 8px;
	min-height: 123px;
	min-width: 103px;

}

.als-item a			{display: block; padding: 4px 0px; font-size: 9.5pt; color: #484649; font-weight: normal; text-decoration: none; background-color: transparent; cursor: pointer;}
.als-item a:active	{text-decoration: none;}
.als-item a:link	{text-decoration: none;}
.als-item a:hover	{color: #a61832; text-decoration: none;}
.als-item a:visited	{text-decoration: none;}

/***********************************************
 * prev, next: buttons styling
 **********************************************/
 
 .als-prev, .als-next {
	position: absolute;
	cursor: pointer;
	clear: both;
	top: 50px;
}

.als-prev {
	left: 4px;
}

.als-next {
	right: 4px;
}