/*----------------------------------------------------------------------
    screen.css

    Screen styles go here.

----------------------------------------------------------------------*/

/* =GENERAL
========================================*/
html,
body {
    height: 100%;
}

body {
    background: #ffffff;
    text-align: left;
}

/* =LAYOUT
========================================*/
#container {
    min-height: 100%;
    position: relative;
    margin: 0 auto;
    background: url(../images/back_body.png) center top repeat-y;
}

#aside {
    display: inline;
    float: left;
    width: 230px;
}

#branding {
    position: relative;
    padding-top: 50px;
}

#content {
    float: left;
    padding-top: 55px;
}

    .list #content {
        margin: 0;
        width: 600px;
    }

#footer {
    display: block;
    margin: 0;
    padding: 0;
    clear: both;
}

/* =BRANDING
========================================*/
#branding h1 a {
    display: block;
    height: 40px;
    text-indent: -1000em;
    background: url(../images/logo.png) 10px top no-repeat;
}

/* =NAVIGATION
========================================*/
.nav {
    display: block;
    margin: 16px 0 0 20px;
    padding-top: 16px;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}

.nav li {
    list-style-type: none;
}

.nav li a {
    display: block;
    overflow: hidden;
}

.nav #web a,
.nav #print a {
    /*width: 150px;
    height: 65px;
    padding-right: 20px;
    background-image: url(../images/tabs.png);
    background-repeat: no-repeat;
    line-height: 65px;*/
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav #web.active a,
.nav #print.active a {
    color: #ad2b2b;
}

.nav ul {
    margin-top: 6px;
}

.nav ul li a {
    font-size: 11px;
    line-height: 16px;
}

/* =CONTENT
========================================*/
.thumbnail {
    display: inline;
    width: 180px;
    margin-left: 10px;
    margin-right: 10px;
}

.single img {
    margin-bottom: 11px;
    border: 5px solid #eeeeee;
}

.list img {
    margin-bottom: 20px;
    border: 5px solid #eeeeee;
}

#footer ul {
    margin-top: 22px;
    padding-left: 20px;
    font-size: 11px;
    line-height: 16px;
}

/* =LINKS
========================================*/
a:link,
a:visited {
    color: #444444;
    text-decoration: none;
}

a:hover,
a:active {
    color: #ad2b2b;
}

#web a:link,
#web a:visited,
#print a:link,
#print a:visited {
    color: #000000;
}

#web a:hover,
#web a:active,
#print a:hover,
#print a:active {
    color: #ad2b2b;
}

#content a:link,
#content a:visited {
    color: #ad2b2b;
}

#content a:hover,
#content a:active {
    color: #ad2b2b;
    text-decoration: underline;
}

.nav ul li.active a:link,
.nav ul li.active a:visited {
    color: #777777;
    font-style: italic;
}

.nav ul li.active a:hover,
.nav ul li.active a:active {
    color: #ad2b2b;
}


/* =UTILITY CLASSES
========================================*/
.last {
    border: none;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

* html .clearfix { height: 1%; }
.clearfix { display: block; }