/* ============== Dropdown menu styles ================= */
/* block definitions - define the dropdown behavior */

ul.pagelist {
	visibility: hidden;
	position: absolute;
	top: 24px;
	left: 5px;
	z-index: 10000;
}

/* hack to hide from IE/Mac but deliver to IE/Win \*/
* html ul.pagelist {
	top: 19px;
}
/* end IE hack */ 

li.pageitem {
	position: relative;
	z-index: 1000000;
}

/* ***this rule controls the visibility (behavior of the dropdown list*** */
li.sectionitem:hover ul, li.sectionitem_over ul {
	visibility: visible;
}	
	
