/*
  Author: William_Moore@umanitoba.ca
  Date: 2002.05.28

  Purpose:
   Using the information on CSS font choices from:
     http://www.sposh.net/article_20011021.html
   This file is for IE 6
*/

/* Set the default font family and size for body, td, and th */
body,td,th { 
  font-family : Verdana, Arial, Helvetica, sans-serif;
  font-size: x-small;
  font-style : normal;
  color: #333333;
}

/* We used to have a size one class for font size 1 equivlance */
.size1 { 
  font-family : Verdana, Arial, Helvetica, sans-serif;
  font-size: x-small;
}

/* This is in the event we wish to have a size 2 font */
.size2 { 
  font-family : Verdana, Arial, Helvetica, sans-serif;
  font-size: small;
}

/* This is in the event we wish to have a size 3 font */
.size3 { 
  font-family : Verdana, Arial, Helvetica, sans-serif;
  font-size: medium;
}


