Link to home
Start Free TrialLog in
Avatar of Saroj13
Saroj13

asked on

How to display text inside Freetextbox in the Email asp.net and c#?

Hi,
i am displaying gridview. its having freetextbox. Text inside freetextbox is fine on the web page.
 In case of email, text is displaying outside freetextbox in the email.

here is the code:
		<asp:GridView ID="gvFeedback" runat="server" AutoGenerateColumns="false" DataSourceID="sdsFB_Records"
   Font-Names="Verdana" GridLines="None"  Width="100%" 
                >
			<Columns>
				<asp:TemplateField ControlStyle-Width="100%">
					<ItemTemplate>
						<asp:Table ID="tblRecord" runat="server" CellPadding="5" CellSpacing="0" Width="95%">
							<asp:TableHeaderRow BackColor="#00698C"   ForeColor="White">
								<asp:TableHeaderCell BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1" HorizontalAlign="Left" VerticalAlign="Bottom" Width="40px">Feedback#</asp:TableHeaderCell>
								<asp:TableHeaderCell BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1" HorizontalAlign="Left" VerticalAlign="Bottom" Width="330">Date</asp:TableHeaderCell>
								<asp:TableHeaderCell BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1" HorizontalAlign="Left" VerticalAlign="Bottom" Width="330">Feedback Type</asp:TableHeaderCell>
							    <asp:TableHeaderCell BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1" HorizontalAlign="Left" VerticalAlign="Bottom" Width="300">Related To</asp:TableHeaderCell>
						 </asp:TableHeaderRow>
							<asp:TableRow>
                                <asp:TableCell BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1" HorizontalAlign="Left" >
									<asp:Label ID="lblID" runat="server" Text='<%# Bind("ID") %>' />
								</asp:TableCell><asp:TableCell BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1" HorizontalAlign="Left" >
									<asp:Label ID="lblDateSubmitted" runat="server" Text='<%# FormatDateText(Eval("Date_Feedback_Entered")) %>' />
								</asp:TableCell><asp:TableCell BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1"  HorizontalAlign="Left">
									<asp:Label ID="lblType" runat="server" Text='<%# Eval("type") %>' HorizontalAlign="Left"/>
								</asp:TableCell><asp:TableCell BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1"  HorizontalAlign="Left">
									<asp:Label ID="lblChangeTo" runat="server" Text='<%# Eval("Options") %>' HorizontalAlign="Left"/>
								</asp:TableCell>
                               
                               </asp:TableRow>
                                <asp:TableRow >
                                <asp:TableCell BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1" Font-Bold="true" HorizontalAlign="Left">
									Status:
								</asp:TableCell>
                                <asp:TableCell  ColumnSpan="3" BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1">
									<asp:Label ID="lblStatus" runat="server" Text='<%# Eval("status") %>'  />
								  </asp:TableCell>
                                  </asp:TableRow >
                                  <asp:TableRow >
								<asp:TableCell BorderColor="#CCCCCC" BorderStyle="None" BorderWidth="0" ColumnSpan="4" >
									<asp:Label ID="Label1" runat="server" Font-Bold="true" Text="Feed Detail:" />		
                                	
									<FTB:FreeTextBox ID="txtDetails" runat="server"
													 AutoGenerateToolbarsFromString="false" 
													 DesignModeCss="ftb1.css"
                                                     RenderMode="Rich"
													 EditorBorderColorLight="#ffffff" 
                                                      EditorBorderColorDark="#ffffff"
                                                       BackColor="#ffffff"
													 EnableHtmlMode="false"
													 Height="100px"
													 JavaScriptLocation="ExternalFile" 
													 ReadOnly="true"
													 RemoveScriptNameFromBookmarks="true"
													 RemoveServerNameFromUrls="true"
													 StripAllScripting="true"
													 SupportFolder="~/ftb"
													 Text='<%# GetHtmlDecode(Eval("Feed_Details"))%>' 
													 ToolbarBackColor="Transparent"
													 ToolbarBackgroundImage="false"
													 ToolbarImagesLocation="ExternalFile"
													 ToolbarStyleConfiguration="NotSet"
                                                      Width="100%"
													 >
												</FTB:FreeTextBox>
                    			
                                    
								</asp:TableCell></asp:TableRow></asp:Table><br /></ItemTemplate></asp:TemplateField></Columns></asp:GridView>

<asp:Table ID="tblButtons" runat="server" CellPadding="5" CellSpacing="0" Width="100%">
									<asp:TableRow HorizontalAlign="Right">
                                      <asp:TableCell  Width="100%">
											<asp:Button ID="btnCancel" runat="server" CausesValidation="false" CssClass="vlf_closebutton" OnClientClick="CloseFormWindow()" Text="Close" UseSubmitBehavior="false"  />
                                            &nbsp;&nbsp;
                              <asp:Button ID="btnSubmit" runat="server" CssClass="vlf_SendEmail_button" Font-Bold="true" Text="Send Email" UseSubmitBehavior="false" onclick="btnSubmit_Click" />
					
                               </asp:TableCell>
                                            
                                            
                                            </asp:TableRow></asp:Table>



