/* This is the part for the CSS menu - these settings are for a horizontal menu */
#dmenu{  
	width:900px;                 
	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: 0px;                /* 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 */
	width: 225px;               /* the width of each main menu item */
	display: block;
}
#dmenu ul {                     /* third-level (or greater) menu element list elements */
	position: relative;         /* this is so that it doesn't push that page content around on hover */
	margin: 0px;                /* space around the list container */
	padding: 0px;               /* space within the list container */
	list-style-type: none;      /* disable the display of the list item bullets */
	display: none;
	width: 225px;               /* should be the same as #dmenu li width */
	background-color: #9A7B45;     /* sub-menu default background color */
	color: #fff;                /* sub-menu default font color (not links) */
	border:#E9DCC2 1px solid;
}
#dmenu ul li{                   /* second-level or greater menu element links */
	background-color: #9A7B45;     /* default background color for sub-menu container */
	color: #fff;                /* default font color (not links) for sub-menu container */
	border: none;               /* sub-menu item border settings */
	margin: 0px;                /* spacing between sub-menu containers */
	padding: 0px 0px 0px 0px;               /* This is for padding between menu items in the drop-downs */
	width: 100%;               /* (padding*2) must be subtracted from #dmenu li width and set for this one, or borders won't display properly. */
	text-align:left;
	
}
#dmenu li a{                    /* top-level menu element links */
	font-family:Arial, Helvetica, sans-serif;
	font-weight:normal;
	font-size:12px;
	text-decoration:none;
	text-align: left;         /* text alignment in main menu item links */
	display: block;
	text-decoration:none;
}
#dmenu ul a {                   /* all the other level menu link elements */
	padding: 5px 5px 5px 10px;
	margin: 0px;
	width: 225px;               /* (padding*2) must be subtracted from #dmenu ul li width and set for this one, or borders won't display properly. */
	display: block;
	color:#FFFFFF
}
#dmenu a:hover,                 /* top-level hovering properties */
#dmenu li:hover{
	font-family:Arial, Helvetica, sans-serif;
	font-weight:normal;
	font-size:12px;
	text-decoration:none;
	color:#E9DCC2;
	display: block;
}
#dmenu ul li:hover,             /* higher level hovering properties */
#dmenu ul li a:hover{
	display: block;
	width: 225px;               /* should be set to the same value as #dmenu ul li width */
	
}
#dmenu ul ul li:hover,             /* higher level hovering properties */
#dmenu ul ul li a:hover{
	display: block;
	width: 160px;               /* should be set to the same value as #dmenu ul li width */
	
}
#dmenu ul ul ul li:hover,             /* higher level hovering properties */
#dmenu ul ul ul li a:hover{
	display: block;
	width: 190px;               /* should be set to the same value as #dmenu ul li width */
	
}
#dmenu ul ul{                   /* higher-level list containers */
	display: none;              /* don't display by default */
	position: absolute;
	margin-left: 128px;         /* this should be the width of #dmenu ul li */
	margin-top: 0em;           /* this will push the sub-menu up to the level of it's parent */
	left:0px;
	width: 210px;
	z-index: 1;
	
}
#dmenu ul ul ul{                   /* higher-level list containers */
	display: none;              /* don't display by default */
	position: absolute;
	margin-left: 160px;         /* this should be the width of #dmenu ul li */
	margin-top: 0em;           /* this will push the sub-menu up to the level of it's parent */
	left:0px;
	width: 210px;
	visibility: visible;
	
}
/* only non-MSIE browsers use this */
#dmenu ul li>ul,
#dmenu ul ul li>ul{
	margin-top: -2.2em;           /* should be set to the same as #dmenu ul ul margin-top */
	
}
/* 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 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;
}

.fixIE_six {
	_position:absolute; 
	_margin:0px 0px 0px -65px;
}