/* panorama layout */
.panorama,
.panorama-view {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.panorama,
.panorama-container {
	position: relative;

}

.panorama-container img {
	height: 100%;
	width: 50%;
	position: absolute;
	top: 0;
	left: 0;
}

.panorama .info,
.panorama-view .area {
	position: absolute;
	display: block;
}

.panorama .info {
	right: 10px;
	bottom: 10px;
}

.panorama .controls {
	position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    margin: auto;
    width: 100%;
    height: 26px;
    font-size: 0;
}

.panorama .controls a {
	display: block;
	float: left;
	margin-right: 5px;
}

.panorama .preloader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.panorama .info,
.panorama .controls a {
	opacity: 0.6;
	filter: alpha(opacity=60);
	background-color: transparent;
	color: #fff;
	font: bold 11px/14px Arial, sans-serif;
	text-decoration: none;
	padding: 0px 7px;
	cursor: pointer;
	-webkit-transition: all .25s linear;
	-moz-transition: all .25s linear;
	-o-transition: all .25s linear;
	-ms-transition: all .25s linear;
	transition: all .25s linear;
}

.panorama .info:hover,
.panorama .controls a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.panorama-view .area {
	opacity: 0.25;
	filter: alpha(opacity=25);
	background-color: #000;
	cursor: pointer;
	overflow: hidden;
	text-indent: -9999px;
}

.panorama-view .area.circle {
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.panorama-view .area:hover {
	opacity: 0.5;
	filter: alpha(opacity=50);
}

.panorama-view img {
	-o-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

.panorama .info,
.panorama-view .area,
.panorama .controls a {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.panorama .controls a.prev,
.panorama .controls a.stop,
.panorama .controls a.next {
	display: block;
	text-indent: -999px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.panorama .controls a.next {
	right: 15px;
    border-width: 20px 0 20px 15px;
    border-color: transparent transparent transparent rgba(255,255,255,0.8);
}

.panorama .controls a.prev {
	left: 15px;
    width: 0;
    border-width: 20px 15px 20px 0;
    border-color: transparent rgba(255,255,255,0.8) transparent transparent;
}


.panorama .controls a.prev span,
.panorama .controls a.next span {
	font-size: 0;
	/*width: 10px;
	height: 14px;*/
}

.panorama .controls a.prev span {
	background-position: 0 0;
}

.panorama .controls a.next span {
	background-position: -11px 0;
}

.panorama .controls a.stop span {
	margin: 2px 1px;
	width: 10px;
	height: 10px;
	background-position: -22px -2px;
}

html[dir="rtl"] .panorama .panorama-view,
body[dir="rtl"] .panorama .panorama-view,
.rtl .panorama .panorama-view {
	direction: ltr;
}

.panorama .controls a.stop span { display: none; }


