#TopNavStatic {
	position:absolute;        /* establish a menu-relative positioning context */
	float:left;                                     /* play nicely with others */
	margin:0;
	padding:0;
	border:0;
	height:36px;                                  /* the menu's overall height */
	width:100%;         /* we always want our menu to fill the available space */

	bottom:0;
	_bottom:-1px;
	padding-left:22px;
	z-index:1000;
}

#TopNavStatic img {
	vertical-align: top;      /* prevent images from being pushed down by text */
}

#TopNavStatic ul {
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;
	line-height:1.5em;
}

#TopNavStatic li {
	float:left;
	position:relative;
	margin:0;
	padding-right:12px;
}

#TopNavStatic li ul li { padding:0;}

#TopNavStatic ul li table {
	margin:-1px 0;
	m\argin:0;
	border-collapse:collapse;
	font-size:8pt;
}

/*======================== TOP LEVEL MENU DEFINITIONS ========================*/

#TopNavStatic ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
	padding:1px;                               /* this is our box border width */
	zIndex:1000;
}

#TopNavStatic ul li a,
#TopNavStatic ul li a:visited {                    /* unselected top-level menu items */
	display:block;
	float:left;
	text-decoration:none;
	height:18px;
	
}

#TopNavStatic ul li:hover a,
#TopNavStatic ul li a:hover {                        /* selected top-level menu items */
	    /* these 2 lines create the push-in illusion */
	height:32px;
	
}

/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/

#TopNavStatic ul li:hover ul,
#TopNavStatic ul li a:hover ul {                           /* 2nd level drop-down box */
	display:block;
	position:absolute;
	margin:0;
	top:35px;
	_top:34px;
	left:-1px;
	height:auto;
	width:114px;
	color:black;
}

#TopNavStatic ul li:hover ul li a,
#TopNavStatic ul li a:hover ul li a {
	border:0;
	margin:0;
	padding:0;
	height:auto;
	color:#fff;
	background-color:#b14302;
	width:94px;
	overflow:hidden;
	padding:2px 10px 2px 10px;
}

#TopNavStatic ul li:hover ul li:hover a,
#TopNavStatic ul li a:hover ul li a:hover {
	color:#fff;
	background-color:#012d51;
}

#TopNavStatic ul li:hover ul li.selected a,
#TopNavStatic ul li a:hover ul li.selected a {
	background-color:#012d51;
}
