
/*
sets up the fixed window that holds the menu.
*/
#fixedMenu{
	position: fixed;
	left: 0px;
	right: 0px;
	top: 0px;
	height: 25px;
	background-color: white;
	opacity: 1;
	z-index: 1000;
}


		/* Menu */

		.eachAnker{
			width: 100%;
			display: inline-block;
			text-decoration: none;
			background-color: white;
		}

/*
	note the indentOneLevel should be the list class listed
	in the class="".  this will ensure that width 90% is the last line e
	executed.  
*/
		.indentOneLevel{
			padding-left: 15px;
		}

		#menuContainer{
			position: relative;
			width: 200px;
			height: auto;
			background-color: lightyellow;
			font-size: 140%;
		}

		#mgeneralInfo{
			width: 100%;
			height: auto;

			background-color: orange;

		}

		#minstructions{

			width: 100%;
			height: auto;

			background-color: blueviolet;

		}

		#mlocks{
			width: 100%;
			height: auto;

			background-color: darkblue;

		}

		#mcoffeeMaker{
			width: 100%;
			height: auto;

			background-color: darkmagenta;

		}

		#mspeakers{
			width: 100%;
			height: auto;

			background-color: darkgrey;

		}

		#mjacuzzi{
			width: 100%;
			height: auto;

			background-color: olivedrab;

		}


		#mHome{
			width: 100%;
			height: auto;

			background-color: lightslategray;

		}

		.makeVisable{
			display: block;
		}


		.makeInvisable{
			display: none;
		}

		/* menu link colors */

		/* unvisited link */
		a:link {
			color: black;
		}

		/* visited link */
		a:visited {
			color: black;
		}

		/* mouse over link */
		a:hover {
			color: black;
		}

		/* selected link */
		a:active {
			color: rgb(0, 227, 246);
		}
