In the attached sample document, I am unable to do something I am normally able to do: Find and replace section breaks with nothing. I want to get rid of the section breaks.

This is the recorded code that would normally work:
[VBA] Sub Macro4()
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "^b"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
End With
Selection.Find.Execute Replace:=wdReplaceAll
End Sub
[/VBA]

Help!!