//Mod1State.java
/*
 * State routine - calculate/update numerical values for microstrip
 * authors: Umberto Ravaioli, Janice Richards
 * version 1.0 - Copyright: Amanogawa.com - All Rights Reserved
 */

import java.util.*;
import java.awt.Color;
import java.awt.Font;

public class Mod3State {


  public static Color bgColor = new Color(194,235,255);
    //public static Color axisColor = Color.white;
    public static Color axisColor = Color.black;
  static Color yListColor = Color.red;
  static Color yList2Color = Color.green.darker().darker();
  static Color yList3Color = Color.blue;
  static Color yList4Color = Color.magenta;

    public Font ttfFont, sanSerifFont, serifFont, symbolFont, italicFont;

  public static Font boldFont = new Font("Serif",Font.BOLD, 18);

    
    public boolean LicenseExpired;
    public int this_month, today_week, this_year, this_hour, this_minute, 
        today_month, today_year, this_zone, saving_time;
    GregorianCalendar Greg = new GregorianCalendar();

    
    //public Mod3State(){
    //	super();
    //}
}


