#nav {
	margin: 1px 0px 0px;
	padding: 0px;
	background:#fff;
}
#nav a {
	text-decoration:none;
}
#nav ul {
	list-style-type:none;
	margin: 0px;
	padding: 0px;
	position:static;
	font-size: 12px;
	z-index: 20;
	min-height: 37px;
	_height: 37px;
	background: #fff url("../images/nav_bg.gif") repeat-x top left;
}

#nav > ul li {
	margin: 0px 1px 0px 0px;	/* spacing between main menu items */
        padding: 0px;			/* padding within main menu items */
	text-align: left;
}

#nav > ul ul ul {
    margin: -18px 0px 0px 175px;
    padding: 0px;
    position: absolute;
    z-index: 200;
    min-height: 10px;
    _height: 10px;
    width: 178px;
    font-size: 10px;
}

#nav > ul > li {			/* top-level menu element */
	float: left;			/* this is to allow for the horizontal main menu */
	padding: 0px;
}


#nav > ul ul {                  /* third-level (or greater) menu element list elements */
    margin: 0px;
    position: absolute;         /* this is so that it doesn't push that page content around on hover */
    z-index: 99;                /* want to be sure this is above the rest of the menu */
    min-height: 10px;
    _height: 10px;
    width: 178px;
    background: #dfdfdf;
    font-size: 10px;
    border: solid 1px #bbb;
}

#nav > ul ul li {                   /* second-level or greater menu element links */
	box-sizing: content-box;
}

	#nav ul ul a {
		color: #666;
	}
   
#nav li ul {
	display: none;	
}

#nav li:hover > ul  {
	display: block;	
}

#nav a,
#nav span {
	display:block;
	text-decoration: none;
	color: #369;
	font-weight: bold;
	padding: 11px 9px;
}

#nav a:hover, #nav span {
	color: #fff;
	background: #48719f;
}

#nav ul ul a,
#nav ul ul span {
	padding: 3px 9px;
	width:160px;
	border: solid 1px #ccc;
	border-width: 0px 0px 1px;
}

#nav ul li li.avs_node {
	background: url(../images/node_bg.gif) no-repeat center right;
}

/* E:navigation */

