
/* global text styles */

/* To prevent browser from using its default link colors, instead inheriting from the parent span...
   CAREFUL!!!  This can make links very hard to find if they are embedded in text. */
/* A { color: inherit; } */


/* Do not specify a default link color -- it has a high specificity and can override later settings */

/* default link hover color */
a:hover, a:active { color: #69C; }

/* only underline links when they are hovered */
a:link, a:visited { text-decoration: none; }
a:hover, a:active { text-decoration: underline; }


/* default font and font size for everything */
* {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	}

/* we almost always use arial and bold together */
.bold {
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	}


/* common font sizes (more defined at bottom) */
.tiny    { font-size: 8px;  }
.small   { font-size: 10px; }
.big     { font-size: 12px; }
.huge    { font-size: 20px; }


/* font colors */

/* specify color classes twice -- once bare for most uses, and once with a universal * selector so that links are not colored differently */

.grey,      .grey *      { color: #777; }
.lightgrey, .lightgrey * { color: #BBB; }
.darkgrey,  .darkgrey *  { color: #444; }

.blue,      .blue *      { color: #003F5F; }
.white,     .white *     { color: white; }
.red,       .red *       { color: red; }


/* these need to specified twice as well -- once for the case where the link appears within another element that has specified the class, and the other for the case where the <a> element specifies the class */

.blue a:hover, a.blue:hover     { color: #69C; }
.white a:hover, a.white:hover    { color: #00557B; }


/* more font sizes */

.f8    { font-size: 8px;  }
.f9    { font-size: 9px;  }
.f10   { font-size: 10px; }
.f11   { font-size: 11px; }
.f12   { font-size: 12px; }
.f13   { font-size: 13px; }
.f14   { font-size: 14px; }
.f16   { font-size: 16px; }
.f18   { font-size: 18px; }
.f20   { font-size: 20px; }






li {
	list-style-type: square;
	margin: 0px;
	}
ul {
	margin-left: 16px;
	margin-right: 16px;
	margin-top: 5px;
	margin-bottom: 5px;
	}

TD, P {
font-size: 11px;
font-family:Verdana,Arial, Helvetica, sans-serif;
font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; text-decoration: none;
vertical-align: center;
}

TD.highlight {
font-weight: bold;
font-color: #999999;
}





