/*
	CSS for cascading menu
	Valid on Windows XP/Vista IE6 IE7, FF1.5, FF2, FF3, Opera 9, Safari 3, Chrome
	Valid on Linux (Ubuntu) FF3
 */

/* container UL start here */
ul.menu {
	list-style-type : none;
	padding : 0;
	margin : 0;
	left : 80px;
	z-index:100;
}
ul.menu a {
	text-decoration:none;
	font-size : 1.2em;
	font-weight: bold;
	text-shadow: 1px 1px 2px black;
/*	background-color:#666666;*/

}

ul.menu a:hover{
	background-color:#CCCCCC;
	color:#000000;
	text-shadow: none;
}
/* define LI tags */
ul.menu li.level-one, ul.menu li.has-submenu, ul.menu li.active {
	position : relative;
	float : left;
	margin-right : 4px;
	z-index:100;
}
ul.menu li.active {
	background-position : left -200px; 
}
/* define all tags A in LI */
ul.menu li.level-one a {
	display : block;
	float : left;
	color : white;
	padding:0 2px;
}
ul.menu li.active a {
	text-shadow: none;
	color : #000000;
	background-color:#FFF;
}
ul.menu li.has-submenu a {
	padding-right : 20px;
	background-image:url(../images/arrow-down.png);
	background-repeat:no-repeat;
	background-position: right;
}
/* on mouse hover, display background center for first level LI */
ul.menu li.level-one:hover {
	color:black;
}

ul.menu li.level-one:hover a {
/*	padding-top : 2px;
	padding-bottom : 4px;*/
	color:black;
}
/* on mouse hover, display background center for first level A */
ul.menu li.level-one:hover a {
	text-shadow: none;

/*	background-position : right -100px;*/
}
/* define UL submenu in first level LI */
ul.menu li.level-one dl {
	display : none;
	position : absolute;
	left: 0px;
	top : 20px;
	width : 190px;
	list-style-type : none;
	padding : 5px 0 5px;
	margin : 0;
	background-color:#666;
}
/* delete inherited properties for next level LI */
ul.menu li.level-one dd {
	position : relative;
	margin : 0;
	width : 100%;
}
ul.menu li.level-one dd a {
	text-shadow: none;
	padding : 0 10px !important;
	margin : 0 1px;
	width : 100%;
	display : block;
	float : none;
	background-image : none;
/*	background-color : transparent;*/
	color:white;
}
ul.menu li.level-one dl dd:hover {
	background-color : #CCCCCC;
}
ul.menu li.level-one dl dt.separator,
ul.menu li.level-one dl dt.separator:hover {
	background-image : url(gfx/separator.png);
	background-position : left;
	background-repeat : repeat-x;
	height : 2px;
	margin : 1px 5px 0 !important;
	font-size : 0;
}

/* add properties for "standard" browsers (not IE6) */
ul.menu li.level-one dl dd > a {
	display : block;
	width : auto;
}
/* on mouse hover, show sub menu UL */
ul.menu li.level-one:hover dl {
	display : block;
}

/* sub sub menu */
ul.menu dd.has-submenu {
	background-repeat : no-repeat;
	background-position : right top; 
}
ul.menu dd ul {
	display : none;
	position : absolute;
	top : -5px;
	left : 190px;
	width : 190px;
	margin : 0;
	padding : 5px 0 0;
/*	background-image : url(gfx/dd-ul.png);*/
	background-repeat : no-repeat;
	background-position : left top; 
	list-style-type : none;
}
ul.menu dd li {
	margin : 0;
	padding : 0;
}
ul.menu li.level-one dd li > a {
	display : block;
	width : auto;
}
ul.menu li.level-one dd li:hover {
	background-color : #505050;
}
ul.menu dd:hover ul {
	display : block;
}



