/*
    main.css
*/



/*
    The body relative position is an IE hack that corrects the 
    behavior of an absolute element child of a relative element.
*/

body {
    position: relative;
    width: 960px;
    margin: 0 auto;
    font-size: 12px;
}


div.link {
    cursor: pointer;
}


a:hover {
    cursor: pointer;
}


a img {
    border: none;
}


#header {
    margin-top: 16px;
}


#logo {
    float: right;
    margin-right: 16px;
    width: 64px;
    height: 64px;
    background-image: url(../images/logo.png);
    text-indent: -9999px;
}


#logo-title {
    width: 630px;
    height: 64px;
    background-image: url(../images/title.png);
    text-indent: -9999px;
}


#nav {
    clear: both;
    margin-top: 16px;
    padding-top: 27px;
    height: 40px;
    border-top: 8px solid #333333;
}


#nav ul {
    margin: 0;
    padding: 0;
}


#nav li {
    float: left;
    display: block;
    padding-right: 14px;
}


#nav li.nav-item-right {
    float: right;
    padding-right: 0;
}


#nav li a {
    position: relative;
}


#nav li a img.nav-item-hover {
    position: absolute;
    top: 0px;
    left: 0px;
    display: none;
}


/*
    This is a CSS hack for IE6 that propagates the hover to the 
    inner <img> tags.
*/

#nav li a:hover {
    background-color: white;
}


#nav li a:hover img.nav-item-hover {
    display: block;
}


#footer {
    padding: 28px 0;
    color: #333333;
    font: bold 140% normal;
    font-family: sans-serif;
}



