diff --git a/VectoCore/VectoCore/OutputData/XML/DeclarationReports/VehicleInformationFile/XMLPrimaryBusVehicleReport.cs b/VectoCore/VectoCore/OutputData/XML/DeclarationReports/VehicleInformationFile/XMLPrimaryBusVehicleReport.cs
index ff17c7e0865b0f0637a0cb2ec2d5b35aa60daad0..a016a410dd9f68f0e61797cbf0daa8b3b1bb4d17 100644
--- a/VectoCore/VectoCore/OutputData/XML/DeclarationReports/VehicleInformationFile/XMLPrimaryBusVehicleReport.cs
+++ b/VectoCore/VectoCore/OutputData/XML/DeclarationReports/VehicleInformationFile/XMLPrimaryBusVehicleReport.cs
@@ -342,15 +342,15 @@ namespace TUGraz.VectoCore.OutputData.XML.DeclarationReports.VehicleInformationF
 		private XElement GetPneumaticSystem(IPneumaticSupplyDeclarationData supply, IPneumaticConsumersDeclarationData consumer)
 		{
 			return new XElement(tns + XMLNames.BusAux_PneumaticSystem,
-					new XElement(tns + XMLNames.Bus_SizeOfAirSupply, supply.CompressorSize),
-					new XElement(tns + XMLNames.CompressorDrive, supply.CompressorDrive.GetLabel()),
-					new XElement(tns + XMLNames.Vehicle_Clutch, supply.Clutch),
-					new XElement(tns + XMLNames.Bus_CompressorRatio, supply.Ratio.ToMinSignificantDigits(3,3)),
-					new XElement(tns + XMLNames.Bus_SmartCompressionSystem, supply.SmartAirCompression),
-					new XElement(tns + XMLNames.Bus_SmartRegenerationSystem, supply.SmartRegeneration),
-					new XElement(tns + XMLNames.Bus_AirsuspensionControl, GetXMLAirsuspensionControl(consumer.AirsuspensionControl)),
-					new XElement(tns + XMLNames.BusAux_PneumaticSystem_SCRReagentDosing, consumer.AdBlueDosing == ConsumerTechnology.Pneumatically)
-				);
+				new XElement(tns + XMLNames.Bus_SizeOfAirSupply, supply.CompressorSize),
+				new XElement(tns + XMLNames.CompressorDrive, supply.CompressorDrive.GetLabel()),
+				new XElement(tns + XMLNames.Vehicle_Clutch, supply.Clutch),
+				new XElement(tns + XMLNames.Bus_CompressorRatio, supply.Ratio.ToXMLFormat(3)),
+				new XElement(tns + XMLNames.Bus_SmartCompressionSystem, supply.SmartAirCompression),
+				new XElement(tns + XMLNames.Bus_SmartRegenerationSystem, supply.SmartRegeneration),
+				new XElement(tns + XMLNames.Bus_AirsuspensionControl, GetXMLAirsuspensionControl(consumer.AirsuspensionControl)),
+				new XElement(tns + XMLNames.BusAux_PneumaticSystem_SCRReagentDosing, consumer.AdBlueDosing == ConsumerTechnology.Pneumatically)
+			);
 		}
 
 		private string GetXMLAirsuspensionControl(ConsumerTechnology airsuspensionControl)