/*******************************************************************************
  QuickSite - default.css
  Micah Carrick <email@micahcarrick.com>
  
  This stylesheet may be shared by multiple domains. It overrides default HTML
  elements such as borders around images, links, and fonts. This file does not
  contain any class definitions.
  
*******************************************************************************/

/* default font and size */

BODY, TD, TH, P, DIV, SPAN, LI { 
  font-family: verdana, arial, sans-serif; 
  font-size: 9pt;
}

/* the H1 tag is used as the main page title on all pages. */

H1 {
  font-size: 150%;
  font-weight: bold;
}

/* Any time we have an image as a link, we don't want that ugly border */

IMG { border-width: 0px; } 

/* default styles for links. */

A, A:link {
  text-decoration: unnderline;
}
A:hover {
  text-decoration: none;
  font-weight:bold;
}

/* 
Since firefox and IE implement lists differently, this will put make them 
the same by default so custom styles will be easier to implement at the domain 
level. 
*/

UL { list-style-position: outside; margin-left: 25px; padding: 0px; }
/* UL, LI, UL A { text-indent: 0px; margin: 0px; padding: 0px; } */

