/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.wizardTop = new System.Windows.Forms.Panel();
			this.stepDescription = new System.Windows.Forms.Label();
			this.title = new System.Windows.Forms.Label();
			this.logo = new System.Windows.Forms.PictureBox();
			this.topLine = new Controls.EtchedLine();
			this.bottomLine = new Controls.EtchedLine();
			this.cancel = new System.Windows.Forms.Button();
			this.back = new System.Windows.Forms.Button();
			this.next = new System.Windows.Forms.Button();
			this.bottomPanel = new System.Windows.Forms.Panel();
			this.sidePanel = new System.Windows.Forms.Panel();
			this.sideLogo = new System.Windows.Forms.PictureBox();
			this.panelStep = new System.Windows.Forms.Panel();
			this.wizardTop.SuspendLayout();
			this.bottomPanel.SuspendLayout();
			this.sidePanel.SuspendLayout();
			this.SuspendLayout();
			// 
			// wizardTop
			// 
			this.wizardTop.BackColor = System.Drawing.Color.White;
			this.wizardTop.Controls.AddRange(new System.Windows.Forms.Control[] {
																					this.stepDescription,
																					this.title,
																					this.logo});
			this.wizardTop.Dock = System.Windows.Forms.DockStyle.Top;
			this.wizardTop.Name = "wizardTop";
			this.wizardTop.Size = new System.Drawing.Size(488, 64);
			this.wizardTop.TabIndex = 0;
			// 
			// stepDescription
			// 
			this.stepDescription.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
				| System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right);
			this.stepDescription.Location = new System.Drawing.Point(16, 24);
			this.stepDescription.Name = "stepDescription";
			this.stepDescription.Size = new System.Drawing.Size(408, 32);
			this.stepDescription.TabIndex = 4;
			this.stepDescription.Text = "Step Description";
			// 
			// title
			// 
			this.title.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right);
			this.title.AutoSize = true;
			this.title.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.title.Location = new System.Drawing.Point(8, 8);
			this.title.Name = "title";
			this.title.Size = new System.Drawing.Size(55, 13);
			this.title.TabIndex = 3;
			this.title.Text = "Step Text";
			// 
			// logo
			// 
			this.logo.Dock = System.Windows.Forms.DockStyle.Right;
			this.logo.Location = new System.Drawing.Point(429, 0);
			this.logo.Name = "logo";
			this.logo.Size = new System.Drawing.Size(59, 64);
			this.logo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
			this.logo.TabIndex = 2;
			this.logo.TabStop = false;
			// 
			// topLine
			// 
			this.topLine.Dock = System.Windows.Forms.DockStyle.Top;
			this.topLine.Location = new System.Drawing.Point(0, 64);
			this.topLine.Name = "topLine";
			this.topLine.Size = new System.Drawing.Size(488, 2);
			this.topLine.TabIndex = 1;
			this.topLine.Text = "lineFrame1";
			// 
			// bottomLine
			// 
			this.bottomLine.Dock = System.Windows.Forms.DockStyle.Top;
			this.bottomLine.Name = "bottomLine";
			this.bottomLine.Size = new System.Drawing.Size(488, 2);
			this.bottomLine.TabIndex = 2;
			this.bottomLine.Text = "lineFrame2";
			// 
			// cancel
			// 
			this.cancel.Anchor = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
			this.cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.cancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.cancel.Location = new System.Drawing.Point(8, 8);
			this.cancel.Name = "cancel";
			this.cancel.Size = new System.Drawing.Size(88, 23);
			this.cancel.TabIndex = 3;
			this.cancel.Text = "Cancel";
			this.cancel.Click += new System.EventHandler(this.cancel_Click);
			// 
			// back
			// 
			this.back.Anchor = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
			this.back.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.back.Location = new System.Drawing.Point(296, 8);
			this.back.Name = "back";
			this.back.Size = new System.Drawing.Size(88, 23);
			this.back.TabIndex = 4;
			this.back.Text = "< Back";
			this.back.Click += new System.EventHandler(this.back_Click);
			// 
			// next
			// 
			this.next.Anchor = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
			this.next.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.next.Location = new System.Drawing.Point(392, 8);
			this.next.Name = "next";
			this.next.Size = new System.Drawing.Size(88, 23);
			this.next.TabIndex = 5;
			this.next.Text = "Next >";
			this.next.Click += new System.EventHandler(this.next_Click);
			// 
			// bottomPanel
			// 
			this.bottomPanel.Controls.AddRange(new System.Windows.Forms.Control[] {
																					  this.bottomLine,
																					  this.cancel,
																					  this.back,
																					  this.next});
			this.bottomPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.bottomPanel.Location = new System.Drawing.Point(0, 315);
			this.bottomPanel.Name = "bottomPanel";
			this.bottomPanel.Size = new System.Drawing.Size(488, 40);
			this.bottomPanel.TabIndex = 8;
			// 
			// sidePanel
			// 
			this.sidePanel.BackColor = System.Drawing.Color.White;
			this.sidePanel.Controls.AddRange(new System.Windows.Forms.Control[] {
																					this.sideLogo});
			this.sidePanel.Dock = System.Windows.Forms.DockStyle.Left;
			this.sidePanel.Location = new System.Drawing.Point(0, 66);
			this.sidePanel.Name = "sidePanel";
			this.sidePanel.Size = new System.Drawing.Size(164, 249);
			this.sidePanel.TabIndex = 9;
			this.sidePanel.Visible = false;
			// 
			// sideLogo
			// 
			this.sideLogo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.sideLogo.Location = new System.Drawing.Point(88, 16);
			this.sideLogo.Name = "sideLogo";
			this.sideLogo.Size = new System.Drawing.Size(61, 61);
			this.sideLogo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
			this.sideLogo.TabIndex = 9;
			this.sideLogo.TabStop = false;
			// 
			// panelStep
			// 
			this.panelStep.Dock = System.Windows.Forms.DockStyle.Fill;
			this.panelStep.DockPadding.All = 8;
			this.panelStep.Location = new System.Drawing.Point(164, 66);
			this.panelStep.Name = "panelStep";
			this.panelStep.Size = new System.Drawing.Size(324, 249);
			this.panelStep.TabIndex = 10;
			// 
			// BaseWizard
			// 
			this.AcceptButton = this.next;
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.CancelButton = this.cancel;
			this.ClientSize = new System.Drawing.Size(488, 355);
			this.Controls.AddRange(new System.Windows.Forms.Control[] {
																		  this.panelStep,
																		  this.sidePanel,
																		  this.bottomPanel,
																		  this.topLine,
																		  this.wizardTop});
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.MinimumSize = new System.Drawing.Size(304, 232);
			this.Name = "BaseWizard";
			this.Text = "Wizard Title";
			this.wizardTop.ResumeLayout(false);
			this.bottomPanel.ResumeLayout(false);
			this.sidePanel.ResumeLayout(false);
			this.ResumeLayout(false);

		}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.wizardTop       = new System.Windows.Forms.Panel();
     this.stepDescription = new System.Windows.Forms.Label();
     this.title           = new System.Windows.Forms.Label();
     this.logo            = new System.Windows.Forms.PictureBox();
     this.topLine         = new Controls.EtchedLine();
     this.bottomLine      = new Controls.EtchedLine();
     this.cancel          = new System.Windows.Forms.Button();
     this.back            = new System.Windows.Forms.Button();
     this.next            = new System.Windows.Forms.Button();
     this.bottomPanel     = new System.Windows.Forms.Panel();
     this.sidePanel       = new System.Windows.Forms.Panel();
     this.sideLogo        = new System.Windows.Forms.PictureBox();
     this.panelStep       = new System.Windows.Forms.Panel();
     this.wizardTop.SuspendLayout();
     this.bottomPanel.SuspendLayout();
     this.sidePanel.SuspendLayout();
     this.SuspendLayout();
     //
     // wizardTop
     //
     this.wizardTop.BackColor = System.Drawing.Color.White;
     this.wizardTop.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.stepDescription,
         this.title,
         this.logo
     });
     this.wizardTop.Dock     = System.Windows.Forms.DockStyle.Top;
     this.wizardTop.Name     = "wizardTop";
     this.wizardTop.Size     = new System.Drawing.Size(488, 64);
     this.wizardTop.TabIndex = 0;
     //
     // stepDescription
     //
     this.stepDescription.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                     | System.Windows.Forms.AnchorStyles.Left)
                                    | System.Windows.Forms.AnchorStyles.Right);
     this.stepDescription.Location = new System.Drawing.Point(16, 24);
     this.stepDescription.Name     = "stepDescription";
     this.stepDescription.Size     = new System.Drawing.Size(408, 32);
     this.stepDescription.TabIndex = 4;
     this.stepDescription.Text     = "Step Description";
     //
     // title
     //
     this.title.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                          | System.Windows.Forms.AnchorStyles.Right);
     this.title.AutoSize = true;
     this.title.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.title.Location = new System.Drawing.Point(8, 8);
     this.title.Name     = "title";
     this.title.Size     = new System.Drawing.Size(55, 13);
     this.title.TabIndex = 3;
     this.title.Text     = "Step Text";
     //
     // logo
     //
     this.logo.Dock     = System.Windows.Forms.DockStyle.Right;
     this.logo.Location = new System.Drawing.Point(429, 0);
     this.logo.Name     = "logo";
     this.logo.Size     = new System.Drawing.Size(59, 64);
     this.logo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.logo.TabIndex = 2;
     this.logo.TabStop  = false;
     //
     // topLine
     //
     this.topLine.Dock     = System.Windows.Forms.DockStyle.Top;
     this.topLine.Location = new System.Drawing.Point(0, 64);
     this.topLine.Name     = "topLine";
     this.topLine.Size     = new System.Drawing.Size(488, 2);
     this.topLine.TabIndex = 1;
     this.topLine.Text     = "lineFrame1";
     //
     // bottomLine
     //
     this.bottomLine.Dock     = System.Windows.Forms.DockStyle.Top;
     this.bottomLine.Name     = "bottomLine";
     this.bottomLine.Size     = new System.Drawing.Size(488, 2);
     this.bottomLine.TabIndex = 2;
     this.bottomLine.Text     = "lineFrame2";
     //
     // cancel
     //
     this.cancel.Anchor       = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
     this.cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancel.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.cancel.Location     = new System.Drawing.Point(8, 8);
     this.cancel.Name         = "cancel";
     this.cancel.Size         = new System.Drawing.Size(88, 23);
     this.cancel.TabIndex     = 3;
     this.cancel.Text         = "Cancel";
     this.cancel.Click       += new System.EventHandler(this.cancel_Click);
     //
     // back
     //
     this.back.Anchor    = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
     this.back.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.back.Location  = new System.Drawing.Point(296, 8);
     this.back.Name      = "back";
     this.back.Size      = new System.Drawing.Size(88, 23);
     this.back.TabIndex  = 4;
     this.back.Text      = "< Back";
     this.back.Click    += new System.EventHandler(this.back_Click);
     //
     // next
     //
     this.next.Anchor    = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
     this.next.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.next.Location  = new System.Drawing.Point(392, 8);
     this.next.Name      = "next";
     this.next.Size      = new System.Drawing.Size(88, 23);
     this.next.TabIndex  = 5;
     this.next.Text      = "Next >";
     this.next.Click    += new System.EventHandler(this.next_Click);
     //
     // bottomPanel
     //
     this.bottomPanel.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.bottomLine,
         this.cancel,
         this.back,
         this.next
     });
     this.bottomPanel.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.bottomPanel.Location = new System.Drawing.Point(0, 315);
     this.bottomPanel.Name     = "bottomPanel";
     this.bottomPanel.Size     = new System.Drawing.Size(488, 40);
     this.bottomPanel.TabIndex = 8;
     //
     // sidePanel
     //
     this.sidePanel.BackColor = System.Drawing.Color.White;
     this.sidePanel.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.sideLogo
     });
     this.sidePanel.Dock     = System.Windows.Forms.DockStyle.Left;
     this.sidePanel.Location = new System.Drawing.Point(0, 66);
     this.sidePanel.Name     = "sidePanel";
     this.sidePanel.Size     = new System.Drawing.Size(164, 249);
     this.sidePanel.TabIndex = 9;
     this.sidePanel.Visible  = false;
     //
     // sideLogo
     //
     this.sideLogo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.sideLogo.Location    = new System.Drawing.Point(88, 16);
     this.sideLogo.Name        = "sideLogo";
     this.sideLogo.Size        = new System.Drawing.Size(61, 61);
     this.sideLogo.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.sideLogo.TabIndex    = 9;
     this.sideLogo.TabStop     = false;
     //
     // panelStep
     //
     this.panelStep.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.panelStep.DockPadding.All = 8;
     this.panelStep.Location        = new System.Drawing.Point(164, 66);
     this.panelStep.Name            = "panelStep";
     this.panelStep.Size            = new System.Drawing.Size(324, 249);
     this.panelStep.TabIndex        = 10;
     //
     // BaseWizard
     //
     this.AcceptButton      = this.next;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.cancel;
     this.ClientSize        = new System.Drawing.Size(488, 355);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.panelStep,
         this.sidePanel,
         this.bottomPanel,
         this.topLine,
         this.wizardTop
     });
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MinimumSize     = new System.Drawing.Size(304, 232);
     this.Name            = "BaseWizard";
     this.Text            = "Wizard Title";
     this.wizardTop.ResumeLayout(false);
     this.bottomPanel.ResumeLayout(false);
     this.sidePanel.ResumeLayout(false);
     this.ResumeLayout(false);
 }