body {
	background-color:#FEFCE5;
	margin:0;
	border: 0px;
}
td {
	font-size: 11px;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
a:link { color: 333366; }
a:visited {	color: 333366; }
a:hover { color: #336699; }
a:active { color: 333366; }
a.bottom:link {
	color: BDBDCB;
	text-decoration: none;
	font-size: 10px;
}
a.bottom:visited {
	color: BDBDCB;
	text-decoration: none;
	font-size: 10px;
}
a.bottom:hover {
	color: #CCCCCC;
	text-decoration: none;
	font-size: 10px;
}
a.bottom:active {
	color: BDBDCB;
	text-decoration: none;
	font-size: 10px;
}
h1 { font-size: 18px; color: #333333;}
h2 { font-size: 16px; color: #333333;}
h3 { font-size: 14px; color: #333333;}

#footer {
	padding:10px;
	background-color:#5E6E89;
}
#footer, #footer a, #footer a:visited {
	font: 10px Verdana, Arial, Helvetica, sans-serif;
	color:#BDBDCB;
	text-decoration:none;
}
#footer a:active, #footer a:hover {
	color:#C7C7EE;
}
#topmenu {
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
	background-color:#666666;
}
#undermenu {
	background-color:#BDBECA;
	border-top: 1px solid #666666;
}
#page {
	text-align:left;
	width:750px;
	padding:10px;
}

    /* This is the part for the CSS menu - these settings are for a horizontal menu */
    #dmenu{                         /* menu list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        margin: 0px;                /* space around the list container */
        position: static;           /* need this so that the z-index stuff works correctly */
        background-color: #fff;     /* the default background color within the main menu container */
        color: #000;                /* the default font color (not links) within the main menu container */
        z-index: 20;                /* push the menu up in the layer order a bit so it isn't hidden behind anything */
		        /* Browser plug-ins like Flash or Quicktime may not allow you to overlap then with this menu! */

    }
    #dmenu li{                      /* top-level menu element */
        list-style-type: none;      /* disable the display of the list item bullets */
        float: left;                /* this is to allow for the horizontal main menu */
        border-left: white solid 1px;    /* border for each of the main menu items */
        background-color: #666666;  /* main menu item background color */
        margin: 0px;                /* spacing between main menu items */
        width: 100px;               /* the width of each main menu item */
        display: block;
		text-transform:uppercase;
		font-family:Verdana, Arial, Helvetica, sans-serif;
		font-size:11px;
		padding-top:2px;
		padding-bottom:2px;
    }

    #dmenu ul {                     /* third-level (or greater) menu element list elements */
        position: absolute;         /* this is so that it doesn't push that page content around on hover */
        margin: 0px;                /* space around the list container */
        padding: 0px;               /* space within the list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        display: none;
        width: 200px;               /* should be the same as #dmenu li width */
        background-color: #5F6E89;  /* sub-menu default background color */
        border: #000 solid 1px;     /* the border around the sub-menu list */
        color: #000;                /* sub-menu default font color (not links) */
        z-index: 99;                /* want to be sure this is above the rest of the menu */
    }

    #dmenu ul li{                   /* second-level or greater menu element links */
        background-color: #5F6E89;     /* default background color for sub-menu container */
        color: #FFFFFF;                /* default font color (not links) for sub-menu container */
        border-bottom: 1px solid #9EABC3;   /* sub-menu item border settings */
		border-top:none;
		border-right:none;
		border-left:none;
        margin: 0px;                /* spacing between sub-menu containers */
        padding: 0px;               /* This is for padding between menu items in the drop-downs */
        width: 200px;               /* (padding*2) must be subtracted from #dmenu li width and set for this one, or borders won't display properly. */
		text-align:left;
    }

    #dmenu li a{                    /* top-level menu element links */
        width: 100px;               /* set this to #dmenu ul width */
        display: block;
        color: #FFFFFF;             /* main menu item font color (not links) */		
		text-decoration: none;
		padding-top: 4px;
		padding-bottom: 4px;
		text-align: center;
    }
    
    #dmenu ul a {                   /* all the other level menu link elements */
        margin: 0px;
        display: block;
		text-align:left;
        width: 200px;               /* (padding*2) must be subtracted from #dmenu ul li width and set for this one, or borders won't display properly. */
    }

    #dmenu a:hover,                 /* top-level hovering properties */
    #dmenu li:hover{
        background-color: #5B678A;
        color: #FFFFFF;
    }
    
    #dmenu ul li:hover,             /* higher level hovering properties */
    #dmenu ul li a:hover{
        background-color: #424A5B;
        color: FFFFFF;
    }

    #dmenu ul ul{                   /* higher-level list containers */
        display: none;              /* don't display by default */
        position: absolute;
        margin-left: 180px;         /* this should be the width of #dmenu ul li */
        margin-top: -20px;           /* this will push the sub-menu up to the level of it's parent */
    }

    /* only non-MSIE browsers use this */
    #dmenu ul li>ul,
    #dmenu ul ul li>ul{
        margin-top: -20px;           /* should be set to the same as #dmenu ul ul margin-top */
    }

    /* additional sub-menu levels in the next 2 blocks. (For up to 5 levels of drop menus) */
    #dmenu li:hover ul ul,              
    #dmenu li:hover ul ul ul,
    #dmenu li:hover ul ul ul ul,
    #dmenu li:hover ul ul ul ul ul{
        display:none;
    }

    #dmenu li:hover ul,
    #dmenu ul li:hover ul,
    #dmenu ul ul li:hover ul,
    #dmenu ul ul ul li:hover ul,
    #dmenu ul ul ul ul li:hover ul{
        display:block;
    }

    li>ul {
        top: auto;
        left: auto;
    }

	.content {                      /* This is used for the content that will appear below the menu */
        clear: left;
    }
	.yellow {
		background-color: #FFFFCC;	/* yellow background for required form fields */
	}
input {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
textarea {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
select {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
