/* Begin CSS Drop Down Menu */
/* not implemented yet */


#menuh_container
	{
	border: none; margin: 0; padding: 0;
	color: rgb(0,102,186); background-color: rgb(166,196,232);
	position: relative;
	width: 100%; height: 39px;
	z-index: 10;
	}
/* sub menu boxes are not used yet */
#menusub_box 
	{
	border: none; margin: 0; padding: 0;
	padding-top: 2px;
	font-size: 11px; font-weight: normal;
	position: relative; left: 1px;
	text-align: center;
	width: 786px; height: 25px;
	white-space:nowrap;	
	}

#menusub_solution
	{
	border: none; margin: 0; padding: 0;
	color: rgb(56,105,64); background-color: rgb(184,219,148);
	display: inline ;
	position: absolute; left: -128px;
	width: 750px; height: 20px;
	}
#menusub_product
	{
	border: none; margin: 0; padding: 0;
	position: absolute; left: -130px;
	width: 500px; height: 20px;
	}
#menusub_support
	{
	border: none; margin: 0; padding: 0;
	position: absolute; left: -70px;
	width: 250px; height: 20px;
	}

/* Used Now */
#menuh
	{
	border: none; margin: 0; padding: 0;
	font-size: 13px; font-weight: 300;
	font-family: arial, helvetica, sans-serif;
	float:left;

	}
		
#menuh a, a:hover;
	{
	text-align: center;
	white-space:nowrap;
	}
	
#menuh ul a, #menuh ul a:visited	/* menu at rest */
	{
	border-top: 8px solid rgb(0,61,163);
	border-bottom: 5px solid rgb(56,105,64);
	padding-bottom: 3px; padding-top: 3px;
	color: rgb(0,102,186); background-color: rgb(166,196,232);
	display: block;
	font-size: 12px; font-weight: bold;
	line-height: 20px;
	text-align: center;
	text-decoration:none;
	white-space:nowrap;
	}
	
#menuh ul a:hover	/* menu at mouse-over  */
	{
	border-top: 8px solid rgb(56,105,64);
	color: rgb(56,105,64); background-color: rgb(184,219,148);
	}	


#menuh ul
	{
	border: none; margin: 0; padding: 0;
	list-style:none;
	float:left;
	position: relative;
	width: 131px;	/* width of top menu boxes */
	}

#menuh ul li
	{
	border: none; margin: 0; padding: 0;
	position: ;

    min-height: 1px; 	/* Sophie Dennis contribution for IE7 */
    vertical-align: bottom; /* Sophie Dennis contribution for IE7 */
	}

#menusub_solution2
	{
	border: none; margin: 0; padding: 0;
	color: rgb(0,102,186); 
	position: absolute; left: -128px;
	width: 758px; height: 20px;
	}



#menuh ul ul a, #menuh ul ul a:visited,
#menuh ul ul ul a, #menuh ul ul ul a:visited
	{
	border: none; margin: 0; padding: 0;
	padding-left: 5px; padding-right: 5px;
	color: rgb(0,102,186); background-color: rgb(166,196,232);
	text-align: left;
	font-size: 10px; font-weight: normal;
	white-space:nowrap;
	}
	
#menuh ul ul a:hover, 
#menuh ul ul ul a:hover	/* menu at mouse-over  */
	{
	border: none; margin: 0; padding: 0;
	padding-left: 5px; padding-right: 5px;
	color: rgb(56,105,64); background-color: rgb(184,219,148);
	}


#menuh ul ul
	{
	border: none; margin: 0; padding: 0;
	color: rgb(56,105,64); background-color: rgb(184,219,148);
	float: left;
	display: none;		/* (none)Important-allows to show when cursor is on parent */
	position: relative;	/* need for parallel stack */
	width: auto;		/* width of sub menu boxes */
				/* width: 0px for IE - inserted at index.html */
	
	}


#menuh ul ul li
	{
	border: none; margin: 0; padding: 0;
	border-left: 1px dashed gray;

    min-height: 1px; 	/* Sophie Dennis contribution for IE7 */
    vertical-align: bottom; /* Sophie Dennis contribution for IE7 */

	}

#menuh ul ul ul
	{
	border: none; margin: 0; padding: 0;
	border-left: 1px solid rgb(0,61,163); 
	border-right: 1px solid rgb(0,61,163);
	border-bottom: 1px solid rgb(0,61,163);
	display:none;
	position: absolute; top:-1px; left:160px;
	width: ;		/* width of sub menu boxes */
	}


#menuh ul ul ul li
	{
	border: none; margin: 0; padding: 0;
	border-top: 1px solid rgb(0,61,163);
	}



div#menuh li:hover
	{
	cursor:pointer;
	z-index:100;
	}

div#menuh li:hover ul ul,
div#menuh li li:hover ul ul,
div#menuh li li li:hover ul ul,
div#menuh li li li li:hover ul ul
{display:none;}

div#menuh li:hover ul,
div#menuh li li:hover ul,
div#menuh li li li:hover ul,
div#menuh li li li li:hover ul
{display:block;}

/* End CSS Drop Down Menu */