body {
    font-family: 'Times New Roman', serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #444;
    line-height: 1.6;
}
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px;
}
header {
    background: #444;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: 3px solid #666;
}
header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}
header ul {
    padding: 0;
    margin: 0;
    list-style: none;
    overflow: hidden;
}
header li {
    float: left;
    display: inline;
    padding: 0 20px 0 20px;
}
header #branding {
    float: left;
}
header #branding h1 {
    margin: 0;
}
header nav {
    float: right;
    margin-top: 10px;
}
header .highlight, header .current a {
    color: #ddd;
    font-weight: bold;
}
header a:hover {
    color: #eee;
    font-weight: bold;
}
#newsletter {
    padding: 15px;
    color: #fff;
    background: #333;
}
#newsletter h1 {
    float: left;
}
#newsletter form {
    float: right;
    margin-top: 15px;
}
#newsletter input[type="email"] {
    padding: 4px;
    height: 25px;
    width: 250px;
}
.button_1 {
    height: 38px;
    background: #555;
    border: 0;
    padding-left: 20px;
    padding-right: 20px;
    color: #fff;
}
#main {
    padding: 20px;
}
#main h1 {
    font-size: 26px;
}
#main article {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    font-size: 18px;
}
aside#sidebar {
    float: right;
    width: 30%;
    margin-top: 10px;
    padding: 10px;
}
aside#sidebar .quote input, aside#sidebar .quote textarea {
    width: 90%;
    padding: 5px;
}
/* Media Queries */
@media(max-width: 768px) {
    header #branding,
    header nav,
    header nav li,
    #newsletter h1,
    #newsletter form,
    #main,
    aside#sidebar {
        float: none;
        text-align: center;
        width: 100%;
    }
    header {
        padding-bottom: 20px;
    }
    #newsletter form {
        margin-top: 0px;
    }
}
