/*
tempomatszereles.hu
--------------
Netcube 2009
*/
.menu {
z-index:1000;

height:235px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	list-style:none;
	padding:0px;
	margin:0px;
	width:140px;
}

.menu li {

	height:30px;
	line-height:30px;
	border-bottom:1px solid #e3e4df;
font-weight:bold;	
	color:#929292;
	text-transform:uppercase;
	font-size:12px;
	position: relative;
}
.menu li ul li {
background-image:url('../img/leftmenu_bck_bck.jpg'); background-repeat:repeat-y;
	height:30px;
	line-height:30px;
	border-left:0px solid #000000;
	border-bottom:0px solid #000000;

	color:#fff;
	text-transform:uppercase;
	font-size:10px;
	position: relative;
}
* html .menu li {margin-left:-16px; margin-left:0;}
/* get rid of the table */
.menu table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em; width:0; height:0;}

/* style the links */
.menu a, .menu a:visited {
display:block; 
text-decoration:none;
height:30px;
line-height:30px;
width:140px;
color:#929292;
text-indent:5px;
}
/* style the link hover */
* html .menu a:hover { background:#780000;}

.menu :hover > a {
background-image:url('../img/leftmenu_over.jpg'); background-repeat:repeat-x;
color:#fff;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;

top:-0px;
left:139px;
}
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul {
	font-weight:normal;
visibility:visible;

}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
visibility:visible;

}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul { 
visibility:visible;

}
