﻿/* ---- navigation ---- */
.nav-container
{
    border-right: 1px solid white;
    margin-top: 70px;
    float: right;
}
ul#navigation
{
    margin: 0;
    padding: 0;
    list-style: none;

}
ul#navigation li
{
    float: left;
    border: 1px solid white;
    border-right: none;
    display: inline;

}
ul#navigation a:link.top,
ul#navigation a:visited.top,
ul#navigation a.top
{
    display: block;
    padding: 8px 15px 8px 15px;
    text-decoration: none;
    color: white;
}
ul#navigation a:hover.top
{
    padding: 8px 15px 8px 15px;
    background: #CC0505;/*#0090ff; - blue*/
    color: white;
}
ul.flyout
{
    display: none;
    position: absolute;
    width: 160px;
    border-bottom: 1px solid black;
    border-top: 1px solid white;
    list-style: none;
    margin: 0;
    padding: 0;
}
ul#navigation ul.flyout li
{
    float: none;
    border: none;
}
ul.flyout li ul.flyout
{
    margin-left: 149px;
    border-top: none;
}
ul.flyout a:link.flyout,
ul.flyout a:visited.flyout,
ul.flyout a.flyout
{
    display: block;
    border: 1px solid black;
    border-bottom: none;
    padding: 6px;
    font-size: 10px;
    text-decoration: none;
    background: white;
    color: black;
    _height: 1%;
}
ul.flyout a:hover.flyout
{
    background: #CC0505;/*#0090ff; - blue*/
    color: white;
}
