/* ---- layout ---- */

body {
  background: url(background.jpg);
  line-height: 1.4;
  font-family: Georgia;
  color: #eee;
}

.container {
  overflow: hidden;
  background: rgba(33,68,132,.5);
  width: 860px;
  margin: 20px auto;
  padding: 40px;
  border: 10px solid rgba(255,255,255,.5);
  border-radius: 10px;
  box-shadow: 6px 6px 10px rgba(0,0,0,.5);
}

header {
  overflow: hidden;
  margin-bottom: 100px;
}

header h1 {
  float: left;
}

header address {
  float: right;
  font-size: 18px;
}

article {
  float: left;
  width: 560px;
  margin-right: 60px;
}

article section {
  margin-bottom: 50px;
}

article section:last-child {
  margin-bottom: 0;
}

aside {
  float: left;
  width: 240px;
}

aside section.rate {
  margin-bottom: 25px;
  border-bottom: 1px solid #fff;
}

footer {
  width: 910px;
  margin: 0 auto 40px;
  padding-right: 50px;
  text-align: right;
  font-size: 14px;
  color: #ccc;
}

footer a {
  color: #ccc;
}


/* ---- text ---- */

h1, h2, h3, h4, h5 {
  margin-bottom: 10px;
  font-family: Helvetica, sans-serif;
  color: #fff;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

h6 {
  margin-bottom: 5px;
  color: #eee;
}

a {
  text-decoration: none;
  color: #fff;
}

a:hover {
  text-decoration: underline;
}


/* ---- format ---- */

p,
cite {
  margin-bottom: 25px;
}

ul {
  list-style: disc;
  margin-left: 20px;
}

q {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

q:before {
  content: '\201C';
}

q:after {
  content: '\201D';
}

cite {
  display: block;
  text-align: right;
}

cite:before {
  content: '\2013\a0';
}