FONT		{FONT-FAMILY: Verdana,Helvetica,sans-serif; FONT-SIZE: 10pt}
TD		{FONT-FAMILY: Verdana,Helvetica,sans-serif; FONT-SIZE: 10pt}
BODY		{FONT-FAMILY: Verdana,Helvetica,sans-serif; FONT-SIZE: 10pt}
P		{FONT-FAMILY: Verdana,Helvetica,sans-serif; FONT-SIZE: 10pt}
DIV		{FONT-FAMILY: Verdana,Helvetica,sans-serif; FONT-SIZE: 10pt}
INPUT 		{BORDER-TOP-COLOR: #000000; BORDER-LEFT-COLOR: #000000; BORDER-RIGHT-COLOR: #000000; BORDER-BOTTOM-COLOR: #000000; BORDER-TOP-WIDTH: 1px; BORDER-LEFT-WIDTH: 1px; FONT-SIZE: 10pt; BORDER-BOTTOM-WIDTH: 1px; FONT-FAMILY: Verdana,Helvetica,sans-serif; BORDER-RIGHT-WIDTH: 1px}
TEXTAREA	{BORDER-TOP-COLOR: #000000; BORDER-LEFT-COLOR: #000000; BORDER-RIGHT-COLOR: #000000; BORDER-BOTTOM-COLOR: #000000; BORDER-TOP-WIDTH: 1px; BORDER-LEFT-WIDTH: 1px; FONT-SIZE: 10pt; BORDER-BOTTOM-WIDTH: 1px; FONT-FAMILY: Verdana,Helvetica,sans-serif; BORDER-RIGHT-WIDTH: 1px}
SELECT 		{BORDER-TOP-COLOR: #000000; BORDER-LEFT-COLOR: #000000; BORDER-RIGHT-COLOR: #000000; BORDER-BOTTOM-COLOR: #000000; BORDER-TOP-WIDTH: 1px; BORDER-LEFT-WIDTH: 1px; FONT-SIZE: 10pt; BORDER-BOTTOM-WIDTH: 1px; FONT-FAMILY: Verdana,Helvetica,sans-serif; BORDER-RIGHT-WIDTH: 1px}
FORM 		{FONT-FAMILY: Verdana,Helvetica,sans-serif; FONT-SIZE: 10pt}
A:link          {BACKGROUND: none;  FONT-FAMILY: Verdana,Helvetica,sans-serif; TEXT-DECORATION: underline}
A:active        {BACKGROUND: none; COLOR: #363636; FONT-FAMILY: Verdana,Helvetica,sans-serif; TEXT-DECORATION: underline}
A:visited       {BACKGROUND: none;   FONT-FAMILY: Verdana,Helvetica,sans-serif; TEXT-DECORATION: underline}
A:hover         {BACKGROUND: none; COLOR: #363636;  FONT-FAMILY: Verdana,Helvetica,sans-serif; TEXT-DECORATION: underline}
.content 	{BACKGROUND: none; COLOR: #000000; FONT-SIZE: 10pt; FONT-FAMILY: Verdana,Helvetica,sans-serif}
A.mainbar    {COLOR: #FFFFFF ; font-size: 11pt; font-weight: bold;TEXT-DECORATION: none}
A.mainbar:link { TEXT-DECORATION: none }
A.mainbar:visited { TEXT-DECORATION: none }
A.mainbar2    {COLOR: #FFFFFF ; font-weight: bold; font-size: 10pt;TEXT-DECORATION: none}
A.mainbar2:hover { TEXT-DECORATION: none; color:red }
A.mainbar2:visited { TEXT-DECORATION: none }
DIV.footer {  font-size: 8pt; text-align: center; color: gray; font-style: italic;  padding-top: 1em }
DIV.log {  font-size: 8pt; text-align: right; color: gray; font-style: italic;  padding-top: 1em }
DIV.textwin {
    height: 310px;
}
DIV.pres_class { font-style: italic;  padding: 3pt ; border: black solid 1px}
/* This is the part for the CSS menu - these settings are for a horizontal menu */
/* http://koivi.com/css-menus/ */
#dmenu{                         /* menu list container */
    list-style-type: none;      /* disable the display of the list item bullets */
    margin: 3px;                /* space around the list container */
    padding: 0px;               /* space within the list container */
    position: static;           /* need this so that the z-index stuff works correctly */
    background-color: #A0A0FF;     /* the default background color within the main menu container */
    color: #FFF;                /* 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: black solid 1px;    /* border for each of the main menu items */
    background-color: #A0A0FF;     /* main menu item background color */
    color: #000;                /* main menu item font color (not links) */
    margin: 0px;                /* spacing between main menu items */
    padding: 0px;               /* padding within main menu items */
    /*width: 120px;               /* the width of each main menu item */
    display: block;
    font-size: 12pt;
}

#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: 120px;               /* should be the same as #dmenu li width */
    background-color: #80A0FF;     /* 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: #80A0FF;     /* default background color for sub-menu container */
    color: #000;                /* default font color (not links) for sub-menu container */
    border: none;               /* sub-menu item border settings */
    margin: 0px;                /* spacing between sub-menu containers */
    padding: 3px;               /* This is for padding between menu items in the drop-downs */
    float: none;
    /* width: 114px;               /* (padding*2) must be subtracted from #dmenu li width and set for this one, or borders won't display properly. */
}

#dmenu li a{                    /* top-level menu element links */
    text-align: center;         /* text alignment in main menu item links */
    /*width: 120px;               /* set this to #dmenu ul width */
    display: block;
}

#dmenu ul a {                   /* all the other level menu link elements */
    padding: 3px;
    margin: 0px;
    /*width: 108px;               /* (padding*2) must be subtracted from #dmenu ul li width and set for this one, or borders won't display properly. */
    display: block;
    text-align: left;
}

#dmenu a:hover,                 /* top-level hovering properties */
#dmenu li:hover{
    display: block;
    /* background-color: black; */
    color: #FFFF00;
}

#dmenu ul li:hover,             /* higher level hovering properties */
#dmenu ul li a:hover{
    display: block;
    /*width: 109px;               /* should be set to the same value as #dmenu ul li width */
    background-color: #000080;
    color: #FFFF00;
}

#dmenu ul ul{                   /* higher-level list containers */
    display: none;              /* don't display by default */
    position: absolute;
    margin-left: 114px;         /* this should be the width of #dmenu ul li */
    margin-top: -2em;           /* 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: -2em;           /* 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;
}
