.v_menu {
width:170px;
font-size:12px;
margin:0;
}

/* remove all the bullets, borders and padding from the default list styling */
.v_menu ul {
position:relative;
z-index:100;
padding:0;
margin:0;
list-style-type:none;
width:170px;
}
/* style the list items */
.v_menu li {
background: url(gombhat.gif);
background-repeat: no-repeat;
height:26px;
/* for IE7 */
float:left;
}
/*.v_menu li.v_drop {background: url(nyil.gif) no-repeat right center;} */

/* get rid of the table */
.v_menu table {position:absolute; top:0; left:0; z-index:100;}

/* style the links */
.v_menu a, .v_menu a:visited {
	display:block;
	text-decoration:none;
	height:25px;
	line-height:25px;
	width:169px;
	color:#fff;
	text-indent:5px;
	border:0;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}
/* hack for IE5.5 */
* html .v_menu a, * html .v_menu a:visited {width:170px; w\idth:169px;}
/* style the link hover */
* html .v_menu a:hover {color:#fff; background: url(gombhat2.gif); position:relative;}

.v_menu li:hover {position:relative;}

/* For accessibility of the top level v_menu when tabbing */
.v_menu a:active, .v_menu a:focus {color:#fff;}

/* retain the hover colors for each sublevel IE7 and Firefox etc */
.v_menu li:hover > a {color:#fff; background: url(gombhat2.gif);}
 
/* hide the sub levels and give them a positon absolute so that they take up no room */
.v_menu li ul {
visibility:hidden;
position:absolute;
top:-30px;
/* set up the overlap (minus the overrun) */
left:110px;
/* set up the overrun area */
padding:30px;
/* this is for IE to make it interpret the overrrun padding */
background:transparent url(1.gif);
}

/* for browsers that understand this is all you need for the flyouts */
.v_menu li:hover > ul {visibility:visible;}


/* for IE5.5 and IE6 you need to style each level hover */

/* keep the third level+ hidden when you hover on first level link */
.v_menu ul a:hover ul ul{
visibility:hidden;
}
/* keep the fourth level+ hidden when you hover on second level link */
.v_menu ul a:hover ul a:hover ul ul{
visibility:hidden;
}
/* keep the fifth level hidden when you hover on third level link */
.v_menu ul a:hover ul a:hover ul a:hover ul ul{
visibility:hidden;
}

/* make the second level visible when hover on first level link */
.v_menu ul a:hover ul {
visibility:visible;
}
/* make the third level visible when you hover over second level link */
.v_menu ul a:hover ul a:hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level link */
.v_menu ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}
/* make the fifth level visible when you hover over fourth level link */
.v_menu ul a:hover ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}