/* 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: 350px; /* Same as showcase javascript option */
	overflow: hidden;
}

/* Container when content is shown in slider */
.showcase
{
	position: relative;
	margin: auto;
}

	.showcase-content-container
	{
		background-color: #E5E5DF;
	}
	
	/* Navigation arrows */
	.showcase-arrow-previous, .showcase-arrow-next
	{
		position: absolute;
		background: url('../images/arrows.png');
		width: 31px;
		height: 31px;
		top: 144px;
		cursor: pointer;
	}
	
	.showcase-arrow-previous
	{
		left: 20px;
		z-index: 1000;
	}
	
	.showcase-arrow-previous:hover
	{
		background-position: 0px -31px;
	}
	
	.showcase-arrow-next
	{
		background-position: -31px 0;
		right: 20px;
		z-index: 1000;
	}
	
	.showcase-arrow-next:hover
	{
		background-position: -31px -31px;
	}
	
	/* Content */
	.showcase-content
	{
		background-color: #fff;
		text-align: center;
	}
		
		.showcase-content-wrapper
		{
			text-align: center;
			height: 470px;
			width: 700px;
			display: table-cell;
			vertical-align: middle;
		}
				
		/* Styling the caption */
		.showcase-caption
		{
			/*background-image: url(../images/showcase-caption_background.png);*/
			background: transparent url(../images/showcase-caption_background.png) repeat-x left top;
			bottom: 0px; left: 0px; right: 0px;
			display: none;
			height: 146px;
			padding: 0px 0px 4px 0px;
			/*
			height: 142px;
			padding: 4px 30px;
			*/
			position: absolute;
			text-align: left;
		}
		
	.showcase-onepage .showcase-content
	{
		margin-bottom: 10px;
	}
	
	/* Button Wrapper */
	.showcase-button-wrapper
	{
		clear: both;
		margin-top: 10px;
		text-align: center;
	}
	
		.showcase-button-wrapper span
		{
			margin-right: 3px;
			padding: 2px 5px 0px 5px;
			cursor: pointer;
			font-size: 12px;
			color: #444444;
		}
	
		.showcase-button-wrapper span.active
		{
			color: #fff;
		}
	
