I have an ASP application where I show a crsyatl report using the report viewer. I have placed the report viewer inside a panel. At display time the report does not utilize the full width of the panel. I've tried to increase the width of the report without any luck.

Code:
<asp:Panel ID="Panel3" runat="server" Height="451px" Style="left: 2px; position: relative;
            top: 43px; z-index: 102;" Width="945px" ScrollBars="Both">
            &nbsp;<CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="true"
                Style="position: absolute; z-index: 111; left: 0px; top: 0px;" HasDrillUpButton="False" HasExportButton="False" BorderColor="Silver" BorderStyle="Groove" DisplayBottomToolbar="False" DisplayGroupTree="False" EnableDrillDown="False" HasToggleGroupTreeButton="False" HasViewList="False" ToolbarStyle-BackColor="#FFC080" HasZoomFactorList="False" Width="350px" />
        </asp:Panel>