#BasesDeDatos .item {
	display: flex;
	margin: 0px;
	flex-direction: row;
	width: 340px;
	flex-wrap: wrap;
	border-bottom: 1px solid #990000;
}

#BasesDeDatos .imagen {
	width: 100px;
	height: 60px;
	padding-top: 5px;
	padding-bottom: 5px;
}

#BasesDeDatos .imagen img {
	transition: all .5s ease-in-out;
	height: 50px;
	width: 100px;
}

#BasesDeDatos .imagen img:hover {
	opacity: 0.5;
	transition: all .5s ease-in-out;
	cursor: pointer;
}

#BasesDeDatos .texto {
	width: 240px;
	align-self: center;
	padding-right: 10px;
	display: flex;
	text-align: left;
}
#BasesDeDatos .texto p{
	padding-left: 10px;
	margin: 0;
}

#BasesDeDatos .EncabezadoIndizaciones {
	background-color: #990000;
	color: #FFFFFF;
	font-weight: bold;
	padding: 10px;
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}