/* imports */
@import 'reset.css';
@import 'typography.css';

body {
    margin: 0px;
    font-family: Tahoma, Arial, Verdana, sans-serif;
    background-color: #ccd7f0;
}

a:link, a:active, a:visited {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}

#header {
    margin: 0px auto;
    width: 900px;
    height: 175px;
    color: #000;
}

    #header #logo {
        margin-right: 20px;
        width: 900px;
        height: 175px;
        float: left;
    }

    #header #siteinfo {
        padding-top: 15px;
        font-size: 1.3em;
    }

#content {
    margin: 5px auto;
    width: 940px;
    display: block;
    clear: both;
}

    #content .thumbs img {
        margin: 2px;
        width: 150px;
        height: 200px;
        float: left;
        border: 1px solid #c03;
    }

    #content ul.toplist_sites {
        width: 100%;
        list-style-type: none;
    }

    #content ul.toplist_sites li {
        padding: 5px;
        float: center;
        width: 225px;
        height: 85px;
        background: url(../images/toplist_site_background.jpg) no-repeat;
        background-position: center;
        text-align: left;

    }

    #content ul.toplist_sites li a:link,
    #content ul.toplist_sites li a:active,
    #content ul.toplist_sites li a:visited,
    #content ul.toplist_sites li a:hover {
        color: #000;
    }

    #content ul.toplist_sites li h4 {
        margin: 20px auto 0 auto;
        font-size: 1.4em;
        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;
		text-align: left;
        background: url(../images/toplist_bullet.jpg) left no-repeat;
    }

    #content .toplist ul li a {
        color: #000;
    }

#footer {
    padding: 20px;
    background-color: #ccd7f0;
    text-align: center;
    color: #000;
}

#footer p {
    margin: 0;
}

#footer a:link,
#footer a:active,
#footer a:visited,
#footer a:hover {
    color: #fff;
    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; }