div.bar {
    position: relative;

    width: 100%;
    height: 29px;

    color: #E0EFFF;

    background-color: #1060D0;
    box-shadow: 0 2px 2px -1px rgba(0, 0, 128, 0.3),
        inset 0 1px rgba(255, 255, 255, 0.3),
        inset 0 10px rgba(255, 255, 255, 0.03),
        inset 0 10px 20px rgba(255, 255, 255, 0.25),
        inset 0 -15px 30px rgba(0, 0, 0, 0.2);
}

div.bar a, div.bar:visited {
    text-decoration: underline;
    color: #C0E0FF;
}

div.bar ul {
    display: block;
    width: auto;
    height: 100%;

    list-style-type: none;
    list-style-position: outside;
    padding: 0px 20px 0px 10px;
}

div.bar ul li {
    display: block;
    width: auto;
    height: 100%;

    float: left;
}

div.bar ul li a, div.bar ul li a:visited {
    display: block;

    font-size: 100%;
    text-decoration: none;
    text-align: center;
    color: #E0EFFF;
    white-space: nowrap;
    padding: 6px 20px;

    transition: 0.3s color ease-out, 0.3s text-shadow ease-out;
    -o-transition: 0.3s color ease-out, 0.3s text-shadow ease-out;
    -moz-transition: 0.3s color ease-out, 0.3s text-shadow ease-out;
    -webkit-transition: 0.3s color ease-out, 0.3s text-shadow ease-out;
}

div.bar ul li a:hover {
    color: #F0FBFF;
    text-shadow: 0px 0px 5px white;
}

div.bar div.logininfo {
    position: absolute;
    top: 0;
    right: 0;

    width: auto;
    height: 100%;
}

div.bar div.logininfo a {
    color: #FFD000;
    font-weight: bold;
}

div.bar div.logininfo span {
    display: block;
    font-size: 80%;
    width: 100%;
    height: 100%;
    padding: 8px 12px 6px;
}

div.bar span.copy {
    display: block;
    width: 100%;
    padding: 8px;
    font-size: 70%;
    text-align: center;
}