protected void btnSubmit_Click(object sender, EventArgs e)
  {
      string strFeedback_ID = "";
      foreach (GridViewRow row in gvFeedback.Rows)
      {
          Label txt = row.Cells[0].Controls[0].FindControl("lblID") as Label;
          strFeedback_ID = txt.Text;

      }
      int FeedbackID = Convert.ToInt32(strFeedback_ID);
      if (FeedbackID > 0)
      {
          string sBankerEmail = BankerEmailAddress(FeedbackID);

          if (sBankerEmail != "")
          {
              SendHTMLMail(sBankerEmail);
            
          }
      }
  }

 public void SendHTMLMail(string toAddress)
  {
      SmtpClient smtpClient = new SmtpClient();
      MailMessage Msg = new MailMessage();
      MailAddress fromAddress = new MailAddress("test@wellsfargo.com", "TestTeam");
        
      // Sender e-mail address.
      Msg.From = fromAddress;
      // Recipient e-mail address.
      Msg.To.Add(new MailAddress(toAddress));
      // Subject of e-mail
      string strFeed_ID = "";
     string strDetails = "";
      foreach (GridViewRow row in gvFeedback.Rows)
      {
          Label txt = row.Cells[0].Controls[0].FindControl("lblID") as Label;
          strFeed_ID = txt.Text;

          FreeTextBox txt1 = row.Cells[0].Controls[0].FindControl("txtDetails") as FreeTextBox;
          strDetails = txt1.Text.Trim();
      }
      int FeedID = Convert.ToInt32(strFeed_ID);
      if (FeedID > 0)
      {
          Msg.Subject = "Please Do Not Reply ." + " " + "Feed Submitted: " + FeedbackID;
      }
      Msg.IsBodyHtml = true;
      Msg.Priority = MailPriority.High;
      string st = "";
      st += "<HTML><BODY>";
      st += "<div style='font-family: Verdana; font-size: 8pt; border:0;'>";                 
      st += "Please check below feed details:";
    
      st += "<span style='margin-top:-150px;border:0'>";   
      st += GetGridviewData(gvFeedback);
      st += HttpUtility.HtmlDecode(strDetails.Trim());
      st += "</span>";
      st += "</div>";
      st += "</HTML></BODY>";
      Msg.Body = st;
      smtpClient.Send(Msg);

 

  }


  // This Method is used to render gridview control
  public string GetGridviewData(GridView gv)
  {
      StringBuilder strBuilder = new StringBuilder();
      StringWriter strWriter = new StringWriter(strBuilder);
      HtmlTextWriter htw = new HtmlTextWriter(strWriter);
      gv.RenderControl(htw);
      return strBuilder.ToString();
  }

Open in new window

Avatar of Franck Gaspoz
Franck Gaspoz
Flag of France image

Hi,
I think it would be really usefull to get an sample of the html code of the email to see what is going wrong, and also the css code related to the field FreeTextBox (ftb1.css)
Avatar of Saroj13
Saroj13

ASKER

here is the c#

public void SendHTMLMail(string toAddress)
  {
      SmtpClient smtpClient = new SmtpClient();
      MailMessage Msg = new MailMessage();
      MailAddress fromAddress = new MailAddress("test@wellsfargo.com", "TestTeam");
        
      // Sender e-mail address.
      Msg.From = fromAddress;
      // Recipient e-mail address.
      Msg.To.Add(new MailAddress(toAddress));
      // Subject of e-mail
      string strFeed_ID = "";
     string strDetails = "";
      foreach (GridViewRow row in gvFeedback.Rows)
      {
          Label txt = row.Cells[0].Controls[0].FindControl("lblID") as Label;
          strFeed_ID = txt.Text;

          FreeTextBox txt1 = row.Cells[0].Controls[0].FindControl("txtDetails") as FreeTextBox;
          strDetails = txt1.Text.Trim();
      }
      int FeedID = Convert.ToInt32(strFeed_ID);
      if (FeedID > 0)
      {
          Msg.Subject = "Please Do Not Reply ." + " " + "Feed Submitted: " + FeedbackID;
      }
      Msg.IsBodyHtml = true;
      Msg.Priority = MailPriority.High;
      string st = "";
      st += "<HTML><BODY>";
      st += "<div style='font-family: Verdana; font-size: 8pt; border:0;'>";                 
      st += "Please check below feed details:";
    
      st += "<span style='margin-top:-150px;border:0'>";   
      st += GetGridviewData(gvFeedback);
      st += HttpUtility.HtmlDecode(strDetails.Trim());
      st += "</span>";
      st += "</div>";
      st += "</HTML></BODY>";
      Msg.Body = st;
      smtpClient.Send(Msg);

 

  }


  // This Method is used to render gridview control
  public string GetGridviewData(GridView gv)
  {
      StringBuilder strBuilder = new StringBuilder();
      StringWriter strWriter = new StringWriter(strBuilder);
      HtmlTextWriter htw = new HtmlTextWriter(strWriter);
      gv.RenderControl(htw);
      return strBuilder.ToString();
  }

Open in new window


ftb1.css

body {
       font-size: 8pt;
    font-family: Verdana;
   
    border-color:#cccccc;
    border-style:solid;
    border-width:1px;
    margin-top:-20px;
   
 width:100%;
}

in the email, text is outside the freetextbox. if i change the font in the css, its not taking that in the email.
Thanks for posting these elements. However it's would be really usefull and more easy to see the final html content of a sample of the email. I think some style directives or some tag errors could lead to the phenomena you describe.
Thank you in advance for this complementary element.
Avatar of Saroj13

ASKER

Feed.docx

please see the image. text below feeddetail should come inside the table cell.  feeddetail is using the freetextbox so that we can display the formatted text.
Thansk for posting the document, but it would be really more usefull to have the final html content of the email. Can you provide it ?
Avatar of Saroj13

ASKER

Hi, please find my .aspx and c# code. i dont know how to get the html code of the email.

.aspx code


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title></title>
    <script language="javascript" type="text/javascript">
	    function CloseFormWindow() {
	        window.close();
	    }
    </script>
  
