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, 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, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {	margin: 0;
	padding: 0;	border: 0;	font-size: 100%; font: inherit;	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
body {	line-height: 1; }
ol, ul { list-style: none;}
blockquote, q {	quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
table {	border-collapse: collapse; 	border-spacing: 0; }



/**
 * GENERAL CONTAINER
 */
html,body {
	background: #efefef;
	margin: 0; padding: 0;
	margin-top: -8px;
}

.stage {
	/*width: 720px; height: 420px;*/
	background: #000;
	/*margin: 100px auto;*/ 
	position: relative;
}

.container {
	width: 100%; height: 100%;
	background: #000;
	position: relative;
	overflow: hidden;
}


/**
 * CONTROLS
 */
.control_bar {
	background-color: rgba(0,0,0,0.9);
	width: 100%; height: 28px;
	position: fixed;
	bottom:0;
}

.control_bar_2 {
	background-color: rgba(0,0,0,0.9);
	width: 100%; height: 28px;
	position: relative;
	top: -30px;
}

.btn {
	position: absolute; top: 2px;
	border: none;
}

.fullExtBtn {
	position: absolute; 
	top: 14px;
	right: 65px;
	border: none;

	background: url(images/controls/full_iframe.png) center no-repeat;
	/*background-color: #000;*/
	width:24px; height: 24px;
	display: none;

}

.play {
	background: url(images/controls/play.png) center no-repeat;
	width:24px; height: 24px;
}

.play:focus, .pause:focus, .stop:focus, .progressBar:focus, .mute:focus, .unmute:focus, .fullscreen:focus, .window:focus, .continueBtn:focus {
	outline: none;
}

.pause {
	background: url(images/controls/pause.png) center no-repeat;
	width:24px; height: 24px;
}

.stop {
	background: url(images/controls/stop.png) center no-repeat;
	width:24px; height: 24px;
}

.timer {
	font-family: arial;
	font-weight: bold;
	font-size: 13px;
	color: #E2E2E2;
	position: absolute;
	margin-top: 7px;
}

.mute {
	background: url(images/controls/unmute.png) center no-repeat;
	width:24px; height: 24px;
}

.unmute {
	background: url(images/controls/mute.png) center no-repeat;
	width:24px; height: 24px;
}

.fullscreen {
	background: url(images/controls/full.png) center no-repeat;
	width:24px; height: 24px;
}

.window {
	background: url(images/controls/window.png) center no-repeat;
	width:24px; height: 24px;
}

.progressBar {
	-webkit-appearance: none;
	background-color: #2d2d2d;
	height: 20px;
}

.progressBar::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-color: #fff;
    width: 10px;
    height: 20px;
}

.volumeBar {
	/*transform:rotate(90deg);
	-ms-transform:rotate(90deg);
	-webkit-transform:rotate(90deg);

    background-color: #efefef;
    width: 100px; height:100px;
    
	position: absolute;
	top: -54px;
	opacity: 0;
	*/

	transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	width: 40px;
	height: 50px;
	position: absolute;
	top: -38px;
	margin-left: -10px;
	opacity: 0;
}

.volumeBar:hover {
	opacity: 1;
}


/**
 * CUE POINTS
 */
 .cue_bar {
	/*background-color: rgba(0,0,0,0.8);*/
	width: 100%; height: 25px;
	position: fixed;
	bottom: 0;
	display: none;
}

 .cue_bar_2 {
	/*background-color: rgba(0,0,0,0.8);*/
	width: 100%; height: 25px;
	position: relative;
	top: -52px;
	display: none;
}

.cuepoint {
	position: absolute;
	cursor: pointer;
	background: url(images/controls/cue.png) center no-repeat;
	width:24px; height: 24px;
}

.cueTooltip {
	background-color: #fff;
	font-family: arial;
	font-size: 10px;
	font-weight: bold;
	color: #000;
	display: none;
	position: absolute;
	top: -24px;	left: 0px;
	padding: 4px;
	border-radius: 0px;
	width: 35%;
}

/**
 * TRACKS ICONS
 */
 .track_panel {
 	width: 100%; height: 100%;
	background: rgba(255,255,255,0);
	position: absolute;
	top: 0px; left: 0px;
 }

.track {
	display: none;
	position: absolute;
	cursor: pointer;
	opacity: 1;
}

.track:hover {
	opacity: 0.8;
}

/**
 * REGIONS ICONS
 */
 .regions_panel {
 	width: 100%; height: 100%;
	background: rgba(255,255,255,0);
	position: absolute;
	top: 0px; left: 0px;
 }

.region {
	display: none;
	position: absolute;
	cursor: pointer;
	background-color: #fff;
	opacity: 0.3;

	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.region:hover {
	opacity: 0.5;
}



/**
 * INFO PANEL
 */
 .info_panel {
 	width: 100%; height: 100%;
	background: rgba(255,255,255,1);
	position: absolute;
	top: 0px; left: 0px;
	display: none;
	
	transition: opacity 0.5s;
	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;

	overflow: hidden;
	/*overflow:scroll !important; */
	-webkit-overflow-scrolling:touch !important;
 }

.content_panel {
	width: 100%; height: 100%;
	background: rgba(255,255,255,1);
	position: absolute;
	top: 0px; left: 0px;
}

 .continueBtn {
 	opacity: 0.7;
 	background-color: #414141;
 	color: #fff;
 	cursor: pointer;
 	font-weight: bold;
 	position: absolute;
 	top: 11px;
	right: 37px;
 	width: 30px; height: 30px;
 	display: none;
 	background: url('images/controls/close.png') repeat;
 	border: none;
 	padding: 0;
 	text-indent: -500px;

 	transition: opacity 0.5s;
	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
 }

 .continueBtn:hover {
	opacity: 1;
 }




.meter {
	height: 16px;  /* Can be anything */ 
	position: absolute;
    background: #555;
	padding: 0px;

	/*-webkit-box-shadow: inset 0 -1px 1px rgba(255,255,255,0.3);
	-moz-box-shadow   : inset 0 -1px 1px rgba(255,255,255,0.3);
	box-shadow        : inset 0 -1px 1px rgba(255,255,255,0.3);
*/
	top: 6px;
}

.meter > span {
	display: block;
	height: 100%;
	background-color: rgb(255,255,255);
	position: relative;
	overflow: hidden;
}


/* ESTILO IFRAMES */

.iframes{

	padding-top: 20px;
}



@media only screen and (min-device-width : 768px) and (max-device-width : 1024px)  { 

	.fullscreen{

		/*display: none;*/
	}

	.mute{
		display: none;
	}

	.stop{
		display: none;
	}
}

.iframe_full {
	position:fixed; 
	top:0px; left:0px; 
	bottom:0px; right:0px; 
	width:100%; height:100%; 
	border:none; margin:0; 
	padding:0; overflow:hidden; 
	z-index:999999;
}

.iframe {
	width:640px; height:360px;
	border:none;
}