/* styles for the metropolitan opera 2 page website */
body {
    background: rgb(245, 221, 113);
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url(../images/cheese-small.png);
    /* png=transparency */
    /* if background color afterm, won't see image */
    background-attachment: fixed;
}

*{
    padding: 0;
    margin: 0;
}

div#wrapper {
    width: 940px;
    background: rgb(245, 245, 221);
    margin: 20px auto;
    padding: 20px;
    overflow: hidden;
}


img.right {
    padding-left: 30px;
    float: right;
    margin-bottom: 10px;
}

img.left {
    padding-right: 30px;
    float: left;
    margin-bottom: 10px;
}

.center {
    /* no float center, so center with auto margin */
    margin: 20px auto;
    display: block;
    /* displaying image at the block level */
    text-align: center;
}

header {
    padding: 20px;
    background: rgb(230, 230, 230);
}

footer {
    height: 50px;
/* clear fix for floats */
    clear: both;
    line-height: 50px;
    border-top: dotted #666;
    font-size: .9em;
    color: #666;
}

footer li {
    list-style-type: none;
    float: left;
    margin-right: 30px;
}

footer img {
    margin-top: 3px;   
}


footer a {
    color: #666;
}


a {
    color: #5a5a5a;
}

h1, h2, h3 {
    color:#5a5a5a;
    font-family:Tahoma, sans-serif;
    margin-bottom: 10px;
}

h1 {
    padding-top: 10px;
    font-size: 2.3em;
}

h2{
    font-size: 1.8em;
}

h3 {
    font-size: 1.5em;
    color:#e7e7e7;
}

p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-bottom: 20px;
    line-height: 1.4;
}


#primary {
    height: 50px;
    background: #5a5a5a;
    line-height: 50px;
}

#primary ul {
    width: 1000px;
    margin: 0 auto;
    /* center horizontally */
}

#primary li {
    list-style-type: none;
    float: left;
    width: 20%;
    text-align: center;
}

#primary a {
    color: rgb(226, 210, 140);
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    font-weight: 700;
}


#logo {
    display: block;
    margin: 20px auto;
}

aside p{
    font-size: .9em;
}

main {
    width: 580px;
    float: left;
    margin-top: 25px;
}

aside {
    width: 320px;
    background: #d9961a;
    float: right;
    margin-top: 20px;
    padding: 15px;
}