@charset "UTF-8";

/* CSS Document */

#navbar {
	height:34px;
	position:absolute;
	z-index:100;
	width: 600px;
	clear: both;
	float: left;
	overflow: visible;
	left: 0px;
	top: 0px;
}
#navbar .pad {float:left;}

*html #navbar{
	left: 0px;	
}

/* The menu styling */
/* Remove the padding, margins and bullets from the lists */
.menu, .menu ul {
	list-style-type:none;
	padding:0;
	margin:0;
	font-family:Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #444;
	clear: both;
	display: block;
	height: 34px;
}

/* Set up the top level list items and float left to place inline */
.menu li.top {
	display:block;
	float:left;
	position:relative;
	height: 34px;
}

/* Style and position the table so it takes no part in the menu function. The font size is necessary for IE5.5 */
.menu table {
	border-collapse:collapse;
	width:0;
	height:0;
	position:absolute;
	top:0;
	left:0;
	background-image: none;
}

/* Default top link link styling */
.menu li.top a.top_link {
	display:block;
	float:left;
	height:34px;
}
.menu li.top a span {
	position:absolute;
	left:-9999px;
	top:0;
	z-index:11;
	font-size:10px;
	display: block;
} /* move the link text off screen */

/* pre-load the hover images into the lists */
.menu li.p1 {
	width:74px;
	;
	background-image: url(../images/%7Emenu/menu_profile-over.gif);
	background-repeat: no-repeat;
	display: block;
	height: 34px;
}
.menu li.p2 {
	width:114px;
	;
	background-image: url(../images/%7Emenu/menu_perf-over.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	display: block;
	height: 34px;
}
.menu li.p3 {
	width:99px;
	;
	background-image: url(../images/%7Emenu/menu_svc-over.gif);
	background-repeat: no-repeat;
}
.menu li.p4 {
	width:133px;
	;
	background-image: url(../images/%7Emenu/menu_research-over.gif);
	background-repeat: no-repeat;
}
.menu li.p5 {
	width:78px;
	;
	background-image: url(../images/%7Emenu/menu_team-over.gif);
	background-repeat: no-repeat;
}
.menu li.p6 {
	width:102px;
	;
	background-image: url(../images/%7Emenu/menu_contact-over.gif);
	background-repeat: no-repeat;
}
/* set up the normal unhovered images in the links */
.menu li a#prof {
	width:74px;
	background-image: url(../images/%7Emenu/menu_profile.gif);
	background-repeat: no-repeat;
	height: 34px;
	display: block;
}
.menu li a#perf {
	width:114px;
	background-image: url(../images/%7Emenu/menu_perf.gif);
	background-repeat: no-repeat;
}
.menu li a#svc {
	width:99px;
	background-image: url(../images/%7Emenu/menu_svc.gif);
	background-repeat: no-repeat;
}
.menu li a#research {
	width:133px;
	background-image: url(../images/%7Emenu/menu_research.gif);
	background-repeat: no-repeat;
}
.menu li a#team {
	width:78px;
	background-image: url(../images/%7Emenu/menu_team.gif);
	background-repeat: no-repeat;
}
.menu li a#contact {
	width:102px;
	background-image: url(../images/%7Emenu/menu_contact.gif);
	background-repeat: no-repeat;
}

/* Style the list OR link hover. Depends on which browser is used */
.menu a:hover {visibility:visible;} /* for IE6 */
.menu li:hover { position:relative; z-index:200;} /* for IE7 */
/* make the links transparent on hover so that the hover images in the lists show through (no flicker) */
.menu li a#prof:hover, .menu li:hover a#prof,
.menu li a#perf:hover, .menu li:hover a#perf,
.menu li a#svc:hover, .menu li:hover a#svc,
.menu li a#research:hover, .menu li:hover a#research,
.menu li a#team:hover, .menu li:hover a#team,
.menu li a#contact:hover, .menu li:hover a#contact {
	background:transparent;
	height: 34px;
}

/* keep the 'next' level invisible by placing it off screen. */
.menu ul, 
.menu :hover ul ul, 
.menu :hover ul :hover ul ul,
.menu :hover ul :hover ul :hover ul ul,
.menu :hover ul :hover ul :hover ul :hover ul ul {
	position:absolute;
	left:-9999px;
	top:-9999px;
	width:0;
	height:0;
}

 /* for IE6 */
.menu ul, .menu a:hover ul ul, .menu a:hover ul a:hover ul ul, .menu a:hover ul a:hover ul a:hover ul ul, .menu a:hover ul a:hover ul :hover ul a:hover ul ul {
	position:absolute;
	left:-9999px;
	top:-9999px;
	width:0;
	height:0;
}

/* set up the first drop down sub level */
.menu :hover ul.sub {
	left:0;
	top:34px;
	white-space:nowrap;
	width:245px;
	height:auto;
	background-color: #ddd;
	padding-top: 3px;
	padding-right: 0;
	padding-bottom: 3px;
	padding-left: 0;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #888;
	border-right-color: #888;
	border-bottom-color: #888;
	border-left-color: #888;
}
.menu :hover ul.sub li {
	display:block;
	height:24px;
	position:relative;
	float:left;
	width:245px;
}
.menu :hover ul.sub li a {
	display:block;
	font-size:0.9em;
	height:22px;
	width:240px;
	line-height:22px;
	text-indent:5px;
	color:#000;
	text-decoration:none;
	border-top-width: 0;
	border-right-width: 0;
	border-bottom-width: 0;
	border-left-width: 3px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #ddd;
	border-right-color: #ddd;
	border-bottom-color: #ddd;
	border-left-color: #ddd;
}
.menu :hover ul.sub li a.fly {
	background-color: #ddd;
	background-image: url(../images/%7Emenu/arrow.gif);
	background-repeat: no-repeat;
	background-position: 235px 7px;
}
.menu :hover ul.sub li a:hover {
	color:#F00;
	background-color: #FFF;
}
.menu :hover ul.sub li a.fly:hover {
	color:#F00;
	background-color: #FFF;
	background-image: url(../images/%7Emenu/arrow_over.gif);
	background-repeat: no-repeat;
	background-position: 235px 7px;
}
.menu :hover ul li:hover > a.fly {
	color:#F00;
	background-color: #EAB8BB;
	background-image: url(../multi_level-files/arrow_over.gif);
	background-repeat: no-repeat;
	background-position: 235px 7px;
} 

/* set up the flyout levels when hovering */
.menu :hover ul :hover ul,
.menu :hover ul :hover ul :hover ul,
.menu :hover ul :hover ul :hover ul :hover ul,
.menu :hover ul :hover ul :hover ul :hover ul :hover ul
{
	left:240px;
	top:-5px;
	padding:3px 0;
	border:1px solid #888;
	white-space:nowrap;
	width:245px;
	z-index:200;
	height:auto;
	z-index:300;
	background-color: #ddd;
}
/* IE6 fix, as the drop menus would show regardless */
.menu .top.p1 .sub li, .menu .top.p2 .sub li, .menu .top.p3 .sub li, .menu .top.p4 .sub li, .menu .top.p5 .sub li, .menu .top.p6 .sub li{
	_display: none;
}

