/* para todas as tags... serve tipo pra inicializa��o */
* {
  margin: 0;
  padding: 0;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 16px;
  color: #403e3e;
}

h1 {
  font-size: 24px;
  margin-bottom: 24px;
}
h2 {
  font-size: 20px;
  margin-bottom: 20px;
}
h3 {
  font-size: 18px;
  margin-bottom: 18px;
}
p {
  margin: 10px;
}

/* ORGANIZA��O DO LAYOUT */
#geral {
  width: 1080px;
  height: 500px;
  left: 50%;
  top: 50%;
  margin-left: -540px;
  margin-top: -250px;
  background-color: #fff;
  position: absolute;
}
#geral #center {
  width: 800px;
  height: 300px;
  left: 50%;
  top: 0;
  margin-left: -400px;
  margin-top: 0px;
  background-color: #fff;
  position: absolute;
  text-align: center;
}
form,
input,
textarea {
  color: #333;
}

/* OUTRAS TAGS DO HTML */
body {
  background-color: #fff;
}

a {
  color: #64b8ba;
  text-decoration: none;
}
a:hover {
  background-color: #64b8ba;
  color: #ffffff;
}
