* {
  padding: 0;
  margin: 0;
}

body {
  padding: 100px 0;
  background: #ccc;
  font-family: Arial;
  color: #333;
}
#tabs {
  width: 400px;
  margin: auto;
}
#tabs > ul {
  list-style-type: none;
  overflow: hidden;
}
#tabs > ul > li {
  float: left;
}
#tabs > ul > li > a {
  display: block;
  height: 30px;
  line-height: 30px;
  margin-right: 2px;
  background: #a2a2a2;
  color: #cecece;
  text-decoration: none;
  padding: 0 15px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

#tabs > div {
  display: none;
  padding: 15px;
  background: #eaeaea;
}
#tabs > div:first-of-type {
  display: block;
  background: #eaeaea;
}
#tabs > ul > li:first-of-type a {
  color: #333;
  background: #eaeaea;
}
p {
  line-height: 1.5em;
  margin-bottom: 1em;
}
