    /* Give style to the unordered list (called navlist) that makes the navigation. */
    .tabbar ul
    {
        padding: 1.2em 2.3em;
        margin: 0;
        list-style: none;
        padding-left: 2.2em;
        background-color: rgb(176,196,222); /* This is the colour of the full width bar. */
        font-size: 0.85em;
        font-weight: 500;
        font-family: Platino, "Times New Roman", "Times Roman", Serif;
        color: rgb(110,123,139);
    }

    .tabbar ul li, .container ul li
    {
        display: inline;
    }


    .tabbar ul li a
    {
        text-decoration: none;  /* Prevents the underline showing on the navigation links. */
        padding: 1.2em 2.3em;  /* Controls how big the buttons look. */
        color: rgb(110,123,139);
        background-color: rgb(230,230,250);
        border-left: 0.2em solid white;
        border-top: 0.2em solid white;
        border-right: 0.2em solid white;
    }

    .tabbar ul li a:hover
    {
        color: rgb(110,123,139);
        background-color: white;
    }


