@charset "UTF-8";
#subnav {
	clear: both;
	z-index: 3;
	position: absolute;
	top: 585px;
	margin-left: 120px;
}
ul.makesubnav, ul.makesubnav ul {
	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 */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	color: #be1e2d;
	display: inline;
}
ul.makesubnav li {
	list-style-type: none;                 /* Opera 7 puts large spacings between li elements */
	position: relative;                 /* sets the default font colour to white */
	margin-top: 0px;
	margin-right: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	padding-left: 10px;
	display: inline;
	float: left;
	font-size: 14px;
}
ul.makesubnav li a {
	display: block;
	width: 100%;
	text-decoration: none;
	color: #be1e2d;
}
ul.makesubnav li a:hover {
	display: block;
	width: 100%;
	color: #75655B;
}
ul.makeMenu ul {  /* copy of above declaration without the > selector, except left position is wrong */
	display: none;
	position: absolute;
	top: 0px;
	left: 78px;
}
/* CSS Document */

ul.makeMenu, ul.makeMenu ul {
	width: 120px;      /* 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 */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	color: #be1e2d;
}
ul.makeMenu li {
	list-style-type: none;                 /* Opera 7 puts large spacings between li elements */
	position: relative;                 /* sets the default font colour to white */
	margin-top: 0px;
	margin-right: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	padding-left: 10px;
}
ul.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
	position: absolute;                    /* position slightly lower than the parent menu item */
	left: 120px;
	display: none;
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
	background-color: #ddd1ca;      /* gives the active menu items a yellow background */
	color: #BF1D2D;                 /* 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: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 {
	display: block;
	width: 100%;
	text-decoration: none;
	color: #be1e2d;
}
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #000; }
ul.makeMenu li:hover > a {
	color: #BE1D2D;
} /* supports links in branch headings - should not be display: block; */
ul.makeMenu ul.menuopen {
	position: absolute;
	top: 0px;
	left: 120px;
	display: block;
	margin: 0px;
	padding: 0px;
}
ul.makeMenu li.menuon {
	color: #FFF;
	background-image: url(../images/nav_red.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
}
ul.makeMenu li.menuon a {
	color: #FFF;
}
ul.makeMenu li.menuon1 {
	color: #FFF;
	background-color: #BE1D2D;
}
ul.makeMenu li.menuon1 a {
	color: #FFF;
}
#nav .makeMenu .menuon1 .menuopen li a {
	color: #BE1D2D;
}
#nav .makeMenu .menuon1 .menuopen .menuon .menuopen .menuon a    {
	color: #FFF;
}
#nav .makeMenu .menuon1 .menuopen .menuon .menuopen li a {
	color: #BE1D2D;
}
#nav .makeMenu .menuon1 .menuopen .menuon .menuopen .menuon a:hover {
	color: #FFF;
}
#nav .makeMenu .menuon1 .menuopen .menuon .menuopen li a:hover {
	color: #BE1D2D;
}
#nav .makeMenu .menuon1 .menuopen .menuon a {
	color: #BE1D2D;
}
#nav .makeMenu .menuon1 .menuopen li a:hover {
	color: #BE1D2D;
}
#nav .makeMenu .menuon1 .menuopen .menuon li:hover a {
	color: #BE1D2D;
}
#nav .makeMenu .menuon ul li a    {
	color: #BE1D2D;
}
#nav .makeMenu .menuon1 .menuopen .menuon a {
	color: #fff;
}
#nav .makeMenu .menuon1 .menuopen .menuon a:hover {
	color: #fff;
}


[if gt IE 5.0]><![if lt IE 7]>
/* 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 );
}

