/**
 * base.css - styles that are used on all parts of the site
 * 
 * The base.css file is the baseline CSS file that all pages draw against.
 * It contains the very basic properties that are necessary to keep the
 * site consistent, but very little in the way of actual layout information.
 * 
 * @file    main.css
 * @author  blake
 */

body
{ 
  font-family: Verdana;
  font-size: 1.0em;
}

a
{
  text-decoration: none;
}

a:hover
{
  text-decoration: none;
}

a img,
a:link img,
a:visited img
{
  border: none;
}

