/* global */
.theatre {
	display: block;
	overflow: hidden;
	position: relative;
	list-style: none;
	padding: 0px;
}

.theatre-actor {
	margin: 0px;
}

/* 3d */
.theatre-3d .theatre-actor {
	position: absolute;
	-moz-box-shadow: 10px -10px 15px black;
	-webkit-box-shadow: 10px -10px 15px black;
	-o-box-shadow: 10px -10px 15px black;	
	box-shadow: 10px -10px 15px black;
	border: 2px solid white;
}

/* 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: black;
	filter:alpha(opacity=25);
	-moz-opacity:0.25;
	-khtml-opacity: 0.25;
	opacity: 0.25;
	z-index: 1000;
}
.theatre-control span {
	background-image: url('images/theatre-controls.png');
	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 -37px;	
}
.theatre-next:hover span {
	background-position: -97px 0px;	
}
.theatre-prev span {
	background-position: -67px -37px;
}
.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;
}



/*
3,8 down 3,-29
-32,8 up -32,-29
-67,3 left -67,-34
-97,3 right -97,-34
-128,5 play -128,-32
-157,5 stop -158,-32

*/
