/* CSS Document */
ul.buildmenu {
	width: 145px;
	/*margin:0px;
	padding:0px;*/
	/*background-color: #ACA899;*/
	border:0px;
	cursor: default;
	font: 12px Arial, Helvetica, sans-serif;
}
ul.buildmenu ul {
  width: 250px;                 /* sets the size of the menu blocks */
  border: 1px solid #A7A7A7;
  /*border-bottom:none;*/
  background-color: #EEE;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
}
ul.buildmenu li {
	/*padding-left:12px;
	padding-top:2px;*/
	/*margin: 0px;*/
	position: relative;
	color: #333333;
	list-style: none;
	/*border-bottom:solid 1px #C8C8C8;*/
	margin-left:-40px;
	/*background:#1B92BE url(images/nav_bullet.gif) no-repeat top left;*/
}
ul.buildmenu ul li {
	padding-left:4px;
	padding-top:2px;
	padding-bottom:0px;
	margin: 0px;
	position: relative;
	color: #333;
	list-style: none;
	border-top:none;
	border-bottom:none;
	border-collapse:collapse;
	/*background:#EEE url(images/subnav_bullet.gif) no-repeat top left;*/
}
ul.buildmenu 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: -1px;                    /* position slightly lower than the parent menu item */
  	left: 165px;                  /* 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 */
	z-index:10;
	margin-left:0px;
}
ul.buildmenu ul 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: -1px;                    /* position slightly lower than the parent menu item */
  	left: 210px;                  /* 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 */
	z-index:10;
	margin-left:0px;
}
ul.buildmenu ul li > ul li:hover, ul.buildmenu ul li.CSStoHighlight {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  color: #fff;
	list-style: none;
	background:#715B2B;
}
ul.buildmenu li:hover, ul.buildmenu li.CSStoHighlight {
	color: #fff;
	list-style: none;
	/*background:#16769A;*/
}
ul.buildmenu ul li:hover, ul.buildmenu ul li.CSStoHighlight {
	color: #fff;
	list-style: none;
	background:#715B2B;
}
ul.buildmenu 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 */
}
ul.buildmenu 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 */
}
/* and some link styles */
ul.buildmenu li a { color: #333; display: block; text-decoration: none; height:20px;background: url(images/bullet.jpg) no-repeat left top;padding-left:15px;width:158px;}
ul.buildmenu li a:hover, ul.buildmenu li a.CSStoHighLink { color: #fff;background-color:#C8C8C8;background-image:none; }
ul.buildmenu li:hover > a { color: #fff;background-color:#715B2B;background-image:none; } /* supports links in branch headings - should not be display: block; */

ul.buildmenu ul li a { color: #333; display: block; text-decoration: none;padding-left:0px;background: url(images/bullet2.jpg) no-repeat left top;padding-left:15px;width:220px;}
/*ul.buildmenu ul:hover{background-color:#16769A;}*/
ul.buildmenu ul li a:hover, ul.buildmenu li a.CSStoHighLink { color: #fff;background-color:#715B2B;background-image:none; }
ul.buildmenu ul li:hover > a { color: #fff;background-color:#715B2B;background-image:none; } /* supports links in branch headings - should not be display: block; */
