/* external CSS file */
/* filename navigation.css */ 
/* NO HTML MARKUP ALLOWED */

/* main menu */

.nowrap { 
   white-space: nowrap; 
} 
/* MAIN NAVIGATION FOR RHFC */

#navigation {

font-family: Arial, sans-serif;
font-size: 14pt;
width: 800px;
background: #dadada;
float: left;
position: absolute;
}

#navigation ul {
list-style: none;
margin: 0;
padding: 0;
width: 120px;
float: left;
}

#navigation a, #navigation h2 {
font: bold 11px/16px arial, helvetica, sans-serif;
color: #dadada;
display: block;
border-width: 1px;
border-style: solid;
border-color: #C8C8C8;
margin: 0;
padding: 2px 3px;
z-index: 2000;
}

#navigation b {
font: bold 11px arial, helvetica, sans-serif;
color: #dadada;
background: #cccccc;
text-transform: uppercase;
}

#navigation a {
color: #000;
background: #dadada;
text-decoration: none;
}

#navigation a:hover {
color: #a00;
background: #fff;
}

#navigation li {
position: relative;
}

#navigation ul ul {
position: absolute;
z-index: 2000;
}

#navigation ul ul ul {
position: absolute;
top: 0;
left: 100%;
}

div#navigation ul ul,
div#navigation ul li:hover ul ul,
div#navigation ul ul li:hover ul ul
{display: none;}

div#navigation ul li:hover ul,
div#navigation ul ul li:hover ul,
div#navigation ul ul ul li:hover ul
{display: block;}