</head>
<body>


    <div id="container">
  <form id="form1" runat="server">
    <asp:ScriptManager ID="sm" runat="server" EnablePartialRendering="true" />
	
     <div id="Body" runat="server"  style="display: block">
	 <asp:UpdatePanel ID="upMain" runat="server" UpdateMode="Always">
				<ContentTemplate>
		<asp:Table ID="tblPSF" runat="server" BackColor="#FFFFFF" BorderColor="#FFFFFF" BorderStyle="None" BorderWidth="0" CellPadding="0" CellSpacing="3" Width="100%">
			
		</asp:Table>
   		<asp:GridView ID="gvFeedk" runat="server" AutoGenerateColumns="false" DataSourceID="sdsFB_Records"
   Font-Names="Verdana" GridLines="None"  Width="100%" 
                >
			<Columns>
				<asp:TemplateField ControlStyle-Width="100%">
					<ItemTemplate>
						<asp:Table ID="tblRecord" runat="server" CellPadding="5" CellSpacing="0" Width="95%">
							<asp:TableHeaderRow BackColor="#00698C"   ForeColor="White">
								<asp:TableHeaderCell BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1" HorizontalAlign="Left" VerticalAlign="Bottom" Width="40px">Feed#</asp:TableHeaderCell>
								<asp:TableHeaderCell BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1" HorizontalAlign="Left" VerticalAlign="Bottom" Width="330">Date</asp:TableHeaderCell>
								
						 </asp:TableHeaderRow>
							<asp:TableRow>
                                <asp:TableCell BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1" HorizontalAlign="Left" >
									<asp:Label ID="lblID" runat="server" Text='<%# Bind("ID") %>' />
								</asp:TableCell><asp:TableCell BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1" HorizontalAlign="Left" >
									<asp:Label ID="lblDateSubmitted" runat="server" Text='<%# FormatDateText(Eval("Date_Feedback_Entered")) %>' />
								</asp:TableCell
                               
                               </asp:TableRow>
                                <asp:TableRow >
                                <asp:TableCell BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1" Font-Bold="true" HorizontalAlign="Left">
									Status:
								</asp:TableCell>
                                <asp:TableCell  ColumnSpan="3" BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1">
									<asp:Label ID="lblStatus" runat="server" Text='<%# Eval("status_name") %>'  />
								  </asp:TableCell>
                                  </asp:TableRow >
                                  <asp:TableRow >
								<asp:TableCell BorderColor="#CCCCCC" BorderStyle="None" BorderWidth="0" ColumnSpan="4" >
									<asp:Label ID="Label1" runat="server" Font-Bold="true" Text="Feed Detail:" />		
                                	
									<FTB:FreeTextBox ID="txtDetails" runat="server"
													 AutoGenerateToolbarsFromString="false" 
													 DesignModeCss="ftb1.css"
                                                     RenderMode="Rich"
													 EditorBorderColorLight="#ffffff" 
                                                      EditorBorderColorDark="#ffffff"
                                                       BackColor="#ffffff"
													 EnableHtmlMode="false"
													 Height="100px"
													 JavaScriptLocation="ExternalFile" 
													 ReadOnly="true"
													 RemoveScriptNameFromBookmarks="true"
													 RemoveServerNameFromUrls="true"
													 StripAllScripting="true"
													 SupportFolder="~/ftb"
													 Text='<%# GetHtmlDecode(Eval("Feed_Details"))%>' 
													 ToolbarBackColor="Transparent"
													 ToolbarBackgroundImage="false"
													 ToolbarImagesLocation="ExternalFile"
													 ToolbarStyleConfiguration="NotSet"
                                                      Width="100%"
													 >
												</FTB:FreeTextBox>
                    			
                                    
								</asp:TableCell></asp:TableRow></asp:Table><br /></ItemTemplate></asp:TemplateField></Columns></asp:GridView>

<asp:Table ID="tblButtons" runat="server" CellPadding="5" CellSpacing="0" Width="100%">
									<asp:TableRow HorizontalAlign="Right">
                                      <asp:TableCell  Width="100%">
											<asp:Button ID="btnCancel" runat="server" CausesValidation="false" CssClass="vlf_closebutton" OnClientClick="CloseFormWindow()" Text="Close" UseSubmitBehavior="false"  />
                                            &nbsp;&nbsp;
                              <asp:Button ID="btnSubmit" runat="server" CssClass="vlf_SendEmail_button" Font-Bold="true" Text="Send Email" UseSubmitBehavior="false" onclick="btnSubmit_Click" />
					
                               </asp:TableCell>
                                            
                                            
                                            </asp:TableRow></asp:Table>
</ContentTemplate></asp:UpdatePanel>
</div><asp:SqlDataSource ID="sdsFB_Records" runat="server"
		 ConnectionString="<%$ ConnectionStrings:ConnString %>"
		 SelectCommand="[dbo].[usp_GetUserFeedback]"
		 SelectCommandType="StoredProcedure">
		<SelectParameters>
			<asp:Parameter Name=" Username" Type="String" />
		</SelectParameters>
	</asp:SqlDataSource>
   </form>
  <br />
   </div>
</body>
</html>

Open in new window


c#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.DirectoryServices;
using System.Web.UI.HtmlControls;
using System.Net.Mail;
using System.IO;
using System.Data.Sql;
using System.Data.SqlClient;
using System.DirectoryServices;
using System.Configuration;
using System.Data;
using System.Text;
using FreeTextBoxControls;

public partial class Feed : System.Web.UI.Page
{
 
