@charset "utf-8";
html, body {
	width:100%;
	height: 100%;
}
body  {
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	text-align: left; /* links, was center */
	color: #202d34;
	background-image: url(../img/bg1_repvert.jpg);
	background-repeat: repeat-y;
	background-color: #778993;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust these divs based on your final font sizing.
*/
#bgbeeldhor {
	height: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px;
	background-image: url(../img/bg1_rephor.jpg);
	background-repeat: repeat-x;
	position:absolute;
	min-width:950px;
	}
#bgbeeld {
	background-image: url(../img/bg1.jpg);
	background-repeat: no-repeat;
	height: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px;
	position:absolute;
}
#logo {
	position:absolute;
	height: 90px;
	width: 241px;
	left: 80px;
	top: 0px;
}
#linkerkolom {
	position:absolute;
	width: 120px;
	padding-top: 110px;
	padding-left: 20px;
	z-index: 100;

}
.twoColElsRt #container {
	width:90%;
	/*width: 1000px;*/
	max-width:1100px; /* dan is slagan in footer nog leesbaar op achtergrond */
	min-width:1000px;
	height: 100%;
	text-align: left;
	margin: 0px;
	padding: 0px;
	position:absolute;
	z-index: 20;
	} 

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsRt #sidebar1 p" rule.
*/
.twoColElsRt #sidebar1 {
	float: right;
	width: 274px; /* 234px plus links margin van 40px */
	margin-top: 117px;
	padding:0px;
	text-align:right;
}
.twoColElsRt #sidebar1 .content {
	width: 234px;
	text-align:left;
	padding:0px;
	margin:0px;
	margin-top: 0px;
	margin-left: 40px;
}
/* .twoColElsRt #sidebar1 h3, .twoColElsRt #sidebar1 p {
	margin-left: 10px; the left and right margin should be given to every element that will be placed in the side columns 
	margin-right: 10px;
}
*/
/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColElsRt #mainContent {
	margin: 0px; 
	margin-left: 215px;
	margin-top: 117px;
	padding:0px;
	z-index:1000;
	width: 600px;
	}  
.twoColElsRt #footer {
	height:110px;
	clear: both;
	margin-left: 215px;
	margin-top: 15px;
}
.twoColElsRt #footer p {
	color:#778993;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 20px;
}



/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.clearnavfloat { 
	clear:both;
	margin-top: 30px;
    height:300;
   
    
}

a {
	color:#ec008c;
}
a img {
	border:none;
}

.menu ul {
	list-style-type: none;
	padding:0px;
	margin:0px;
}
.menu li {
	padding-top: 2px;
	padding-bottom: 2px;
	text-align: right;
	width:130px;
}
li.menu1 {
	display: block; margin-left: 40px; position: relative;
}
li.menu2 {
	display: block; margin-left: 30px; position: relative;
}
li.menu3 {
	display: block; margin-left: 18px; position: relative;
}
li.menu4 {
	display: block; margin-left: 13px; position: relative;
}
li.menu5 {
	display: block; margin-left: 8px; position: relative;
}
li.menu6 { /* vanaf menuitem7 geen offset meer */
	display: block; margin-left: 3px; position: relative;
} 
#mainnav .menu a {
	
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 16px;
	font-weight: bold;
}

.menu a {
	color:#ec008c;
	text-decoration:none;
	
	
	
	
}


.menu a:hover {
	color:#415a68;
}
.menu .selected {
	color:#a4156a;
}


.zoekform {
width:120px;
}
.zoekform form {
width:120px;
margin:0px;
margin-top:30px;
padding:0px;
text-align:right;
}
.zoekform .zoekveld {
	margin:0px;
	padding:2px;
	width:118px;;
	border: 1px solid #ec008c;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
}


