/* PHASE 3: Layout */

.content {
  position: relative;
  margin: 0 auto;
  background: #fff;
  width: 900px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.content:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 240px;
  width: 1px;
  background: #ccc;
}

.content-sidebar {
  float: left;
  width: 200px;
  min-height: 200px;
  padding: 20px;
}

.content-main {
  float: left;
  width: 620px;
  min-height: 200px;
  padding: 20px;
}
