body {  font-family: Arial, Helvetica, sans-serif}
.linkon {  font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; color: #FFFFFF; text-decoration: none}
.linkoff {  font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; color: #666666; text-decoration: none}
.headline {  font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; color: #FFFFFF}
.text010 {  font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-weight: normal; color: #FFFFFF}
.text012 {  font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: normal; color: #FFFFFF}
.text012bold {  font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; color: #FFFFFF}
.navigation014bold {  font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; color: #FFFFFF; text-decoration: none}
.text13 {  font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-weight: normal; color: #FFFFFF}
.text009 {  font-family: Arial, Helvetica, sans-serif; font-size: 9px; font-weight: normal; color: #FFFFFF; text-decoration: none}
.start {  font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; font-style: normal; font-variant: normal}
.text009b { font-family: Arial, Helvetica, sans-serif; font-size: 9px; font-weight: bold; color: #FFFFFF}
.grau12 {  font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: #888888; font-weight: bold; text-decoration: none}
.navigation12 {  font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; color: #FFFFFF; text-decoration: none}
.tab09 {  font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-weight: normal; color: #000000; text-decoration: none}
.tabbg {  font-family: Arial, Helvetica, sans-serif; font-size: 9px; font-weight: normal;  background-color: #e8e8e8; color: #000000; text-decoration: none}
.kontakt1bold {  font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; color: #FFFFFF; text-decoration: none}
.kontakt2bold {  font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; color: #FFFFFF; line-height: 17px; text-decoration: none; }
.bio2norm {  font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: normal; color: #FFFFFF; line-height: 17px; text-decoration: none; }



TEXTAREA { behavior:
<PUBLIC:COMPONENT id="bhvMaxlength" urn="maf:Maxlength">
	<PUBLIC:PROPERTY name="maxLength" />
	<PUBLIC:ATTACH event="onkeypress" handler="doKeypress" />
	<PUBLIC:ATTACH event="onbeforepaste" handler="doBeforePaste" />
	<PUBLIC:ATTACH event="onpaste" handler="doPaste" />

<SCRIPT language="JScript">
// Keep user from entering more than maxLength characters
function doKeypress(){
	if(maxLength && value.length > maxLength-1){
		event.returnValue = false;
		maxLength = parseInt(maxLength);
	}
}
// Cancel default behavior
function doBeforePaste(){
	if(maxLength)
		event.returnValue = false;
}
// Cancel default behavior and create a new paste routine
function doPaste(){
	if(maxLength){
		event.returnValue = false;
		maxLength = parseInt(maxLength);
		var oTR = element.document.selection.createRange();
		var iInsertLength = maxLength - value.length + oTR.text.length;
		var sData = window.clipboardData.getData("Text").substr(0,iInsertLength);
		oTR.text = sData;
	}
}
</SCRIPT>

</PUBLIC:COMPONENT>
}
