* {
	padding: 0;
	margin: 0;
}

body {
	background: #000;
    font-family: 'Open Sans', sans-serif;
}

header {
	background: #000;
	color: #cc0000;
	text-align: center;
	padding: 50px 0;
	height: 0px;
	position: absolute;
	top: 0;
	width: 100%;
}

header .titulo {
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
}

main {
	margin-top: 10px;
}

main .contenedor {
	width: 90%;
	max-width: 800px;
	margin: auto;
}

/* ------------------------- */
/* Estilos CSS del Reproductor */
/* ------------------------- */
.fm-video {
	width: 50%;
	box-shadow: 0px 0px 0px 2px rgba(51,51,51,1.0);
	/* -------Color Recuadro FILETE ---002c49----- 0bb9ee---------- */
}

/* box-shadow: 0px 0px 0px 1px = ancho del FILETE */


.fm-video .vjs-control-bar {
	background: #000000;
	color: #3399ff;
}

.fm-video .vjs-play-progress,
.fm-video .vjs-volume-level {
	background: #3399ff;
}

.fm-video .vjs-slider {
	background: #cccccc;
}


.video-js:hover .vjs-big-play-button {
	background: rgba(0,120,215,1.0);
}


.fm-video .vjs-big-play-button {
	background: rgba(0,120,215,1.0);
	
	position: center;
	width: 40px;
	height: 40px;
	line-height: 37px;
	border-radius: 100%;
	border-width: 2px;
}


.fm-video .vjs-big-play-button:hover {
	background: rgba(0,92,193,1.0);
	
}


article {
	margin: 10px 0;
	background: #000;
	color: #fff;
	text-align: center;
	font-size: 16px;
	line-height: 28px;
	padding: 2px;
}

@media screen and (max-width: 600px) {
	header {
		position: relative;
		height: auto;
	}

	main {
		margin-top: 10px;
	}
}