﻿/* remove the bullets, padding and margins from the lists */
.Nav ul
{
    list-style-type:none;
    padding:0;
    margin:0;
}
.Nav ul li
{
    /* Dark Brown RGB: 140 98 54 */
    background-color:#8C6236;
    /* Add border */
    border: White solid thin;
    padding-left:5px;
    width:100px;
}
/* style all the links */
.Nav :link
{
    /* Change font color to white */
    color:White;
    font-size:12px;
    font-family:Tahoma;
    font-weight:bold;
    text-decoration:none;
}
/* style all the visited links */
.Nav :visited
{
    /* Change font color to white */
    color:White;
    font-size:12px;
    font-family:Tahoma;
    font-weight:bold;
    text-decoration:none;
}