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

.als-container {
	position: relative;
	width: 100%;
	margin: 0px auto;
	z-index: 0;
  overflow: hidden;
}

/****************************************
 * viewport styling
 ***************************************/

.als-viewport {
	position: relative;
	overflow: hidden;
	margin: 0px;
  width: 100% !important;
}
/* bottom drop shadow */
.als-viewport:after
{
  height: 70px;
  width: 120%;
  position: absolute;
  z-index: 5;
  content: " ";
  display: block;
  bottom: -70px;
  left: -10%;
  right: auto;
  box-shadow: 0px -20px 80px rgba(36,36,36,0.8);
}

.level2title.als
{
  position: relative;
  z-index: 5;
}
/* top drop shadow */
.level2title.als:after
{
  height: 70px;
  width: 120%;
  position: absolute;
  z-index: -7;
  content: " ";
  display: block;
  bottom: 0px;
  left: -10%;
  right: auto;
  box-shadow: 0px 20px 80px rgba(36,36,36,0.8);
}

/***************************************************
 * 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: left;
	cursor: pointer;
	float: none;
}

/***********************************************
 * prev, next: buttons styling
 **********************************************/
 
.als-prev, .als-next {
	position: absolute;
	cursor: pointer;
	clear: both;
  right: 5px;
  z-index: 5001;
  width: 20px;
  height: 9px;
  background-color: transparent !important;
  background-image: url('../../images/lvl2nav_arrows.png');
  background-repeat: no-repeat;
  padding: 0px !important;
}
.als-prev {
	top: 40px;
  bottom: auto;
  background-position: 5px 50%;
}
.als-next {
	top: auto;
  bottom: 5px;
  background-position: -20px 50%;
}