#left_nav_menu {
	position:absolute;
    width: 12em;
	top:65px;
	left:10px;
    border-left: 3px solid #aaa;
    border-top: 3px solid #aaa;
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    padding: .5em 0 .5em 0;
    margin-bottom: 1em;
    font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Lucida, Geneva, Helvetica, Arial, sans-serif;
    background-color: #90bade;
    color: #333;

	z-index:2;

    /* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity. 
    Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it. 
    IE5/Win incorrectly parses the "\"}"" value, prematurely closing the style 
    declaration. The incorrect IE5/Win value is above, while the correct value is 
    below. See http://glish.com/css/hacks.asp for details. */
	voice-family: "\"}\"";
	voice-family:inherit;
	width: 12em;
}

    /* I've heard this called the "be nice to Opera 5" rule. Basically, it feeds correct 
    length values to user agents that exhibit the parsing error exploited above yet get 
    the CSS box model right and understand the CSS2 parent-child selector. ALWAYS include
    a "be nice to Opera 5" rule every time you use the Tantek Celik hack (above). */
body>#left_nav_menu {width: 13em;} /*  orig=165px */

.menubutton {
    border-bottom: 1px solid #90bade;
    margin: 0;
}

.menubutton a {
    display: block;
    padding: 0px 5px 0px 0.5em;
    border-left: 10px solid #1958b7;    /* specify width of button left edge accent color. */
    border-right: 10px solid #508fc4;   /* specify width of button right edge accent color. */
    background-color: #2175bc;          /* specify button primary color. */
    color: #fff;                        /* specify button label color. */
    text-decoration: none;
    width: 100%;
}

html>body .menubutton a {
    width: auto;
}

.menubuttom a span {
    display: none;
}

.menubutton a:link span {
    display: none;
}

.menubutton a:visited span {
    display: none;
}

.menubutton a:hover {
    border-left: 10px solid #1c64d1;
    border-right: 10px solid #5ba3e0;
    background-color: #ff0000;
    color: #fff;
}

.menubutton a:hover span {
    display: block;
    position: absolute;
    width: 12em;                    /* specify width of pop up text box. */
    top: 410px;                     /* specify vertical position. */
    left: 0px;                     /* work around so IE (bug) will display like Firefox. */
/*    background-color: white; */
	border: 1px solid black;
	padding: 10px;                  /* space around the text. */
    font-size: .8em;
    font-weight: bold;
    text-align: left;
    color: black;
}
