/* FONTS ***************************************************************************************************************************************************/
	/* Light */
	@font-face {
		font-family: "Roboto Condensed";
		font-style: normal;
		font-weight: 300;
		src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("Roboto_Condensed/RobotoCondensed-Light.ttf") format('truetype');
	}
	@font-face {
		font-family: "Roboto Condensed";
		font-style: italic;
		font-weight: 300;
		src: local('Roboto Condensed Light Italic'), local('RobotoCondensed-LightItalic'), url("Roboto_Condensed/RobotoCondensed-LightItalic.ttf") format('truetype');
	}
	 
	/* Normal */
	@font-face {
		font-family: "Roboto Condensed";
		font-style: normal;
		font-weight: 400;
		src: local('Roboto Condensed Regular'), local('RobotoCondensed-Regular'), url("Roboto_Condensed/RobotoCondensed-Regular.ttf") format('truetype');
	}
	@font-face {
		font-family: "Roboto Condensed";
		font-style: italic;
		font-weight: 400;
		src: local('Roboto Condensed Italic'), local('RobotoCondensed-Italic'), url("Roboto_Condensed/RobotoCondensed-Italic.ttf") format('truetype');
	}
	 
	/* Bold */
	@font-face {
		font-family: "Roboto Condensed";
		font-style: normal;
		font-weight: 700;
		src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("Roboto_Condensed/RobotoCondensed-Bold.ttf") format('truetype');
	}
	@font-face {
		font-family: "Roboto Condensed";
		font-style: italic;
		font-weight: 700;
		src: local('Roboto Condensed Bold Italic'), local('RobotoCondensed-BoldItalic'), url("Roboto_Condensed/RobotoCondensed-BoldItalic.ttf") format('truetype');
	}
/* FONTS ***************************************************************************************************************************************************/

body {
	margin: 0;
	padding: 0;
	width: 100%;
	background: #333333;
	font-family: 'Roboto Condensed', Verdana, sans-serif;
}

#container {
	position: relative;
	width: 75%; /* width: 62.5em; */
	margin: 0 auto;
	background: #eeeeee;
	border: solid;
	border-color: grey;
	border-width: 0.2em;
}

header {
	margin: 0 auto;
	display: flex; /* define un primer FLEX CONTAINER (para usar flexbox) */
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
    width:100%;
    background-image: url("img/header.jpg");
    background-size: cover;
}

#title {
	margin: auto 1em;
	display: flex; /* define un segundo FLEX CONTAINER */
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #FFD700;
}

#logo {
	padding: 1em;
	margin-right: 3em;
}

.sec {
	text-align: center;
	margin: 0 auto;
	padding-top: 0.5em;
	padding-bottom: 1em;
}

#descrip {
	background-color: rgba(255, 255, 255, .5);
	text-align: justify;
	padding: 1.5em;
	margin: 1em;
	border: solid;
	border-color: grey;
	border-width: 0.1em;
}

#secmsg{
    display: none;
}

#configParams > label {
	margin-left: 2em;
}

#msg {
	text-align: center;
}

#botones {
	padding-top: 1em;
	padding-bottom: 2em;
}

.redBar::-moz-progress-bar {
	background-color: red;
}

.greenBar::-moz-progress-bar {
	background-color: green;
}

.yellowBar::-moz-progress-bar {
	background-color: yellow;
}