Paragraph.IsStyleSeparator (Word)
True if a paragraph contains a special hidden paragraph mark that allows Microsoft Word to appear to join paragraphs of different paragraph styles.
Sub StyleSep()
Dim pghDoc As Paragraph
For Each pghDoc In ActiveDocument.Paragraphs
If pghDoc.IsStyleSeparator = True Then
pghDoc.Range.Select
Selection.Style = "Normal"
End If
Next pghDoc
End Sub