*{
	margin: 0;
	padding: 0;
}
body, textarea{
	font-size: 16px;
	font-family: 'Work Sans', sans-serif;
}
/* CLASES GENERALES */
.clickable{
	cursor: pointer;
}
.alineado{
	vertical-align: middle;
}
.oculto{
	display: none;
}
.carga{
	background-image: url("../imagenes/cargando.gif");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin: 0 auto;
	height: 80px;
	width: 80px;
	text-align: center;
}
.col-izq{
	float: left;
	vertical-align: top;
}
.col-dcha{
	float: right;
	vertical-align: top;
}
.alerta{
	background-color: #222222;
	color: #FFFFFF;
    font-size: 14px;
    position: absolute;
    padding: 6px;
    white-space: nowrap;
    z-index: 2;
}
.alerta:after 
{
	border-style: solid;
	border-width: 8px 8px 0;
	border-color: #222222 transparent;
	bottom: -8px;
	left: 15px;
	content: '';
	display: block;
	position: absolute;
	width: 0;
	z-index: 1;
}
#sombra{
	background-color: #000000;
	position: fixed;
	height: 100%;
	width: 100%;
	opacity: 0.7;
	z-index: 99;
}
.contenedor{
	padding: 16px;
}
/* FIN CLASES GENERALES */
/* LOGIN */
#login{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-shadow: 0 2px 2px #888888;
	-webkit-box-shadow: 0 2px 2px #888888;
	-moz-box-shadow: 0 2px 2px #888888;
	margin: 40px auto;
	text-align: center;
	width: 600px;
}
#login h1{
	background-color: #ff915b;
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
	color: #FFFFFF;
	font-size: 18px;
	padding: 8px;
}
#login form{
	background-color: #FFFFFF;
	border-radius: 4px;
	padding: 16px;
}
/* FIN LOGIN */
/* CUADRO FLOTANTE */
.cuadro-flotante{
	background-color: #FFFFFF;
	border-radius: 4px;
	display: none;
	max-width: 900px;
	min-width: 500px;
	position: fixed;
	top: 40%;
	left: 50%;
	z-index: 100;
}
.cuadro-flotante h2{
	background-color: #ff915b;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	color: #FFFFFF;
	font-size: 16px;
	padding: 10px;
}
/* FIN CUADRO FLOTANTE */
/* BOTONES */
button{
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1em;
	padding: 10px 14px;
}
.boton-panel{
	background-color: #ff915b;
	color: #FFFFFF;
	font-size: 14px;
}
.boton-accion{
	background-color: #90e23f;
	color: #FFFFFF;
}
.boton-extra{
	background-color: #5ca9ff;
	color: #FFFFFF;
	font-size: 14px;
	padding: 4px;
}
/* FIN BOTONES */
/* ESTRUCTURA PÁGINA */
header{
	background-color: #ff915b;
	box-shadow: 0 2px 2px #888888;
	-webkit-box-shadow: 0 2px 2px #888888;
	-moz-box-shadow: 0 2px 2px #888888;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	height: 40px;
	padding: 8px;
	line-height: 24px;
}
#menu-principal{
	color: #FFFFFF;
	float: left;
}
#menu-principal > menuitem{
	border-right: 1px solid #fdb998;
	padding: 0 12px;
}
#menu-principal > menuitem:last-child{
	border-right: none;
}
#menu-usuario{
	color: #FFFFFF;
	float: right;
}
#menu-usuario a{
	color: #000000;
}
footer{
	color: #999999;
	font-size: 14px;
	padding: 16px 0 0 0;
	text-align: center;
}
#principal{
	overflow: auto;
	padding: 16px;
}
.navegacion{
	color: #555555;
	font-size: 14px;
	margin-top: 16px;
	text-align: left;
}
.numeracion{
	float: right;
}
.numeracion > article{
	display: inline-block;
	padding: 6px;
	margin: 0 8px 8px 0;
}
.numeracion > article.pag-actual{
	background-color: #EDEDED;
}
/* FIN ESTRUCTURA PÁGINA */
/* FORMULARIOS */
.form-columna{
	display: inline-block;
	margin: 0 16px 16px 0;
	/*max-width: 30%;*/
	text-align: left;
	vertical-align: top;
}
.form-campo{
	margin: 16px 0;
}
.form-campo h3{
	font-size: 20px;
	margin-bottom: 10px;
}
.form-detalle{
	color: #666666;
	font-size: 14px;
	margin-bottom: 10px;
}
.form-error{
	background-color: #a92424;
	border-radius: 4px;
	color: #FFFFFF;
	opacity: 0.8;
	padding: 6px;
	margin-top: 20px;
}
input, select, textarea{
	border: 1px solid #DEDEDE;
	border-radius: 4px;
	font-size: 1em;
	padding: 8px;
}
input:read-only{
	background-color: #EDEDED;
}
/* FIN FORMULARIOS */
/* TABLAS */
table{
	font-size: 14px;
	text-align: left;
	width: 100%;
}
table tr th td{	
	border-collapse: collapse;
}
tr th{
	border-bottom: 1px solid #888888;
}
tr td{
	border-bottom: 1px solid #CDCDCD;
}
th, td{
	padding: 6px 4px;
}
table a{
	color: #1e8de2;
	text-decoration: none;
}
.traduccion{
	border-bottom: 1px solid #DEDEDE;
	clear: both;
	overflow: auto;
	padding: 4px 0;
}
.traduccion:last-child{
	border: none;
}
.previsualizacion{
	position: relative;
	width: 300px;
}
.previsualizacion video{
	width: 100%;
}
/* FIN TABLAS */
/* FILTROS */
.menu-filtros{
	font-size: 14px;
	text-align: left;
}
.menu-filtros input, .menu-filtros select{
	padding: 4px;
}
.menu-filtros article{
	display: inline-block;
	margin: 0 16px 16px 0;
}
/* FIN FILTROS */