/*
werkt vanaf IE 5.5
Plain text: Verdana 11pt
Mainnav: Arial 14pt
Subnav: Arial 12pt
*/

body {
/*einstellen globale stileigenschaften die sich auf das gesammte Dokument auswirken*/
/*body margin = 0 um am oberen rand aus zu richten, padding selber effekt wij margin aber fuer andere browser */
margin: 0;
padding: 0;
/* algemeen aangeven serif of sans, daarnaast fonts in volgorde*/  
/* zwarte font voor het hele document behalve waar anders aangegeven */ 
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
/*instellen van de achtergrondkleur voor flexiebele schermresolutie*/
background: #4890C0;
/*IE 5 hack, hack om het hele design te centreren, eigenlijk moet deze eigenschap NIET worden gebruikt om elementen te centreren
echter IE 5 maakt deze hack nodig, later moet dus ook voor individuele elementen de center eigenschap weer teniet worden gemaakt*/
text-align: center;
behavior: url(../fileadmin/csshover.htc); /*IE 5,6 rollover hack door behavior call, maakt alle elementen dus niet alleen <a rollover-able>*/
}

/*definieren van algemene tekstlinks*/
a {
	 text-decoration: none;
}
/*onbezochte, bezochte en active links zijn groen*/
a:link, a:active, a:visited {
	 color: #339900;
}

/*mouseover links zijn zwart*/
a:hover {
	 color: Black;
}

/*basis definities van id container die de gehele site inhoud omsluit*/
#container {
	/*de breedte van de inhoud is 960 px*/
	width: 960px;
	/*afstand van border naar binnen is 0*/
	padding: 0;
	/*afstand van border naar buiten*/
	/*trick om de hele container te centreren voor moderne browser dus ex IE 5,
	rechter en linker rand moeten op auto - dit in combinatie met vaste width centreerd de container,
	op deze manier in combinatie met body tekst-align center is dus cross browser gecentreerd*/
	margin: 0 auto 0 auto;
	background: White;
	/*hier corrigeren van IE hack om tekst alsnog aan linker kant te krijgen*/
	text-align: left;
	/*HEEL BELANGRIJK, alle elementen worden relatief tot container gepostitioneerd,
	daarom hier aangeven*/
	position: relative;
}

/*definitie masthead*/
#masthead {
/*achtergrond is plaatje 1 px breed en 80 hoog om 60 % jpg (dus geen gif) geoptimaliseerd om geen verschil met logo te kunnen zien*/
	 background: url(images/static/bg_masthead.jpg);
	 height: 80px;
}

#adresse {
position: absolute; right: 0; top: 15px;
width: 245px;
/*border: 1px solid #600;*/
font-size: 0.7em;
color: White;
}

#header_image_bg {
width: 960px;
height: 84px;
background: #003333;
border-bottom: 1px solid White;
border-top: 1px solid White;
}

/*mainnavigatie begin*/
/*tutorial gebruikt van http://css.maxdesign.com.au*/
/*afstand linker rand*/
#navcontainer { margin-left: 0px; }

#navcontainer ul
{
margin: 0;
padding: 0;
list-style-type: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
}

#navcontainer li { margin: 0 0 1px 0; }

#navcontainer a
{
display: block;
padding: 8px 10px 8px 10px;
width: 210px;
color: #fff;
background-color: #4890C0;
text-decoration: none;
}

#navcontainer a:hover
{
color: #fff;
background-color: #609048;
text-decoration: none;
}

#navcontainer #current, #navcontainer #current a
{
color: #fff;
background-color: #609048;
text-decoration: none;
}

#navcontainer ul ul li { margin: 0 0 1px 0; }

#navcontainer ul ul a
{
display: block;
/*witte ruimte links en rechts*/
margin: 0px 10px 0px 10px;
/*laaste is tekst inspringen links*/
padding: 5px 5px 2px 10px;
width: 190px;
color: #000;
background-color: #fff;
text-decoration: none;
border-bottom: 1px solid #609048;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}

#navcontainer ul ul a:hover
{
color: #000;
background-color: #fff;
text-decoration: none;
background-image: url(images/static/arrow.gif);
background-repeat: no-repeat;
background-position: 0 .5em;
}

#navcontainer ul ul #subcurrent, #navcontainer ul ul #subcurrent a
{
color: #000;
background-color: #fff;
text-decoration: none;
background-image: url(images/static/arrow.gif);
background-repeat: no-repeat;
background-position: 0 .5em;
}
/*mainnavigatie einde*/

h1 {
	 color: #484848;
	 font-size: 0.8em;
	 font-weight: bold;
}

/*ruimte maken dat tekst niet aan de rand kleeft*/
#content {
	padding: 5px 15px 5px 15px;
	border-right: 1px solid #609048;
	}