    protected void Page_Load(object sender, System.EventArgs e)
    {

  if (!IsPostBack)
        {
            

                gvFeedback.DataSourceID = "sdsFB_Records";
                gvFeedback.DataBind();

            }
        

        }


        
    }

 
  


 

 
    


  protected void btnSubmit_Click(object sender, EventArgs e)
  {
      string strFeed_ID = "";
      foreach (GridViewRow row in gvFeed.Rows)
      {
          Label txt = row.Cells[0].Controls[0].FindControl("lblID") as Label;
          strFeed_ID = txt.Text;

      }
      int FeedID = Convert.ToInt32(strFeed_ID);
      if (FeedID > 0)
      {
          string sEmail = EmailAddress(FeedbackID);

          if (srEmail != "")
          {
              SendHTMLMail(sEmail);
            
          }
      }
  }


  private string EmailAddress(int FeedID)
  {

      SqlConnection myConnection = new SqlConnection(connectionString);
      myConnection.Open();

      SqlCommand cmdNext = new SqlCommand("usp_GetEmail", myConnection);
      cmdNext.CommandType = CommandType.StoredProcedure;

      cmdNext.Parameters.Add(new SqlParameter("@Feed_ID", SqlDbType.Int));
      cmdNext.Parameters["@Feed_ID"].Value = FeedID;

      SqlDataReader sqlReader = cmdNext.ExecuteReader();

      //Read in the first record and grab the first column
      if (sqlReader.Read())
      {
          return (string)sqlReader["Email"];
      }

      myConnection.Close();

      return null;

  }


  public void SendHTMLMail(string toAddress)
  {
      SmtpClient smtpClient = new SmtpClient();
      MailMessage Msg = new MailMessage();
      MailAddress fromAddress = new MailAddress("test@wellsfargo.com", "test Team");
        
      // Sender e-mail address.
      Msg.From = fromAddress;
      // Recipient e-mail address.
      Msg.To.Add(new MailAddress(toAddress));
      // Subject of e-mail
      string strFeed_ID = "";
     string strDetails = "";
      foreach (GridViewRow row in gvFeed.Rows)
      {
          Label txt = row.Cells[0].Controls[0].FindControl("lblID") as Label;
          strFeed_ID = txt.Text;

          FreeTextBox txt1 = row.Cells[0].Controls[0].FindControl("txtDetails") as FreeTextBox;
          strDetails = txt1.Text.Trim();
      }
      int FeedID = Convert.ToInt32(strFeed_ID);
      if (FeedID > 0)
      {
          Msg.Subject = "Please Do Not Reply." + " " + "Feed Submitted: " + FeedID;
      }
      Msg.IsBodyHtml = true;
      Msg.Priority = MailPriority.High;
      string st = "";
      st += "<HTML><BODY>";
      st += "<div style='font-family: Verdana; font-size: 18px; border:0;'>";                 
      st += "Please check below feed details:";
    
      st += "<span style='margin-top:-150px;border:0'>";   
      st += GetGridviewData(gvFeed);
      st += HttpUtility.HtmlDecode(strDetails.Trim());
      st += "</span>";
      st += "</div>";
      st += "</HTML></BODY>";
      Msg.Body = st;
      smtpClient.Send(Msg);

 

  }


  // This Method is used to render gridview control
  public string GetGridviewData(GridView gv)
  {
      StringBuilder strBuilder = new StringBuilder();
      StringWriter strWriter = new StringWriter(strBuilder);
      HtmlTextWriter htw = new HtmlTextWriter(strWriter);
      gv.RenderControl(htw);
      return strBuilder.ToString();
  }

  public override void VerifyRenderingInServerForm(Control control)
  {
      return;
  }//VerifyRenderingInServerFormz
  
}

Open in new window

If you program effectively send the mentionned emails, open it in your mail client and use the usual command "show email source". It is really the best way to debug this.
Avatar of Saroj13

ASKER

<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=ProgId content=Word.Document>
<meta name=Generator content="Microsoft Word 14">
<meta name=Originator content="Microsoft Word 14">
<link rel=File-List href="test_files/filelist.xml">
<link rel=Edit-Time-Data href="test_files/editdata.mso">
<!--[if gte mso 9]><xml>
 <o:DocumentProperties>
  <o:Author>Sam S.</o:Author>
  <o:Template>NormalEmail.dotm</o:Template>
  <o:Revision>1</o:Revision>
  <o:TotalTime>0</o:TotalTime>
  <o:Created>2015-06-18T16:18:00Z</o:Created>
  <o:Pages>1</o:Pages>
  <o:Words>74</o:Words>
  <o:Characters>425</o:Characters>
  <o:Lines>3</o:Lines>
  <o:Paragraphs>1</o:Paragraphs>
  <o:CharactersWithSpaces>498</o:CharactersWithSpaces>
  <o:Version>14.00</o:Version>
 </o:DocumentProperties>
 <o:OfficeDocumentSettings>
  <o:AllowPNG/>
 </o:OfficeDocumentSettings>
</xml><![endif]-->
<link rel=themeData href="test_files/themedata.thmx">
<link rel=colorSchemeMapping href="test_files/colorschememapping.xml">
<!--[if gte mso 9]><xml>
 <w:WordDocument>
  <w:Zoom>0</w:Zoom>
  <w:TrackMoves/>
  <w:TrackFormatting/>
  <w:ValidateAgainstSchemas/>
  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
  <w:DoNotPromoteQF/>
  <w:LidThemeOther>EN-US</w:LidThemeOther>
  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>
  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
  <w:Compatibility>
   <w:DoNotExpandShiftReturn/>
   <w:BreakWrappedTables/>
   <w:SplitPgBreakAndParaMark/>
   <w:EnableOpenTypeKerning/>
  </w:Compatibility>
  <m:mathPr>
   <m:mathFont m:val="Cambria Math"/>
   <m:brkBin m:val="before"/>
   <m:brkBinSub m:val="&#45;-"/>
   <m:smallFrac m:val="off"/>
   <m:dispDef/>
   <m:lMargin m:val="0"/>
   <m:rMargin m:val="0"/>
   <m:defJc m:val="centerGroup"/>
   <m:wrapIndent m:val="1440"/>
   <m:intLim m:val="subSup"/>
   <m:naryLim m:val="undOvr"/>
  </m:mathPr></w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
 <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
  DefSemiHidden="true" DefQFormat="false" DefPriority="99"
  LatentStyleCount="267">
  <w:LsdException Locked="false" Priority="0" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Normal"/>
  <w:LsdException Locked="false" Priority="9" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="heading 1"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 1"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 2"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 3"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 4"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 5"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 6"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 7"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 8"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 9"/>
  <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/>
  <w:LsdException Locked="false" Priority="10" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Title"/>
  <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>
  <w:LsdException Locked="false" Priority="11" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/>
  <w:LsdException Locked="false" Priority="22" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Strong"/>
  <w:LsdException Locked="false" Priority="20" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/>
  <w:LsdException Locked="false" Priority="59" SemiHidden="false"
   UnhideWhenUsed="false" Name="Table Grid"/>
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/>
  <w:LsdException Locked="false" Priority="1" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 1"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 1"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 1"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/>
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/>
  <w:LsdException Locked="false" Priority="34" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/>
  <w:LsdException Locked="false" Priority="29" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Quote"/>
  <w:LsdException Locked="false" Priority="30" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 1"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 1"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 2"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 2"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 2"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 2"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 2"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 3"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 3"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 3"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 3"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 3"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 4"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 4"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 4"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 4"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 4"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 5"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 5"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 5"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 5"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 5"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 6"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 6"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 6"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 6"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 6"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/>
  <w:LsdException Locked="false" Priority="19" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/>
  <w:LsdException Locked="false" Priority="21" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/>
  <w:LsdException Locked="false" Priority="31" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/>
  <w:LsdException Locked="false" Priority="32" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/>
  <w:LsdException Locked="false" Priority="33" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Book Title"/>
  <w:LsdException Locked="false" Priority="37" Name="Bibliography"/>
  <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/>
 </w:LatentStyles>
