.hmenu {
width:750px;
font-size:12px;
position:relative;
z-index:111;
}
/* remove all the bullets, borders and padding from the default list styling */
.hmenu ul {
padding:0;
margin:0;
list-style-type:none;
}
.hmenu ul ul {
width:125px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown hmenu positon */
.hmenu li {
float:left;
width:125px;
position:relative;
}
/* style the links for the top level */
.hmenu a {
	display:block;
	text-decoration:none;
	color:#372426;
	width:124px;
	height:30px;
	border: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:30px;
	text-align: center;
	font-weight: bold;
	background-image: url(gombhat.jpg);
	background-repeat: no-repeat;
}
.hmenu a.aktiv {
	background-image: url(gombhat2.jpg);
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .hmenu a {
width:125px;
w\idth:125px;
}


/* style the top level hover */
.hmenu a:hover, .hmenu ul ul a:hover{
	position:relative;
	color:#190805;
	background-image: url(gombhat2.jpg);
}
.hmenu :hover > a, .hmenu ul ul :hover > a {
position:relative;
}



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

/* another hack for IE5.5 */
* html .hmenu ul ul {
top:27px;
t\op:28px;
}

/* elrejtes terület nagyobbítás */
.hmenu ul ul li{
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}

/* position the third level flyout hmenu */
.hmenu ul ul ul{
left:125px; 
top:0;
width:125px;
}
/* position the third level flyout hmenu for a left flyout */
.hmenu ul ul ul.left {
left:-125px;
}

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

/* style the second level links */
.hmenu ul ul a {
	height:auto;
	width:124px;
}
* html .hmenu ul ul a{
width:125px;
w\idth:114px;
}


/* make the second level visible when hover on first level list OR link */
.hmenu ul li:hover ul,
.hmenu ul a:hover ul{
visibility:visible; 
}

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

/* keep the fourth level hidden when you hover on second level list OR link */
.hmenu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the fourth level visible when you hover over third level list OR link */
.hmenu ul :hover ul :hover ul :hover ul {
visibility:visible;
}

/* keep the 5. level hidden when you hover on second level list OR link */
.hmenu ul :hover ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the 5. level visible when you hover over third level list OR link */
.hmenu ul :hover ul :hover ul :hover ul :hover ul {
visibility:visible;
}

