body {
  margin: 0;
  padding: 0;
  background: #ccc;
}
 
.nav ul {
  list-style: none;
  background-color: #444;
  text-align: center;
  padding: 0;
  margin: 0;
}
.nav li {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  line-height: 40px;
  height: 40px;
  border-bottom: 1px solid #888;
}
 
.nav a {
  text-decoration: none;
  color: #fff;
  display: block;
  transition: .3s background-color;
}
 
.nav a:hover {
  background-color: #005f5f;
}
 
.nav a.active {
  background-color: #fff;
  color: #444;
  cursor: default;
}
 
@media screen and (min-width: 600px) {
  .nav li {
    width: 120px;
    border-bottom: none;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
 
  .nav li {
    display: inline-block;
    margin-right: -4px;
  }
}

.content {
    width: 70%;
    margin: auto;
    padding-top: 20px;
}

.leftSideBar {
    position:relative;
    float:left;
    margin-right: 15px;
    width:20%;
    min-width:200px;
}

#profilePic {
    width:200px;
}

.rightSideBar {
    position:relative;
    float:left;
    width:75%;
}

footer {
    float:left;
    position:relative;
    width:100%;
    text-align:center;       
}
