<style type="text/css">

ul.makeMenu, ul.makeMenu ul {
	font-family:Tahoma, Verdana, Arial, sans-serif;
	font-size: 11px;
	font-weight:bold;
	font-color: #FFFFFF;
	padding: 5px 5px 0px 15px;
	width: 100%;                 /* sets the size of the menu blocks */
	/*border: 1px solid #99BCB8;      /* puts a black border around the menu blocks */
	background-color: #F20A2C !important;      /* 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 */
}

ul.makeMenu li {
	font-family:Tahoma, Verdana, Arial, sans-serif;
	font-size: 11px;
	font-weight:bold;
	color: #FFFFFF;
	/*padding: 5px 5px 0px 0px;*/
	width: 100%;                 /* sets the size of the menu blocks */
	background-color: #F20A2C !important;
  	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 */
	height: 27px;
}
ul.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
	font-family:Tahoma, Verdana, Arial, sans-serif;
	font-size: 11px;
	font-weight:bold;
	color: #FFFFFF;
	/*padding: 0px 5px 5px 0px;*/
	width: 100%;                 /* sets the size of the menu blocks */
	background-color: #F20A2C; !important;
  	display: none;               /* hides child menu blocks - one of the most important declarations */
  	position: absolute;          /* make child blocks hover without leaving space for them */
  	top: 5px;                    /* position slightly lower than the parent menu item */
  	left: 100%;                  /* 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 a {
	background-color: #F85069; /*#E3001D;*/      /* gives the active menu items a red background */
	color: #00000;                /* makes the active menu item text white */ 
}
ul.makeMenu li.CSStoHighlight li.CSStoHighlight a {
	background-color: #F85069; /*#E3001D;*/      /* gives the active menu items a red background */
	color: #00000;                /* makes the active menu item text white */ 
}
ul.makeMenu li.CSStoHighlight li a {
	background-color: #F20A2C;      /* gives the active menu items a red background */
	color: #00000;                /* makes the active menu item text white */ 
}

ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
	background-color: #F20A2C; !important;
	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 { 
	font-family:Tahoma, Verdana, Arial, sans-serif;
	font-size: 11px;
	font-weight:bold;
	color: #FFFFFF; 
	display: block; 
	width: 90%; 
	text-decoration: none; 
	padding: 5px 0px 0px 15px;
    height: 18px;
}

ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { 
	color: #FFFFFF;
	background-color: #0B155A; /*#E3001D;*/
	height: 18px;
	width: 84%; 
	padding: 0px 0px 0px 15px;
	border-bottom: solid 9px #fff;

}
ul.makeMenu li:hover > a { 
	color: #FFFFFF;
	background-color:  #0B155A; /*#E3001D;*/
	height: 23px;
	width: 92%;
	padding: 5px 0px 0px 15px;
	border-bottom: solid 1px #fff;
} 

ul.makeMenu li li:hover > a { 
	color: #FFFFFF;
	background-color:  #0B155A; /*#E3001D;*/
	height: 23px;
	width: 92%;
	padding: 5px 0px 0px 15px;
	border-bottom: solid 1px #fff;
}

ul.makeMenu li.CSStoHighlight li:hover > a { 
	color: #FFFFFF;
	background-color:  #0B155A; /*#E3001D;*/
	height: 23px;
	width: 92%;
	padding: 5px 0px 0px 15px;
	border-bottom: solid 1px #fff;
}

/* supports links in branch headings - should not be display: block; */
</style>
<!--[if gt IE 5.0]><![if lt IE 7]>
<style type="text/css">
/* that IE 5+ conditional comment makes this only visible in IE 5+ */
ul.makeMenu li {  /* the behaviour to mimic the li:hover rules in IE 5+ */
  behavior: url( IEmen.htc );
}
ul.makeMenu ul {  /* copy of above declaration without the > selector, except left position is wrong */
  display: none; position: absolute; top: 2px; left: 78px;
}
</style>
<![endif]><![endif]-->
