/* Keeps mylinks out of the drop down link menuh  */

/*  standard Links need to be defined first - Then class or ID will be defined to preferred to   */   
A:link	{ 
	text-decoration: none;
}
A:visited	{
	text-decoration: none;
}
A:active	{
	text-decoration: none;
}
A:hover	{
 /*	color: #cc3000;    orange  */
	font-style: italic;                  /* text becames italic  */
}

/* defines the basic links tags then relate all to class  */

a.mylinks   {
	font-family: Helvetica, Arial, sans-serif;
	color: #299c39;              /*    186321 green        #66ff00;     Lime    */
	cursor: default;
	font-size: 10pt;
	line-height: 10pt;
padding: 2px;
/*	padding-bottom: 10cm; */
	font-weight: normal;
	text-decoration: none;
}
	
a.mylinks: active
	               {
		text-decoration: none;
		}
a.mylinks: hover 
		{
		color: #cc3000;    /* orange  */
		font-size: 10pt;
		font-weight: bold;
		text-decoration: none;
		}
a.mylinks: visited
	{
	color:  #fff;                /*  31007b purple  hide the visited  */
	font-size: 10pt;
	font-weight: bold;
	text-decoration: none;
}

