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

/*Colors And Hovers*/
#jqhmenu li a { font-weight:bold; text-decoration:none; color:#fff;}
#jqhmenu li a:hover { font-weight:bold; text-decoration:none; color:#000;}
#jqhmenu li ul li {border:0px none; width:182px; height:auto; background:#cf0002;}
/*End of colors And Hovers*/

#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;
	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 */
}

* html body #jqhmenu li a {
	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: 15px;
	/* 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 -1px; /* Fix for the previously mantioned bug in IE 6 */
	padding:2px 0 7px 5px;
	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 */

}
