
/*Style sheet must contain NO NO NO HTML tags!!! */

#test { font-size: 150%; }


/* This is for a floating menu list */
#float {
    position: fixed;
    right: 0;
    top: 50%;
    width: 8em;
    margin: -2.5em 0 0 0;
    z-index: 5;
    background: hsla(80, 90%, 40%, 0.7);
    color: white;
    font-weight: bold;
    font-size: large;
    text-align: left;
    border: solid hsla(80, 90%, 40%, 0.5);
    border-right: none;
    padding: 0.5em 0.5em 0.5em 2.5em;
    box-shadow: 0 1px 3px black;
    border-radius: 3em 0.5em 0.5em 3em;
}


/* Start table with vertical-text headers. */
table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}
th, td {
    padding: 5px;
    text-align: left;    
}

.box_rotate {
     -moz-transform: rotate(90deg);  /* FF3.5+ */
}

/* End table with vertical-text headers. */


/* Start Horizontal list : a kind of menu */
/* ToDo: Get this to float */
ul.menu {
	position: fixed;
	top: 0;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #2ca25f;
}

li.menu {
    float: left;
}

li.menu a.menu {
    display: block;
    color: white;
    text-align: center;
    padding: 8px;
    text-decoration: none;
}

/* Background color and foreground color change when we hover. */
li.menu a:hover {
    background-color: #e5f5f9;
	color: #000000;
}

/* End Horizontal list : a kind of menu */