#menu{
	background-color:transparent;
}
	
#menu a {
	text-decoration:none;
	color: #293c7b;
	letter-spacing: 0px;
	font-size: 12px;
}

#menu li a {
	/*padding-bottom: 10px;*/
	display: block;
	font-weight: bold;
}

#menu a:hover {
	color: #732010;}

ul { /* all lists*/
	padding: 0;
	margin: 0;
	list-style: none;
	list-style-type: none;
	position: relative;
	/*top: 45px;
	text-transform: uppercase;*/
	font-family: arial, verdana;
	font-size: 12px;
	font-weight: normal;
	color: #293c7b;
}

li { /* all list items */
	float: left; 
	position: relative;
	/*padding: 0px 0px 2px 10px;*/
	/*innen nyúlok bele*/
	padding: 0px 4px 0px 4px;
	height: 25px;
	letter-spacing: 1px;
}

li ul { /* second-level lists */
	width: 150px;
	display: none;
	position: absolute;
	top: 1.2em;
	left: 0;
	font-size: 12px;
	/*margin-top: 12px;*/
	/*padding-top: 12px;*/
	/*margin-left: -10px;*/
}

li ul li {
	border: none;
	padding: 3px 5px 3px 5px;
	height: 12px;
	letter-spacing: 1px;
}

#menu li ul li a {
	padding-bottom: 0px;
	font-weight: bold;
	letter-spacing: 1px;
	color: #fff;
}

#menu li ul li a:hover {
	color: #ffff00;
}

/* Ennyi a különbség a ie6 specifikus css és másik között-- */
li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}
/* --ie6 spec */

li:hover ul, li.over ul { /* lists nested under hovered list items */
  display: block;
	background-color:#293c7b;
	/* for IE */
  filter:alpha(opacity=80);
  /* CSS3 standard */
  opacity:0.8;
  /* for Mozilla */
  -moz-opacity:0.8;
}
