﻿/* --------------------------------------------------------------
   copyright.css
   * Governs the footer styling and positioning
-------------------------------------------------------------- */
#copyright
{
    position: relative;
    width: 953px;       /* sets the content width */
    height: 100px;
    margin: 4em auto 0 auto;     /* no top/bottom margin, centered horizontally */
    padding:  4em 0 0 0;
}

#copyright .copyrightTag
{
    color: #000;
}

#copyright ul
{
    list-style: none;
    padding: .5em 0 0 0;
}

#copyright li 
{
    color:#000;
    font-size: .85em;
	display: inline;
	padding: 0 3em 0 0;
	text-align:left;	 
}

#copyright a:link, #copyright a:visited {
    text-decoration: none;
    color: #000;
        
}

#copyright a:hover, #copyright a:active {
    color: #000;
    border-bottom: 1px solid #000;
}

