
header, footer, nav, body{
	font-family: Tahoma;
	font-size: 18px;
	margin: 0px;
	padding: 0px;
}

input:focus{
	outline: none;
}

p{
	display: block;
    margin-block-start: 0px;
    margin-block-end: 0px;
    margin-inline-start: 0px;
	margin-inline-end: 0px;
}

.cVentana{
	display: flex;
	flex-direction: column;
}

.cEncabezado{
	background: white;
	top: 0;
	width: 100%;
	position: fixed;

	min-height: 70px;
	text-align: center;
	
	display: flex;
	flex-direction: row;
	
	border-bottom: 1px solid LightBlue;
	box-shadow: 0px 0px 15px LightBlue;
	
	z-index: 2;
}

.cLogoMain{
	width: 100%;
	
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.cSombraEncabezado{
	background: gray;
	min-height: 70px;
}

.cCuerpo{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	
	/* min-height: 200px; */
}

.cCajaHerramientas{	
	display: flex;
	flex-direction: column;
	
	min-width: 200px;
}

.cComando{
	margin: 5px;
	padding: 2px;
	height: 24px;
}

.cContenido{
	width: 100%;
	max-width: 800px;
	
	display: flex;
	flex-direction: column;
}

.cArticulo{
	margin: 10px;
	border: 2px solid black;
	border-color: black;
	padding: 8px;
	
	min-width: 80px;
	min-height: 80px;
}

.cPanelDerecho{
	
	min-width: 250px;
}

.cPanelInferior{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	
	width: 100%;
}

.cBoton{
	background: #3a7999;
	border: none;
	color: #f2f2f2;
	padding: 10px;
	font-size: 14px;
	border-radius: 5px;
	box-sizing: border-box;
	transition: all 500ms ease; 
	width: 180px;	
	height:36px;
}

.cBoton:hover{
	width: 190px;
	background: #3a79FF;
}

.cBoton:active{
	background: blue;
}

.cLink{
	color: blue;
	text-decoration: underline;
	cursor: pointer;
}


/*====== Pie de pagina comun ==================*/
footer{
	padding-top: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;	
}

footer img{
	margin-right: 3px;
	vertical-align: -25%;
}

footer a, footer input{
	font-family: Arial;
	font-size: 14px; 
	font-weight: normal;
	color: blue;
}

footer a {
	margin: 7px;
	text-decoration: none;
}

footer input{
	width: 148px; 
	border-style: none;
}

footer a:visited, footer input:visited {
	color: blue;
	text-decoration: none;
}
footer a:hover, footer input:hover {
	color: purple;
	text-decoration: underline;
}
footer a:active, footer input:active {
	color: red;
	text-decoration: underline;
}

.tooltip {
	position: relative;
	display: inline-block;
}

.tooltip .tooltiptext {
	visibility: hidden;
	width: 200px;
	background-color: #555;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -60px;
	opacity: 0;
	transition: opacity 0.3s;
	font-size: 14px;
}

.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}