</xml><![endif]-->
<style>
<!--
 /* Font Definitions */
 @font-face
	{font-family:Calibri;
	panose-1:2 15 5 2 2 2 4 3 2 4;
	mso-font-alt:"Century Gothic";
	mso-font-charset:0;
	mso-generic-font-family:swiss;
	mso-font-pitch:variable;
	mso-font-signature:-536870145 1073786111 1 0 415 0;}
@font-face
	{font-family:Verdana;
	panose-1:2 11 6 4 3 5 4 4 2 4;
	mso-font-alt:Verdana;
	mso-font-charset:0;
	mso-generic-font-family:swiss;
	mso-font-pitch:variable;
	mso-font-signature:-1593833729 1073750107 16 0 415 0;}
@font-face
	{font-family:"MS Sans Serif";
	panose-1:0 0 0 0 0 0 0 0 0 0;
	mso-font-charset:0;
	mso-generic-font-family:roman;
	mso-font-format:other;
	mso-font-pitch:auto;
	mso-font-signature:0 0 0 0 0 0;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
	{mso-style-unhide:no;
	mso-style-qformat:yes;
	mso-style-parent:"";
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;}
a:link, span.MsoHyperlink
	{mso-style-noshow:yes;
	mso-style-priority:99;
	color:blue;
	text-decoration:underline;
	text-underline:single;}
a:visited, span.MsoHyperlinkFollowed
	{mso-style-noshow:yes;
	mso-style-priority:99;
	color:purple;
	text-decoration:underline;
	text-underline:single;}
p.gvfeedbacktxtdetails0outertable, li.gvfeedbacktxtdetails0outertable, div.gvfeedbacktxtdetails0outertable
	{mso-style-name:gvfeedback_txtdetails_0_outertable;
	mso-style-unhide:no;
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	background:white;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;}
p.gvfeedbacktxtdetails0htmlbox, li.gvfeedbacktxtdetails0htmlbox, div.gvfeedbacktxtdetails0htmlbox
	{mso-style-name:gvfeedback_txtdetails_0_htmlbox;
	mso-style-unhide:no;
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	border:none;
	mso-border-alt:solid white .75pt;
	padding:0in;
	mso-padding-alt:3.0pt 3.0pt 3.0pt 3.0pt;
	font-size:12.0pt;
	font-family:"Courier New";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;}
p.gvfeedbacktxtdetails0designbox, li.gvfeedbacktxtdetails0designbox, div.gvfeedbacktxtdetails0designbox
	{mso-style-name:gvfeedback_txtdetails_0_designbox;
	mso-style-unhide:no;
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	border:none;
	mso-border-alt:solid white .75pt;
	padding:0in;
	mso-padding-alt:0in 0in 0in 0in;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;}
p.gvfeedbacktxtdetails0toolbar, li.gvfeedbacktxtdetails0toolbar, div.gvfeedbacktxtdetails0toolbar
	{mso-style-name:gvfeedback_txtdetails_0_toolbar;
	mso-style-unhide:no;
	mso-margin-top-alt:auto;
	margin-right:1.5pt;
	margin-bottom:.75pt;
	margin-left:0in;
	mso-pagination:widow-orphan;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;}
p.gvfeedbacktxtdetails0buttonoffout, li.gvfeedbacktxtdetails0buttonoffout, div.gvfeedbacktxtdetails0buttonoffout
	{mso-style-name:gvfeedback_txtdetails_0_button_off_out;
	mso-style-unhide:no;
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;}
p.gvfeedbacktxtdetails0buttonoffover, li.gvfeedbacktxtdetails0buttonoffover, div.gvfeedbacktxtdetails0buttonoffover
	{mso-style-name:gvfeedback_txtdetails_0_button_off_over;
	mso-style-unhide:no;
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	background:#FFF4CC;
	border:none;
	mso-border-alt:solid navy .75pt;
	padding:0in;
	mso-padding-alt:0in 0in 0in 0in;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;}
p.gvfeedbacktxtdetails0buttononout, li.gvfeedbacktxtdetails0buttononout, div.gvfeedbacktxtdetails0buttononout
	{mso-style-name:gvfeedback_txtdetails_0_button_on_out;
	mso-style-unhide:no;
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	background:#FFD58C;
	border:none;
	mso-border-alt:solid navy .75pt;
	padding:0in;
	mso-padding-alt:0in 0in 0in 0in;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;}
p.gvfeedbacktxtdetails0buttononover, li.gvfeedbacktxtdetails0buttononover, div.gvfeedbacktxtdetails0buttononover
	{mso-style-name:gvfeedback_txtdetails_0_button_on_over;
	mso-style-unhide:no;
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	background:#FE914E;
	border:none;
	mso-border-alt:solid navy .75pt;
	padding:0in;
	mso-padding-alt:0in 0in 0in 0in;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;}
p.gvfeedbacktxtdetails0starttabon, li.gvfeedbacktxtdetails0starttabon, div.gvfeedbacktxtdetails0starttabon
	{mso-style-name:gvfeedback_txtdetails_0_starttabon;
	mso-style-unhide:no;
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	background:#81A9E2;
	border:none;
	mso-border-top-alt:gray;
	mso-border-left-alt:#81A9E2;
	mso-border-bottom-alt:#81A9E2;
	mso-border-right-alt:white;
	mso-border-style-alt:solid;
	mso-border-width-alt:.75pt;
	padding:0in;
	mso-padding-alt:1.0pt 1.0pt 1.0pt 1.0pt;
	font-size:10.0pt;
	font-family:"MS Sans Serif","serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;
	mso-bidi-font-family:"Times New Roman";}
p.gvfeedbacktxtdetails0starttaboff, li.gvfeedbacktxtdetails0starttaboff, div.gvfeedbacktxtdetails0starttaboff
	{mso-style-name:gvfeedback_txtdetails_0_starttaboff;
	mso-style-unhide:no;
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	background:#81A9E2;
	border:none;
	mso-border-top-alt:gray;
	mso-border-left-alt:#81A9E2;
	mso-border-bottom-alt:#81A9E2;
	mso-border-right-alt:gray;
	mso-border-style-alt:solid;
	mso-border-width-alt:.75pt;
	padding:0in;
	mso-padding-alt:1.0pt 1.0pt 1.0pt 1.0pt;
	font-size:10.0pt;
	font-family:"MS Sans Serif","serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;
	mso-bidi-font-family:"Times New Roman";}
p.gvfeedbacktxtdetails0tabon, li.gvfeedbacktxtdetails0tabon, div.gvfeedbacktxtdetails0tabon
	{mso-style-name:gvfeedback_txtdetails_0_tabon;
	mso-style-unhide:no;
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	background:white;
	border:none;
	mso-border-top-alt:white;
	mso-border-left-alt:white;
	mso-border-bottom-alt:gray;
	mso-border-right-alt:gray;
	mso-border-style-alt:solid;
	mso-border-width-alt:.75pt;
	padding:0in;
	mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt;
	font-size:8.0pt;
	font-family:"MS Sans Serif","serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;
	mso-bidi-font-family:"Times New Roman";}
p.gvfeedbacktxtdetails0taboffright, li.gvfeedbacktxtdetails0taboffright, div.gvfeedbacktxtdetails0taboffright
	{mso-style-name:gvfeedback_txtdetails_0_taboffright;
	mso-style-unhide:no;
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	background:#81A9E2;
	border:none;
	mso-border-alt:solid gray .75pt;
	mso-border-bottom-alt:solid #81A9E2 .75pt;
	padding:0in;
	mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt;
	font-size:8.0pt;
	font-family:"MS Sans Serif","serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;
	mso-bidi-font-family:"Times New Roman";}
p.gvfeedbacktxtdetails0taboffleft, li.gvfeedbacktxtdetails0taboffleft, div.gvfeedbacktxtdetails0taboffleft
	{mso-style-name:gvfeedback_txtdetails_0_taboffleft;
	mso-style-unhide:no;
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	background:#81A9E2;
	border:none;
	mso-border-top-alt:gray;
	mso-border-left-alt:gray;
	mso-border-bottom-alt:white;
	mso-border-right-alt:white;
	mso-border-style-alt:solid;
	mso-border-width-alt:.75pt;
	padding:0in;
	mso-padding-alt:1.0pt 4.0pt 1.0pt 4.0pt;
	font-size:8.0pt;
	font-family:"MS Sans Serif","serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;
	mso-bidi-font-family:"Times New Roman";}
p.gvfeedbacktxtdetails0endtab, li.gvfeedbacktxtdetails0endtab, div.gvfeedbacktxtdetails0endtab
	{mso-style-name:gvfeedback_txtdetails_0_endtab;
	mso-style-unhide:no;
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	background:#81A9E2;
	border:none;
	mso-border-alt:solid #81A9E2 .75pt;
	mso-border-top-alt:solid gray .75pt;
	padding:0in;
	mso-padding-alt:1.0pt 1.0pt 1.0pt 1.0pt;
	font-size:10.0pt;
	font-family:"MS Sans Serif","serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;
	mso-bidi-font-family:"Times New Roman";}
p.gvfeedbacktxtdetails0ancestorarea, li.gvfeedbacktxtdetails0ancestorarea, div.gvfeedbacktxtdetails0ancestorarea
	{mso-style-name:gvfeedback_txtdetails_0_ancestorarea;
	mso-style-unhide:no;
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:3.0pt;
	mso-pagination:widow-orphan;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;}
.MsoChpDefault
	{mso-style-type:export-only;
	mso-default-props:yes;
	font-size:10.0pt;
	mso-ansi-font-size:10.0pt;
	mso-bidi-font-size:10.0pt;}
@page WordSection1
	{size:8.5in 11.0in;
	margin:1.0in 1.0in 1.0in 1.0in;
	mso-header-margin:.5in;
	mso-footer-margin:.5in;
	mso-paper-source:0;}
div.WordSection1
	{page:WordSection1;}
-->
</style>
<!--[if gte mso 10]>
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:"Table Normal";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-priority:99;
	mso-style-parent:"";
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin:0in;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:"Times New Roman","serif";}
</style>
<![endif]-->
</head>

