/* ************************************************************************** */
/* * BASIS INSTELLINGEN HORIZONTAAL UL LI MENU MET VERTIKALE UITKLAP        * */
/* ************************************************************************** */

#showMenu ul {
	margin: 0;	padding: 0;
	list-style: none;
	}
#showMenu ul li {
	position: relative;
	float: right;
	}
* html #showMenu ul li {
	width: 1px;
	}
#showMenu li ul {
	position: absolute;
	left: 0;
	top: auto;
	display: none;
	}

#showMenu li ul ul {
	position: absolute;
	left: 100%;
	top: -.1em;
	display: none;
	}

/* ************************************************************************** */
/* * STYLING LOSSE MENU ITEMS LEVEL #1                                      * */
/* ************************************************************************** */

#showMenu ul li a {
	display: block;
	background: #000;
	color: #fff; 
	padding: 2px 8px; 
	text-decoration: none;
	margin-left: 3px;
	font-size: 14px;
	font-weight: bold;
	font-style: italic;
	}

	/* commented backslash mac hiding hack \*/ 
	* html #showMenu ul li a {height:1%}
  	/* end hack */

#showMenu li:hover a, #showMenu li.over a {
	background: #a0a0a0;
	color: #fff;
	padding: 2px 8px;
	text-decoration: none;
	margin-left: 3px;
	font-size: 14px;
	font-weight: bold;
	font-style: italic;
	}

#showMenu ul li.active a {
	display: block;
	background: #f00;
	color: #fff;
	padding: 2px 8px;
	text-decoration: none;
	margin-left: 3px;
	font-size: 14px;
	font-weight: bold;
	font-style: italic;
	}



