Index: trunk/src/tmcsim/client/CADClockView.java
===================================================================
--- trunk/src/tmcsim/client/CADClockView.java	(revision 61)
+++ trunk/src/tmcsim/client/CADClockView.java	(revision 62)
@@ -4,10 +4,5 @@
 import java.awt.Dimension;
 import java.awt.Font;
-import java.awt.event.KeyEvent;
-import java.awt.event.KeyListener;
-import java.util.Observable;
-import java.util.Observer;
 import java.util.logging.Logger;
-
 import javax.swing.BorderFactory;
 import javax.swing.Box;
@@ -15,21 +10,14 @@
 import javax.swing.JFrame;
 import javax.swing.JLabel;
-import javax.swing.JOptionPane;
 import javax.swing.JPanel;
 import javax.swing.WindowConstants;
-import tmcsim.common.ObserverMessage;
-import tmcsim.common.CADEnums.CADScreenNum;
-import tmcsim.cadsimulator.viewer.model.CADSimulatorStatus;
 
 /**
  * The CADClientView class is the view component to the CAD Client application.
  *
- * This view class observers the CADClientModel, listening for updates from the
- * CAD Simulator. Updates includes the current CAD time
  */
 @SuppressWarnings("serial")
 public class CADClockView extends JFrame
 {
-
     /**
      * Error Logger.
@@ -47,19 +35,16 @@
     public CADClockView()
     {
-        super("CAD Client");
+        super("Simulation Clock");
         this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
-        currentTime = new JLabel("0:00:00");
-        CADSimulatorStatus status = new CADSimulatorStatus();
-        String simtime = status.getCurrentTime();
-        currentTime.setText(simtime);
+        currentTime = new JLabel("00:00:00");
         currentTime.setAlignmentX(Box.CENTER_ALIGNMENT);
-        currentTime.setFont(new Font("Geneva", Font.BOLD, 70));
+        currentTime.setFont(new Font("Geneva", Font.BOLD, 200));
         mainPane = new JPanel();
-        setSize(new Dimension(730, 455));
-        setMaximumSize(new Dimension(730, 455));
-        setMinimumSize(new Dimension(730, 455));
+        setSize(new Dimension(1100, 255));
+        setMaximumSize(new Dimension(1100, 255));
+        setMinimumSize(new Dimension(1100, 255));
         mainPane.setLayout(new BoxLayout(mainPane, BoxLayout.Y_AXIS));
         mainPane.setBorder(BorderFactory.createLineBorder(Color.black));
-        mainPane.setBackground(Color.LIGHT_GRAY);
+        mainPane.setBackground(new Color(230, 230, 230));  // #E6E6E6
         mainPane.add(currentTime);
         add(mainPane);