.pulldownnav {
	width:120px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height:10px;
	color:#ec008c;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #cd9ec1;
	margin-top: 20px;
	background-image: url(../img/GaNaar_bg.png);
	background-repeat: repeat-x;
	position: absolute;
}
.pulldownnav ul{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
.pulldownnav ul ul {
	display: none;
	visibility: hidden;
	position: relative;
	top: -12px;
	width:auto;
}
.pulldownnav ul ul ul{
	display: block;
	visibility: hidden;
	position: relative;
	top: 0px;
	margin: 0px;
	padding: 0px;
}
.pulldownnav ul li {
	text-align:right;
	width:100%;
	min-height:30px;
	margin: 0px;
	padding: 0px;
}
.pulldownnav ul li li {
	text-align:left;
	background-color:white;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ec008c;
	height:auto;
	min-height:10px;
}
.pulldownnav ul li li li{
	text-align:left;
	background-color:white;
	padding-left: 5px;
	width:auto;
	font-weight: normal;
	padding-top:0px;
	padding-bottom:1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	}
.pulldownnav ul li li li li{
	text-align:left;
	padding-left: 10px;
	width:auto;
	padding-bottom:0px;
	}
.pulldownnav ul li li a{
	padding:2px;
	display:block;
	text-decoration:none;
	font-weight:bold;
}
.pulldownnav ul ul ul li a{
	font-weight:normal;
}
.pulldownnav ul ul a: {
	color:#ec008c;
}
.pulldownnav ul ul a:hover {
	color:black;
}
.pulldownnav ul li li:hover{
	color:black;
}
.pulldownnav ul:hover ul {
	display: block;
	visibility: visible;
}

.banner a img {
	border:0px;
}
#linkerkolom .banner  {
	padding-top:10px;
	padding-bottom:10px;
}
#mainContent .banner {
	padding-top: 10px;
	padding-bottom: 10px;
}
#sidebar1 .banner {
	left: 0px;
	position: relative;
	top: -97px;
	height: 0px;
	width: 0px;
}

#mainContent h1{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 26px;
	line-height: 26px;
	margin-bottom:19px;
	font-weight: normal;
	color:#ec008c;
	display: block;
	height: 45px;
	margin-left: 45px;
}
#mainContent, #mainContent p {
	color: #202D34;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 20px;
	margin:0px;
	padding:0px;
	margin-bottom: 6px;	
}
#mainContent .intro {
	font-weight:bold;
}
#mainContent .slogan {
	color:#2a85aa;
	font-weight:bold;
}
#mainContent h2 {
	color:#415a68;
	font-weight:normal;
	font-size: 20px;
	line-height: 20px;
	margin-bottom: 6px;	
	margin-top: 12px;	
}
#mainContent h3 {
	color:#415a68;
	font-weight:bold;
	font-size: 16px;
	line-height: 16px;
	margin-bottom: 6px;	
	margin-top: 12px;	
}


#sidebar1 h2 {
	color:#415a68;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	line-height: 20px;
	font-weight: normal;
	
	margin:0px;
	margin-bottom: 20px;
	padding:0px;
	display: block;
}
#sidebar1 h3 {
	color:#2A85AA;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 18px;
	font-weight: bold;
	margin:0px;
	
	padding:0px;
}
#sidebar1 p {
	padding:0px;
	color:#415a68;
	font-family: Arial, Helvetica, sans-serif;
	
	font-weight: normal;
	text-align: left;
	margin:0px;
	padding:0px;
	padding-bottom:6px;
	font-weight: normal;
}
#sidebar1 {
	color:#415a68;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 13px;
}

#mainnav .submenu{
	display: none;
}

.schema{
	display: none;
	
	
	
	}
	
#mainContent h6{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;

	margin-bottom:0px;
	margin-top:0px;
	color:#2a85aa;
	font-weight:bold;
	display: block;
	
	
	}
	

.pink{
	color:#ec008c;
	}
	
	input[type='text']{
	width: 230px;
	}
	
	textarea.description{
	width: 234px;
	height: 200px;
	}
	
.newsitem_list_title, .newsitem_list_month{
	color:#415a68;
	margin-bottom: 6px;	
	margin-top: 12px;
	display: block;

	}

.newsitem_list_title{

	font-weight:bold;
	font-size: 16px;
	line-height: 16px;


	}
.newsitem_list_month{


	font-weight:normal;
	font-size: 20px;
	line-height: 20px;



	}

.newsitem a,.newsitem a:visited,.newsitem a:hover{
	text-decoration:none;
	/*color:#415a68;*/
	}
	
	
#newsitem_today, .newsitem_list_date{
	display:none;
	
	}
.newsitem p{

display:inline;
}

#sidebar1 .content p {
color: black; /*#202d34;*/
font-size: 14px;
line-height: 17px;
}


#sidebar1 .content , #sidebar1 .content  p {
	font-size: 14px;
	line-height:20px;
	font-family: Arial, Helvetica, sans-serif;
}


