@import url("/john/john.css");

body
{
    background: #ffffff; 
}

.new
{
    font-weight: bolder;
}

a
{
    /*color: #2e5c84;*/
    /*color: #3366ff;*/
    color: #0000ff;
    text-decoration: none;
}

a:hover
{
    /*color: #3366ff;*/
    color: #ff0000;
    text-decoration: underline;
}

a:link:hover, a:visited:hover
{
    /* :link included so that anchors which are not links are not highlighted */
    /* override :hover colour if link has been visited */
    /*color: #3366ff;*/
    color: #ff0000;
    /* override .new bold font if link has been visited */
    font-weight: normal;
}

a.new:link:hover
{
    /* :link included so that anchors which are not links are not highlighted */
    /* override :hover colour if link has been visited */
    /*color: #3366ff;*/
    color: #ff0000;
    /* override .new bold font if link has been visited */
    font-weight: bolder;
}

a.new:visited
{
    /* :link included so that anchors which are not links are not highlighted */
    /* override .new bold font if link has been visited */
    font-weight: normal;
}

a.new:visited:hover
{
    /* :link included so that anchors which are not links are not highlighted */
    /* override :hover colour if link has been visited */
    /*color: #3366ff;*/
    color: #ff0000;
    /* override .new bold font if link has been visited */
    font-weight: normal;
}

div
{
    border: none;
    padding: 5px;
}
