/* CSS Document - menu.css */
ul {
	position:absolute;
	left:40px;
	top:10px;
	height:202px;
}
li {
	margin:0;
	top:5px;
	left:29px;
}

ul.makeMenu, ul.makeMenu ul {
	width: 142px;                 /* sets the size of the menu blocks */
	padding-left: 0px;           /* stops the usual indent from ul */
	cursor: default;             /* gives an arrow cursor */
	margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
}
ul.makeMenu li {
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  color: #000;                 /* sets the default font colour to white */
	height:29px;
}
ul.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  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;                    /* position slightly lower than the parent menu item */
  left: 150px;                  /* this must not be more than the width of the parent block, or the mouse will
                                 have to move off the element to move between blocks, and the menu will close */
  background: #A49460;
}
ul.makeMenu li.makeMenu ul:hover {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  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;                    /* position slightly lower than the parent menu item */
  left: 150px;                  /* this must not be more than the width of the parent block, or the mouse will
                                 have to move off the element to move between blocks, and the menu will close */
}

ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
	position:relative;
	top:0px;
	margin-left:-20px;
	padding-left:15px;
	height:28px;			/* height of activ_menu.gif */ 
	background-image:url(../pictures/activ_menu.gif);
}
ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */
	margin:0px;
	padding:0px;
}

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 */
	background-color:#A49460;
}

ul.makeMenu li a { 
	color: #fff; 
	display: block; 
	font-size:103%; 
	width: 142px; 
	text-decoration: none; 
	margin-right: 0px;			/*	margin-right:-5px; */
}
ul.makeMenu li a.CSStoHighLink { color: #918250;}

ul.makeMenu > li > ul {
	height:173px;
	width:130px;
	z-index:10;

}
ul.makeMenu > li > ul > li {
	width:100px;
	left:5px;
	z-index:10;
}
ul.makeMenu > li > ul > li:hover {
	width:130px;
	margin-left:-5px;
	padding-top:2px;
	padding-left:0px;
	background-image:none;
	background-color:#918250;
	z-index:10;
}