ul.makeMenu, ul.makeMenu ul 
{
	
	width:  202px;
	background-color:#EEE4C1;      /* a bg-color MUST be included for IE to work properly! */
	padding: 1px 0 0 0;           /* stops the usual indent from ul */
	cursor: default;
	margin: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
    background-image: url(/images/menu_top.gif);
 	background-repeat: no-repeat;
	
}

ul.makeMenu {
	margin-bottom:6px;
}
ul.makeMenu li
{
	display: block;
	list-style-type: none;
	margin: 0px 0px 0px 0px;                 /* Opera 7 puts large spacings between li elements 
  										        -3px margin-top for ie -7 in main html file IE hack */
	position: relative;
	color: #B4A277;
	font-family: arial, helvetica, sans-serif;
	font-size: 9pt;
	font-weight: 700;
    height: 28px; 
	background-image: url(/images/menu_bg.gif);
	}

ul.makeMenu li ul li.last { background-image: none; height: 28px;  }
ul.makeMenu li ul li ul li.last { background-image: none;height: 28px; }
ul.makeMenu li ul
{
	display: none;               /* hides child menu blocks - one of the most important declarations */
	position: absolute;          /* make child blocks hover without leaving space for them */
	top: 0px;
	left: 202px;
	width: 200px;
	background-color:#DFCD9F;
	border-left:3px solid #B4A277;
	background-image : none;

}

ul.makeMenu li ul li
{
	display: block;	text-align:left;    height: 28px; background-image: url(/images/menu_bg1.gif);
}
ul.makeMenu li ul li a
{
	text-align:left; margin-left:13px;
}
ul.makeMenu li ul li ul
{
	display: none;
	position: absolute;
	top: -1px; 
	left: 198px;
	width: 200px;

}

ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight
{
	background-color: #DFCD9F;
	color: #000;
}

ul.makeMenu ul.CSStoShow
{
	display: block;              /* specially to go with the className changes in the behavior file */
}

ul.makeMenu li:hover > ul
{    /* one of the most important declarations - the browser must detect hovering over arbitrary elements the > targets only the child ul, not any child uls of that child ul */
	display: block;              /* makes the child block visible - one of the most important declarations */
	
}

.noArrow {
	padding-right:18px;
}

ul.makeMenu li a { color: #8A774B; display: block;  text-decoration: none; margin-right:5px;padding-top:5px; text-align:right;	}
ul.makeMenu li a:visited {text-decoration: none;}
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #000; text-decoration: none; }
ul.makeMenu li:hover > a { color: #000; } /* supports links in branch headings - should not be display: block;*/

ul.makeMenu li a.navOn { color: #000;}
ul.makeMenu li a.navOn:visited { color: #000;}
ul.makeMenu li a.navOn:hover { color: #000;}

