/* Copyright (C) YOOtheme GmbH, YOOtheme Proprietary Use License (http://www.yootheme.com/license) */

/*
 * Widgetkit Gallery: Showcase Box Style
 */


.wk-gallery-showcasebox .slides-container {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	overflow: hidden;
}


/* Slideshow: Buttons
----------------------------------------------------------------------------------------------------*/

.wk-gallery-showcasebox .slides-container { position: relative; }

.wk-gallery-showcasebox .slides-container:hover .next,
.wk-gallery-showcasebox .slides-container:hover .prev {
	top: 50%;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	background: url(<?=$url;?>media/widgetkit/widgets/gallery/styles/showcase_box/images/buttons.png) 0 50px no-repeat;
}

.wk-gallery-showcasebox .slides-container:hover .next {
	right: 30px;
	background-position: 0 0;
}

.wk-gallery-showcasebox .slides-container:hover .prev {
	left: 30px;
	background-position: 0 -50px;
}


/* Slideset: Container
----------------------------------------------------------------------------------------------------*/

.wk-gallery-showcasebox .wk-slideset > div {
	padding: 0 60px;
	border: 1px solid #222;
	background: #555;
	background: -moz-linear-gradient(
					50% 0%,
					#444 0%,
					#555 7%,
					#444 100%
				);
	background: -webkit-gradient( 
					linear,
					50% 0%,
					50% 100%,
					color-stop(0%, #444),
					color-stop(7%, #555),
					color-stop(100%, #444)
				);
	box-shadow: 0 0 20px rgba(0,0,0,0.5) inset,
				0 0 50px rgba(0,0,0,0.2) inset;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.wk-gallery-showcasebox .wk-slideset.no-buttons > div { padding: 0; }

.wk-gallery-showcasebox .wk-slideset .sets { padding: 15px 0; }


/* Slideset: Content
----------------------------------------------------------------------------------------------------*/

.wk-gallery-showcasebox .wk-slideset .set > li {
	margin: 0 3px;
	padding: 1px;
	background: #333;
	background: -moz-linear-gradient(
					50% 0%,
					#333 80%,
					#222 100%
				);
	background: -webkit-gradient( 
					linear,
					50% 0%,
					50% 100%,
					color-stop(80%, #333),
					color-stop(100%, #222)
				);
    border-radius: 5px;
	cursor: pointer;
}

.wk-gallery-showcasebox .wk-slideset .set > li > div {
	padding: 5px;
	background: #444;
	border-radius: 5px;
	box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset;
}

.wk-gallery-showcasebox .wk-slideset .set > li > div > img {
	display: block;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
	opacity: 0.8;
}

/* Hover */
.wk-gallery-showcasebox .wk-slideset .set > li:hover {
	background: #333;
	background: -moz-linear-gradient(
					50% 0%,
					#333 0%,
					#222 100%
				);
	background: -webkit-gradient( 
					linear,
					50% 0%,
					50% 100%,
					color-stop(0%, #333),
					color-stop(100%, #222)
				);
	box-shadow: 0 2px 3px rgba(0,0,0,0.3);
}

.wk-gallery-showcasebox .wk-slideset .set > li:hover > div {
	background: #666;
	background: -moz-linear-gradient(
					50% 0%,
					#666 0%,
					#555 100%
				);
	background: -webkit-gradient( 
					linear,
					50% 0%,
					50% 100%,
					color-stop(0%, #666),
					color-stop(100%, #555)
				);
}

.wk-gallery-showcasebox .wk-slideset .set > li:hover > div > img { opacity: 1; }

/* Active */
.wk-gallery-showcasebox .wk-slideset .set > li.active {
	background: #222;
	background: -moz-linear-gradient(
					50% 0%,
					#111 0%,
					#222 100%
				);
	background: -webkit-gradient( 
					linear,
					50% 0%,
					50% 100%,
					color-stop(0%, #111),
					color-stop(100%, #222)
				);
	box-shadow: 0 0 1px rgba(255,255,255,0.2);
}

.wk-gallery-showcasebox .wk-slideset .set > li.active > div {
	background: #444;
    box-shadow: 0 1px 4px rgba(0,0,0,0.7) inset;
}

.wk-gallery-showcasebox .wk-slideset .set > li.active > div > img { opacity: 1; }


/* Slideset: Buttons
----------------------------------------------------------------------------------------------------*/

.wk-gallery-showcasebox .wk-slideset > div { position: relative; }

.wk-gallery-showcasebox .wk-slideset > div .next,
.wk-gallery-showcasebox .wk-slideset > div .prev {
	top: 50%;
	width: 30px;
	height: 32px;
	margin-top: -16px;
	background: url(<?=$url;?>media/widgetkit/widgets/gallery/styles/showcase_box/images/navigation_buttons.png) 0 0 no-repeat;
}

.wk-gallery-showcasebox .wk-slideset > div .next {
	right: 25px;
	background-position: 0 0;
}

.wk-gallery-showcasebox .wk-slideset > div .prev {
	left: 25px;
	background-position: 0 -96px;
}


.wk-gallery-showcasebox .wk-slideset > div .next:hover { background-position: 0 -32px; }
.wk-gallery-showcasebox .wk-slideset > div .next:active { background-position: 0 -64px; }
.wk-gallery-showcasebox .wk-slideset > div .prev:hover { background-position: 0 -128px; }
.wk-gallery-showcasebox .wk-slideset > div .prev:active { background-position: 0 -160px; }



