/* Kill margin and padding on all elements - because different browsers have different defaults */
*{
	margin:0;
	padding:0;
}

html{
/* Fixes background nastiness when a sidebar is open in Firefox */
	min-width:770px;
}

body{
/* Use backgound image as opposed to colour so that site is still functional if images are off */
	background:white url(background.png) 0 0 repeat;
/* Shove all content to the center of the screen for Internet Explorer 5 */
	text-align:center;
}
img{
    text-decoration:none;
    border:none;
}
a:hover img{
    text-decoration:none;
}

/*=====[ Set up container divs and add background tiles ]=====*/

#pageheadContainer,
#contentContainer,
#footContainer{
/* 100% so we can create the fullscreen width backgrounds */
	width:100%;
}

#pageheadContainer{
	background:transparent url(pageheadBackground.png) 0 100% repeat-x;
}

#contentContainer{
	background:#F7F7F7 url(contentBackground2.png) 50% 100% repeat-y;
/* Float left to prevent floated child divs(#article & #subContent) overflowing */
	float:left;
}

#footContainer{
	background:transparent url(footBackground.png) 0 0 repeat-x;
	clear:both;
}

#pagehead,
#content,
#foot{
/* Set widths for "sub" container divs and center on the screen */
	width:770px;
	margin:0 auto;
/* Position relative so we can position children absolutley */
	position:relative;
	text-align:left;
}

#pagehead{
	height:130px;
}

#foot{
	height:150px;
}

/* More backgounds, we need more backgrounds! */
#pagehead{
	background:transparent url(pageheadBackground2.png) 0 100% repeat-x;
}

#content{
/* Add drop shadow/fading backgound to top of content area . doesn't work on IE5/MAC */
	background:transparent url(contentBackground.png) 0 0 no-repeat;
/* Ensure this background tile is never cut short, min-height for Firefox and pals */
	min-height:300px;
	_height:300px;
}

#foot{
	background:transparent url(footBackground2.png) 100% 0 repeat-x;
}

/*=====[ Set up two column layout for articles and subcontent ]=====*/

#article{
	width:450px;
	float:left;
	padding:40px 0 20px 0;
	margin-left:50px;
}

#subContent{
/* Fix double margin bug in IE on floats using display:inline */
	display:inline;
	width:180px;
	float:left;
	padding:40px 0 20px 0;
	margin-left:30px;
	color:#8B725A;
	font-size:.9em;
}

/*=====[ Navigations ]=====*/

#pagehead h1 a{
/* Create blank hit area for logo/signature  */
	display:block;
	text-indent:-9999px;
	width:230px;
	height:150px;
	text-decoration:none;
/* Float to make hit area work in */
	float:left;
}

#pagehead a:hover{
/* prevent background colour used on site wide anchors */
	background:transparent;
}

#pagehead h1{
/* Position blank hit area over background logo/signature */
	position:absolute;
	top:0;
	left:0;
}

/* Main navigation list */

#pagehead ul{
	display:block;
	position:absolute;
	top:105px;
	left:410px;
}

#pagehead li{
	display:block;
	float:left;
	width:80px;
	margin-left:3px;
}

#pagehead li a{
	display:block;
	height:20px;
	text-align:center;
	color:#4B271B;
	font-size:1.2em;
	font-weight:bold;
/* Line height same as height, which puts the text vertically centered */
	line-height:20px;
	text-decoration:none;
	text-transform:lowercase;
}


#pagehead li.odd a{
	background:#CC677B;
	color:#FFE;
}

#pagehead li.even a{
	background:#4F6C97;
	color:#FFE;
}

#pagehead a:hover{
	color:#FFE;
}

/* Foot navigation and FIR */

#foot ul{
	position:absolute;
	top:45px;
}

#foot li{
/* hide bullets */
	list-style-type:none;
}

#foot #foot1{
/* width to solve odd problem with Opera 7.5 */
	width:200px;
	position:absolute;
	left:250px;
}

#foot #foot2{
/* width to solve odd problem with Opera 7.5 */
	width:200px;
	position:absolute;
	left:590px;
}

/* This is the anchor top button at bottom of page */
#foot #pageTop{
	position:absolute;
	left:482px;
	top:-40px;
}

#foot #pageTop a{
	display:block;
	width:26px;
	height:26px;
	text-indent:-9999px;
	text-decoration:none;
	background:transparent url(pageTop.png) 0 0 no-repeat;
/* Float to make hit area work in Internet Explorer 5 */
	float:left;
}

/*=====[ General params and typography ]=====*/

body{
/* relative font sizing to allowing scaling*/
	font:normal 62.5%/1.8em Arial, Helvetica, sans-serif;
}

/* #content ul used to prevent main navigation, within #pagehead, list breaking */
#content ul{
	margin:0.8em 0 0.6em 1em;
	padding-left:1em;
	list-style-type:square;
}
ol{
	margin:0.8em 0 0.6em 2em;
	padding-left:1em;
	list-style-type:lower-roman;
}

blockquote{
	margin:0.8em 0 0.6em 1em;
	padding-left:1em;
	font-style:italic;
	border-left:4px solid #E2D7CF;
}

