.BadNews {
	color: red;
}

.GoodNews {
	color: green;
}

div#horiz-menu {
	font-family: Arial;
	font-size: 10pt;
	height: 30px;		/* Height of the Menu's top row */
	width: 500px;
	float: right;
	border-top: 0px solid #A1A1A1;
	border-bottom: 0px solid #A1A1A1;
	margin-left: 0px;
	padding-right: 10px;
	font-weight: bold;
}

	/* Margin and Padding for all sub-menus. */
div#horiz-menu ul {
	margin: 0;
	padding: 0;
	z-index: 1000;
	font-weight: bold;
}
	/* Main Menu item settings */
div#horiz-menu li {
	font-weight: bold;
	margin: 0;
	padding: 0;
	padding-right: 0px;
	list-style: none;
	white-space: nowrap;
	float: left;
	border-right: 0px solid #A1A1A1;
	z-index: 1000;
}
	/* Main Menu item hyperlink settings */
div#horiz-menu a:link,
div#horiz-menu a:visited {
	font-weight: bold;
	display: block;
	padding: 0px;
	height: 30px;		/* Height of the Menu's top row */
	line-height: 30px;	/* Height of the Menu's top row */
	text-decoration: none;
	float: left;
}
	/* Alignment of the hyperlink tags in the menu */
div#horiz-menu a {
	display: block;
	height: 30px;		/* Height of the Menu's top row */
	line-height: 30px;	/* Height of the Menu's top row */
	padding: 0px;
	text-decoration: none;
	cursor: pointer;
	background: none;
	float: left;
}
	/* Hyperlink Text location with a sub-menu item. */
#horiz-menu li li a:link,
#horiz-menu li li a:visited{
	background: none;
	padding: 0;
	float: left;
	text-indent: 0px;	/* Indent the sub-menu item text */
}

	/* Hyperlink Font within a sub-menu item. */
#horiz-menu li li a:link,
#horiz-menu li li a:visited {
	border: 0;
	font-size: 10pt;
	font-weight: normal;
}

	/* The formatting for items*/
#horiz-menu li a.active:link,
#horiz-menu li a:link,
#horiz-menu li a:visted,
#horiz-menu li a.active:visited  {
	font-weight: normal;
}

	
	/* The width of sub-menu items. */
#horiz-menu li li {
	background: none;
	padding-left: 2px;
	width: 200px;
}

	/* Basic Sub-Menu settings. */
#horiz-menu ul ul a:link,
#horiz-menu ul ul a:visited {
	display: block;
	text-decoration: none;
	width: auto;
	text-transform: none;
	background: none;
	z-index: 1000;
}

	/* Positioning of the top level menu items. */
#horiz-menu ul li {
	position: relative;
	float: right;
	z-index: 1000;
}
	/* Positioning of sub-menues with parent menu items.
		Note: left: -999em is used to move the sub-menu off
		the page until we hover over it. */
#horiz-menu li ul {
 	top: 30px;			/* Height of the menuitems. */
	position: absolute;
	z-index: 1000;
	left: -999em;
	height: auto;
	width: auto;
	font-weight: normal;
	border-width: 0;
	margin: 0;
	padding: 0;
	z-index: 1000;
}

	/* Size of sub-menues. */
#horiz-menu ul ul  {
	width: 190px;
}

#horiz-menu ul ul a:link,
#horiz-menu ul ul a:visited {
	width: auto;
}

/*
	Margin for pullouts:
		-20px = the defined height of a menuitem.
		235px = the defined width of a menuitem.
 */
#horiz-menu li ul ul {
	margin: -30px 0 0 200px;
}

#horiz-menu li ul li {
	margin: -1px;
}

  
/*********************************/
/* Color Formating styles for the Menu */
/*********************************/

	/* The formatting for items which are the currently active items*/
#horiz-menu.cascadingmenu li a.active:link,
#horiz-menu.cascadingmenu li a.active:visited  {
	color: #5B5B5B;
	text-decoration: none;
}

	/* The Text and Background colors of the menuitems in a menu
		when the mouse is not over them. */
#horiz-menu.cascadingmenu a,
#horiz-menu.cascadingmenu li {
	color: #5B5B5B;
	text-decoration: none;
}

	/* The Text and Background colors of the menuitems in a sub-menu
		 when the mouse is not over them. */
#horiz-menu.cascadingmenu li li a,
#horiz-menu.cascadingmenu li li {
	color: #5B5B5B;
	text-decoration: none;
}

#horiz-menu.cascadingmenu li li {
	border-top: 1px solid #A1A1A1;
	border-bottom: 1px solid #A1A1A1;
	border-left: 1px solid #A1A1A1;
	border-right: 1px solid #A1A1A1;
	text-decoration: none;
	background: #ffffff;
}
	/* The Text and Background colors of the hyperlinks in a menu
		 when the mouse is over them. */
#horiz-menu.cascadingmenu a:hover,
#horiz-menu.cascadingmenu li li:hover,
#horiz-menu.cascadingmenu li li.cmHover {
	color: #5B5B5B;
	text-decoration: none;
	background: #E8EBEF;
}

	/* Positioning of the top level menu items. */
#horiz-menu ul li.cmHover a.TopLevel:hover {
	color: #5B5B5B;
	text-decoration: none;
}

#horiz-menu.cascadingmenu li a.active:hover {
	color: #5B5B5B;
}

/*********************************/
/* Cascading styles for the Menu */
/*********************************/

#horiz-menu li:hover ul ul, 
#horiz-menu li:hover ul ul ul,
#horiz-menu li:hover ul ul ul ul,  
#horiz-menu li.cmHover ul ul, 
#horiz-menu li.cmHover ul ul ul, 
#horiz-menu li.cmHover ul ul ul ul 
{
	display: none;
/*	left: -999em;*/
}

#horiz-menu li:hover ul, 
#horiz-menu li li:hover ul, 
#horiz-menu li li li:hover ul, 
#horiz-menu li li li li:hover ul,
#horiz-menu li.cmHover ul, 
#horiz-menu li li.cmHover ul,
#horiz-menu li li li.cmHover ul,
#horiz-menu li li li li.cmHover ul
{
	left: 0;
	display: block;
}

#horiz-menu li:hover,
#horiz-menu li.cmHover {
	left: 0;
	display: block;
}

