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

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



.rte .showcase
{
	position: relative;
	margin: auto;
}

	.showcase-content-container
	{
		background-color: #000;
	}
	
	/* Navigation arrows */
	.rte .showcase-arrow-previous, .rte .showcase-arrow-next
	{
		position: absolute;
		background: url('../img/arrows.png');
		width: 33px;
		height: 33px;
		top: 220px;
		cursor: pointer;
	}
	
	.rte .showcase-arrow-previous
	{
		left: -32px;
	}
	
	.rte .showcase-arrow-previous:hover
	{
		background-position: 0px -34px;
	}
	
	.rte .showcase-arrow-next
	{
		right: -32px;
		background-position: -34px 0;
	}
	
	.rte .showcase-arrow-next:hover
	{
		background-position: -34px -34px;
	}
	
	/* Content */
	.rte .showcase-content
	{
		background-color: #000;
		text-align: center;
	}
		
		.rte .showcase-content-wrapper
		{
			text-align: center;
			height: 415px;
			width: 557px;
			display: table-cell;
			vertical-align: middle;
		}
		
		/* Styling the tooltips */
		.rte .showcase-plus-anchor
		{
			background-image: url('../img/plus.png');
			background-repeat: no-repeat;
		}
		
		.rte .showcase-plus-anchor:hover
		{
			background-position: -32px 0;
		}
		
		.rte div.showcase-tooltip
		{
			background-color: #fff;
			color: #000;
			text-align: left;
			padding: 5px 8px;
			background-image: url(../img/white-opacity-80.png);
		}
	

