/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */
    /* (A) WHOLE PAGE */
* { box-sizing: border-box; }
body { 
	padding: 0; 
	margin: 0; 
	background: #000;
	font-family: Arial,helvetica,sans-serif;
	}

.navbar-header img {
	margin-top: -10px;
}

.mycover {
	width: 100%;
}

/* (B) MAIN */
/* same or more bottom padding than footer height */
#pageMain { padding-bottom: 50px; }

#noticia {
	width: 100%;
	margin-top: -20px;
}
		
/* (C) FOOTER */
#pageFoot {
  /* (C1) FIXED AT BOTTOM */
  position: fixed;
  bottom: 0; left: 0; z-index: 9;

  /* (C2) DIMENSIONS */
  width: 100%; height: 40px;

  /* (C3) CENTER TEXT */
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 40px;
	background-color: #000;
	color: #fff;
	font-size: x-small;
	position: fixed;
	bottom: 0;
}

