/* imports */
@import 'reset.css';
@import 'typography.css';

body {
    margin: 0px;
    font-family: Tahoma, Arial, Verdana, sans-serif;
    background: #191919 url(../images/background.jpg) repeat-x;
    color: #fff;
}

a:link, a:active, a:visited, a:hover {
    color: #b3193f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#header {
    margin: 0px auto;
    width: 960px;
    height: 140px;
}

    #header #logo {
        margin-right: 20px;
        width: 294px;
        height: 121px;
        float: left;
    }

    #header #meta ul {
        margin: 0;
        padding: 0;
        float: right;
    }

    #header #meta ul li {
        margin: 0 10px 10px 0;
        float: left;
        width: 202px;
        height: 45px;
        list-style-type: none;
        text-align: center;
        font-weight: bold;
        line-height: 3em;
        background: url(../images/nav_item_background.jpg) no-repeat;
    }

    #header #meta ul li a {
        color: #fff;
    }

    #header #meta p {
        padding-top: 10px;
        font-size: 0.9em;
        letter-spacing: 1px;
    }

#content {
    margin: 0 auto;
    width: 960px;
    display: block;
    clear: both;
}

    #content .spacer {
        margin: 20px;
    }

    div.archives {
        text-align: left;
    }

        div.archives h2 strong {
            display: none;
        }

        div.archives ul {
            margin: 0 0 0 20px;
            padding: 0;
            float: left;
        }

        div.archives ul li {
            margin: 0 2px;
            list-style-type: none;
            float: left;
        }

        div.archives ul li a {
            padding: 5px;
            color: #fff;
            font-weight: bold;
        }

        div.archives ul li a:hover {
            color: #fff;
            background-color: #034863;
        }

    #content h2 {
        margin: 0 0 0 20px;
        height: 25px;
    }

    #content h2 strong {
        display: none;
    }

    #content h2.archives {
        background: url(../images/archives_header.jpg) top left no-repeat;
    }

    #content h2.hall-of-fame {
        background: url(../images/hall_of_fame_header.jpg) no-repeat;
    }

    #content h2.todays-galleries {
        background: url(../images/todays_galleries_header.jpg) no-repeat;
    }

    #content h2.yesterdays-galleries {
        background: url(../images/yesterdays_galleries_header.jpg) left no-repeat;
    }

    #content .block {
        margin: 0px auto;
        width: 934px;
        background: url(../images/content_background.jpg) repeat-y;
    }

    #content .block .top,
    #content .block .bottom {
        width: 934px;
        height: 15px;
        margin: 0 auto;
    }

    #content .block .top {
        background: url(../images/content_background_top.jpg) no-repeat;
    }

    #content .block .bottom {
        background: url(../images/content_background_bottom.jpg) no-repeat;
    }

    #content .block p {
        margin: 0 auto;
        width: 900px;
        text-align: center;
    }

    #content .thumbs {
        margin: 0px auto;
        width: 890px;
        display: block;
    }

    #content .thumbs img {
        margin: 5px;
        width: 166px;
        height: 250px;
        float: left;
        border: 1px solid #b31a53;
    }

    #content .toplist_row ul {
        list-style-type: none;
    }

    #content .toplist_row ul li {
        margin: 11px;
        padding-top: 35px;
        float: left;
        width: 208px;
        height: 89px;
        background: url(../images/toplist_site_background.jpg) no-repeat;
        background-position: center;
        text-align: center;

    }

    #content .toplist_row ul li a:link,
    #content .toplist_row ul li a:active,
    #content .toplist_row ul li a:visited,
    #content .toplist_row ul li a:hover {
        color: #b31a54;
        font-weight: bold;
    }

    #content ul.toplist_sites li h4 {
        margin: 20px auto 0 auto;
        font-size: 1.6em;
        font-weight: bold;
    }

    #content ul.toplist_sites li p {
        font-size: 0.9em;
    }

    #content .toplist {
        margin: 20px auto;
        width: 890px;
    }

    #content .toplist ul {
        width: 185px;
        float: left;
    }

    #content .toplist ul li {
        padding-left: 30px;
        list-style-type: none;
        font-size: 1.4em;
        font-weight: bold;
        background: url(../images/toplist_bullet.jpg) left no-repeat;
    }

    #content .toplist a {
        color: #fff;
    }

    #content a.tradelink {
        color: #b31a54;
        font-weight: bold;
    }

/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clear { display: inline-block; }
.clear:after, .container:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
* html .clear { height: 1%; }
.clear { display: block; }