/*default content text*/
p.bodytext {
font-family: verdana, arial, helvetica, sans-serif; 
font-size: 0.7em;
line-height: 1.5em;
/*verwijderd ruimte tussen de p tags*/
margin-bottom: 0px;
margin-top: 0px;
}

#rechts {
	padding: 5px 15px 5px 15px;
}

p.bodytext_rechts {
font-size: 0.6em;
line-height: 1em;
/*verwijderd ruimte tussen de p tags*/
margin-bottom: 0px;
margin-top: 0px;
}

/*box voor footer menu = net zo breed als navigatie + content colom*/
div#footer_menu {
position: absolute; left: 0; bottom: -20px;
width: 715px;
/*border: 1px solid #600;*/
font-size: 0.6em;
color: White;
background: #4890C0;
}

/*pseudo class
link is for an unvisited link. 
visited is for a link to a page that has already been visited. 
active is for a link when it is gains focus (for example, when it is clicked on). 
hover is for a link when the cursor is held over it. 
*/
/*menu footer*/
/*text-decoration ausgeklammert für beide ids*/
a#menu_footer_no, a#menu_footer_act {         
color: White;
padding-left: 50px;
} 

/*definitie mouseover gewone link*/
a#menu_footer_no:link, a#menu_footer_no:visited, a#menu_footer_no:active {         
} 

a#menu_footer_no:hover {    
color: #484848;
} 

/*definitie geselecteerde link*/
a#menu_footer_act:link, a#menu_footer_act:visited, a#menu_footer_act:active, a#menu_footer_act:hover  {
color: #484848;
} 

/*box voor copy staat naast footer menu = net zo breed als rechter kolom*/
#copy {
position: absolute; right: 0; bottom: -20px;
width: 245px;
/*border: 1px solid #600;*/
font-size: 0.6em;
color: White;
background: #4890C0;
text-align: right;
}

/*definitie form
/* Felder und Submit Button für Email-Formulare */
.csc-mailform-field input {
background-color: #ffffff;
border: 1px solid;
border-color: #BDBDBD;
font-size: 10px;
line-height:15px;
}
 
.csc-mailform-field textarea {
background-color: #ffffff;
border: 1px solid;
 
border-color: #BDBDBD;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 10px;
line-height:15px;
}

.csc-mailform-field label {
/*afstand tussen regels oorspronkelijk 2px*/
margin:3px;
font-size:10px;
line-height:15px;
color:#000000;
float: left;
text-align: left;
margin-right: 0px;
/*ruimte tussen label en input field*/
width: 150px;
display: block;
}
 
/*Border um gesamtes Formular wenn gewünscht
.csc-mailform {
border-style: solid;
border-width: 1px;
border-color: #993300;
}*/
 
/*Ausrichtung des Submit Buttons*/
#mailformformtype_mail 
{
margin-left: 0px;
margin-top: 15px;
padding-left: 0px;
padding-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
/*kleur submitbutton*/
color: White;
background-color: #609048;
border-width: 1px;
border-top-color: #ffffff;
border-left-color: #ffffff;
border-bottom-color: #A2A2A2;
border-right-color: #A2A2A2;
border-style: solid;
} 

.csc-mailform-field {
font-size: 10px;
line-height:15px;
clear:both;
} 

/* select field formateren
.csc-mailform-field select {
background-color: #ffffff;
border: 1px solid;
border-color: #BDBDBD;
} */

/*outde typo 3.8 form formatering*/
.csc-form-labelcell
{
font-size: 10px;
} 

/*begin styling gs-sitemap*/
/*eerste standaard wraps (werken nog met fonts) in constant editor aanpassen*/
#sitemap_header {
	 font-size: 0.9em;
	 color: White;
	 background: #609048;
}

#sitemap_level1 {
	 font-size: 0.8em;
	 color: White;
	 background: #609048;
}

#sitemap_level2, #sitemap_level3 {
	 font-size: 0.7em;
}