<body lang=EN-US link=blue vlink=purple style='tab-interval:.5in'>

<div class=WordSection1>

<p class=MsoNormal style='margin-left:120.0pt;text-indent:-120.0pt;tab-stops:
120.0pt;mso-layout-grid-align:none;text-autospace:none'><b><span
style='font-family:"Calibri","sans-serif";mso-bidi-font-family:Calibri;
color:black'>From:<span style='mso-tab-count:1'>                              </span></span></b><span
style='font-family:"Calibri","sans-serif";mso-bidi-font-family:Calibri;
color:black'>Test Team &lt;test@simon.com&gt;<o:p></o:p></span></p>

<p class=MsoNormal style='margin-left:120.0pt;text-indent:-120.0pt;tab-stops:
120.0pt;mso-layout-grid-align:none;text-autospace:none'><b><span
style='font-family:"Calibri","sans-serif";mso-bidi-font-family:Calibri;
color:black'>Sent:<span style='mso-tab-count:1'>                               </span></span></b><span
style='font-family:"Calibri","sans-serif";mso-bidi-font-family:Calibri;
color:black'>Thursday, June 18, 2015 9:13 AM<o:p></o:p></span></p>

<p class=MsoNormal style='margin-left:120.0pt;text-indent:-120.0pt;tab-stops:
120.0pt;mso-layout-grid-align:none;text-autospace:none'><b><span
style='font-family:"Calibri","sans-serif";mso-bidi-font-family:Calibri;
color:black'>To:<span style='mso-tab-count:1'>                                   </span></span></b><span
style='font-family:"Calibri","sans-serif";mso-bidi-font-family:Calibri;
color:black'>Sam S.<o:p></o:p></span></p>

