

/*divs of content*/

#wrapper{
    width: 1000px;
    margin: auto;
}

#leftcolumn{
    width: 250px;
    padding: 20px 28px 29px 28px;
    background-color: #a63f5e;
    margin-right: 10px;
    float: left;
}

#middlecolumn{
    width: 480px;
    padding: 36px 28px 50px 28px;
    background-color: #a63f5e;
    margin-right: 10px;
    float: left; 
    height: 638px;
}

#rightcolumn{
    width: 250px;
    padding: 36px 28px 50px 28px;
    background-color: #a63f5e;
    float: left;
    height: 638px;
}

#footer{
    width: 1000px;
    background-color: #bf637e;
    padding: 30px;
    float: left;
    text-align: center;
}









/*typography*/

h1{
    width: 1000px;
    background-color: #bf637e;
    padding: 28px 10px 7px 28px;
    font-family: verdana;
    font-size: 30px;
    color: white;
    text-align: left;
    font-weight: normal;
}

h2{
    font-family: verdana;
    font-size: 20px;
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
}

p{
    font-family: futura;
    text-align: left;
    font-size: 12px;
    color: white;
    line-height: 1.5;
}

h3{
    font-family: verdana;
    font-size: 14px;
    color: white;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
}

h4{
    font-family: verdana;
    font-size: 20px;
    color: white;
    font-weight: bold;
    margin-bottom: 10px;    
}

h5{
    font-family: verdana;
    font-size: 20px;
    color: white;
    font-weight: bold;
    margin-bottom: 10px;    
}








/*links*/

a{
    font-family: verdana;
    font-weight: lighter;
    color: white;
    font-size: 14px;
    text-decoration: underline;
    opacity: 0.75;
}

a:hover{
    font-size: 14px;
    color: white;
    opacity: 1;
}


/*navbar*/

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #bf637e;
}

ul li {
  float: right;
}

ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 10px 16px;
  text-decoration: none;
}

ul li a:hover {
  background-color: #a63f5e;
}









