.menu_top *{
	cursor:pointer;
}
.menu_top {
	width:auto;
	height:30px;
	font-size:0.85em;
	position:relative;
  /*background-image: url(../../../images/menuLine2.gif);*/
/*  background-color: #aaa;
  border: 1px solid #fff;*/
  background-position:top left;
  z-index:9;
  margin: 0px 0px 0px 10px;
}
/* hack to correct IE5.5 faulty box model */
* html .menu_top {
	width:auto;
	w\idth:auto;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu_top ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
.menu_top ul ul {
	width:169px; /*changed*/
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu_top li {
	float:left;
	position:relative;
}
/* style the links for the top level */
.menu_top a, .menu_top a:visited {
	display:block;
	font-size:11px;
	text-decoration:none;
	/*color: #7B9CAD;*/
	color: #03066B;
	height:30px;
	padding:0px 8px;
	line-height:29px;
}

.menu_top a:visited,  .menu_top a:active{
	color: #03066B;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu_top a, * html .menu_top a:visited {
	w\idth: 60px;
}
.menu_top ul li a {
	font-weight:bold;
}

* html .menu_top a p, * html .menu_top a:visited p {
	padding: 0 0 0 15px;
	text-align: center;
	w\idth: 100%;
	width: 100%;
}

.menu_top ul ul a.drop, .menu_top ul ul a.drop:visited {
	background: #FCF7E7;
}
        /* style the second level hover */
.menu_top ul ul a.drop:hover {
		background: #FCF7E7;

    /*background: #7B9CAD;*/
}

.menu_top ul ul:hover > a.drop {
		background: #FCF7E7;
    /*background: #7B9CAD;*/
}



/* style the third level background */
.menu_top ul ul ul a, .menu_top ul ul ul a:visited {
	background: #eeeeee;
	font-weight:normal;
}
/* style the third level hover */
.menu_top ul ul ul a:hover {
  color: #EACD6A;
	background: #FCF7E7;
  /*background: #7B9CAD;*/
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu_top ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:25px;
	left:0;
	width:119px;
}

/* another hack for IE5.5 */
* html .menu_top ul ul {
	top:25px;
	t\op:25px;
}

/* position the third level flyout menu */
.menu_top ul ul ul{
	left:205px;
	top:0px;
	width:139px;
}

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

/* style the second level links */
.menu_top ul ul a, .menu_top ul ul a:visited {
		background: #eeeeee;
		-moz-opacity:0.9;
		color:#03066B;
		height:auto;
		line-height:1em;
		padding:5px 10px;
		width:138px;
		border-width:0 1px 1px 1px;
		font-weight:normal;
}

/* yet another hack for IE5.5 */
* html .menu_top ul ul a, * html .menu_top ul ul a:visited {
	width:139px;
	w\idth:138px;
}

/* style the top level hover */
.menu_top a:hover, .menu_top ul ul a:hover{
		color:#000;
		background: #cecece;
    /*background: #7B9CAD;*/
}
.menu_top :hover > a, .menu_top ul ul :hover > a {
		color:#000;
		background: #cecece;
    /*background: #7B9CAD;*/
}

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

