html {
	background: #EAE5D6;
}

body {
	font: 14px/140% "Trebuchet MS", Tahoma, Verdana, Helvetica;
	color: #666;
	margin: 0;
	padding: 0;
	background: #ffffff url("../images/layout/body.png") repeat-x center top;
}

a:link, a:visited { color: #2685c7; }
a:hover {text-decoration: none }

a.external {
	padding-right: 15px;
	background: transparent url("../images/layout/external_link.png") no-repeat right;
}

h2, h3, h4 {
	color: #206FA7;
	font-weight: bold;
	font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
	margin-left: 15px;
}

/** navigation **/

#navigation {
	/*background: url("../images/top_bg.png") repeat-x top;*/
	text-align: center;
}

#navigation ul {
	width: 580px;
	height: 42px;
	margin: 0 auto;
	padding: 0;
	border-left: 1px solid #0F6092;
	list-style: none;
	/*background: url("../images/top_bg.png") repeat-x top;*/
}

#navigation li {
	float: left;
	height: 42px;
	list-style: none;
	border-right: 1px solid #0F6092;
}

#navigation li a {
	float: left;
	list-style: none;
	height: 42px;
	padding: 0px 20px;
	color: #fff;
	text-decoration: none;
	font: bold 14px/42px Arial, Helvetica, Geneva, sans-serif;
}

#navigation li a:hover {
	background: #000 url("../images/layout/navigatie_hover.png") repeat-x 0 top;
}

/** HEADER **/

#header {
	width: 750px;
	height: 108px;
	margin: 20px auto 0 auto;
	background: url("../images/layout/header.png") no-repeat center;
}

#header h1 a { 
	float: left;
	width: 147px;
	margin: 10px 0px 0px 15px;
	height: 76px;
	display: block;
	text-indent: -5000em;
	text-decoration: none;
	background: url(../images/layout/logo.png) no-repeat center top;
}

#header h2 {
	color: #206fa7;
	margin: 0px 0px 0px 180px;
	padding-top: 10px;
	font: bold 26px "Lucida Grande", Lucida, Verdana, sans-serif;
}

#header h3 {
	color: #333;
	margin: 0px 0px 0px 180px;
	padding: 0px;
	font: bold 18px "Lucida Grande", Lucida, Verdana, sans-serif; 
}

/** CONTENT **/
#content {
	width: 750px;
	margin: 0 auto;
}

#content h2 {
	margin-left: 15px;
}

#content p {
	margin-left: 15px;
	margin-right: 15px;
}

#content #breadcrumbs {
	color: #2685c7;
	margin: 0 15px;
}

/** BLOCKS **/

#leerlingen, #ouders, #extern {
	width: 240px;
	float: left;
	margin-top: 25px;
	margin-right: 10px;
	padding-bottom: 5px;
}

#leerlingen h2, #ouders h2, #extern h2 {
	text-align: left;
	margin-top: 5px;
	margin-left: 55px;
	font-size: larger;
}

#leerlingen img, #ouders img, #extern img {
	float: right;
	margin: 10px;
}

#leerlingen ul, #ouders ul, #extern ul {
	list-style: none;
}

#leerlingen {
	clear: both;
	margin-left: 10px;
	background: #EAE5D6 url("../images/index/leerlingen_hoekje.png") no-repeat top left;
}

#leerlingen ul li ul li {
	margin-left: -15px;
}

#ouders {
	background: #CCCCCC url("../images/index/ouders_hoekje.png") no-repeat top left;
}

#extern {
	width: 230px;
	background: #2685C7 url("../images/index/extern_hoekje.png") no-repeat top left;
}

#extern img {
	margin-left: 8px;
}

#extern h2, #extern a {
	color: #ffffff;
}

/** FOOTER **/

#footer {
	clear: both;
	height: 88px;
	background: #EAE5D6 url("../images/layout/footer.png") repeat-x;
}

#footer p {
	font: bold 10px/88px Arial, Helvetica, Geneva, sans-serif;
	width: 760px;
	height: 88px;
	margin: 0 auto;
	text-align: center;
	background: #EAE5D6 url("../images/layout/footer_p.png") no-repeat;
}

.fn, dt {
	font-weight: bold;
	margin-left: 15px;
	margin-right: 15px;
}

/** GENERIC **/

.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}


a.beschrijving {
    position: relative; /*this is the key*/
}

a.beschrijving:hover{
	color: #000000;
}

a.beschrijving span{
	display: none
}

a.beschrijving:hover span{ /*the span will display just on :hover state*/
	top: 10px;
	left: 30px;
	width: 25em;
	color: #666666;
    border: 1px solid #999999;
	padding: 5px;
	z-index: 25;
	display: block;
    position: absolute;
	line-height: 1.5em;
    background-color: #d5d5d5;

}