/* 
 *	Horizontal, top-2-bottom
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 *	(c) 2004 - Aleksandar Vacic, www.aplus.co.yu
 * Some rights reserved, http://creativecommons.org/licenses/by/2.0/
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 */

#menu {
	display: block;
}

#menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
}

#menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;
	position: relative;
}

#menu a {
	display: block;
}

#menu li li {
	width: 100%;
}

/* fix the position for 2nd level submenus. first make sure no horizontal scrollbars are visible on initial page load... */
#menu li li ul {
	top: 0;
	left: 0;
}

/* ...and then place it where it should be when shown */
#menu li li:hover ul {
	left: 100%;
}

/* initialy hide all sub menus */
#menu li ul {
	display: none;
	position: absolute;
	z-index: 10;
}

/* display them on hover */
#menu li:hover>ul {
	display: block;
}

/* this is needed if you want to style #menu div - force containment of floated LIs inside of main UL */
#menuList:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}

/* Clear-fix for IE5/Mac \*//*/
#menu a {
	float: left;
}

#menuList {
	display: inline-block;
}
/*  */

/* 
 *	Horizontal, top-2-bottom
 *	## Tweaks for IE5, IE6
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 *	(c) 2004 - Aleksandar Vacic, www.aplus.co.yu
 * Some rights reserved, http://creativecommons.org/licenses/by/2.0/
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 * Rene Post
 * Use the "* html body" trick to load CSS only in IE6.
 * The other standard complient browsers reject such an invalid rule.
 */

/* Fix IE6's inability to expand clickable area */
#menu li:hover a {
	position: relative;
}

* html body #menu li {
	position: static;
}

* html body #menu li:hover {
	position: relative;
	z-index: 10000;
}

/* IE can't handle display, so fail-over to visibility */
* html body #menu li ul {
	display: block;
	visibility: hidden;
}

/* simulate child selector for IE */
* html body #menu li:hover ul {
	visibility: visible;
	z-index: 10000;
}
* html body #menu li:hover li:hover ul {
	visibility: visible;
	z-index: 10000;
}
* html body #menu li:hover li:hover li:hover ul {
	visibility: visible;
	z-index: 10000;
}

* html body #menu li:hover li ul {
	visibility: hidden;
}
* html body #menu li:hover li:hover li ul {
	visibility: hidden;
}
* html body #menu li:hover li:hover li:hover li ul {
	visibility: hidden;
}

* html body #menuList {
	height: 1%;
}

* html body { 
    behavior: url("/menu-adx-std.htc"); 
}

/* Attach behavior to img tags to fix transparent PNG handling */
* html body img {
    behavior: url("/pngbehavior.htc");
}
