/***HTML Drop Down Menu****/
div#dropdownmenu
{
	width: 940px;  /*set width of menu */
	padding: 0;
	height: 66px;
	margin: 0;
	display:block;
}

#dropdownmenu ul { /* remove bullets and list indents */
	list-style-type:none;
	margin: 0;
	padding: 0;
	float:left;
}

#dropdownmenu li {
}

a.dropdownitemlevel1, a.dropdownitemhaschildlevel1, a.dropdownitemlevel2
{
	display: block;
	border: 1px solid #284d8d;
	margin: 0;
	padding: 5px 13px 5px 7px;
	width:14em;
	color:#ffffff;
	cursor: pointer;
	line-height: 15px !important;
	background-color: #4269ac;
	text-decoration:none;
	margin-bottom: -1px;
}

a:hover.dropdownitemlevel1, a:hover.dropdownitemhaschildlevel1, a:hover.dropdownitemlevel2{
	background: #276ab9 url(_gfx/nav/dropdown_mouseover.gif) 0 0 repeat-x;
	color: #ffffff;
	text-decoration:none;
}

a.dropdownitemhaschildlevel1
{
	background-image:url(_gfx/nav/arrow_right_dropdown.gif);
	background-position: 97% 50%;
	background-repeat:no-repeat;
}

#dropdownmenu li {
	/* make the list elements a containing block for the nested lists */
	position: relative;
	/*z-index:400; -- need a smaller value so that the administrative toolbox could stay on top*/
	z-index:20;/*IE7 fix if home collage is present*/
} 

#dropdownmenu ul ul
{
	position: absolute;
	z-index: 500;
	width:16em;
}

#dropdownmenu ul ul ul {
	position: absolute; 
	top: 30%;
	left: 94%; /*to position them to the right of their containing block */
	width:16em;
	z-index:400;/*IE7 fix if home collage is present*/
}



/*Determine hide/show behavior of sub-menus*/
div#dropdownmenu ul ul,
div#dropdownmenu ul li:hover ul ul,
div#dropdownmenu ul ul li:hover ul ul,
div#dropdownmenu ul li.over ul ul,
div#dropdownmenu ul ul li.over ul ul
{
	display: none;
}

div#dropdownmenu ul li:hover ul,
div#dropdownmenu ul ul li:hover ul,
div#dropdownmenu ul ul ul li:hover ul,
div#dropdownmenu ul li.over ul,
div#dropdownmenu ul ul li.over ul,
div#dropdownmenu ul ul ul li.over ul
{
	display: block;
}
/*Determine hide/show behavior of sub-menus*/


/* For IE7 and Safari Fix of hide/show behavior z-index problem */
#dropdownmenu ul li ul li:hover,
#dropdownmenu ul li ul li.over,
#dropdownmenu ul li ul li:hover a, 
#dropdownmenu ul li ul li.over a
{
	position: relative;
	z-index: 600;
}

#dropdownmenu ul li ul li:hover ul,
#dropdownmenu ul li ul li.over ul,
#dropdownmenu ul li ul li:hover ul li,
#dropdownmenu ul li ul li.over ul li,
#dropdownmenu ul li ul li:hover ul li a,
#dropdownmenu ul li ul li.over ul li a
{
	display:block;
	z-index: 700;
}








