@charset "utf-8";
/* CSS Document */
a:link    {
  /* Applies to all unvisited links */
  text-decoration:  none;
  color:#000000
  } 
a:visited {
  /* Applies to all visited links */
  text-decoration:  none;
  color:#000000
  } 
a:hover   {
  /* Applies to links under the pointer */
  text-decoration:  none;
  color:#0000FF
  } 
a:active  {
  /* Applies to activated links */
  text-decoration:  none;
  color:#000000
  } 
