/**********Top menu************/

/* remove all the bullets, borders and padding from the default list styling */
#service ul {
	margin:0;
	padding:0;
	list-style-type:none;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#service li {
	float:left;
	position:relative;
}
/* style the links for the top level */
#service a, .service a:visited {
	display:block;
	line-hight: 20px;
	text-decoration:none; 
	color: #666666;
	padding: 0px 5px 0px 8px;
}

/* style the second level background */
#service ul ul a.drop, .service ul ul a.drop:visited {
/*background:#d4d8bd url(../../graphics/drop.gif) bottom right no-repeat;*/
	/*background: #f7f7f7;*/
}

/* style the second level hover */ 
#service ul ul a.drop:hover{
	color: #CC0000;
}

/* style the third level background */
#service ul ul ul a, .service ul ul ul a:visited {
	background:#667370;
}
/* style the third level hover */
#service ul ul ul a:hover {
	background:#667370;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
#service ul ul {
	visibility:hidden;
	position:absolute;
	top:15px;
	left:0; 
	width: 150px;
}

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

/* style the second level links */
#service ul ul a, .service ul ul a:visited {
	background:#ffffff; 
	color:#666666; 
	line-height:1em; 
	padding:5px 10px;
	width:150px;
	border-left:1px solid #666666;
	margin-left: 10px; 
}/* yet another hack for IE5.5 */
* html .service ul ul a, * html .service ul ul a:visited {
	width:150px;
}


/* style the top level hover */
#service a:hover { 
  color: #CC0000;
	background:#ffffff;
}

/* style the top level act */
#service ul .topnav0act a.drop,
#service ul .topnav0act a.no-drop {
  color: #000000;
}#service .topnav0act li a {
	color: #FFFFFF;
}
#topnav0act {
  color: #000000;
	background: #D1D3D4;
}


#service li ul a:hover {
	color: #CC0000;
	background: #f7f7f7 ;
}

#service li ul li.topnav1act a { 
  color: #000000;
	background: #D1D3D4;
}



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

/* make the third level visible when you hover over second level list OR link */
#service ul :hover ul :hover ul{ 
visibility:visible;
}