/* CSS du menu horizontal, bieler batiste, www.magnin-sante.ch/journal
   attention au hack IEPC ça fait buger IE5 mac */

.hoofdmenu {
    position:absolute;
    top:160px;
    left:151px;
    display:block;
    margin:0;
    padding:0;
    width:586px; /* important pour Opera7 */
}

.hoofdmenu ul {
	margin-top:0;
}

.hoofdmenu ul ul {		/* pull-down menu's */
    position:absolute;
    width:130px;
    border-top: 1px #45ABE4 solid;
    margin:0 0 0 -1px;
    padding:0;
    hhhhhheight:10em; /* pour  debugger ie5 mac => pas de bordure |_| */
    visibility:hidden;
}

.hoofdmenu ul ul li {		/* for pull-down menu items */
    border-left: 1px #45ABE4 solid;
    border-right: 1px #45ABE4 solid;
    border-bottom: 1px #45ABE4 solid;
}

.hoofdmenu ul a {
    display:block;
    /*width:75px;*/
    color:black;
    background-color: transparent;
    text-decoration:none;
    text-align:center;
    font-weight:normal;
    line-height:1;
    letter-spacing:0.1em;
    padding:2px 10px;
    margin:0;
}

.hoofdmenu ul a.current,
.hoofdmenu ul ul li.first a.current,
 {
	background-color:#45ABE4;
	color:white;
}

/* HOME button wordt niet ge-highlite */
.hoofdmenu ul li.first a.current {
	background-color:transparent;
	color:black;
}

.hoofdmenu ul ul a {
	background-color: white;
	color:black;
	width:130px;
	padding:3px;
     margin:0;
     letter-spacing:normal;
}

.hoofdmenu ul a:hover,
.hoofdmenu ul li.first a.current:hover {
    background-color: #47ACE4;
    text-decoration:none;
    color:white;
}

.hoofdmenu ul ul a:hover{
    background-color: #E0E030;
    text-decoration:none;
    color:black;
}

/* for a mozilla better display with key nav */
.hoofdmenu a:focus{
    background-color: #45ABE4;
}

.hoofdmenu ul li {
    /*width:76px;*/
    display:inline;
    float:none;
    list-style:none;
    margin:0;
    padding:0;
    border-right:1px solid #6F6D6D;
}

.hoofdmenu ul li.last {
    border-right:none;
}

.hoofdmenu ul ul li.last {
	border-right: 1px #45ABE4 solid;
}

/* commented backslash hack v2 for IE mac \*/
.hoofdmenu ul li {
    display:block;
    float:left;
}
/* end hack */

/* IE PC selector */
* html .hoofdmenu ul li {
    display:inline; /* solve a IE PC list bug */
    float:none; /* solve a IE5 clav nav bug */
    float/**/:left; /* for IE6 and IE5.5 */
}

