/* stylesheet fuer p  */

* { font-family:verdana, arial, sans-serif; text-align:center; background-color:#00f; }

.list a {
		-o-transition: color 2s; 
		-ms-transition: color 2s; 
		-moz-transition: color 2s; 
		-webkit-transition: color 2s;
			
		color:#fff; /* Link vorher: Schrift weiss (Wolken)*/
		text-decoration:none; 
		font-weight:bold;  
		} /* Ausgangszustand */
		
.list a:hover { 
		color:#0f0; /* Link nachher: Schrift gruen (Vegetation) : #0f0; Alternative: dunkelgrau: #333 (dunkel funktioniert Animation besser, geht auch mit schwarz: #000) */  
		} /* Endzustand */
			

/* für Fusszeilen-Link: */			
a 		{
		-o-transition: color 6s; 
		-ms-transition: color 6s; 
		-moz-transition: color 6s;
		-webkit-transition: color 6s;
			
		color:#000; /* Link vorher: schwarz*/
		text-decoration:none;  
		} /* Ausgangszustand */
		
a:hover { 
		color:#0f0; /* Link nachher: gruen: #0f0 oder weiss: #fff (weiss)*/  
		} /* Endzustand */