
	

/*==============================================================================

	GRC multi-level script-free pure-CSS menuing system stylesheet.
   This code is hereby placed into the public domain by its author
   Steve Gibson. It may be freely used for any purpose whatsoever.

	Computed Geometries:	with a default 12px font, 1.0em == 12px and
	1px == 0.08333em.
	Thus, our 98px wide Freeware & Research buttons are 8.166666em wide.

==============================================================================*/

/*====== GLOBAL OVERRIDES FOR MAJOR ITEMS AND DIFFERING BROWSER DEFAULTS =====*/


ul { margin-left:20px; }       /* kill default 50px left padding and set 20px */
li { margin-bottom:1em; }          /* set default inter-item vertical spacing */

 /*========================= TOP OF THE MENU CASCADE =========================*/

.menu {
	position: absolute;        		  /* establish a menu positioning context */
	left: -200px;
	margin:0;
	padding:0;
	border:0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size:11px;         /* this (and also below) sets the menu's font size */
	z-index: 2;
}

.menu ul {
	width:150px;
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;          /*  we don't want to view the list as a list */
	line-height:1.5em;           /* globally set the menu's item spacing. note */
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */

.menu li {
	   /* this creates the side-by-side array of top-level buttons */
	position:relative;    /* create local positioning contexts for each button */
	margin:0;
}



/*======================== TOP LEVEL MENU DEFINITIONS ========================*/

.menu ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
	padding:1px;                               /* this is our box border width */
}

.menu ul li a,
.menu ul li a:visited {                    /* unselected top-level menu items */
	display:block;

	text-decoration:none;
	width:100%;
	color:#5A8F8C;
		margin-left:3x;   
}
.menu ul li:hover a,
.menu ul li a:hover {                        /* selected top-level menu items */
	background-color:#5A8F8C;
	color: White;
	z-index: 2;
}


/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/

.menu ul li:hover ul,
.menu ul li a:hover ul {                           /* 2nd level drop-down box */
	display:block;
	text-align: left;
	position:absolute;
	margin:0;
	top:0px;              /* place us just up underneath the top-level images */
	left:140px;       /* left-align our drop-down to the previous button border */
	height:auto;      /* the drop-down height will be determiend by line count */
	color: #4f772b;                        /* this sets the unselected-text color */
	background:#5A8F8C;          /* this sets our menu's effective "border" color */
	z-index: 3;
	font-size:11px;
	font-family: Tahoma, Arial, Helvetica, sans-serif;
}

.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {                   /* 2nd level unselected items */

	border: 0;
	margin:0;
	padding:0 3px 0 3px;
	width: 136px;
	height:auto;
	color:#5A8F8C;               /* this sets the unselected drop-down text color */
	background: #fff;       /* this sets the drop-down menu background color */
	margin-right: 4px;
}

.menu ul li:hover ul li:hover a,
.menu ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color:#0FE4F1;
	background:white;
}
