body{ 
background : #c5c6e6;

background-image:url(../images/midtrans.png);
/*background-attachment: fixed;
background-repeat: no-repeat;
background-position: top center;
*/
}

/* beginstartpunt die relatief is zodat men kan centreren 
met hoogte en breedte , border is om te checken 
left: is niet nodig omdat <center> gebruikt wordt 
*/
.relat{
position: relative;
top : 5px;
left: 0px;
width : 755px;
height: 400px;
border: solid black 0px;
background: url(../images/testnav.png) no-repeat ; 
}

/* absolute positionering binnen relatief element door middel van nesten 
met div elementen,
hierdoor kan men juist positioneren */ 
.abslinks{
position: absolute;
top : 58px;
left:13px;
height:300px;
width:150px;
border: solid black 0px;
background: none;
text-align: left;
}

.absmidden{
position: absolute;
top : 58px;
left:167px;
height:300px;
width:419px;
border: solid black 0px;
background: none;
}

.absmiddenonder{      /* positonering binnen absmidden */
position: absolute;
top : 239px;
left:80px;
height:55px;
width:250px;
border: solid black 0px;
background: none;
font-family: serif;
font-size: 17px;
/*font-weight: bold;*/
color: black ; /*#2A25A7; kleur van tekst*/ 
}

.absrechts{              /* hier wordt vanaf rechts gestart */
position: absolute;
top : 58px;
right:13px;
height:300px;
width:150px;
border: solid black 0px;
background: none;
text-align: right;
}

absboven{
position: absolute;
top : 13px;
left:13px;
border: solid black 1px;
background: blue;
}

absonder{
position: absolute;
top : 13px;
left:13px;
border: solid black 1px;
background: blue;
}
 /* beginpositie van eerste tekstveld,zowel voor links rechts als midden te 
 gebruiken*/ 
.nav1{
position: absolute;
top: 50px;
left: 10px;
height: 24px;
font-size: 18px;
font-weight: bold;
border: solid black 0px;
/* border-top: red thick double ; /*ridge inset outset groove; */
}
.nav2{
position: absolute;
top: 100px;
left: 10px;
height: 24px;
font-size: 18px;
font-weight: bold;
border: solid red 0px;
}
.nav3{
position: absolute;
top: 150px;
left: 10px;
height: 24px;
font-size: 18px;
font-weight: bold;
border: solid red 0px;
}
.nav4{
position: absolute;
top: 200px;
left: 10px;
height: 24px;
font-size: 18px;
font-weight: bold;
border: solid red 0px;
}

.nav5{
position: absolute;
top: 50px;
right: 10px;
height: 24px;
font-size: 18px;
font-weight: bold;
border: solid black 0px;
}
.nav6{
position: absolute;
top: 100px;
right: 10px;
height: 24px;
font-size: 18px;
font-weight: bold;
border: solid red 0px;
}
.nav7{
position: absolute;
top: 150px;
right: 10px;
height: 24px;
font-size: 18px;
font-weight: bold;
border: solid red 0px;
}
.nav8{
position: absolute;
top: 200px;
right: 10px;
height: 24px;
font-size: 18px;
font-weight: bold;
border: solid red 0px;
}

.ip{
position: absolute;
top: 371px;
left: 250px;             /*schuift naar boven of beneden*/
color: yellow;
font-weight: normal;
font-size: 19px
}
.aantal{
position: absolute;
top: 371px;
right: 70px;                /*schuift naar boven of beneden*/
color: yellow;
font-weight: normal;
font-size: 19px
}

a {
    font-family: serif;
	font-size: 17px;
	color: black ; /*#2A25A7;*/
}

a:link {
        font-weight: bold;
        color: black; /*#2A25A;*/
        text-decoration: none;
}

a:visited {
           text-decoration: none;
}

a:hover {
        font-weight: bold;
        color: #c00;
        text-decoration: none;
}

a:active {
         text-decoration: none; 
}