<p class=MsoNormal style='margin-left:120.0pt;text-indent:-120.0pt;tab-stops:
120.0pt;mso-layout-grid-align:none;text-autospace:none'><b><span
style='font-family:"Calibri","sans-serif";mso-bidi-font-family:Calibri;
color:black'>Subject:<span style='mso-tab-count:1'>                          </span></span></b><span
style='font-family:"Calibri","sans-serif";mso-bidi-font-family:Calibri;
color:black'>Please Do Not Reply to this email . Feed Submitted: 302<o:p></o:p></span></p>

<p class=MsoNormal style='margin-left:120.0pt;text-indent:-120.0pt;tab-stops:
120.0pt;mso-layout-grid-align:none;text-autospace:none'><span style='font-family:
"Calibri","sans-serif";mso-bidi-font-family:Calibri;color:black'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal style='margin-left:120.0pt;text-indent:-120.0pt;tab-stops:
120.0pt;mso-layout-grid-align:none;text-autospace:none'><b><span
style='font-family:"Calibri","sans-serif";mso-bidi-font-family:Calibri;
color:black'>Importance:<span style='mso-tab-count:1'>                   </span></span></b><span
style='font-family:"Calibri","sans-serif";mso-bidi-font-family:Calibri;
color:black'>High<o:p></o:p></span></p>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

<p class=MsoNormal><span style='font-size:8.0pt;font-family:"Verdana","sans-serif";
mso-fareast-font-family:"Times New Roman"'>Please check below feed details:<span
style='border:none windowtext 1.0pt;mso-border-alt:none windowtext 0in;
padding:0in'><o:p></o:p></span></span></p>

<div>

