#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	position:static;

}

#nav li:hover, #nav li.hover {
    position: static;
}

#nav a {
	display: block;
	width: 10em;
	background:#cbe2f2;
	color:#46a3cf;
	text-decoration:none;
}

#nav a:hover, #nav li li a:hover {
	background:#c6d9e7;
	color:#0071bb;
}

#nav li { /* all list items */
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border-top:1px solid #5faef0;
	z-index:90;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
	border-top:1px solid #5faef0;
	z-index:90;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

#nav li li a span {
	display:block;
	padding:4px;
	border-right:1px solid #5faef0;
	border-left:1px solid #5faef0;
	border-bottom:1px solid #c6d9e7;
	font-size:80%;
	font-weight:bold;
	}
#nav li li a span.last {
	border-bottom:1px solid #5faef0;
	}
/*-------------------------------------------------------------
 Width for all custom Tier 1 LI tags
-------------------------------------------------------------*/
#nav li.nav-1 {
	width:55px;
	}
#nav li.nav-2 {
	width:75px;
	}
#nav li.nav-3 {
	width:123px;
	}
#nav li.nav-4 {
	width:137px;
	}
#nav li.nav-5 {
	width:75px;
	}
#nav li.nav-6 {
	width:80px;
	}
/*-------------------------------------------------------------
 Width and background images for all custom Tier 1 A tags
-------------------------------------------------------------*/
#nav li.nav-1 a.t1 {
	background:transparent url(../img/nav/home.gif) no-repeat 0 0;
	width:55px;
	}
#nav li.nav-2 a.t1 {
	background:transparent url(../img/nav/orgplus.gif) no-repeat 0 0;
	width:75px;
	}
#nav li.nav-3 a.t1 {
	background:transparent url(../img/nav/alesco-services.gif) no-repeat 0 0;
	width:123px;
	}
#nav li.nav-4 a.t1 {
	background:transparent url(../img/nav/oracle-solutions.gif) no-repeat 0 0;
	width:137px;
	}
#nav li.nav-5 a.t1 {
	background:transparent url(../img/nav/support.gif) no-repeat 0 0;
	width:75px;
	}
#nav li.nav-6 a.t1 {
	background:transparent url(../img/nav/about-us.gif) no-repeat 0 0;
	width:80px;
	}
/*-------------------------------------------------------------
 Height for all custom Tier 1 links
-------------------------------------------------------------*/
#nav li a.t1 {
	height:30px;
	}
/*-------------------------------------------------------------
 Hide the span tags on all Tier 1 links
-------------------------------------------------------------*/
#nav li a.t1 span {
	display:none;
	}

#nav li.nav-1 a.t1:hover,
#nav li.nav-2 a.t1:hover,
#nav li.nav-3 a.t1:hover,
#nav li.nav-4 a.t1:hover,
#nav li.nav-5 a.t1:hover,
#nav li.nav-6 a.t1:hover {
	background-position: 0 -30px;
	}
#nav li.nav-1 a.t1.current,
#nav li.nav-2 a.t1.current,
#nav li.nav-3 a.t1.current,
#nav li.nav-4 a.t1.current,
#nav li.nav-5 a.t1.current,
#nav li.nav-6 a.t1.current {
	background-position: 0 -60px;
	}
