/* ------------------------- */
/*         basics            */
/* ------------------------- */
html, body
{
    margin: 0;
    padding: 0;
}

ul
{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

body
{
    background: #004C9A url('../gfx/background-top.png') repeat-x scroll left top;
    text-align: justify;
    color: #1F1F1F;
    font-size: 13px;
    font-family: Helvetica, Arial, Tahoma, Nimbus Sans, Sans-Serif;
}


/* ------------------------- */
/*         header            */
/* ------------------------- */
div#header
{
    width: 300px;
    height: 167px;
    margin: 0 10px;
}

div#header img
{
    top: 20px;
    left: 10px;
    border: none;
}


/* ------------------------- */
/*      page-container       */
/* ------------------------- */
div#page
{
    width: 950px;
    min-height: 400px;
    margin: 0 auto;
}


/* ------------------------- */
/*         content           */
/* ------------------------- */
div#content
{
    min-height: 200px;
    background-color: white;
    width: auto;
    margin-left: 320px;
}


/* ------------------------- */
/*      sidebar (left)       */
/* ------------------------- */
div#sidebar
{
    float: left;
    width: 320px;
    height: 650px;
    padding: 0;
    background: #004C9A url('../gfx/background-mainmenu-top.png') no-repeat scroll left top;
}

div#sidebar .navigation
{
    margin: 0 10px;
    position: relative;
}


/* ------------------------- */
/*      mainmenu             */
/* ------------------------- */
ul#menu
{
    list-style: none;
    margin: 0 1px;
    padding: 0;
    width: 298px;
    border-bottom: 1px dashed #FFF;
    padding-top: 20px;
}

ul#menu a
{
    color: #FFF;
    font-weight: bold;
    line-height: 25px;
    text-decoration: none;
    display: block;
    background-color: #0066CC;
    border-top: 1px dashed #DDD;
    padding-left: 15px;
}

ul#menu a:hover
{
    color: white;
    border-left: 5px solid white;
    padding-left: -5px;
}




