

/*
Set initial font styles
*/
body {
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 12px;
}

table {
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 12px;
}





/*
if img is inside "a" it would have
borders, we don't want that
*/
img {
   border: 0;
}








a:link    {
  /* Applies to all unvisited links */
  text-decoration:  underline;
/*  font-weight:      bold; */
/*  background-color: #ddd; */
  color:            blue;
  } 
a:visited {
  /* Applies to all visited links */
  text-decoration:  underline;
/*  font-weight:      bold; */
/*  background-color: #ddd; */
  color:            blue;
  } 
a:hover   {
  /* Applies to links under the pointer */
  text-decoration:  none;
/*  font-weight:      bold; */
/*  background-color: blue; */
  color:            blue;
  } 
a:active  {
  /* Applies to activated links */
  text-decoration:  underline;
/*  font-weight:      bold; */
/*  background-color: black; */
  color:	 blue;
  } 
  










