html{
	margin: 0px;
	padding: 0px;
	height: 100%;
	width: 100%;
	overflow: hidden;/*Quito las barras de scroll Horizontal y Vertical*/
	/*overflow-y: hidden;Quito la barra vertical de scroll. No funciona en Opera*/
	/*overflow-x: hidden;Quito la barra vertical de scroll. No funciona en Opera*/
}
body {
	margin: 0px;
	padding: 0px;
	height: 100%;
	width: 100%;
	background-color: #000000;
	background-image: url(index/fondo.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
div#contenedor{
	padding: 0px;
	height: 800px;
	width: 1000px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -500px;
	margin-top: -400px;
}

