



/* Showcase
-------------*/

#awOnePageButton .view-slide{
	display: none;
}

/* This class is removed after the showcase is loaded */
/* Assign the correct showcase height to prevent loading jumps in IE */
.showcase-load {
	height: 421px; /* Same as showcase javascript option */
	overflow: hidden;
}



/* Container when content is shown in slider */
.showcase{position: absolute; bottom:0; left:28px;}

	.showcase-content-container{
		background-color: #000;
		margin-bottom:17px;

	}

/*	@media screen and (-webkit-min-device-pixel-ratio:0) {
     .showcase-content-container{margin-bottom:21px;}
}*/

	
	
	/* Navigation arrows */
	.showcase-arrow-previous, .showcase-arrow-next {
		position: absolute;
		width: 15px;
		height: 27px;
		top: 220px;
		cursor: pointer;
	}
	
	.showcase-arrow-previous{
		background: url('../img/arrow-left.png') 0 0 no-repeat;
		left: -23px;
	}
	

	
	.showcase-arrow-next{
		right: -23px;
		background: url('../img/arrow-right.png') 0 0 no-repeat;
	}
	

	
	/* Content */
	.showcase-content
	{
		background-color: #404040;
		text-align: center;
		position:relative;
	}
		
		.showcase-content-wrapper{
			height: 421px;
    		left: 0;
    		position: absolute;
    		text-align: center;
    		top: 0;
    		width: 713px;
    		z-index: 1000;
		}
		

	
	/* Thumbnails */
	.showcase-thumbnail-container /* Used for backgrounds, no other styling!!! */
	{
		background-color: #404040;
		margin-left:-28px;
		margin-right:-30px;
	}
	
	.showcase-thumbnail-wrapper{overflow: hidden;}
		
		.showcase-thumbnail
		{
			width: 80px;
			height: 50px;
			cursor: pointer;
			border: solid 1px #333;
			position: relative;
			opacity:0.75;
			-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; 
			filter: alpha(opacity=75);
		}
		
			.showcase-thumbnail-caption
			{
				position: absolute;
				bottom: 2px;
				padding-left: 10px;
				padding-bottom: 5px;
			}
			
			.showcase-thumbnail-content
			{
				padding: 10px;
				text-align: center;
				padding-top: 25px;
			}
			
			.showcase-thumbnail-cover
			{
				background-image: url(../images/black-opacity-40.png);
				position: absolute;
				top: 0; bottom: 0; left: 0; right: 0;
			}
		
		.showcase-thumbnail:hover
		{
			border: solid 1px #000;
		}
		
			.showcase-thumbnail:hover .showcase-thumbnail-cover
			{
				display: none;
			}
		
		.showcase-thumbnail.active
		{
			border: solid 1px #000;
			opacity:1;
			-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; 
			filter: alpha(opacity=100);
		}
		
			.showcase-thumbnail.active .showcase-thumbnail-cover
			{
				display: none;
			}
	
	.showcase-thumbnail-wrapper-horizontal
	{
		padding: 10px;
	}
	
		.showcase-thumbnail-wrapper-horizontal .showcase-thumbnail
		{
			margin-right: 10px;
			width: 80px;
		}
	
	.showcase-thumbnail-wrapper-vertical
	{
		padding: 10px;
	}
	
		.showcase-thumbnail-wrapper-vertical .showcase-thumbnail
		{
			margin-bottom: 10px;
		}
		
	

		
		/* Hide button text */
		.showcase-thumbnail-button-forward span span,
		.showcase-thumbnail-button-backward span span,
		.showcase-button-wrapper
		{
			display: none;
		}
	


/* Clear (used for horizontal thumbnails)
-------------------------------------------*/

.clear
{
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
	float: none;
}