a h3 {
	text-decoration:none;
}




#footer #adresregel {
	position: relative;
	left: 0px;
	top: 20px;	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color:#778993;
	
}
#footer #simedregel {
	position: relative;
	left: 0px;
	top: 50px;	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
		color:#778993;
}
#footer #tizioregel {
	position: relative;
	top:34px;
text-align:right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
color: #405a67;
}

 #adresregel a{
	color: #405a67;
	text-decoration: none;
	border-bottom-style: dotted;
	border-bottom-color: #405a67;
	border-width: 1px;
}


#adresregel a:hover {
	color: #000000;
	text-decoration: dashed;
}

#footer #tizioregel a, #footer #simedregel a {
	color: #405a67;
	text-decoration: none;
	border-bottom-style: dotted;
	border-bottom-color: #405a67;
	border-width: 1px;

}

#mainContent li {

                list-style-image: url(../img/Bullet.png);

                list-style-type: none;

}

#mainContent ul {

padding-left:24px;

}

.newssummary{
	display:none;
}

.archive{
float:right;
}

#alertbox{
	position: absolute;
	left: 400px;
	top: 200px;
	width: 300px;
	background-color: white;
	border: dotted;
	border-width:1px;
	padding: 10px;
	z-index: 1000;
	border: 1px solid #EC008C;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;

}

#alertbox div{
	float:right;
	margin-right: -5px;
	margin-top: -10px;
}
#alertbox div a{
	text-decoration: none;
	color: black;
}

#respond_form, #taf_form{
	
	display:none;
}

#respond_form table td, #taf_form table td{
	vertical-align: top;
	
}

#respond_form textarea, #taf_form textarea{
	width: 450px;
	height:200px;
}

#respond .respond_list_month{
	float:right;
	font-size: 12px;
	color: #778993;
	padding-right: 3px;
}

#respond .respond_list_name{
	font-size: 12px;
	font-weight:bold;
	display:block;
	color: #778993;
	background-color: #eef1f2;
	padding-left: 2px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #e6eaec;
	border-top-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
	-o-border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-webkit-border-top-left-radius: 5px;
	-o-border-top-left-radius: 5px;

}

#respond .respond_list_summary, #respond .respond_list_summary p {
	display:block;
	font-size: 12px;
	margin-bottom: 3px;
}
#respond .respond_list_summary p {
	margin-bottom: 0px;	
	padding-left: 10px;
	padding-right: 10px;
}
#mainContent h1.subh1{
	margin-left:0px;
	margin-bottom: 0px;
}

#respondlist{
	border: 1px solid #EC008C;
	padding: 5px;	
	background-color:#dde1e4;
	margin-top: 15px;
	padding-bottom: 30px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
}

#respondlist h1.subh1{
	margin:0;
	padding:0;
	font-size: 16px;
	font-weight: bold;
	line-height: 16px;
	height: 22px;
}

#respondlist .respond {
	border: 1px solid #778993;
	padding: 0px;
	background-color: #FFFFFF;
	margin:0;
	margin-bottom: 3px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-top: 5px;
	-o-border-top: 5px;
}

#respondlist br{
	display: none; /* BR tussen de reacties kan ook weg uit de html code */
}
#respondlist a{
	color: #FFFFFF;
	text-decoration: none;
	background-color: #EC008C;
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
	font-size: 13px;
	font-weight: bold;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-o-border-radius: 3px;
}

#respond_form, #taf_form {
	margin-top:30px;
	background-color: #EEF1F2;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	padding: 5px;
}

#respondlist #respond_form, #respondlist #taf_form {
	color: #EC008C;
	font-size: 13px;
	margin-bottom: -20px
}
#respondlist input, #respondlist textarea {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-o-border-radius: 3px;
	background-color: #FFF;
	border: 1px solid #EC008C;
}
#respondlist input.send { /* NB HTML code veranderd, class aangegeven bij knop, ook tekst verander anders 2 maal "reageer" knop */
	color: #FFFFFF;
	background-color: #FFF;
	text-decoration: none;
	background-color: #EC008C;
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
	font-size: 13px;
	font-weight: bold;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-o-border-radius: 3px;
	border:0;
}


.display{
	display:none;
}


#newsheadline_list .newsitem_list_month{
	font-size: 14px;
	margin:2px;
	

}


