/*
                    legende.css

                    opmaak voor table met 
                    bijvoorbeeld toets functies

*/

		#legende	/* uitleg besturingstoetsen */
		{
			position:		absolute;

			width:			90%;
		
            bottom:		 	0px;
            
            /*centreren door de combinatie van left  en margin-left*/
            left:			5%; /* 50% */ 
            /*margin-left:    -40%;*/


			font-family:	Fixed, monospace;
			font-size:		0.7em;
		
			z-index:		10;
		}

		caption
		{
			caption-side:	bottom;
			margin-top:		5px;
			margin-bottom:	5px;
		}

        /*.uitlR    !!! columngroup - kolommen tekst rechts uitlijnen -    align   werkt niet in table colommen
        {
            align:         right;
            background-color:   yellow;
        }
        */

        /*
        colgroup
        {
            display:    table-column-group;
        }
        */

		table
		{
				/*table-layout:	auto;*/
				width:			100%;
				background-color:	WhiteSmoke;	/* F5F5F5 */
		}

        /* alle velden of 'kolommen' even breed */
        td
        {
            width:  12.5%;
        }

        /* velden in oneven 'kolommen' benadrukken - */
        td:nth-child( odd )
        {
                text-align:         right;
                background-color:   linen;
                padding-right:      8px;
        }


		th
		{
			font-weight:	bold;
			font-size:		1.1em;
			line-height:	1.8em;
			text-align:		left;

			background-color:	lightGrey;
		}