<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width="100%"
 style='width:100.0%;border-collapse:collapse;mso-yfti-tbllook:1184'
 id=gvFeedback>
 <tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes'>
  <td style='padding:.75pt .75pt .75pt .75pt'>
  <p class=MsoNormal align=center style='text-align:center'><b><span
  style='font-family:"Verdana","sans-serif";mso-fareast-font-family:"Times New Roman"'>&nbsp;<o:p></o:p></span></b></p>
  </td>
 </tr>
 <tr style='mso-yfti-irow:1;mso-yfti-lastrow:yes'>
  <td style='padding:.75pt .75pt .75pt .75pt'>
  <table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width="100%"
   style='width:100.0%;border-collapse:collapse;mso-yfti-tbllook:1184;
   mso-padding-alt:3.75pt 3.75pt 3.75pt 3.75pt' id="gvFeedback_tblRecord_0">
   <tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes'>
    <td width=40 valign=bottom style='width:30.0pt;border:solid #CCCCCC 1.0pt;
    mso-border-alt:solid #CCCCCC .75pt;background:#00698C;padding:3.75pt 3.75pt 3.75pt 3.75pt'>
    <p class=MsoNormal><b><span style='mso-fareast-font-family:"Times New Roman";
    color:white'>Feed#<o:p></o:p></span></b></p>
    </td>
    <td width=330 valign=bottom style='width:247.5pt;border:solid #CCCCCC 1.0pt;
    border-left:none;mso-border-left-alt:solid #CCCCCC .75pt;mso-border-alt:
    solid #CCCCCC .75pt;background:#00698C;padding:3.75pt 3.75pt 3.75pt 3.75pt'>
    <p class=MsoNormal><b><span style='mso-fareast-font-family:"Times New Roman";
    color:white'>Date<o:p></o:p></span></b></p>
    </td>
    <td width=330 valign=bottom style='width:247.5pt;border:solid #CCCCCC 1.0pt;
    border-left:none;mso-border-left-alt:solid #CCCCCC .75pt;mso-border-alt:
    solid #CCCCCC .75pt;background:#00698C;padding:3.75pt 3.75pt 3.75pt 3.75pt'>
    <p class=MsoNormal><b><span style='mso-fareast-font-family:"Times New Roman";
    color:white'>Type<o:p></o:p></span></b></p>
    </td>
    <td width=300 valign=bottom style='width:225.0pt;border:solid #CCCCCC 1.0pt;
    border-left:none;mso-border-left-alt:solid #CCCCCC .75pt;mso-border-alt:
    solid #CCCCCC .75pt;background:#00698C;padding:3.75pt 3.75pt 3.75pt 3.75pt'>
    <p class=MsoNormal><b><span style='mso-fareast-font-family:"Times New Roman";
    color:white'>Options<o:p></o:p></span></b></p>
    </td>
   </tr>
   <tr style='mso-yfti-irow:1'>
    <td style='border:solid #CCCCCC 1.0pt;border-top:none;mso-border-top-alt:
    solid #CCCCCC .75pt;mso-border-alt:solid #CCCCCC .75pt;padding:3.75pt 3.75pt 3.75pt 3.75pt'><span
    id="gvFeedback_lblID_0">
    <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>302</span><o:p></o:p></span></p>
    </td>
    <td style='border-top:none;border-left:none;border-bottom:solid #CCCCCC 1.0pt;
    border-right:solid #CCCCCC 1.0pt;mso-border-top-alt:solid #CCCCCC .75pt;
    mso-border-left-alt:solid #CCCCCC .75pt;mso-border-alt:solid #CCCCCC .75pt;
    padding:3.75pt 3.75pt 3.75pt 3.75pt'><span
    id="gvFeedback_lblDateSubmitted_0">
    <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>06/18/2015
    09:12:28 AM</span><o:p></o:p></span></p>
    </td>
    <td style='border-top:none;border-left:none;border-bottom:solid #CCCCCC 1.0pt;
    border-right:solid #CCCCCC 1.0pt;mso-border-top-alt:solid #CCCCCC .75pt;
    mso-border-left-alt:solid #CCCCCC .75pt;mso-border-alt:solid #CCCCCC .75pt;
    padding:3.75pt 3.75pt 3.75pt 3.75pt'><span HorizontalAlign=Left
    id="gvFeedback_lblType_0">
    <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>I
    have a suggestion</span><o:p></o:p></span></p>
    </td>
    <td style='border-top:none;border-left:none;border-bottom:solid #CCCCCC 1.0pt;
    border-right:solid #CCCCCC 1.0pt;mso-border-top-alt:solid #CCCCCC .75pt;
    mso-border-left-alt:solid #CCCCCC .75pt;mso-border-alt:solid #CCCCCC .75pt;
    padding:3.75pt 3.75pt 3.75pt 3.75pt'><span HorizontalAlign=Left
    id="gvFeedback_lblChangeRelatedTo_0">
    <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>Design</span><o:p></o:p></span></p>
    </td>
   </tr>
   <tr style='mso-yfti-irow:2'>
    <td style='border:solid #CCCCCC 1.0pt;border-top:none;mso-border-top-alt:
    solid #CCCCCC .75pt;mso-border-alt:solid #CCCCCC .75pt;padding:3.75pt 3.75pt 3.75pt 3.75pt'>
    <p class=MsoNormal><b><span style='mso-fareast-font-family:"Times New Roman"'>Status:
    <o:p></o:p></span></b></p>
    </td>
    <td colspan=3 style='border-top:none;border-left:none;border-bottom:solid #CCCCCC 1.0pt;
    border-right:solid #CCCCCC 1.0pt;mso-border-top-alt:solid #CCCCCC .75pt;
    mso-border-left-alt:solid #CCCCCC .75pt;mso-border-alt:solid #CCCCCC .75pt;
    padding:3.75pt 3.75pt 3.75pt 3.75pt'><span id="gvFeedback_lblStatus_0">
    <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>Read only</span><o:p></o:p></span></p>
    </td>
   </tr>
   <tr style='mso-yfti-irow:3;mso-yfti-lastrow:yes'>
    <td colspan=4 style='padding:3.75pt 3.75pt 3.75pt 3.75pt'><span
    id="gvFeedback_Label1_0">
    <p class=MsoNormal><b><span style='mso-fareast-font-family:"Times New Roman"'>Feed
    Detail:</span></span></b><span style='mso-fareast-font-family:"Times New Roman"'>
    <o:p></o:p></span></p>
    <table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
     width="100%" style='width:100.0%;mso-cellspacing:0in;background:white;
     mso-yfti-tbllook:1184;mso-padding-alt:1.5pt 1.5pt 1.5pt 1.5pt'>
     <tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;mso-yfti-lastrow:yes'>
      <td style='padding:1.5pt 1.5pt 1.5pt 1.5pt'>
      <div>
      <iframe id="gvFeedback_txtDetails_0_designEditor" style='height:99px;
       padding-bottom:0px;padding-left:0px;padding-right:0px;padding-top:0px;
       width:100%' src="about:blank" class="gvFeedback_txtDetails_0_DesignBox">
      </iframe>
      <textarea id="gvFeedback_txtDetails_0" name="gvFeedback_txtDetails_0"
      disabled style="padding: 0px; width:100%; height: 100px;"
      class="gvFeedback_txtDetails_0_HtmlBox">
      <div id="gvFeedback_txtDetails_0_htmlEditorArea">
      <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman";
      display:none;mso-hide:all'>tes test test &lt;u&gt;&lt;font
      style=&quot;BACKGROUND-COLOR: #008000&quot;&gt;test&lt;/font&gt;&lt;/u&gt;</textarea>
      <span style='mso-spacerun:yes'> </span><o:p></o:p></span></p>
      </div>
      </div>
      </td>
     </tr>
    </table>
    </td>
   </tr>
  </table>
  </td>
 </tr>
</table>

</div>

<p class=MsoNormal><span style='font-size:8.0pt;font-family:"Verdana","sans-serif";
mso-fareast-font-family:"Times New Roman";border:none windowtext 1.0pt;
mso-border-alt:none windowtext 0in;padding:0in'>tes test test <u><span
style='background:green'>test</span></u></span><span style='font-size:8.0pt;
font-family:"Verdana","sans-serif";mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></p>

</div>

</body>

</html>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Franck Gaspoz
Franck Gaspoz
Flag of France image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial