How to get trailing zeros on coordinates in Imperial drawings with decimal feet in isometrics

We have a project that wants civil drawings in decimal feet. The issue is that the isometrics are dropping the trailing zeros for the coordinates. I cannot find a setting that will get the coordinate locations to keep the trailing zeros. Such as 456.00 feet.

We have these settings in the style.cfg file. This will give us two decimal places but still drops any trailing zeros. Any ideas?

#-----------------------------------------------------------------------------

# IMPERIAL_FORMAT
# Specifies the imperial value output type
# = 0 as FIF (Feet-Inch-Fraction) (default)
# = 1 as decimal feet
# = 2 as decimal inch
#-----------------------------------------------------------------------------
IE_FMT_DIMENSION_IMPERIAL_FORMAT = 0
IE_FMT_DIAMETER_IMPERIAL_FORMAT = 0
IE_FMT_COORDINATE_IMPERIAL_FORMAT = 1
IE_FMT_LENGTH_IMPERIAL_FORMAT = 0

#-----------------------------------------------------------------------------
# IMPERIAL_DECIMAL_PLACES
# Specifies the maximum number of decimals used in decimal imperial output
# = 0 zero decimals
# = 1 1 decimal
# = 2 etc (default)
#-----------------------------------------------------------------------------
IE_FMT_DIMENSION_IMPERIAL_DECIMAL_PLACES = 2
IE_FMT_DIAMETER_IMPERIAL_DECIMAL_PLACES = 2
IE_FMT_COORDINATE_IMPERIAL_DECIMAL_PLACES = 2
IE_FMT_LENGTH_IMPERIAL_DECIMAL_PLACES = 2