/* Links will not have an underline except when user does a mouseover
   To have link underlines displayed at all times remove the following two
	   style entries */
a, a:link, a:visited	{  text-decoration: none;  }
a:hover	{ text-decoration: underline;  }

/* Pages will be flush against the top and the left side of the
	browser window */
body	{
	margin-left: 0px;
	margin-top: 0px;  }

/* AlertText (Red) should only be used for items
   of importance that need to remain red and stand out OR
   for small items like symbolic links  */
.alertText 
{  color: #FF0033;
   font-weight : bold;   }
a.alertText:link 
{  color : #FF0033;
   text-decoration: none;
   font-weight : bold;  }  
a.alertText:visited
{  color : #FF0033;
   text-decoration: none;
   font-weight : bold; }
a.alertText:hover 
{  color : #FF0033;
   text-decoration: underline;
   font-weight : bold;   }	

/* subtleText (Grey) 
	Used on Contribution edit pages where additional information is 
	needed but don't want to distract user from primary instructions.  
	Also used for pub date when listing articles */
.subtleText, .pubDate  { 
   color: #666;
	font: 10px Arial, Helvetica, sans-serif;  }
	
/* Background colors
   bkgrnd_light and bkgrnd_white used for alternating row colors in tables
	bkgrnd_med, bkgrnd_light, and bkgrnd_white used for boxes
   bkgrnd_dark used for menu column 
NOTE: Additional box colors are defined in XHTML stylesheet */
.bkgrnd_dark   {
	background-color: #0E0083;
	color: #FFF;  }

.bkgrnd_med	{ background-color: #D6D6D6; }

.bkgrnd_light	{ background-color: #EEE; }

.bkgrnd_white  { background-color: #FFF; }	
