/* ================================================================
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/flyout2.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */


/*--------------------------------------
   MENU
-------------------------------------- */
.menu                                  {
	z-index:1000;
	margin: 25px 0 60px 0;
	text-align: right;
	width: 190px;
	font-size: 17px;
}
.menu ul                               { width:190px; }
.menu li                               { position:relative; margin: 5px 0; }
.menu ul ul li                         { margin: 0; }
.menu table                            { position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; }

/*--------------------------------------
   LINKOVI
-------------------------------------- */
.menu a, .menu a:visited               { color: #1f1a17; text-decoration: none; display: block; }
* html .menu a, * html .menu a:visited { width:200px; } /* IE5.5 FIX */

/* LINK:hover */
* html .menu a:hover                   { color:#0093dd; }
.menu :hover > a                       { color:#0093dd; }

/*--------------------------------------
   AKTIVNI LINK
-------------------------------------- */
.menu ul a.on,
.menu ul a.on:hover,
.menu ul ul a.on,
.menu ul ul a.on:hover                 { color: #b2b2b2; }

/* AKTIVNI LINK za IE */
* html .menu a.on,
* html .menu a.on:visited              { color: #b2b2b2; }
* html .menu ul ul a.on                { color: #b2b2b2; }

/*--------------------------------------
   LEVEL 2
-------------------------------------- */
.menu ul ul                            {
	visibility:hidden;
	position:absolute;
	top:0;
	left:190px !important;
	left: 200px;
	text-align: left;
	font-size: 12px;
	width: auto;
	z-index: 500;
	background: #fffeae;
	opacity: .75;
	filter: alpha(opacity=75);
}
.menu ul ul ul                         { z-index: 1000; }
.menu ul ul a                          {
	display:block;
	width:190px;
	font-size: 12px;
	text-align: left;
	padding: 2px 0 2px 10px;	
}
	
/*--------------------------------------
   LEVEL 3 - 5
-------------------------------------- */
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul                    { 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; }
