@import url('demo.css');

* {
	margin: 0px;
	padding: 0px;
}

body {
	background-color: #0a3d82;
}

/*imagen fondo*/
#fondo {
	width:100%; /*todo el largo del navegador...*/
	/*todo el alto del navegador...*/
	position:fixed; /*tendrá una posición absoluta...*/
	z-index:-1; /*llevamos el fondo al fondo total*/
	top:0px; /*comienza arriba del todo...*/
	left:0; /* y a la izquierda del todo...*/
	overflow:hidden;
}

/*contenedor principal*/
#wrap {
	width: 1024px;
	margin-right: auto;
	margin-left: auto;
	padding-bottom: 0px;
}

/*contenedor logotipo*/
#wrap #header {
	height: 120px;
	width: 1024px;
	background-image: url(../images/logo360.png);
	background-repeat: no-repeat;
	margin-top: 60px;
	margin-bottom: 15px;
}
#wrap #stick {
	height: 150px;
	width: 150px;
	margin-bottom: 15px;
	float: right;
}
#wrap #tel {
	height: 45px;
	width: 300px;
	float: right;
	margin-top: 80px;
	text-align: right;
}



/*contenedor contenido*/
#wrap #mainpage {
	margin-top: 0px;
	margin-bottom: 0px;
}

/*contenido*/
#wrap #mainpage #content {
	float: left;
	width: 1024px;
}

.clear{
	clear:both;
}
