#viewing-search ul {
display:none;
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;          /* we don't want to view the list as a list */
	line-height:26px;           /* globally set the menu's item spacing. note */
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */
#viewing-search li {
	float:left;    /* this creates the side-by-side array of top-level buttons */
	position:relative;    /* create local positioning contexts for each button */
	margin:0;
}
#viewing-search ul li table {
	margin:-1px 0;              /* IE5 needs -1px top and bottom table margins */
	m\argin:0;               /* re-zero the table margins for everyone but IE5 */
	border-collapse:collapse;      /* IE5 needs this for the sub-menus to work */
	font-size:12px;        /* this sets the base font size for our entire menu */
}
/*======================== TOP LEVEL MENU DEFINITIONS ========================*/
#viewing-search ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
	padding:1px;                               /* this is our box border width */
}
#viewing-search ul li a,
#viewing-search ul li a:visited {
	display:block;
	float:left;
	text-decoration:none;
	height:26px;
	border-right: 1px solid #ffffff;
	font-weight: bold;
	color: #4B4B4D;
	padding-right: 2em;
	padding-left: 2em;
	font:"Trebuchet MS",sans-serif;
}
#viewing-search ul li:hover a,
#viewing-search ul li a:hover {
	background-color: #c02026;/*#006187;*/
	color: #FFFFFF;
}
/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/
#viewing-search ul li:hover ul,
#viewing-search ul li a:hover ul {                           /* 2nd level drop-down box */
	display:block;
	position:absolute;
	margin:0;
	top:30px;              /* place us just up underneath the top-level images */
	left:78px;        /*left-align our drop-down to the previous button border */
	line-height:24px;
	height:auto;      /* the drop-down height will be determiend by line count */
	width:130px;
	color:#333333;                        /* this sets the unselected-text color */
	background:#999999;         /* this sets our menu's effective "border" color */
}
#viewing-search ul li:hover ul li a,
#viewing-search ul li a:hover ul li a {
	margin:0;
	height:24px;
	color: #333333;
	background:#FFFFFF;
	width: 120px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	border-top: 0;
	border-right: 0;
	border-bottom: 1px solid #CCCCCC;
	border-left: 0;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
}
#viewing-search ul li:hover ul li:hover a,
#viewing-search ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color:#FFFFFF;
	background:#c02026;
}
