@charset "utf-8";
/* CSS Document */
/* Horisontal Menu with Any Content addable v0.3 by elennaro elennaro@mail.ru */

#jqhmenu { /* First UL - main UL of menu */
	list-style-type:none;
	padding: 0;
	margin: 0;
	z-index:100;
}

#jqhmenu li { /* First level LIs */
	list-style-type:none;
	display:inline;
	float:left; /* Also Removes Spaces between li elements */
	margin: 0 0px 0 0px;
	padding: 0;
	z-index:101;
	
}
#jqhmenu li img {
	display:block; /* Fix For IE - removes Spaces After IMG FIND THE BETTER WAY!!!*/
}
#jqhmenu li a {
	vertical-align: bottom; /* This fixes the IE5 Win gap! */
	width:100%; /* It will Cause a bug in IE 6 */ /* For IE7 will be calculated by JQuery */
/*	margin:0 -1px 0 2px; /* Fix for the previously mantioned bug in IE 6 */
}
#jqhmenu li ul { /* SubLevel 1 UL - all the nessesary parent lis options should be owewritten */
	 position:absolute;
	 display:block;
	 margin-left: 0px;
	/* background:#3FF;*/
	 z-index:150;
	 text-align: left;
}
#jqhmenu li ul li { /* SubLevel 1 LI - all the nessesary parent lis options should be owewritten */
	position:relative; /* To Position the Sub Level N UL - IT means no PNG background allowed!!! */
	display:block;
	clear:both;
	width:100%; /* It will Cause a bug in IE 6 */ /* For IE7 will be calculated by JQuery */
	margin:0 0px; /* Fix for the previously mantioned bug in IE 6 */
	padding:3px 0 3px 30px;
	z-index:155;
	/*background:#0F0;*/
}
#jqhmenu li ul li ul { /* SubLevel N UL - all the nessesary parent lis options should be owewritten */
	 position:absolute;
	 display:block;
	/* background:#3FF;*/
	 z-index:200;
	 left:100px; /* It will Ne Changed By JQuery*/
	 top:0px; /* MAYBE It will Ne Changed By JQuery too*/
}
#jqhmenu li ul li ul li { /* SubLevel N LI - all the nessesary parent lis options should be owewritten */

}

