/* normal text */

/* NOTES:
      for font-family, several alternative fonts are specified,
      followed finally by a supported generic family name
      ('serif', 'sans-serif', 'cursive', 'fantasy').

      Place the font-family declaration at the end of the list of
      declarations for a selector to account for an MSIE3 font
      declaration freak out

      For correct rendering across all three browsers include a
      fictitious font name enclosed in single quotes as your
      first font choice and a fictitious font name as your last
      choice. 

      */

BODY 
	{ 
    background-repeat: no-repeat;
    text-decoration: none;
    font-size: 8pt;
    color: #000066;
    font-family: 'X', verdana, arial, helvetica, verdana 'X';
 	background-color: #000066;
	/*
	SCROLLBAR-BASE-COLOR: #336699;
	SCROLLBAR-ARROW-COLOR: #FFFFFF; 
	SCROLLBAR-TRACK-COLOR: #003366; 
	SCROLLBAR-3DLIGHT-COLOR: #FFFFFF;
	SCROLLBAR-HIGHLIGHT-COLOR: #336699; 
	SCROLLBAR-FACE-COLOR: #336699; 
	SCROLLBAR-SHADOW-COLOR: #003366; 
	SCROLLBAR-DARKSHADOW-COLOR: #000000
	*/
    }
	
INPUT 
	{
	background-color: #EFEFEF;
	border: #000066 1px solid;
	color: #FF3300;
	font-family: 'X', verdana, arial, helvetica, verdana 'X';
	font-weight: none;
	font-size: 8pt
	} 

TEXTAREA 
	{
	background-color: #EFEFEF;
	border: #666666 1px solid;
	color: #666666;
	font-family: verdana, arial, helvetica, verdana;
	font-weight: none;
	font-size: 8pt
	} 
	
	
/* text types */
.small
    {
    font-size: 8pt;
    font-family: verdana, arial, helvetica, verdana;
    }
	
.bigger
    {
    font-size: 10pt;
    font-family: verdana, arial, helvetica, verdana;
    }
	
.mini
    {	
	text-decoration: none;
    font-size: 7pt;
	color: #000066;
    font-family: verdana, arial, helvetica, verdana;
    }
	


/* links */
a:link     
    { 
    text-decoration: none; 
    color: #FF3300;
    }
a:visited  
    { 
    text-decoration: none; 
    color: #FF3300;
    }
a:active   
    { 
    text-decoration: underline; 
    color: #FF3300;
    }
a:hover
    { 
    text-decoration: underline;
    color: #FF3300;
    }

