﻿.nav, .nav *
{
    margin: 0;
    padding: 0;
    list-style: none;
}

/* top ul.nav element */
.nav
{
    line-height: 2px; 
    /*background-color:White;*/
    /* border-right:solid 1px Gray;*/
}

/* nested submenu ul elements */
.nav ul
{
    position: absolute; /* remove from flow and allow positioning */
    top: -999em; /* hide submenu in screen-reader and search-engine friendly way */
    width: 77px;
	
}

.nav ul li
{
    text-align: left;
}

/* submenu items */
.nav ul li, .nav ul li ul li a
{
    width: 77px; 
}


/* all li elements */
.nav li
{
    float: right; /* must float all li elements. Vertical submenu items are restrained by parent ul width (see .nav ul rules above) */
    position: relative; /* make child submenu ul position relative to parent li */
    z-index: 99; /* ensure submenus appear above other page items. Increase if needed, but do not exceed thickbox overlay z-index! */
}

/* all anchor elements */
.nav a
{
    display: block; /* make IE6 obey width when text-indent is used */
}

/**** Position of second tier of nav ****/
.nav li:hover ul
{
    left:-1px; /* position first submenu directly under parent li */
    top:15px; 
}

.nav
{
    float: left; 
    margin-bottom: 1.5em; /* add space beneath nav. Purely cosmetic */
	
}
.nav li
{
    border-left:solid 1px Gray;
    padding-top: 2px;
    width: 75px; 
    height: 15px;
	border-bottom: 1px solid Gray;
	background-color: #f3f3e2;
}
.nav li.current
{
    font-weight:bold;    
    color:Lime;
}
.nav a
{
    /* Dit is het gedeelte voor de Hoofdmenu's!*/
    color:Gray;
    font-family:Verdana;
    font-size:9px;
    font-weight:normal;
    padding:6px 0 8px 0; 
    text-decoration:none;
    text-indent:5px; 
    text-align:left;
	
}

.nav ul li a
{
    /*Dit is het gedeelte voor de submenu's*/
    
    font-family:Verdana;
    font-size:9px;
	background-color: #C9550A;
	color: white;
	
	
}

.nav ul a
{
    text-indent: 5px; 
}

.nav li:hover, .nav li.sfHover, .nav a:focus, .nav a:hover, .nav a:active
{
	font-weight: bold;
}
