@charset "utf-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	vertical-align: baseline;
	text-decoration: none;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	height: 100%;
}
body {
	width: 100%;
	height: 100%;
	margin: 0;
	background-color: #000;
	padding: 0 0 60px 0;
	overflow: hidden;
}
body::after {
	content: "";
	position: fixed;
	top: -10px;
	left: 0;
	width: 100%;
	height: 10px;
	-webkit-box-shadow: 0px 0px 30px rgba(0,0,0,.8);
	-moz-box-shadow: 0px 0px 30px rgba(0,0,0,.8);
	box-shadow: 0px 0px 30px rgba(0,0,0,.8);
	z-index: 1000;
}
body::before {
	content: "";
	position: fixed;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 10px;
	-webkit-box-shadow: 0px 0px 30px rgba(0,0,0,.8);
	-moz-box-shadow: 0px 0px 30px rgba(0,0,0,.8);
	box-shadow: 0px 0px 30px rgba(0,0,0,.8);
	z-index: 1000;
}
.center {
	max-width: 1100px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
.wrap-center {
	text-align: center;
	display: inline-block;
	margin: 0 auto;
	max-width: 1060px;
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 60px;
	z-index: 1000;
	width: 100%;
}
.wrap-center.nav {
	top: 50%;
	height:0px;
	margin-top: -25px;
}
.visor {
	position: absolute;
	width: 100%;
	top: 0;
	bottom: 0;
	z-index: 1;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #1e1e1e;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #1e1e1e;
	z-index: 1;
	-webkit-transition: opacity 1s;
	-moz-transition: opacity 1s;
	-o-transition: opacity 1s;
	transition: opacity 1s;
}
.btn-mask {
	position: absolute;
	width: 50px;
	height: 70px;
	top: 50%;
	margin: -25px 0 0 0;
	left: 0;
	overflow:hidden;
}
.btn-mask.right{
	left: auto;
	right: 0;
}
.btn-prev, .btn-next {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 50%;
	margin: -25px 0 0 0;
	left: 0;
	border-radius: 50%;
	background-color: rgba(0,0,0,0.7);
	color: #FFF;
	text-align: left;
	font-size: 26px;
	cursor: pointer;
	padding: 5px 0 0 5px;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}
.btn-prev img, .btn-next img{
	width: 40px;
	height: auto;
	fill: #fff
}
.btn-next {
	left: auto;
	right: 0;
}
.btn-next img{
	transform: rotate(180deg)
}
.btn-prev:hover, .btn-next:hover{
	transform: scale(1.1,1.1);
}
.btn-prev:active, .btn-next:active{
	transform: scale(0.9,0.9);
}
.btn-prev:hover img, .btn-next:hover img{
	-webkit-filter: brightness(1);
	filter: brightness(1);
}
.wrap-center.panel {
	top: auto;
	bottom: 60;
	padding: 5px 0px 5px 5px;
	height: 1px;
}
.btn{
	padding: 0 10px 0 10px;
	cursor: pointer;
	z-index: 1000
}
#btn_minimizar {
	display: none;
}
.btn.play{
	float: left;
}
.btn.vr {
	float: right;
	border-right:dashed 1px #666666;
}
.btn.full {
	margin-top: 22px;
	float: right;
}
.btn.full:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	opacity: 0.7;
}
.wrap-center.thumbnails {
	top: auto;
	bottom: 0;
	height: 60px;
	padding: 22px 0 0 0;
	max-width: 500px;
}
.thumb {
	display: inline-block;
	margin: 0 5px 0 5px;
	width: 20px;
	height: 20px;
	background-color: rgba(255,255,255,0.3);
	border: solid 1px rgba(255,255,255,1);
	border-radius: 50%;
	background-size: 1px 1px;
	background-repeat: no-repeat;
	cursor: pointer;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
	opacity: 0.7;
}
.thumb:hover {
    -ms-transform: scale(2); /* IE 9 */
    -webkit-transform: scale(2); /* Safari */
    transform: scale(2);
	margin: 0 10px 0 10px;
	background-size: auto 100%;
}
.selected {
    -ms-transform: scale(2); /* IE 9 */
    -webkit-transform: scale(2); /* Safari */
    transform: scale(2);
	margin: 0 10px 0 10px;
	background-size: auto 100%;
	opacity:1;
}
.thumb:active, .selected:active {
    -ms-transform: scale(1.3); /* IE 9 */
    -webkit-transform: scale(1.3); /* Safari */
    transform: scale(1.3);
	background-size: auto 100%;
	opacity:0.7;
}
.psv-navbar {
	text-align: center;
	display: inline-block;
	margin: 0px;
	margin: 0 auto;
	max-width: 1050px;
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 60px;
	z-index: 1000;
	top: auto;
	bottom: 0;
	height: 50px;
	padding: 0px 5px 5px 5px;
	background-color: rgba(0,0,0,0.7);
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.psv-button{
	float: left;
	background-color: transparent;
	width: 40px;
	color: rgba(255,255,255,1) !important;
	z-index: 11000
}
.psv-overlay {
	opacity: 1
}
.psv-button .psv-button-svg * {
	fill: #fff;
}
.psv-button--hover-scale:not(.psv-button--disabled):hover .psv-button-svg {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	opacity: 0.7;
}
.psv-zoom-button {
	cursor: default;
	width: 150px;
	padding: 18px 0 0 20px;
}
.psv-autorotate-button{
	padding: 7px 0 0 14px;	
}