/* para todas as tags... serve tipo pra inicialização */
*{
	margin: 0;
	padding: 0;
	font-family: "Trebuchet MS", arial;
	font-size: 12px;
	color: #FFF;
}


/* ORGANIZAÇÃO DO LAYOUT */
#geral{
	width: 900px;
	height: 100px;
	left: 50%;
	top: 50%;
	margin-left: -450px;
	margin-top: -50px;
	background-color: #00C1C1;
	position: absolute;
}
#geral #center{
	width: 450px;
	height: 100px;
	left: 50%;
	top: 0;
	margin-left: -220px;
	margin-top: 0px;
	background-color: #00C1C1;
	position: absolute;
	text-align: center;
}

/* OUTRAS TAGS DO HTML */
body{
	background-color: #00C1C1;
	background-image: url(../img/background.jpg);
	background-repeat: repeat-x;
}

a{
	color: #FF6600;
	text-decoration: none;
}
a:hover{
	background-color: #DD790B;
	color: #FFFFFF;
}