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

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

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

a:hover {
    text-decoration: underline;
}

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

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

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

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

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

    #header #meta ul li.home {
        width: 55px;
        background: url(../images/nav_home_background.jpg) no-repeat;
    }

    #header #meta ul li.home img {
        margin-top: 5px;
    }

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

div.archives {
    margin: 20px auto;
    width: 960px;
    height: 45px;
    background: url(../images/archives_background.jpg) no-repeat;
    text-align: left;
}

    div.archives h2 {
        margin: 10px 0 0 10px;
        width: 109px;
        height: 35px;
        float: left;
        line-height: 2em;
        background: url(../images/archives_header.jpg) no-repeat;
    }

    div.archives h2 strong {
        display: none;
    }

    div.archives ul {
        margin-top: 15px;
        float: left;
    }

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

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

    div.archives ul li a:hover {
        background: #ffd200;
        color: #000;
    }

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

    #content h2 {
        margin: 20px auto 0px auto;
        padding: 0;
    }

    #content h2 strong {
        display: none;
    }

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

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

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

    #content .thumbs {
        padding: 10px;
        background: #191919;
    }

    #content .thumbs img {
        margin: 10px;
        width: 166px;
        height: 250px;
        float: left;
        border: 1px solid #ffd220;
    }
    #content .gthumbs img {
        margin: 10px;
        width: 140px;
        height: 180px;
        float: left;
        border: 1px solid #ffd220;
    }
    #content .toplist_row {

    }

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

    #content .toplist_row ul li {
        margin: 10px;
        padding-top: 35px;
        float: left;
        width: 210px;
        height: 95px;
        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: #ffd220;
        font-weight: bold;
    }

    #content ul.toplist_sites li h4 {
        margin: 20px auto 0 auto;
        font-size: 1.2em;
        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.2em;
        font-weight: bold;
        background: url(../images/toplist_bullet.jpg) left no-repeat;
    }

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

#footer {
    padding: 20px;
    background-color: #191919;
    border-top: 10px solid #cf0000;
    text-align: center;
    color: #fff;
}

#footer p {
    margin: 0;
}

#footer a.tradelink {
    color: #ffd220;
    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; }
