/*
    Sticky footer, modeled after code from Ryan Fait (http://ryanfait.com/)
*/
* {
    margin: 0;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: -2px auto -89px; /* the bottom margin is the negative value of the footer's height */
    padding: 0;
    /*
        For some reason I need this border in order to force the size to be computed
        correctly in Firefox and Chrome.  To compensate for it, I've added a 2px negative
        margin to the top of the wrapper.
    */
    border: 1px solid white;
}
footer, .push {
    height: 89px; /* .push must be the same height as .footer */
    padding: 0;
    margin: 0;
}
/* End sticky footer */

/*
    Container, managed by Blueprint CSS
*/
.container {
    position: relative;
    margin: 0 auto;
}

header {
    position: relative;
    width: 960px;
    height: 70px;
    margin: 36px auto;
    padding: 0;
    border-bottom: 1px solid #c0c0c0;
}
header h1 {
    display: block;
    width: 350px;
    height: 104px;
    padding: 0px;
    margin: 0px;
    background: transparent url(../images/pryden-net.png) no-repeat 10px 0px;
}
header h1 a {
    display: block;
    width: 350px;
    height: 104px;    
}
header h1 span {
    display: none;
}

header h2 {
    position: absolute;
    left: 375px;
    top: 30px;
    width: 500px;
}

nav h1 {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-weight: bold;
    border-bottom: 1px solid #c0c0c0;
}
nav ul {
    list-style-type: none;
    margin: 0 0 18px 0;
    padding: 0;
}
nav ul li {
    margin: 0;
    padding: 0;
}
nav a {
    text-decoration: none;
}
nav a:hover {
    text-decoration: underline;
}

footer {
    position: relative;
    width: 960px;
    height: 88px; /* subtract one pixel to compensate for the border */
    margin: 0 auto;
    border-top: 1px solid #c0c0c0;
}
footer p {
    position: absolute;
    left: 0px;
    top: 10px;
    text-align: left;
    line-height: 36px;
}
footer .footer-links {
    position: absolute;
    right: 0px;
    top: 10px;
    text-align: right;
    line-height: 36px;
}
footer .footer-links a {
    color: #606060;
    text-decoration: none;
}
footer .footer-links a:hover {
    text-decoration: underline;
}