/* This is the part for the CSS menu - these settings are for a horizontal menu */
#dmenu{                         /* menu list container */
	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 */
	background-color: transparent;     /* the default background color within the main menu container */
	color: #000;                /* the default font color (not links) within the main menu container */
	z-index: 20;   
	height: 18px;             /* push the menu up in the layer order a bit so it isn't hidden behind anything */
		/* Browser plug-ins like Flash or Quicktime may not allow you to overlap then with this menu! */
}
#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 */
	border: #999999 solid 1px; 	/* border for each of the main menu items */
	background-color: transparent;     /* main menu item background color */
	color: #FFFFFF;                /* main menu item font color (not links) */
	margin: 0px;                /* spacing between main menu items */
	padding: 0px;               /* padding within main menu items */
	width: 99px;               /* the width of each main menu item */
	display: block;
	height: 18px;
	border-top:0px;
	border-bottom:0px;
}
#dmenu li a{                    /* top-level menu element links */
	text-align: center;         /* text alignment in main menu item links */
	width: 99px;               /* set this to (#dmenu li -> width) - (2 * (#dmenu li -> padding)) */
	display: block;
}
#dmenu li ul{                   /* sub-menu list container */
	position: absolute;         /* this is so that it doesn't push that page content around on hover */
	/*margin: 1px;                /* space around the list container */
	margin-left: 0px;
	margin-top: -1px;
	padding: 0px;               /* space within the list container */
	list-style-type: none;      /* disable the display of the list item bullets */
	display: none;
	width: 139px;               /* the width of the sub menus */
	border: black solid 1px;    /* sub-menu borders */
	background-color: #CCCCCC;     /* sub-menu default background color */
	color: #ff0000;                /* sub-menu default font color (not links) */
}
#dmenu li ul li{                /* sub-menu element links */
	background-color: #CCCCCC;     /* default background color for sub-menu container */
	color: #ff0000;                /* default font color (not links) for sub-menu container */
	border: #a7a7a7 solid 1px;               /* sub-menu item border settings */
	margin: 0px;                /* spacing between sub-menu containers */
	padding: 3px;               /* This is for padding between menu items in the drop-downs */
	width: 131px;               /* (padding*2 - 5) must be subtracted from #dmenu li ul -> width and set for this one, or borders won't display properly...
								   not sure where the other 5 pixels come from... Maybe it's actually padding*4 instead? I'll find out some other time */
}
#dmenu li ul li a{
	display: block;
	width: 131px; 				/* should be set to the same value as #dmenu li ul li -> width */
	padding: 1px; 
	text-align: left; 
	color: Red;             
}
#dmenu li ul li a:hover{
	background: #CCCCCC;
	color: Black;
}
#dmenu li:hover ul, #dmenu li.over ul{ /* lists nested under hovered list items */
	display: block;
}
.content {
	clear: left;
}
