/***
 * Header layout/colors
 ***/

#header {
    padding: 10px 10px 5px 10px;
    background-color: #1F3D55;
    color: white;
    border-bottom-style: solid;
    border-bottom-width: 8px;
    border-color: #3F5D75;
    background-image: url('/gfx/afbg.png');
    position: relative;
}

#header h1, #header h2 {
    text-align: center;
    margin: 0;
    font-size: 27pt;
    font-family: 'Bitstream Vera Serif', 'Times', serif;
}

#header h2 {
    font-size: 22pt;
    font-weight: normal;

}

#header h1 a {
    color: white;
    text-decoration: none;
}


#absolute_link {
    float: right !important;
    display: none; /* Only with JS */
}

/***
 * Menu
 ***/
ul.menu {
    width: 930px;
    margin: 30px auto 0 auto;
    padding: 0px;
}

ul.menu li {
    float: left;
    list-style-type: none;
    padding: 0px;
    margin: 0 0px 0 0;
}

ul.menu a {
    color: white;
    text-decoration: none;

    padding: 5px 10px;
    margin: 0px;
    margin-right: 1px;

    outline: none;

    border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0px 0px;
    -webkit-border-radius: 10px 10px 0px 0px;
}

/* For JS control */
ul.menu a.background {
    background-color: #3F5D75;
}

ul.menu.css a.current {
    opacity: 0.5;
    background-color: #3F5D75;
}

ul.menu.css a:hover, ul.menu.css a.active {
    opacity: 1;
    background-color: #3F5D75 !important;
}