/* Frame images */

/*Set font size for content area */
#content {
	font-size:1.25em;
}

p{
	margin:0.3em 0 0.6em 0;
}

a{
	color:#AE3A50;
	font-weight:bold;
	text-decoration:none;
}

a:hover{
	background:#5F914D;
	color:#FFE;
}
a.img:hover {
    background-color: tranparent;
}


#article{
	line-height:1.7em;
	color:#635141;
}
#article td, th, table {
     font:normal 100%/1.8em Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4{
 font-family:Georgia, Times New Roman, Times, serif;
}

h2{
	color:#AE3A50;
	margin-bottom:.5em;
	line-height:1.7em;
	font-size:1.7em;
}

h3{
	margin:0.8em 0 0.6em 0;
	font-size:1.3em;
}

h4{
	margin:0.8em 0 0.6em 0;
	font-size:1.1em;
}

/* Sub Content */

#subContent h2{
	font-size:1.3em;
}

#subContent h3{
	font-size:1.1em;
}
#nieuwsbrief {
        font-size:12px;
        color:#8B725A;
        font-weight: bold;
        width: 175px;
        height:75px;
        padding: 5px;
        margin-top: 5px;
}

#nieuwsbrief a{
        background-color: #B06C5E;
        width: 100px;
}

/*QUOTE voor forum*/
.forum {
        BORDER-RIGHT: #00858a 1px dashed;
        BORDER-TOP: #00858a 1px dashed;
        PADDING-LEFT: 4px;
        PADDING-TOP: 2px;
        PADDING-RIGHT: 4px;
        PADDING-BOTTOM: 2px;
        BORDER-LEFT: #00858a 1px dashed;
        BORDER-BOTTOM: #00858a 1px dashed;
        font-style: italic;
}
/*highlight kleur zoeken*/
.highlight {
        BACKGROUND: #D0C1A2;
}
/*formulieren en bewerk boxen admin*/
.formulier_select {
        FONT-SIZE: 11px;
        LETTER-SPACING: 0.06em;
}
.formulier_attach {
        height: 20px;
        width: 243px;
        border: 1px solid #fff;
        font-size:11px;
        color:#635141;
        background-color: #fff;
        border: 1px solid #306;
}
.formulier_input {
        height: 16px;
        border: 1px solid #fff;
        font-size:12px;
        color:#635141;
        background-color: #fff;
        border: 1px solid #306;
        padding-left:0.2em;
}
.formulier_button {
        border: 1px solid #fff;
        font-size:12px;
        color:#635141;
        background-color: #fff;
        border: 1px solid #306;
}
.formulier_area {
        border: 1px solid #fff;
        font-size:12px;
        color:#635141;
        background-color: #fff;
        border: 1px solid #306;
        overflow: auto;
        padding-left:0.2em;
}
/*zoekbar*/
.input {
        font: normal Arial;
        border: 1px solid #4F6C97;
        background-color: #F7F7F7;
        font-size:12px;
        color:#635141;
		MARGIN: 0px 0px 4px;
		padding-left:0.2em;
}
/*zoekbar*/
#zoekbar {
        margin-top: 1px;
        padding: 5px;
}
/*progress upload*/
div#progress {
	    float: left;
	    width: 160px;
	    border: 2px solid #FF0000;
	    display: none;
}
/*poll result kleuren*/
.pollbarwidht {
        width: 150px;
}
.pollbarback {
        background-color:#EAE1D1;
}
.pollbarcolor {
        background-color:#008080;
}
/*tooltips admin*/
#dhtmltooltip {
        position:absolute;
        left: -300px;
        width: 150px;
        border: 1px solid black;
        padding: 2px;
        background-color: #ffffcc;
        visibility: hidden;
        z-index: 100;
        /*Remove below line to remove shadow. Below line should always appear last within this CSS*/
        filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135,);
}
/*tooltips admin*/
#dhtmlpointer {
        position:absolute;
        left: -300px;
        z-index: 101;
        visibility: hidden;
}
/* CSS Kalender */
.cellbg {
         background-color: #FFFFFF
}
.cellover {
         background-color: #DDD1B9;
         cursor: hand;
         cursor: pointer;}
.celltoday {
         background-color: #000080
}
.cellevent {
         background-color: #D7E1F5
}
.normaltext {
         color: #000000;
         font-weight: normal;
         font-size: 10px;
}
.eventtitle {
        color: #000080;
        font-weight: normal;
        font-size: 10px;
        font-weight: bold;
}
.eventheading {
        color: #000080;
        font-weight: normal;
        font-size: 14px;
        font-weight: bold;
}
.regheading {
        color: #000000;
        font-weight: normal;
        font-size: 13px;
}
.kalendertable {
        border-color: Navy;
}
.kalenderdatum {
        background-color: #F6F3EC;
        padding:2px;
        margin:0;
        width:200px;
        height:140px;
}
.kalendermaand td {
        background-color: #F6F3EC;
        padding:2px;
        margin:0;
        width:200px;
}
.kalenderweek tr {
        height: 30px;
        cursor: hand;
        cursor: pointer;
}
