/* Showcase
-------------*/

#shocase_margin, #shocase_margin2 {
	margin: 10px 0;
}

.showcase
{
	position: relative;
	margin: auto;
	border:1px solid #c0c0c0;
}

/* This class is removed after the showcase is loaded */
/* Assign the correct showcase height to prevent loading jumps in IE */
.showcase-load
{
	height: 256px; /* Same as showcase javascript option */
	width 180px;
	overflow: hidden;
	margin: 0 auto;
}
	
	/* Navigation arrows */
	.showcase-arrow-previous, .showcase-arrow-next
	{
		position: absolute;
		background: url('../img/arrows.png');
		width: 33px;
		height: 33px;
		top: 100px;
	}
	
	.showcase-arrow-previous
	{
		left: -60px;
	}
	
	.showcase-arrow-previous:hover
	{
		background-position: 0px -34px;
	}
	
	.showcase-arrow-next
	{
		right: -56px;
		background-position: -34px 0;
	}
	
	.showcase-arrow-next:hover
	{
		background-position: -34px -34px;
	}
	
	/* Content */
	.showcase-content
	{
		text-align: center;
		background-color: #000;
	}
		
		.showcase-caption
		{
			width:160px;
			color: #000;
			padding: 8px 10px;
			text-align: left;
			position: absolute;
			bottom: 0px; left: 0px; right: 10px;
			display: none;
			background-image: url(../img/caption-bg.png);
		}

.showcase-caption h2{
	color:#fff;
}
	
	/* インジケータ(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;
		}
	
/* Clear (used for horizontal thumbnails)
-------------------------------------------*/

.clear
{
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
	float: none;
}

