
/*DROPDOWN MENUS - HORIZONTAL*/

#menuh-container
	{
	position:  relative;
	top: 8px;
	left: 480px;
	white-space: nowrap;
	width: 450px;
	}

#menuh
	{
	font-size: 14px;
	font-family: verdana, sans-serif; 
	width:100%;
	float:left;
	margin:1px;
	}

#menuh a
	{
	text-align: center;
	display:block;
	border: 1px solid white;
	white-space:nowrap;
	margin:0;
	padding: 1px;
	}

.menuh_curr
	{
	color: black;
	background-color: #e9e9e9;
	text-decoration:none;
	}

#menuh a, #menuh a:visited	/* menu at rest */
	{
	color: black;
	text-decoration:none;
	}

#menuh a:hover	/* menu at mouse-over  */
	{
	color: black;
	background-color: #e0e0e0;
	}

#menuh ul li ul li a, #menuh ul li ul li a:visited	/* menu at rest */
	{
	color: black;
	background-color: #f6f6f6;
	text-decoration:none;
	}

#menuh ul li ul li a:hover	/* menu at mouse-over  */
	{
	color: black;
	background-color: #e0e0e0;
	}

#menuh ul
	{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	width:90px;	/* width of all menu boxes */
	}

#menuh li
	{
	position:relative;
	}

#menuh ul ul
	{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	padding: 1em;
	margin:-1em 0 0 -1em;
	}

#menuh ul ul ul
	{
	top:0;
	left:100%;
	}

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 of dropdown menus - horizontal*/


/*HOVER POPUP LINKS*/

/*hoverpopups type 1*/

#popup { color: #000; background-color: #c0c0c0; }

#popup a, #popup a:visited {
position: relative;
display: block;
width: 130px;
line-height: 30px;
text-align: right;
padding: 0 10px;
margin: 0;
border: 1px solid #666;
text-decoration: none;
font-size: 1em;
font-weight: bold;
}

#popup a span {display: none;}

#popup a:hover { background-color: #e9e9e2; }

/* the IE correction rule */
#popup a:hover	{
color: #f00; background-color: #e9e9e2;
text-indent: 0; /* added the default value */
}

#popup a:hover span{
display: block;
position: absolute;
top: 0px;
left: 170px;
width: 320px;
margin: 0px;
padding: 10px;
color: #335500;
font-weight: normal;
background: #e5e5e5;
text-align: left;
border: 1px solid #666;
z-index: 100;
}
