#dmenu{                         /* menu list container */
	font: Arial, Helvetica, sans-serif;
	font-size: 14pt;
	list-style-type: none;      /* disable the display of the list item bullets */
	margin: 0px;
	padding: 0px;
	position: static;           /* need this so that the z-index stuff works correctly */
	z-index: 20;                /* push the menu up in the layer order a bit so it isn't hidden behind anything */
}

#dmenu li{                      /* top-level menu element */
	list-style-type: none;
	float: left;                /* this is to allow for the horizontal main menu */
	border: black solid 0px;
	margin: 0px;
	padding: 0px;
	width: 152px;
	display: block;
}

#dmenu ul li{                   /* second-level or greater menu element links */
	border: black solid 0px;
	margin: 0;
	padding: 0 0 0 0px;
	width: 152px;
	background-image: url('../images/TabOff.gif');
	background-repeat:no-repeat;
	height:30px;
}

#dmenu ul {                     /* third-level (or greater) menu element list elements */
	position: absolute;         /* this is so that it doesn't push that page content around on hover */
	margin: 0px;
	padding: 0 0 0 0px;
	list-style-type: none;
	display: none;
	width: 152px;
	border: #000 solid 0px;
	z-index: 99;                /* want to be sure this is above the rest of the menu */
}

#dmenu li a{                    /* top-level menu element links */
	text-align: center;         /* text alignment in main menu item links */
	width: 152px;
	display: block;
}
    
#dmenu ul a {                   /* all the other level menu link elements */
	padding: 0px;
	margin: 0px;
	width: 152px; 
	display: block;
	color: #333333;
	text-decoration: none;
}

#dmenu a:hover,                 /* top-level hovering properties */
#dmenu li:hover{
	display: block;
	color: #333333;
}
    
#dmenu ul li:hover,             /* higher level hovering properties */
#dmenu ul li a:hover{
	display: block;
	width: 152px;
	color: white;
	background-image: url('../images/TabOn.gif');
}

#dmenu ul ul{                   /* higher-level list containers */
	display: none;
	position: absolute;
	margin-left: 132px;
	margin-top: -20px;           /* this will push the sub-menu up to the level of it's parent */
}

    /* only non-MSIE browsers use this */
#dmenu ul li>ul,
#dmenu ul ul li>ul{
	margin-top: -20px;
}

/* Holly Hack. IE Requirement \*/

/* End */

    /* additional sub-menu levels in the next 2 blocks. (For up to 5 levels of drop menus) */
#dmenu li:hover ul ul,              
#dmenu li:hover ul ul ul,
#dmenu li:hover ul ul ul ul,
#dmenu li:hover ul ul ul ul ul{
	display:none;
}

#dmenu li:hover ul,
#dmenu ul li:hover ul,
#dmenu ul ul li:hover ul,
#dmenu ul ul ul ul li:hover ul{
	display:block;
}

li>ul {
	top: auto;
	left: auto;
}

.content {                      /* This is used for the content that will appear below the menu */
	clear: left;
}

#siteInfo{
	clear: both;
	border: 1px solid #cccccc;
	font-size: 75%;
	color: #999999;
	padding: 10px 10px 10px 10px;
	margin-top: 0px;
}

.date {
	color: #FF0000;
}

.news_headline {
	color: #666666;
}

.news_indent {
	margin-left: 30px;
	margin-right: 30px;
	text-align:justify;
}
