/* CSS Document */

body {
	/* Algemene iPhone-achtige instellingen */
    background-color: #ddd; 
    color: #222;            
    font-family: Helvetica, sans-serif; 
    font-size: 14px;
    margin: 0;              
    padding: 0;        
}

h1{
	/* Kopteksten - wordt nu overal toegepast. Is 
		te verfijnen door descendant selectors toe te passen */

    margin: 0;
    padding: 0;
    background-color: #ccc;
    border-bottom: 1px solid #666;
    color: #222;
    display: block;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
	text-shadow: 0px 1px 0px #fff;
}
h2{
	/* idem */
	font-size: 16px;
    font-weight: bold;
	text-align:center;
}

/* Lijst instellen als iPhone-achtig menu */ 
nav ul {
    list-style: none;
    margin: 10px;
    padding: 0;
}
/* Block-weergave voor menu-hyperlinks instellen */ 
nav ul li a {
    background-color: #FFFFFF;
    border: 1px solid #999999;
    color: #222222;
    display: block;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: -1px;
    padding: 12px 10px;
    text-decoration: none;
}

/* Verborgen elementen niet tonen */
.hiddenTitle {
	display:none;
}

/* Onderstreping voor hyperlinks verwijderen */ 
a {
	text-decoration:none;
}
