/*
 * Styles common to all pages
 */


/* Basics */

html, body {
    margin: 0;
    padding: 0;
    font-family: Arial,sans-serif;
    font-size: 13px;
    background: #000 url(../img/background.jpg) repeat-y 50% 0;
    color: #FFF;
}

a {
    color: #FFF;
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
}
a:visited {
    color: #EEE;
}

img {
    border: 0;
}

header, footer, section, nav {
    display: block;
    zoom: 1;
}



/* Page Header */

header {
    display: block;
    width: 960px;
    margin: 0 auto;
    padding: 10px 0 0;
}
header:after {
    content: '';
    display: block;
    clear: both;
}

header .logo {
    float: left;
    margin-left: 68px;
}

header ul {
    margin: 0;
    padding: 33px 0 0;
}

header li {
    display: inline;
    float: left;
    margin: 0;
    padding: 0 16px;
    border-right: 1px solid #FFF;
}
header li:last-child {
    border: 0;
}

header li a {
    height: 10px;
    overflow: hidden;
    display: block;
    font-size: 11px;
    line-height: 10px;
    font-weight: bold;
    text-transform: uppercase;
}
header li a:before {
    content: url(../img/nav.png);
    float: left;
    position: relative;
    margin-right: 2px;
}
header li a:hover:before {
    margin-top: -70px;
}

#navWhatIs a {
    width: 101px;
}
#navWhatDone a {
    width: 134px;
}
#navWhatDone a:before {
    top: -14px;
}
#navAbout a {
    width: 70px;
}
#navAbout a:before {
    top: -28px;
}
#navContact a {
    width: 87px;
}
#navContact a:before {
    top: -42px;
}
#navNews a {
    width: 112px;
}
#navNews a:before {
    top: -56px;
}



/* Page Footer */

footer {
    display: block;
    font-size: 12px;
    text-align: center;
    margin: 20px 0;
}

footer ul {
    margin: 0;
    padding: 0;
}

footer li {
    display: inline;
    list-style: none;
    margin: 0;
    padding: 0 1em 0 .7em;
    border-right: 1px solid;
}
footer li:last-child {
    border: 0;
}

footer a {
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

footer p {
    margin: .7em 0;
}



/* Main Content Area */

#content {
    width: 960px;
    margin: 0 auto;
    padding: 16px 0;
    position: relative;
}
#content:after {
    display: block;
    content: "";
    clear: both;
}

.contentArea {
    display: block;
    box-shadow: #333 0 0 10px;
    -moz-box-shadow: #333 0 0 10px;
    -webkit-box-shadow: #333 0 0 10px;
    padding: 20px;
    border: 1px solid #A99D31;
    background: #001C35;
}


/*
 * Some presentational classes used internally by Wordpress
 */
.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}



/*
 * Pages
 */
.page .contentArea h1 {
    height: 22px;
    font-size: 22px;
    text-transform: uppercase;
    overflow: hidden;
    margin: 0 0 20px;
}
.page .contentArea h1:before {
    display: block;
    margin-bottom: 4px;
    /* set content to an image of the header text */
}



/*
 * Pages subnav
 */
.page #subnav {
    float: right;
}
.page #subnav ul,
.page #subnav li {
    display: inline;
    list-style: none;
    margin: 0;
    padding: 0;
}
.page #subnav li:after {
    content: " | ";
}
.page #subnav li:last-child:after {
    content: "";
}
.page #subnav a {
    color: #A99D31;
    font-weight: bold;
    padding: 0 6px;
}



/*
 * Blog Posts
 */
.blogPosts {
    float: left;
    width: 607px;
    padding-right: 52px;
}
.blogPosts .pagination {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.blogPosts .pagination li {
    margin: 0;
    padding: 0;
    display: block;
    list-style: none;
    float: left;
}
.blogPosts .pagination li.next {
    float: right;
}
.post {
    border-bottom: 1px solid #FFF;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.post:last-child {
    border: 0;
    padding: 0;
    margin: 0;
}
.post h2 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 120px 20px 0;
}
.single .post h2 {
    font-size: 22px;
}
.post h2 a {
    text-decoration: none;
}
.post h3 {
    font-size: 1.1em;
    font-weight: bold;
}
.post .date {
    float: right;
    margin-top: -37px;
    font-style: italic;
    font-size: 12px;
    color: #999;
}

.post .author {
    margin: 10px 0 0;
    text-align: right;
    font-style: italic;
    font-size: 12px;
}



/*
 * Blog Sidebar
 */
#sidebar {
    float: right;
    margin: 32px 0 0 -32px;
    width: 268px;
}



/*
 * Photo Galleries
 */
.gallery {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.gallery li {
    display: inline;
    list-style: none;
    float: left;
    margin: 0 0 20px;
    padding: 0;
    width: 20%;
    text-align: center;
}
.gallery li img {
    border: 1px solid #FFF;
}

