﻿/* Add a black background color to the top navigation */
.topnav {
    background-color: #333;
    overflow: hidden;    
    height: 50px;
    min-width: 760px;
    max-width: 960px;
    margin: 0 auto;
}

.content {
    padding-top: 50px;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #f2f2f2;
    font-size: 17px;
    text-decoration: none;
    font-family: Arial;
    height: 100%;
    line-height: 50px;
    text-align: center;
    padding: 0px 20px;
}

.topnavtitle {
    float: left;
    color: #828282;
    font-size: 22px;
    font-family: Arial;
    font-weight: 600;
    height: 100%;
    line-height: 50px;
    padding: 0px 50px 0px 0px;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
    background-color: #89bf04;
    color: white;
}
