/* para todas as tags... serve tipo pra inicialização */
*{
	margin: 0;
	padding: 0;
	font-family: "Trebuchet MS", arial;
	font-size: 12px;
	color: #FFFFFF;
}


/* ORGANIZAÇÃO DO LAYOUT */
#geral{
	width: 900px;
	height: 500px;
	left: 50%;
	top: 50%;
	margin-left: -450px;
	margin-top: -250px;
	background-color: #333333;
	position: absolute;
}
#geral #center{
	width: 440px;
	height: 200px;
	left: 50%;
	top: 50%;
	margin-left: -220px;
	margin-top: -100px;
	background-color: #333333;
	position: absolute;
	text-align: center;
}

/* OUTRAS TAGS DO HTML */
body{
	background-color: #333333;
}

a.linktxt{
	color: #FFFFFF;
	text-decoration: none;
}
a.linktxt:hover{
	background-color: #6699CC;
}