/* Menu */


#menu {
	background: url(../imgs/menu_bg.jpg) 0 0 no-repeat;
	width: 331px;
	height: 206px;
	float: left;
	}	
	
ul.mainMenu {
	list-style: none;
	width: 151px;                /* sets the size of the menu blocks */
	padding-left: 0px;           /* stops the usual indent from ul */
	cursor: default;             /* gives an arrow cursor */
	margin: 0 0 0 14px;
	text-transform: uppercase;
}
* html ul.mainMenu {
	padding: 0 0 0 19px;
	margin: 0px 0 0 -5px;
	width: 155px;
	}

ul.mainMenu ul {
	list-style: none;
  	width: 164px;                /* sets the size of the menu blocks */
  	background: #c40202;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  	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 */
	text-transform: none;
}

ul.mainMenu li {
	border-bottom: 1px solid #a30000;
  	list-style-type: none;       /* removes the bullet points */
  	margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  	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: #fff;                 /* sets the default font colour to white */
}
* html ul.mainMenu li {
	display: inline;
	}
	
	
ul.mainMenu li.last {
	border: none;
	}
ul.mainMenu li.first {
	margin-top: 0px;
	}

ul.mainMenu 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: -23px;                    /* position slightly lower than the parent menu item */
  left: 152px;                  /* 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.mainMenu li:hover, ul.mainMenu li.CSStoHighlight, ul.mainMenu li a:hover {
  background-color: #a30000;      /* gives the active menu items a yellow background */
  color: #fff;                 /* makes the active menu item text black */ 
}


ul.mainMenu 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.mainMenu 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.mainMenu li a { font: bold 11px Arial, Helvetica, sans-serif; color: #fff; display: block; width: 151px; text-decoration: none; padding: 4px 0 4px 4px; }
* html ul.mainMenu li a {border-bottom: 1px solid #a30000;}
* html ul.mainMenu li.last a {border-bottom: none;}
ul.mainMenu li ul a {width: 164px;}
ul.mainMenu li a:hover, ul.mainMenu li a.CSStoHighLink { color: #fff; padding: 4px 0 4px 4px; }
ul.mainMenu li:hover > a { color: #fff; } /* supports links in branch headings - must not be display: block; */


/* Sub menu Positions */
ul.mainMenu li > ul.renting {
  top: -69px;                    /* position slightly lower than the parent menu item */
  left: 152px;                  /* this must not be more than the width of the parent block, or the mouse will */
  }
ul.mainMenu li > ul.commercial {
  top: -23px;                    /* position slightly lower than the parent menu item */
  left: 152px;                  /* this must not be more than the width of the parent block, or the mouse will */
  }
ul.mainMenu li > ul.propManagement {
  top: -23px;                    /* position slightly lower than the parent menu item */
  left: 152px;                  /* this must not be more than the width of the parent block, or the mouse will */
  }
ul.mainMenu li > ul.selling {
  top: 0px;                    /* position slightly lower than the parent menu item */
  left: 152px;                  /* this must not be more than the width of the parent block, or the mouse will */
  }
ul.mainMenu li > ul.strata {
  top: -46px;                    /* position slightly lower than the parent menu item */
  left: 152px;                  /* this must not be more than the width of the parent block, or the mouse will */
  }
  
 /*-------------------------------------------*/
 /* CSS FOR IE POSITIONING FOUND IN HTML FILE */
 /*-------------------------------------------*/