@charset "utf-8";


.menu_pionowe {
	float: none;
	height: 260px;
	width: 185px;
	background-color: #FFFFFF;
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 700;
	color: #333333;
	margin-top: 10px;
	margin-left: 18px;
}
/*
.menu_pionowe ul {
	padding: 0px;
	border: none;
	width: 185px;
	z-index: 1;
	list-style-type: none;
	margin: 0px;
}
.menu_pionowe ul li {
	position: relative;		
	float: left;			
}

html > body .menu_pionowe ul li {	
	float: none;
}
*/
/* START - For the top level menu */
.menu_pionowe ul {
	background-color: #FFFFFF;
	list-style-type:none;
	margin: 0px;
	padding: 0px;
	border: none;
	width: 185px;
	z-index: 1;
}
.menu_pionowe ul li {
	position: relative;		/* Very Important, don't remove */
	float: left;			/* Workaround for IE */
}
html > body .menu_pionowe ul li {	/* Fix for Mozilla and other browsers for the previous workaround */
	float: none;
}
.menu_pionowe ul a {
	text-decoration: none;
	color: #333333;
	background-image: url(gfx/bullet1.gif);
	background-repeat: no-repeat;
	background-position: 7px 10px;
	padding-left: 25px;
	display: block;
	padding-top: 8px;
	height: 25px;
	width: 160px;
}
.menu_pionowe ul a:hover {
	text-decoration: none;
	color: #FFFFFF;
	background-image: url(gfx/bullet2.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 25px;
	display: block;
	padding-top: 8px;
	height: 25px;
}

.menu_pionowe ul ul a {
	color: #333333;
	background-image: url(gfx/bullet3.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 25px;
	display: block;
	padding-top: 8px;
	height: auto;
	text-decoration: none;
	padding-right: 25px;
	padding-bottom: 8px;
	width: 135px;
}
.menu_pionowe ul ul a:hover {
	text-decoration: none;
	color: #FFFFFF;
	background-image: url(gfx/bullet2.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-left: 25px;
	display: block;
	padding-top: 8px;
	padding-bottom: 8px;
	height: auto;
}


/* END - For the top level menu */

		/* START - Common for all the sub level menu */
.menu_pionowe ul ul {
	position: absolute;
	left: 185px;
	top: 0px;
	display: none;
	visibility: visible;
	z-index: 2;
	border: 1px solid #ccc;
}
/* End - Common for all the sub level menu */

		/* START - z-index setting for different menu levels */
.menu_pionowe ul {
	z-index: 100;
}
.menu_pionowe ul ul {
	z-index: 200;
}
.menu_pionowe ul ul ul {
	z-index: 300;
}
.menu_pionowe ul ul ul ul {
	z-index: 400;
}

/* END - z-index setting for different menu levels 
.menu_pionowe .folder {
	background: transparent url("gfx/arrow.gif") 95% 50% no-repeat;
}
*/


/* START - CSS solution for the menu for all browsers except IE */
html > body .menu_pionowe ul li:hover ul ul {
	display: none;
}
html > body .menu_pionowe ul li:hover ul,
html > body .menu_pionowe ul ul li:hover ul,
html > body .menu_pionowe ul ul ul li:hover ul,
html > body .menu_pionowe ul ul ul ul li:hover ul { /* 4 level menu supported */
	display: block;
}
		/* END - CSS solution for the menu for all browsers except IE */
