/* 
Title: Vertical CSS menu with a behavior file.
Author: Stefan Vervoort
Blog: http://www.divitodesign.com/blog/ 
Article: http://www.divitodesign.com/blog/2008/01/vertical-css-menu-with-a-behavior-file/
*/

body {
	behavior: url(csshover.htc);
}
 
a.menu {
	color: #000;
	text-decoration: none;
}

 ul.menu {
	list-style: none;
	margin: 0;
	padding: 0;
	width:110px;
	//border: 1px solid black;
	
}

ul li.menu {
	font: 14px arial, helvetica, sans-serif;
	font-weight: bold;
	height:100%;
	background:#edeffb;
	
	position: relative;
	float:left;
	width:100%;
	}
	
ul li ul li.menu{
	background:#edeffb;
	}

ul li a.menu{
	display:block;
	padding: 2px 3px 2px 3px;
	}

ul li a.menu:hover {
	color: #00a;
	background: #fafaff;
	border-right: 0px;
	border-left: 0px;
}

ul li ul li a.menu:hover{
	color: #00a;
	background: #fafaff;
	//border-left:1px solid #000;
}

ul ul.menu {
	position: absolute;
	top: 0;
	display:none;
	border: 1px solid black;
}

ul li:hover ul.menu{
	display: block;
	left:108px;
	border: 1px solid black;
	width:200px;
	background: #fdfdff;
	z-index: 10;
}
#fullscreen2 {
	background: url("/hoosier/background.gif") transparent top left repeat-x;
	position: absolute;
	left: 0px;
	top: 0px;
	height: 100%;
	width: 100%;
	height: 164;
}

