/* Centrar div horizontal y verticalmente http://www.programacionweb.net/articulos/articulo/?num=461 */


#contenedor{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1020px;
	height: 592px;
	margin-top: -296px;  /*heigh entre 2*/
	margin-left: -510px; /*width entre 2*/
	background:#000000;
}

