
.cCuerpo h1{
	font-size: 20px;
	color: red;
	margin-bottom: 24px;
	
	text-align: center;
}

.cFondo{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-left: 14px;
	padding-right: 14px;
}

.cCuadro{
	/*background: yellow;*/
	max-width: 450px;
	width: 100%;
}

.cEncabezadoTabla{
	background: CornflowerBlue;
	border-radius: 10px;
	padding: 10px;
	text-align: center;
	margin-bottom: 10px;
	color: white;
}

.cListaArchivos{
	background: AliceBlue;
	border-radius: 10px;
	padding: 10px;
	padding-top: 14px;
	padding-bottom: 14px; 
	margin: 0px;
	min-height: 200px;
	border: 1px solid LightSkyBlue;
	
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cArchivo{
	color: SteelBlue;
	width: 98%;
	padding: 10px;
	
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: top;

	border: 1px solid AliceBlue;
	cursor: pointer;
}

.cArchivo:hover{
	background: PaleGreen;
	border: 1px solid SpringGreen;
}

.cArchivo img{
	border-radius: 8px;
}

.cArchivo a{
	text-decoration: none;
}