@charset "utf-8";
/* CSS Document */

/* global */
.theatre {
	display: block;
	overflow: hidden;
	position: relative;
	list-style: none;
	padding: 0px;
}

.theatre-actor {
	margin: 0px;
}

/* Orbit */
.theatre-orbit .theatre-actor {
	position: absolute;
}

/* 3d */
.theatre-3d .theatre-actor {
	position: absolute;
/*	-moz-box-shadow: 2px -1px 15px #3D3D3D;
	-webkit-box-shadow: 10px -10px 15px black;
	-o-box-shadow: 10px -10px 15px black;	
	box-shadow: 10px -10px 15px black;*/
	border: 2px solid #DDDDDD;
}

/* horizontal, vertical */
.theatre-vertical .theatre-actor, .theatre-horizontal .theatre-actor {
	top: 0px;
	position: absolute;
}

/* fade */
.theatre-fade .theatre-actor,
.theatre-show .theatre-actor,
.theatre-slide .theatre-actor {
	display: block;
}

/* Controls */
.theatre-control {
	position: absolute;
/*	background-color: white;*/
	opacity: 0.6;
	z-index: 1000;
	cursor: pointer;
	-moz-user-select: none;
}

.theatre-control:hover {
	opacity: 0.8;
}
.theatre-control-horizontal-next {
	cursor:pointer;
}
.theatre-control-horizontal-prev {
	cursor:pointer;
}

.theatre-control span {
	background-image: url('../images/theatre-controls.jpg');
	background-repeat: no-repeat;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -20px;
	margin-top: -20px;	
	width: 30px;
	height: 30px;
}
.theatre-next span {
	background-position: -97px -0px;	
	border:solid red 0px;
	z-index:2000;
	position:absolute;
	top:415px;
}
.theatre-next:hover span {
	background-position: -97px 0px;	
	border:solid green 0px;
}
.theatre-prev span {
	background-position: -67px -0px;
	border:solid red 0px;
	z-index:2000;
	position:absolute;
	top:415px;
}
.theatre-prev:hover span {
	background-position: -67px 0px;
}
.theatre-control-vertical-next span {
	background-position: -32px 8px;	
}
.theatre-control-vertical-next:hover span {
	background-position: -32px -29px;	
}
.theatre-control-vertical-prev span {
	background-position: 0px 8px;
}
.theatre-control-vertical-prev:hover span {
	background-position: 0px -29px;
}

/*.theatre-play span {
	background-position: -128px -32px;
}
.theatre-play:hover span {
	background-position: -128px 6px;
}
.theatre-stop span {
	background-position: -157px -32px;
}
.theatre-stop:hover span {
	background-position: -157px 6px;
}*/

/* Horizontal */
.theatre-control-horizontal-next, .theatre-control-horizontal-prev {
	top: 0px;
	width: 30px;
	height: 100%;
}
.theatre-control-horizontal-next {
	right: 0px;
}
.theatre-control-horizontal-prev {
	left: 0px;
}
/*.theatre-control-horizontal-play, .theatre-control-horizontal-stop {
	bottom: 0px;
}
.theatre-control-horizontal-play {
	right: 50%;
	width: 30px;
	height: 30px;
}
.theatre-control-horizontal-stop {
	left: 50%;
	width: 30px;
	height: 30px;	
}*/
/* Vertical */
.theatre-control-vertical-next, .theatre-control-vertical-prev {
	right: 0px;
	width: 100%;
	height: 30px;
}
.theatre-control-vertical-next {
	top: 0px;
}
.theatre-control-vertical-prev {
	bottom: 0px;
}
/*.theatre-control-vertical-play, .theatre-control-vertical-stop {
	display: none !important;
}*/

