Converting Word to PDF -> bullet problem

Hi,
We have just purchased Aspose.Total for various purpose, incl. MSWORD 2 PDF conversion.
i am using Aspose.Words version 5.2.2.0 and Aspose.Pdf 3.8.0.0. However, some of my documents does not convert bullets correctly (and tables). It appears as the bullet font is missing ?
Original Word and PDF result is enclosed.
.Net code is the following

Document document = new Document(new MemoryStream(bytes), null, load, null);
MemoryStream output = new MemoryStream();
using (MemoryStream xmlStream = new MemoryStream())
{
    document.SaveOptions.PdfExportBookmarkLevel = 0;
    document.SaveOptions.PdfExportFormFieldsAsText = false;
    document.SaveOptions.ExportPrettyFormat = true;
    document.SaveOptions.PdfExportMetafileResolution = 300;
    document.Save(xmlStream, SaveFormat.AsposePdf);
    xmlStream.Seek(0, SeekOrigin.Begin);
    Aspose.Pdf.Pdf pdf = new Aspose.Pdf.Pdf();
    pdf.IsImagesInXmlDeleteNeeded = true;
    pdf.IsTruetypeFontMapCached = true;
    pdf.TruetypeFontMapPath = Path.GetTempPath();
    pdf.BindXML(xmlStream, null);
    pdf.SetUnicode();
    pdf.Save(output);
}

Hi
Thanks for your inquiry. As I can see the table in your document is converted fine.
Regarding bullets it is known issue #6032 in our defect database. I will notify you as soon as it is fixed. As a workaround you can use standard bullets. If you need I can send you refactored document. If so please provide me your e-mail.
Best regards.