/*****Dropdown Menu Created by Steven Price ******/
h1, 
h2, 
h3, 
p, {
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
    background-color: firebrick;
    font-family: Arial, sans-serif;
    text-align: center;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}

#body-container {
    margin: 0 auto;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}

header {
    background-color: #fff;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    height: 200px;
    line-height: 220px;
    font-family: serif;
    font-size: 60px;
    text-shadow: 2px 2px 2px #000;
}

/**NAV DROPDOWN **/

nav {
    color: #fff;
    background-color: #000;
    padding: 0;
    margin: 0;
    width; 100%;
    overflow: hidden;
    font-size: 18px;
    line-height: 50px;
    box-shadow: 2px 2px 2px #000;
}

nav ul {
    padding: 0;
    margin: 0;
}

nav ul li {
    float: left;
    padding: 0;
    margin: 0;
    list-style: none;
}

nav ul li a:link,
nav ul li a:visited {
    display: block;
    color: #fff;
    text-decoration: none;
    text-align: center;
    height: 100%;
    width: 200px;
}

nav ul li a:hover {
    background-color: #5f5c5c;
}

nav ul li ul {
    display: none;
}

nav ul li:hover ul  {
    display: block;
    position: absolute;
    background-color: #3b3c3c;
}

nav ul li ul li {
    clear: left;
}

nav ul li:hover ul li a {
    text-align: left;
    width: 200px;
}

/***** CONTENT *****/

section {
    clear: left;
    margin-top: 10px;
    width: 100%;
}

#section-wrapper{
    clear: left;
    margin: 0 auto;
    width: 95%;
    min-height: 400px;
}

footer {
    line-height: 75px;
    background-color: #000;
    text-align: center;
    height: 80px;
}

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