/* Links in normalem Text */

a:link { /*Formatierung für alle Standartlinks mit Pseudoklasse*/
	color: #333;
	text-decoration: underline;
}
a:visited { 
	color: #666;
	text-decoration: underline;
}
a:hover {
	color: #999;
	text-decoration: underline;;
}
a:focus {
	color: #999;
	text-decoration: underline;
}
a:active {
	color: #999;
	text-decoration: underline;
}

/* Links in Navileiste */

a.navi:link { /*Formatierung für alle Links der Klasse 'navi' mit Pseudoklasse. Die Links befinden sich in der Navigationsleiste.*/
	font-weight:bold;
	font-size: 16px;
	color: #666;
	text-decoration: none;
}
a.navi:visited { 
	font-weight:bold;
	font-size: 16px;
	color: #999;
	text-decoration: none;
}
a.navi:hover {
	font-weight:bold;
	font-size: 16px;
	color: #666;
	text-decoration: none;
}
a.navi:focus {
	font-weight:bold;
	font-size: 16px;
	color: #666;
	text-decoration: none;
}
a.navi:active {
	font-weight:bold;
	font-size: 16px;
	color: #001771;
	text-decoration: none;
}

/* Links vom footer */

a.footer:link { /*Formatierung für alle Links der Klasse 'footer' mit Pseudoklasse. Die Links befinden sich im Footer*/
	font-weight: normal;
	color: #666;
	text-decoration: none;
}
a.footer:visited { 
	font-weight: normal;
	color: #999;
	text-decoration: none;
}
a.footer:hover {
	font-weight: normal;
	color: #666;
	text-decoration: underline;
}
a.footer:focus {
	font-weight: normal;
	color: #666;
	text-decoration: none;
}
a.footer:active {
	font-weight: normal;
	color: #001771;
	text-decoration: none;
}

/* Button zum Spenden */

.buttonformatierung {
            background: #31419F; /* this is a kind of MediZip blue, not sure */
			padding: 10px 10px 10px 10px;
        }

a.spendenbutton:link { /*Formatierung für alle Links der Klasse 'footer' mit Pseudoklasse. Die Links befinden sich im Footer*/
	font-weight: normal;
	color: #ECECEC;
	text-decoration: none;
	font-size: 15px;
}
a.spendenbutton:visited { 
	font-weight: normal;
	color: #ECECEC;
	text-decoration: none;
	font-size: 15px;
}
a.spendenbutton:hover {
	font-weight: normal;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 15px;
}
a.spendenbutton:focus {
	font-weight: normal;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 15px;
}
a.spendenbutton:active {
	font-weight: normal;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 15px;
}
