/************************************************
Dropdown Menu
************************************************/
/* Menu wrapper */ 
.dropdownmenu
{ 
	width: 970px;
	padding: 0;
	margin-left: 18px;
}

/***HTML Drop Down Menu****/
div#dropdownmenu
{
	width: 970px;  /*set width of menu */
	padding:0;
	border:0;
	height: 33px;
	display:block;
	background: url(_gfx/fc_images/fc_nav_backg.gif) repeat-x;
}

#dropdownmenu ul { /* remove bullets and list indents */
	list-style-type:none;
	margin: 0;
	border:0;
	float:left;
	padding-left: 20px;
}

a.dropdownitemlevel1, a.dropdownitemhaschildlevel1, a.dropdownitemlevel2
{
	display: block;
background-color:#fff;
border-right: #ccc solid 1px;
border-left: #ccc solid 1px;
border-bottom: #ccc solid 1px;
margin: 0;
padding: 2px 7px 8px 20px;
width:15em;
font-family: Helvetica, Arial, san-serif;
font-size: 10px;
color:#8e0c3a;
cursor: pointer;
line-height: 16px !important;
text-decoration:none;
text-indent: 0;
list-style:outside;
}
/*
a.dropdownitemlevel1, a.dropdownitemhaschildlevel1, a.dropdownitemlevel2
{
	background-color:#fff;
	border-top: solid 1px #fff;
	border: solid 1px #333;
}
*/
a:hover.dropdownitemlevel1, a:hover.dropdownitemhaschildlevel1, a:hover.dropdownitemlevel2{
	background: #fff url(_gfx/nav/fc_nav_arrow.gif) no-repeat 0 8px;
}

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: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:15em;
	padding-left: 5px;
}

#dropdownmenu ul ul ul {
	position: absolute; 
	top: 30%;
	left: 90%; /*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;
}
/* For IE7 and Safari Fix of hide/show behavior z-index problem */


/*Nero - 11/05/2008 IE7 fix for google translate...*/
#dropdownmenu > ul > li
{
	float:left;
}

#dropdownmenu li li
{
	line-height:0px;
}
/*...IE7 fix for google translate*/


