/*  Stylesheet Specification for MIMS
	Use of this stylesheet should eliminate the need for any specific font tags.  Developers should familiarize themselves with those styles defined by the design developer for each project, and use those styles throughout their pages.

	font-style: normal, italic;
	font-weight: normal, bold;
	text-decoration: none, underline;
	color: hexidecimal color code;
	font-size: text point specification
	font-family: three font styles, last is the default browser style*/

/*  Page specification.  
	Style defines entire page appearance.  This syle should span both the BODY tag and the TD tag since current browsers do not cascade within table cells reliably.  Style will include font face, size, and color.*/
BODY { color: #000000;  font-size: 12pt;  font-family: Arial, Verdana, Sans-serif; }
TD { color: #000000;  font-size: 12pt;  font-family: Arial, Verdana, Sans-serif; }

/*  Table Header specification.
	Style defines unique table header appearance.  For sites that wish to define a separate table header look, this style can be defined as different from the above table data cell.  Style will include font face, size, weight, style, decoration, and color.*/
TH { color: #000000;  text-decoration: underline;  font-size: 10pt;  font-style: normal;  font-weight: normal;  
	font-family: Times, "Times New Roman", Serif; }

/*  Link specification.  
	Style defines standard page links.  Style will include decoration and color.  For usability, standard links should maintain the underline feature.*/
A:link  { text-decoration: underline;  color: #003D6D; }
A:visited  { text-decoration: underline;  color: #003D6D; }
A:active  { text-decoration: underline;  color: #73AAD9; }
A:hover  { text-decoration: underline;  color: #73AAD9; }

/*  Bold specification.  
	Style defines standard bold style.  Style will include font weight.*/
B { font-weight: bold; }

/*  Header specifications.  
	Style defines standard header appearances.  Six different header styles can be defined using the H1 through H6 styles  Additionally, if the space traditionally after the Hx styles is not desired, user defined styles .h1 through .h6 can be defined.  These styles should be used for all header styles. Style will include font face, size, weight, style, decoration, and color.*/
H1 { color: #000000;  text-decoration: none;  font-size: 10pt;  font-style: normal;  font-weight: bold;  
	font-family: Verdana, Helvetica, Sans-serif; }
H2 { color: #000000;  text-decoration: none;  font-size: 10pt;  font-style: normal;  font-weight: bold;  
	font-family: Verdana, Helvetica, Sans-serif; }
H3 { color: #000000;  text-decoration: none;  font-size: 10pt;  font-style: normal;  font-weight: bold;  
	font-family: Verdana, Helvetica, Sans-serif; }
H4 { color: #000000;  text-decoration: none;  font-size: 10pt;  font-style: normal;  font-weight: bold;  
	font-family: Verdana, Helvetica, Sans-serif; }
H5 { color: #000000;  text-decoration: none;  font-size: 10pt;  font-style: normal;  font-weight: bold;  
	font-family: Verdana, Helvetica, Sans-serif; }
H6 { color: #000000;  text-decoration: none;  font-size: 10pt;  font-style: normal;  font-weight: bold;  
	font-family: Verdana, Helvetica, Sans-serif; }
.h1 { color: #003D6D;  text-decoration: none;  font-size: 20pt;  font-style: normal;  font-weight: bold;  
	font-family: Verdana, Helvetica, Sans-serif; }
.h2 { color: #000000;  text-decoration: none;  font-size: 10pt;  font-style: normal;  font-weight: bold;  
	font-family: Verdana, Helvetica, Sans-serif; }
.h3 { color: #003D6D;  text-decoration: none;  font-size: 16pt;  font-style: normal;  font-weight: bold;  
	font-family: Verdana, Helvetica, Sans-serif; }
.h4 { color: #000000;  text-decoration: none;  font-size: 10pt;  font-style: normal;  font-weight: bold;  
	font-family: Verdana, Helvetica, Sans-serif; }
.h5 { color: #000000;  text-decoration: none;  font-size: 10pt;  font-style: normal;  font-weight: bold;  
	font-family: Verdana, Helvetica, Sans-serif; }
.h6 { color: #000000;  text-decoration: none;  font-size: 10pt;  font-style: normal;  font-weight: bold;  
	font-family: Verdana, Helvetica, Sans-serif; }

/*  Site Navigation specification.  
	Style defines site navigation text appearance.  Additionally, link styles may also be defined to create unique navigation appearance.  Style will include font face, size, weight, style, decoration, and color*/
.nav { color: #000000;  font-size: 10pt;  font-style: normal;  font-weight: bold;  
	font-family: Verdana, Helvetica, Sans-serif; }
.nav A:link  { text-decoration: none:  color: #000000; }
.nav A:visited  { text-decoration: none:  color: #000000; }
.nav A:active  { text-decoration: none:  color: #000000; }
.nav A:hover  { text-decoration: none:  color: #000000; }

/*  Fieldname specification.  
	Style defines fieldname appearance (any place text is used to describe any field within a form). Style will include font face, size, weight, style, decoration, and color*/
.fieldname { color: #003D6D;  font-size: 10pt;  font-style: normal;  font-weight: bold;  
	font-family: Times, "Times New Roman", Serif; }

/*  Field Description specification.  
	Style defines field description appearance (any place text is used to give examples or provide additional information about a field within a form). Style will include font face, size, weight, style, decoration, and color*/
.fielddesc { color: #003D6D;  font-size: 10pt;  font-style: normal;  font-weight: bold;  
	font-family: Times, "Times New Roman", Serif; }


