/* CSS Menus - Horizontal CSS Menu with Dropdown and Popout Menus */

#menu {
width:800px;
left: 0px;
/* float:left; 201002 */
background-color:#cccccc;
height:1.3em;
border-top:1px solid #999999;
border-bottom:1px solid #999999;
z-index:500;	/* 20100208 */
}

#menu li {
position:relative;
line-height:1.3em;
}

#menu li li {
position:relative;
line-height:1.3em;
}

#menu li li li {
position:relative;
line-height:1.3em;
}


/* 1st Level Menu Block */
#menu ul {
list-style:none;
margin:-1px 0 0 0;
padding:0;
float:left;
width:7.3em;
border-width:1px 0 1px 1px;
border-style:solid;
border-color:#999999;
}

/* 2nd Level Menu Block */
#menu ul ul {
position:absolute;
top:auto;
left:-1px;
z-index:500;
display:none;
margin:0;
border-width:0 1px 1px 1px;
border-style:solid;
border-color:#999999;
}

/* 3rd Level Menu Block */
#menu ul ul ul {
position:absolute;	
top:0;
left:100%;
z-index:500;
margin:0;
border-width:0 1px 1px 0;
border-style:solid;
border-color:#999999;
}


/* Link Styling */
#menu a {
font-weight:bold;
font-size:12px;
font-family:Arial, Helvetica, sans-serif;
display:block;
white-space:nowrap;
margin:0;
padding:0 1px 0 4px;
text-decoration:none;
}
#menu a:link, #menu a:visited {
color:#000000;
background:#cccccc;
}
#menu a:hover {
color:#ffffff;
background:#a9a9a9;
}
#menu a:active {
color:#ffffff;
background:#45C1E3;
}


#menu a.last {
	border-right:1px solid #999999;
}


/* Styling for Top Level Menu Items that Expand */
#menu a.x:link, #menu a.x:visited{
color:#000000;
background: #cccccc url(../images/tridown.gif) no-repeat; background-position:right;
}
#menu a.x:hover {
color:#ffffff;
background:#a9a9a9;
}
#menu a.x:active {
color:#ffffff;
background:#45C1E3;
}


/* Styling for 2nd Level Menu Items */
#menu a.level2 {
border-style:solid;	
border-color:#999999;
border-width:1px 0 0 0;
}
#menu a.level2:link, #menu a.level2:visited {
color:#000000;
background:#cccccc;
}
#menu a.level2:hover {
color:#ffffff;
background:#a9a9a9;
}
#menu a.level2:active {
color:#ffffff;
background:#45C1E3;
}


/* Styling for 3rd Level Menu Items */
#menu a.level3 {
border-style:solid;	
border-color:#999999;
border-width:1px 0 0 1px;	
}
#menu a.level3:link, #menu a.level3:visited {
color:#000000;
background:#cccccc;
}
#menu a.level3:hover {
color:#ffffff;
background:#a9a9a9;
}
#menu a.level3:active {
color:#ffffff;
background:#45C1E3;
}


/* Begin non-anchor hover selectors */

/* Enter the more specific element (div) selector
on non-anchor hovers for IE5.x to comply with the
older version of csshover.htc - V1.21.041022. It
improves IE's performance speed to use the older
file and this method */

div#menu li:hover{
cursor:pointer;
z-index:500;		/* 20100208 */
}

div#menu li:hover ul ul,
div#menu li li:hover ul ul,
div#menu li li li:hover ul ul,
div#menu li li li li:hover ul ul
{display:none;}

div#menu li:hover ul,
div#menu li li:hover ul,
div#menu li li li:hover ul,
div#menu li li li li:hover ul
{display:block;}
/* End of non-anchor hover selectors */

/* End CSS Popout Menu */
