/***HTML Drop Down Menu****/
.dropdownmenu_wrapper
{
	background:url(_gfx/cmn/dropdownbg.gif) repeat-x 0 0;
	width: 760px;
}

div#dropdownmenu
{
	width: 713px;  /*set width of menu */
	padding: 0px;
	border:0;
	height: 38px;
	display:block;
	background-repeat: repeat-x;
	padding-left: 24px;
}

#dropdownmenu ul { /* remove bullets and list indents */
	list-style-type:none;
	margin: 0;
	padding: 0;
	border:0;
	float:left;
}

a.dropdownitemlevel1, a.dropdownitemhaschildlevel1, a.dropdownitemlevel2
{
	display: block;
        margin-bottom: -1px;
	border:1px solid #0362aa;
	padding: 2px 5px;
	width:15em;
	font-family: Tahoma, Arial, san-serif;
	font-size: 10px;
	color:#333;
	cursor: pointer;
	line-height: 16px !important;
	text-decoration:none;
}

a.dropdownitemlevel1, a.dropdownitemhaschildlevel1, a.dropdownitemlevel2
{
	background-color:#F3F5F9;
	border-top: solid 1px #022043;
	border-bottom: solid 1px #022043;
}

a:hover.dropdownitemlevel1, a:hover.dropdownitemhaschildlevel1, a:hover.dropdownitemlevel2{
	background-color: #D7DEF1;
	border-top: solid 1px #022043;
	border-bottom: solid 1px #022043;
	text-decoration:none;
        color: #B63D36;
}

a.dropdownitemhaschildlevel1
{
	background-image:url(_gfx/nav/arrow_right_dropdown.gif);
	background-position:center right;
	background-repeat:no-repeat;
}

#dropdownmenu li {
	/* make the list elements a containing block for the nested lists */
	position: relative;
	z-index:20;/*IE7 fix if home collage is present*/
} 

#dropdownmenu ul ul
{
	position: absolute;
	z-index: 500;
	width:15em;
}

#dropdownmenu ul ul ul {
	position: absolute; 
	top: 30%;
	left: 85%; /*to position them to the right of their containing block */
	width:15em;
	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;
}
