/* ================================================================ 
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/final_drop.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.
=================================================================== */

.menucss {
	background: #eee url(../grafika/header_menu.jpg) top right repeat-x;
	border-color: #ff7e00;
	border-style: solid;
	border-width: 1px 0 1px 0;
	font-size: 0.9em;
	position:relative;
	text-transform: lowercase;
	z-index:100;
}
/* remove all the bullets, borders and padding from the default list styling */
.menucss ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.menucss ul ul {
	width: 108px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menucss li {
	float: right;
	position: relative;
	width: 108px;
}
/* style the links for the top level */
.menucss a, .menucss a:visited {
	border-left: 1px solid #fff;
	color: #ff7e00;
	display:block;
	height: 23px;
	line-height: 100%;
	margin-right: 5px;
	padding: 8px 0 0 7px;
	text-align: center;
	text-decoration: none; 
	width: 95px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menucss a, * html .menucss a:visited {
	width: 108px;
	w\idth:95px;
}

/* style the second level background */
.menucss ul ul a.drop, .menucss ul ul a.drop:visited {
	background: green;
}
/* style the second level hover */
.menucss ul ul a.drop:hover{
	background: red;
}
.menucss ul ul :hover > a.drop {
	background: red;
}
/* style the third level background */
.menucss ul ul ul a, .menucss ul ul ul a:visited {
	background: purple;
}
/* style the third level hover */
.menucss ul ul ul a:hover {
	background: yellow;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menucss ul ul {
visibility:hidden;
position:absolute;
height:0;
top:31px;
left:1px; 
width:108px;
}
/* another hack for IE5.5 */
* html .menucss ul ul {
top:30px;
t\op:31px;
}

/* position the third level flyout menu */
.menucss ul ul ul{
left:150px; 
top:0;
width:108px;
}
/* position the third level flyout menu for a left flyout */
.menucss ul ul ul.left {
left:-108px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menucss table {position:absolute; top:0; left:0;}

/* style the second level links */
.menucss ul ul a, .menucss ul ul a:visited {
background:#eee;
border-left: 0;
border-top: 1px solid #ccc;
color:#000;
font-style: italic;
height:auto; 
line-height:120%;
opacity: 0.9;
padding:5px 10px; 
width:87px
}
.menucss ul ul a:hover {
	background: #ff7e00;
}
.menucss ul ul a:hover > a{
	background: #ff7e00; 
}
/* yet another hack for IE5.5 */
* html .menucss ul ul a{
width:108px;
w\idth:87px;
}


/* style the top level hover */
.menucss a:hover {
color:#222; 
background: transparent;
}
.menucss :hover > a {
color:#222;
background: transparent;
}

/* make the second level visible when hover on first level list OR link */
.menucss ul li:hover ul,
.menucss ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menucss ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menucss ul :hover ul :hover ul{ 
visibility:visible;
}