@charset "utf-8";
/* CSS Document */


body{
	background: url(graphics/tile_africa.gif); background-color: #FFFFFF
}
 
table { font-family: Arial, Helvetica, sans-serif ; text-align: center; color: mediumpurple; font-size: 24 }

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

#menu{
	width: 200px;  /*---Give our UL a width ---*/
	list-style:none;  /*--- Makes the bullets go away ---*/
	margin:0;  /*--- Take out any default margin on the UL tag ---*/
	padding:0;  /*--- Take out any default padding on the UL tag ---*/


}
 
#menu li{
	/* float:left;  /*--- Make the list go horizontal ---*/
	margin:0;
	height: auto;
}
 
#menu li a{
	display:block;  /*--- Make the entire button are clickable rather than the text alone ---*/
	text-indent: -9999px; /*--- Push the text off screen to hide text---*/
	overflow: hidden; /*--- Makes text outside of bounding box hidden ---*/

	
	
 
}

#menu li#home a{
	background: url(graphics/nav_home_72point.gif) no-repeat;
	
}
 
#menu li#practice a{
	background: url(graphics/nav_africanhealing_72point.gif) no-repeat;	
	
 
}


#menu li#home a:hover{
	background: url(graphics/nav_home_alt_72point.gif) no-repeat;
}
#menu li#practice a:hover{
	background: url(graphics/nav_africanhealing_alt_72point.gif) no-repeat;	
}


#menu li#home a.current{
	background: url(graphics/nav_home_alt_72point.gif) no-repeat;
	cursor:default;  /*--- Show pointer instead of hand cursor for the current page ---*/
}
 
#menu li#practice a.current{
	background: url(graphics/nav_africanhealing_alt_72point.gif) no-repeat;
	cursor:default;  
}


.clear{
	clear:both;  /*--- Clears the float of the list items to restore normal document flow ---*/
}

/*-- tg 2-2-2022 set the pre fixed lenth to 12pt --*/
pre {
  display: block;
  font-family: monospace;
  font-size: 12pt;
  white-space: pre;
  margin: 1em 0;
} 
