/* COLORS & BACKGROUNDS */

body {
    background: #630;
    margin: 20px;
}

#header, #menu, #about, #quotes {
    border: 5px solid #ff6;
    background: #ff9;
}

#address, #hours {
    color: #333;
}

#menu {
    background: #60cd22;
    border: 5px solid yellow;
}

#menu h2:before {
    content: url(icon-menu.png);
    margin-right: 5px;
}
#menu thead {
    color: #ff0;
}

#quotes h2:before {
    content: url(icon-quotes.png);
    margin-right: 5px;
}


/* TYPOGRAPHY */
body {
    font-family: "Comic Sans", "Comic Sans MS", sans-serif;
}

#address, #hours {
    font-size: smaller;
}

#header, #footer {
    text-align: center;
}

#footer {
    font-size: 10pt;
}

h1, h2 {
    font-family: "Comic Sans", "Comic Sans MS", sans-serif;
}

h1 {
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

#about p:first-letter {
    font-size: 20pt;
}
#about p:first-line {
    font-weight: bold;
    font-size: larger;
}
#quotes ul {
    list-style: none;
}
#quotes ul li span.customername {
    font-size: smaller;    
}

#quotes q {
    font-size: 14pt;
    font-style: italic;
}

#menu table tbody td {
    font-weight: bold;
    line-height: 1em;
}

#menu table thead {
    text-align: left;
}


/* LAYOUT */
#header, #menu, #about, #quotes {
    padding: 0.5em 1em;
    margin-bottom: 20px;
}

#header {
    position: relative;
}
#header:before {
    content: url(logo.png);
}
#address, #hours {
    position: absolute;
    bottom: 2px;
}
#address {
    left: 5px;
}
#hours {
    right: 5px;
}

#menu {
    width: 200px;
    float: left;
}

#about, #quotes {
    margin-left: 270px;
}

#about h2 {
    display: none;
}


#quotes ul li span.customername {
    display: block;
    clear: right;
}
#quotes q {
    display: block;
    margin-left: 2em;
    margin-bottom: 1em;
}

#footer {
    clear: both;
    margin: auto;
}

h1, h2 {
    margin-top: 0;
}

#menu table {
    border-collapse: collapse;
    border-spacing: 1em;
}
#menu table thead {
    border-bottom: 1px dotted #960;
}
#menu table tbody td {
    padding: 1em 0;
}

