﻿/* DEFAULT text styles */

body
{
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 16px;
}

h1
{
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 2em;
}
h2
{
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}
h3
{
    font-size: 1em;
    font-weight: bold;
    font-style: italic;
}
h4
{
    font-size: .8em;
    font-weight: bold;
}
h5
{
    font-size: .6em;
    font-weight: bold;
}
h6
{
    font-size: .4em;
    font-weight: bold;
}

/* LINK styles */
/* TEXT links */
a:link
{
    color: Blue;
    text-decoration: none;
}
a:visited
{
    color: Gray;
    text-decoration: none;
    border-bottom: 1px dotted Blue;
    
}
a:hover
{
    color: Red;
    text-decoration: underline;
    border-bottom: none;
}
a:active
{
    color: Red;
    text-decoration: underline;
}

/* TEXT links to EXTERNAL sites */
a.external
{
    background: url(../Images/Icons/Icon_External_Link.png) center right no-repeat;
    padding-right: .8125em;
}
a:visited.external
{
    background: url(../Images/Icons/Icon_External_Link_Visited.png) center right no-repeat;
    padding-right: .8125em;
}
a:hover.external
{
    background: url(../Images/Icons/Icon_External_Link_Hover.png) center right no-repeat;
    padding-right: .8125em;
}


/* IMG links */
a.img:link
{
    border: 0 none;
}
a.img:visited
{
    border: 0 none;
}
a.img:hover
{
    border: 0 none;
}
a.img:active
{
    border: 0 none;
}


/* LISTS */
ul
{
    list-style-type: disc;
}
li
{
    list-style-type: disc;
}


/* CUSTOM text styles */

.Small
{
     font-size: .625em;
}
.Breadcrumb
{
    background-color: #FFFFFF;
    font-size: .875em;
}

.Dashed_Line
{
    border-top: thin dashed Gray;
}

#IE6
{
    color: red;
    font-size: 1.125em;
}


/* IMG */

img
{
    border: 0 none;
}


