.menu {
	width:890px; 
	height:40px; 
	position:relative; 
	z-index:100; 
	background: #e7ecf2; 
	clear: both;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	text-align:center;
}

/* IE6 float left fix */
.menu ul ul li {
	clear: both;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	position:relative;
}

/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:12px;
	text-decoration:none; 
	color:#275b95; 
	height:40px; 
	line-height:38px;
	width: 109px;
	overflow: hidden;
}

.menu a.processes, .menu a.processes:visited {
	width: 120px;
}

/* Styles for first menu drop */
.menu a.drop {
	width: 89px;
}

.menu a.processes-drop {
	width: 100px;
}

/* Styles for second menu drop */
.menu a.drop2 {
	width: 89px;
}

.menu a.processes-drop2 {
	width: 100px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:34px;
	margin-left: 0;
	font-size: 11px;
	text-align: left;
}

/* style the top level hover */
.menu a:hover {
	color:#fff; 
	background: url(../images/menu-lozenge-over.jpg) no-repeat center center;
}

.menu :hover > a, .menu ul ul :hover > a {
	color:#fff;
	background: url(../images/menu-lozenge-over.jpg) no-repeat center center;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background:#577fab; 
	color:#FFF; 
	height:auto; 
	line-height:1em; 
	padding:5px 10px;
	font-size: 11px;
}

/* style the second level hover */
.menu ul ul a:hover {
	color:#fff; 
	background: #275b95;
}

.menu ul ul :hover > a, .menu ul ul ul ul :hover > a {
	color:#fff; 
	background: #275b95;
}

/* position the third level flyout menu */
.menu ul ul ul a.processes-drop {
	margin-left: 10px; 
	width: 100px;
	top:0; 
}

.menu ul ul ul ul a.processes-drop {
	margin-left: 20px; 
	width: 100px;
	top:0; 
}

.menu ul ul ul {
	margin-left: 109px; 
	top:0; 
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0; border-collapse:collapse;}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{visibility:visible;}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul {visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ visibility:visible;}

/* fourth level settings */
.menu ul :hover ul :hover ul ul {visibility:hidden;}
.menu ul ul :hover ul :hover ul {visibility:visible;}


