CS8025 Parsing Error Please Help

I get CS8025 Parsing Error at 19,9 . Please Help !!!

using UnityEngine;
using System.Collections;

public class Movement : MonoBehaviour {

	public float PlayerSpeed = 5.00f ;

	private float forimp = 0.00f ;
	// Use this for initialization
		void Start () {

			forimp = Input.GetAxis("Vertical") * PlayerSpeed ;

}
	
	// Update is called once per frame
	void Update () {
		transform.Translate(0, 0, forimp);
	}

You are just missing the closing ‘}’ at the end of the file that closes the class. Note in Monodevelop, if you put your cursor on a bracket, it will highlight the matching (if any) bracket.