/* GLOBAL Drop-Down RA-MENU FORMATTING */ 

/* comment */


/* CSS Menu Styles - Please Don't MESS with these. */ 
ul.makeMenu {
/* 	width: 116px;                  sets the size of the menu blocks */
/*	border: 1px solid #002596;*/      /* puts a black border around the menu blocks */
/*	background-color: #002596;*/      /* 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 */
	margin-right: auto;
	margin-top: 2px;
	margin-bottom: 1px;
	LIST-STYLE-POSITION: outside; 
	FONT-SIZE: 10pt;
	FONT-FAMILY: Arial,Verdana,Helvetica,sans-serif;
	FONT-WEIGHT: BOLD;
	z-index: 9 ;
  
}
ul.makeMenu ul.makeMenuSub {
	width: 165px;                 /* sets the size of the menu blocks */
	border: 1px solid #406099;      /* puts a blue border around the menu blocks */
	background-color: #5070AA;      /* makes the menu blocks lt blue - 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 */
	margin-right: auto;
	margin-top: 0px;           /* Must be 1px or less, or hover breaks */
	margin-bottom: 2px;
	LIST-STYLE-POSITION: outside; 
 	FONT-SIZE: 10pt;
	FONT-FAMILY: Arial,Verdana,Helvetica,sans-serif;
	z-index: 9 ;

}
ul.makeMenu li.makeMenu {
	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 */
	z-index: 9 ;
	height:15px;
	overflow:hidden;
}
ul.makeMenu li.makeMenu > ul.makeMenu {          /* 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: 15px;                   /* position under parent menu item */
	left: 0px;                   /* Line up directly under the parent */
	z-index: 9 ;
}
ul.makeMenu li.makeMenu:hover, ul.makeMenu li.CSStoHighlight {
	background-color: #EAC058;   /* gives the active menu items a gold background */
	color: #000;                 /* makes the active menu item text black */ 
}
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.makeMenu: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.makeMenu a { FONT-SIZE: 9pt; FONT-WEIGHT: BOLD; FONT-FAMILY: Arial,Verdana,Helvetica,sans-serif; color: #fff; display: block; text-decoration: none;}

ul.makeMenu ul.makeMenuSub li a { FONT-SIZE: 8.5pt; FONT-WEIGHT: NORMAL; FONT-FAMILY: Arial,Verdana,Helvetica,sans-serif; color: #fff; display: block; text-decoration: none;}


/*ul.makeMenu li.makeMenu a:visited { color: #fff; display: block;  text-decoration: none; }*/

ul.makeMenu li.makeMenu a:hover, ul.makeMenu li.makeMenu a.CSStoHighLink { color: #000; }
ul.makeMenu li.makeMenu:hover > a { color: #000; } /* supports links in branch headings - should not be display: block; */

/* that IE 5+ conditional comment makes this only visible in IE 5+ */
ul.makeMenu li.makeMenu {  /* the behaviour to mimic the li:hover rules in IE 5+ */
	behavior: url(cssmenu/IEmen.htc);
}
ul.makeMenu ul {  /* copy of above declaration without the > selector, except left position is wrong */
	display: none; 
	position: absolute; 
	top: 15px; 
	left: 0px;
}

/* END -- CSS Menu Styles - Please Don't MESS with above. */ 



