.menubar {
	text-align:center;
	width:630px;
	font-size:14px;
	position:relative;
	z-index:100;
/*	top: 198px; */

}
/* remove all the bullets, borders and padding from the default list styling */
.menubar ul {
padding:0;
margin:0;
list-style-type:none;
}
.menubar ul ul {
width:124px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menubar li {
float:left;
width:124px;
position:relative;
}
/* style the links for the top level */
.menubar a, .menubar a:visited {
display:block;
font-size:14px;
text-decoration:none; 
color:#fff; 
width:113px; 
height:30px; 
border:1px solid #fff; 
border-width:1px 1px 1px 1px; 
background:#7B88A9; 
padding-left:5px; 
padding-right:5px;
line-height:29px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menubar a, * html .menubar a:visited {
width:124px;
w\idth:113px;
}

/* style the second level background */
.menubar ul ul a.drop, .menubar ul ul a.drop:visited {
background:#BAC0D1;

}
/* style the second level hover */
.menubar ul ul a.drop:hover{
background:#7B88A9;
}
.menubar ul ul :hover > a.drop {
background:#7B88A9;
}
/* style the third level background */
.menubar ul ul ul a, .menubar ul ul ul a:visited {
background:#BAC0D1;
}
/* style the third level hover */
.menubar ul ul ul a:hover {
background:#7B88A9;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menubar ul ul {
visibility:hidden;
position:absolute;
height:0;
top:31px;
left:0; 
width:124px;
}
/* another hack for IE5.5 */
* html .menubar ul ul {
top:30px;
t\op:31px;
}

/* position the third level flyout menubar */
.menubar ul ul ul{
left:124px; 
top:0;
width:124px;
}
/* position the third level flyout menubar for a left flyout */
.menubar ul ul ul.left {
left:-124px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menubar table {position:absolute; top:0; left:0;}

/* style the second level links */
.menubar ul ul a, .menubar ul ul a:visited {
background:#BAC0D1; 
text-align:center;
color:#000; 
height:auto; 
line-height:1em; 
padding:5px 5px; 
width:113px
/* yet another hack for IE5.5 */
}
* html .menubar ul ul a{
width:124px;
w\idth:113px;
}


/* style the top level hover */
.menubar a:hover, .menubar ul ul a:hover{
color:#fff; 
background:#BAC0D1;
}
.menubar :hover > a, .menubar ul ul :hover > a {
color:#fff;
background:#BAC0D1;
}

/* make the second level visible when hover on first level list OR link */
.menubar ul li:hover ul,
.menubar ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menubar ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menubar ul :hover ul :hover ul{ 
visibility:visible;
}
