/* This is the part for the CSS menu - these settings are for a horizontal menu */
#dmenu{  
	width:565px;                 
	list-style-type: none;      /* disable the display of the list item bullets */
	margin: 0px;                /* space around the list container */
	padding: 0px;               /* space within the list container */
	position: static;           /* need this so that the z-index stuff works correctly */
	z-index: 1;                /* 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;      /* disable the display of the list item bullets */
	float: left;                /* this is to allow for the horizontal main menu */
	margin: 0px;                /* spacing between main menu items */
	padding: 0px;               /* padding within main menu items */
	             /* the width of each main menu item */
	display: block;
	height:53px;
	text-indent:-9999px;
}

