/* minden <ul> tag az első szint is */
.menulist, .menulist  ul {
 margin: 0;
 padding: 0;
 list-style: none; 
}

/* almenük (<ul> tag) rejtettek, pozzíció a szülő alatt */
.menulist ul {
 display: none;
 position: absolute;
 top: 1.0em; 
 margin-top: 17px; 
 left: -1px;
 width: 230px;
 border-color: #000000;
}

/* második,harmadik, stb. almenü */
.menulist ul ul {
 top: -1px;
 margin-top: 0;
 left: 148px;
 border: 1px; 
}

/*minden menüpont (<li> tag) */
.menulist li {
 float: left;
 display: block;
 position: relative;
 background: #FED;
 margin-right: -1px;
 background-color: transparent;
 color: #ffffff;
 vertical-align: baseline;
 text-align: left;

}

/* menüpontok az almenükben*/
.menulist ul li {
 float: none;
 margin: 0;
 margin-bottom: -1px;
 background-color: #009261;
 background-image: url(popup_background3.png);
}

.menulist LI:first-child
{
  border: 0px none #000000; /*ha van a főmenüben elválasztó keret-> a bal szélsőnek nem kell*/

}
.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* linkek a menüben*/
.menulist a {
 display: block;
 padding: 5px;
 color: #000;
 text-decoration: none; 
}

/* szelektorok a jelöléshez */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus,  .menulist A#mainmenu:hover {
 text-decoration: underline;
}
.menulist a.highlighted {
 text-decoration: underline;
}

.menulist UL a:hover, .menulist  UL a.highlighted:hover, .menulist  UL a:focus {
 text-decoration: underline;
}

/*linkek a horizontális főmenüben*/
.menulist A#mainmenu
{
  color: #FFFFFF;
  text-decoration: none;
  font-weight:  bold;
  padding-right: 5px;
  
}

.menulist a .subind {
 display: none;
}
.menulist ul a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for IE5/Mac */
.menulist a {
 float: left;

}
.menulist ul a {
 float: none;
 text-decoration: none;
 margin-left: 35px;
  color: #ffffff;
}

#submenu
{
  margin-left: 30px;
  font-weight: bold;
}
/* \*/
.menulist a {
 float: none;
}
/* */


/* HACKS: IE/Win: */
*:first-child+html .menulist ul li {
 float: left;
 width: 100%;
}

* html .menulist ul li {
 float: left;
 height: 1%;
}
* html .menulist ul a {
 height: 1%;
}
/* End Hacks */
