/* CSS Document */
ul.makeMenu, ul.makeMenu ul {
	width: 190px;                 /* 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;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}
ul.makeMenu li {
	list-style-type: none;       /* removes the bullet points */
	margin: 0px;                 /* Opera 7 puts large spacings between li elements */
	background: #FFF url("/art/smlrmenuleft.png") no-repeat scroll 0 0;
	color: #FFF;                 /* sets the default font colour to white */
	/* height: 40px; */           /* Opera 7 final's margin and margin-box model cause problems */
	margin-bottom: -3px;
}
ul.makeMenu li ul li {
	background-image: url("/art/allservicesmenuleft.png");
	background-attachment:  scroll;
	background-repeat: no-repeat;
	background-position: 5px 0;
	font-size: 12px;
}
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: 2px;                    /* position slightly lower than the parent menu item */
  left: 80px;                  /* 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 ul li a {
	background-image: url("/art/allservicesmenuright.png");
	background-position: 18px 0;
	text-indent: 12px;
}
ul.makeMenu li:hover, ul.MakeMenu li.CSStoHighlight {
	color: #FFFFFF;/*background:url("/art/rtbar.jpg") no-repeat scroll 18px 0px transparent;*/
}
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 */
}
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 */
}
/* and some link styles */
ul.makeMenu li a {
	background-image:url("/art/smlrmenuright.png");
	background-position:13px 0;
	background-repeat:no-repeat;
	color:#FFF;
	display:block;
	height:35px;
	text-decoration:none;
	text-indent:8px;
	width:100%;
	vertical-align: middle;
	padding-top: 5px;
}
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink {
	color: #FFF;
	text-decoration: underline;
	font-weight: bold;
}
ul.makeMenu li:hover > a {
	color: #FFF;
	text-decoration: underline;
		font-weight: bold;
}
ul.makeMenu li ul.MakeMenu li:hover {
	color: #FFF;
}
ul.makeMenu li ul.makeMenu li:hover > a {
	color: #FFF;
	text-decoration: underline;
}
