

/*   Clickable Horizontal Headline Crawler */
/*   Copyright 2009, Michael J. Hill.  All rights reserved. Used with permission.  www.javascript-demos.com */
/*   Free use of the code, so long as the above notice is kept intact */


	/* edit to suit */
	/* position: absolute is not required, used for demo only */	

	.crawl_container
			{
   			 overflow: hidden;
   			 height: 20px;   
   			 border: none;   		
  			 background-color: #fff;
			}  

	.crawler
			{
		 	 font-family: arial;
		 	 font-size: 14px;
    		 white-space: nowrap;    		
		 	 padding: 0px;
		 	 color: #b51621;
			 cursor: default;		 		       
			}	

	.crawler a 
			{
		 	 text-decoration: none;
			}
	.crawler a:hover
			{
			 background-color: #fff;
			 font-weight: bold;			
			}

	.odd_color 
			{
		 	 color: #b51621;
			}

	.even_color
			{
		 	 color: #b51621;
			}	

	.copyright_MJH 
			{
			 width: 92%;
			 margin-left: auto; 
			 margin-right: auto; 
			 background-color: transparent;
		   	 text-align: center;
			 font-family: veranda; 
			 font-size: 8pt;
			 color: #d3d3d3;
			 display: none;
			}

	.copyright_MJH  a 
			{
			 color: #b0e0e6;
			}






