
body {
		behavior:url("http://www.healthsciences.okstate.edu/css/csshover.htc");
}
	
#menu {
	position: relative;
	left: 0px;
	top: 5px;
	margin-top: 1px solid white;
	padding: 5px;
	width: 170px; 	
	z-index:2;
	}
#menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	}
#menu .menuheader {						/*backgroundcolor here*/
	
	}
#menu a, #menu h2 {						/* Changes to anchor on hover. */
	font: bold 12px arial;
	display: block;
	border:0px solid #ffffff;
	margin: 0;
	padding: 5px;
	text-decoration: none;
	}
#menu h2 { 						/* nav title in orange box above left nav if needed */
	font: bold 12px arial;
	color: #F8F8F8;							
	background-color: #DF610D;
	}

#menu a {
	color: #ffffff;
	background-color: #000000;
	}

#menu a:hover {
	color: #CC6633;
	background-color: #000000;
	text-decoration:underline;
	z-index:2;
	}


					/*the folling #menu rules turn our structured list into a rollover navigation menu */
					/*positioning the popouts*/
					#menu ul ul ul { 
						position: absolute;
						top: 0;
						left: 0;
						border:2px solid #DF610D;
						padding-bottom:20px;
						background-color:#000000;
						z-index:2;
						}
					
					/* positioning*/
					#menu li {
						position: relative;
						z-index:2;
						}
					#menu ul ul ul {
						position: absolute;
						top: 0;
						left: 100%;
						width: 100%;
						z-index:2;
						}
					
					div#menu ul ul ul {						/* hide the submenus when not on mouse hover*/
					display: none;}
					
					div#menu ul ul li:hover ul {	/* show submenus on mouse hover*/
					display: block;}

					li:hover ul, li.over ul {display:block;}
									
					
/* fix ie since it is not standards compliant whitespace and whatever:hover fix */
#menu ul {float: left; width: 100%; margin-bottom: .7em;}
#menu li {float: left; width: 100%;}
#menu ul li a {height: 1%;}



