.zbozi {
z-index:1003;
font-size:90%;
margin:0px 0 0px 0px; /* this page only */
}

/* remove all the bullets, borders and padding from the default list styling */
.zbozi ul {
padding:0;
margin:0;
list-style-type:none;
width:231px;
}
/* hack for IE5.5 */
* html .zbozi ul {margin-left:0; ma\rgin-left:0; width:231px;}
/* position relative so that you can position the sub levels */
.zbozi li {
position:relative;
height:21px;
list-style-type:none;
margin-left: 0px;
padding: 0px;
}

/* get rid of the table */
.zbozi table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em; width:231px; padding: 0; margin: 0;}

/* style the links */
.zbozi a, .zbozi a:visited {
display:block; 
font-weight: bold;
border-bottom: 1px solid #dadada;
font-size: 90%;
height:20px;
line-height:20px;
width:219px;
color: #424242;
text-indent:5px;
	text-decoration: none;
border-width:0 0px 1px 0;
padding-left: 12px;
background: url(../obrazy/arrowbullet.png) no-repeat center left;
}

/* hack for IE5.5 */
* html .zbozi a, * html .zbozi a:visited {width:231px; w\idth:231px;}
* html .zbozi ul ul a, * html .zbozi ul ul a:visited { background-color: #F3F3F3; width:231px; w\idth:231px;}
/* style the link hover */
* html .zbozi a:hover {color:#fff; background:#FF4900;}

.zbozi :hover > a {
color:#fff; 
background-color:#FF4900;
background-image: none;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.zbozi ul ul {
visibility:hidden;
position:absolute;
top:0;
left:231px;
font-size: 90%;
border-left: 1px solid white;
background-color: #F3F3F3;
}
/* make the second level visible when hover on first level list OR link */
.zbozi ul li:hover ul,
.zbozi ul a:hover ul {
visibility:visible;
}

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