﻿A
{
    color: dodgerblue;
    text-decoration: none;
}
A:hover
{
    color: chocolate;
    text-decoration: none;
}


A.link2
{
    color: deepskyblue;
    text-decoration: none;
}
A.link2:hover
{
    color: chocolate;
    text-decoration: none;
}


A.link3
{
    color: #00ccff;
    text-decoration: none;
}
A.link3:hover
{
    color: chocolate;
    text-decoration: none;
}

A.link4
{
    color: cornflowerblue;
    text-decoration: none;
}
A.link4:hover
{
    color: chocolate;
    text-decoration: none;
}

A.link5
{
    color: azure;
    text-decoration: none;
    background-color: #00d0ff;
}
A.link5:hover
{
    color: azure;
    text-decoration: none;
    background-color: chocolate;
    
}
A.link6
{
    color: azure;
    text-decoration: none;
    background-color: deepskyblue;
    font-weight: bold;
    font-size: 13px;
    font-family: Tahoma;
    border-right: skyblue 1px solid;
    border-top: skyblue 1px solid;
    border-left: skyblue 1px solid;
    border-bottom: skyblue 1px solid;
}
A.link6:hover
{
    background-color : chocolate;
    color : azure;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    font-family: Tahoma;
    border-right: skyblue 1px solid;
    border-top: skyblue 1px solid;
    border-left: skyblue 1px solid;
    border-bottom: skyblue 1px solid;  
}

A.image
{
    border: 2px solid black;
}
A.image:hover
{
    border: 2px solid steelblue;
}

A.link7
{
    color: lightslategray;
    text-decoration: none;
}
A.link7:hover
{
    color: lightslategray;
    text-decoration: underline;
}