@charset "utf-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FFFFFF;
	background-image: url(grafx/achtergrond.gif);
	background-color: #000000;
}
.twoColHybLt #container {
	width: 80%;
	margin: 0 auto;
	text-align: left;
	background-color: #000;
} 
.dialog {
	position:relative;
	min-width:8em;
	max-width:1580px; /* based on image dimensions - not quite consistent with drip styles yet */
	color:#fff;
	z-index:1;
	margin-left:12px; /* default, width of left corner */
	margin-bottom:1em; /* spacing under dialog */
	min-height: 8em;
	max-height: 1189px;
	float: left;
	margin-top: 0px;
	margin-right: auto;
}

.dialog .content,
.dialog .t,
.dialog .b,
.dialog .b div {
	background-image:url(grafx/dialogdark.gif);
	background-color: transparent;
	background-image: url(grafx/dialogdark1600x1200.png);
	background-repeat: no-repeat;
	background-position: right top;
}
dt {
	font-weight: bold;
	margin: 15px 0;
	color: #FC0;
}
dd {
    margin: 10px 0 30px;
}

.dialog .content {
	position:relative;
	zoom:1;
	_overflow-y:hidden;
	padding:0px 12px 0px 0px;
	background-color: #000;
}

.dialog .t {
 /* top+left vertical slice */
 position:absolute;
 left:0px;
 top:0px;
 width:12px; /* top slice width */
 margin-left:-12px;
 height:100%;
 _height:1600px; /* arbitrary long height, IE 6 */
 background-position:top left;
}

.dialog .b {
	/* bottom */
 position:relative;
	max-width: 1580px;
}

.dialog .b,
.dialog .b div {
 height:30px; /* height of bottom cap/shade */
 font-size:1px;
}

.dialog .b {
 background-position:bottom right;
}

.dialog .b div {
 position:relative;
 width:12px; /* bottom corner width */
 margin-left:-12px;
 background-position:bottom left;
}

.dialog .hd,
.dialog .bd,
.dialog .ft {
 position:relative;
}

.dialog .wrapper {
 /* extra content protector - preventing vertical overflow (past background) */
 position:static;
 max-height:1000px;
 overflow:auto; /* note that overflow:auto causes a rather annoying redraw "lag" in Firefox 2, and may degrade performance. Might be worth trying without if you aren't worried about height/overflow issues. */
}

.dialog h1,
.dialog p {
 margin:0px; /* margins will blow out backgrounds, leaving whitespace. */
 padding:0.5em 0px 0.5em 0px;
}

.dialog h1 {
 padding-bottom:0px;
}
#paginatitel {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #FFF;
	text-align: center;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}


/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
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 ".twoColHybLt #sidebar1 p" rule.
*/
.twoColHybLt #sidebar1 {
	float: left;
	width: 12em;
	font-family: Arial, Helvetica, sans-serif;
	list-style: none;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;
	left: 0px;
}
#sidebar1 li {
	list-style:none;
	text-align: left;
}
.twoColHybLt .dialog .content #sidebar1 ul li a {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #FC6;
	text-decoration: none;
	display: block;
	padding-left: 0px;
	border-bottom-width: 1px;
	border-bottom-style: inset;
	border-bottom-color: #FC3;
	list-style-type: none;
	line-height: 35px;
	float: none;
	text-align: center;
	width: 160px;
	position: relative;
	left: -20px;
	background-image: url(grafx/menuachtergr.gif);
	background-repeat: no-repeat;
	background-position: left center;
	font-weight: bold;
}
.twoColHybLt .dialog .content #sidebar1 ul li a:hover {
	background-position: -160px 0px;
	color:#FFC
	}
.twoColHybLt .dialog .content #sidebar1 ul li a.current {
	background-position:top right;
	color:#FFC;
	cursor:default;
}
.twoColHybLt #sidebar1 h3, .twoColHybLt #sidebar1 p {
	margin-left: 0px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 0px;
	text-indent: -1000em;
	height: 355px;
	width: 186px;
	background-image: url(grafx/jochem-uri.gif);
	background-repeat: no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	list-style: none;
}
.twoColHybLt #container #sidebar1 ul list {
	list-style: none;
	list-style-image: url(grafx/li.gif);
}


/* Tips for mainContent:
1. 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.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
.twoColHybLt #mainContent {
	background-color: #000;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	margin-top: 35px;
	margin-right: 20px;
	margin-bottom: 0;
	margin-left: 13em;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 0px;
	padding-bottom: 10px;
} 
.twoColHybLt #container .dialog .content #mainContent h3 strong {
	color: #FC3;
}
.twoColHybLt #container .dialog .content #mainContent ol li a {
	display: list-item;
	list-style-type: disc;
	list-style-position: outside;
}

.twoColHybLt #mainContent a {
	color:#FC3;
	text-decoration:none
}
.twoColHybLt #mainContent a:hover {
	color:#FFC;
	text-decoration:underline;
}
.twoColHybLt #mainContent ul {
	margin:0px;
	padding:0px;
	list-style:none;
		}
.twoColHybLt #mainContent li {
	display:inline;
	}
.twoColHybLt #mainContent li a:link, .twoColHybLt #mainContent li a:visited {
	padding: 0.2em .5em;
	font-weight: bold;
	color: #FFC;
	text-decoration: none;
	background-color: #000;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 0px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #666;
	border-right-color: #666;
	border-bottom-color: #666;
	border-left-color: #666;
}
.twoColHybLt #mainContent li a:hover, .twoColHybLt #mainContent li a:active {
	background-color:#FF9;
	color:#000;
}
.twoColHybLt #mainContent li a.horcur,.twoColHybLt #mainContent li a.horcur:hover,.twoColHybLt #mainContent li a.horcur:active {
	background:#000;
	color:#FC3;
	cursor:default;
}
.twoColHybLt .dialog .content #footer a {
	color:#FC6;
	text-decoration:none;
}
.twoColHybLt .dialog .content #footer a:hover {
	color:#FFC;
	text-decoration:underline;
}.commentForm
{
	width: 497px;
	height: 324px;
	position: relative;
	background-image: url(grafx/postkaart.png);
	background-repeat: no-repeat;
	float: left;
}
.commentForm input[type="text"], .commentForm textarea
{
	width: 180px;
	left: 28px;
	position: absolute;
	background-repeat: no-repeat;
	border-width:0px;
	font-weight:bold;
	font-family:Arial, Sans-Serif;
	font-size:0.9em;
}
.nameField
{
	top: 44px;
	height: 22px;
	background-image: url(grafx/Naam.png);
}
.emailField
{
	top: 91px;
	height: 22px;
	background-image: url(grafx/Email.png);
}
.commentField
{
	top: 142px;
	height:122px;
	background-image: url(grafx/Bericht.png);
}
.sendButton
{
	position:absolute;
	top:227px;
	left:280px;
	width:100px;
	height:30px;
	border:2px dotted #999;
	background-color:#AE9A84;
	color:#162B7B;
	display: block;
}

/* 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;
	border: 4px solid #FFF;
	margin-top: 8px;
	margin-right: 0px;
	margin-bottom: 8px;
	padding: 0px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	border: 4px solid #FFF;
}

.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;
	font-size: 16px;
	line-height: 0px;
}
#container #footer {
	background-color: #000;
	clear: both;
	color: #CCC;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	text-align: center;
	font-size: 12px;
	padding-top: 10px;
	margin-top: 0px;
}
.twoColHybLt #container #paginatitel h1 {
	color: #FC0;
}
.twoColHybLt #container .dialog .content #mainContent h2 {
	color: #FC3;
}
table {
	border:1px solid #D0D0A7;
	border-collapse:collapse;
	color:#fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	background-color: #999;
}
.tblenostyle {
	background-color: #000;
}

caption {
	border:1px solid #D0D0A7;
	color:#D0D0A7;
	font-weight:bold;
	letter-spacing:2px;
	padding:6px 4px 8px 0px;
	text-align:center;
	text-transform:uppercase;
}
td, th { color:#363636;
 padding:.4em;
}
tr { border:1px dotted gray;
}
thead th, tfoot th { background:#5C443A;
 color:#FFFFFF;
 padding:3px 10px 3px 10px;
 text-align:left;
 text-transform:uppercase;
}
tbody td a { color:#363636;
 text-decoration:none;
}
tbody td a:visited { color:gray;
 text-decoration:line-through;
}
tbody td a:hover { text-decoration:underline;
}
tbody th a { color:#363636;
 font-weight:normal;
 text-decoration:none;
}
tbody th a:hover { color:#363636;
}
tbody td+td+td+td a {
	background-position:left center;
	background-repeat:no-repeat;
	color:#03476F;
	padding-left:15px;
}
tbody td+td+td+td a:visited {
	background-position:left center;
	background-repeat:no-repeat;
}
tbody th, tbody td { text-align:left;
 vertical-align:top;
}
tfoot td { background:#5C443A;
 color:#FFFFFF;
 padding-top:3px;
}
.odd {
	background-color: #CCC;
}
tbody tr:hover {
	border:1px solid #03476F;
	color:#FFF;
	background-color: #CCC;
}
.fltrtnoborder {
	float: right;
	margin-left: 8px;
}
.fltlftnoborder {
	float: left;
	margin-right: 8px;
}
.twoColHybLt #container .dialog .content #mainContent #PageFlipDiv {
	float: left;
}

.Quote {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	background-color: #070707;
	padding: 10px;
	float: right;
	margin: 10px;
	font-weight: lighter;
}

.Quoteleft {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	background-color: #070707;
	padding: 10px;
	float: left;
	margin: 10px;
}
dt {
     font-weight: bold; 
     margin: 15px 0;
}
.listitemsimulatie {
	display: marker;
	list-style-type: disc;
	line-height: 1px;
	white-space: normal;
	font-size: medium;
}

dd {
    margin: 10px 0 30px;
}
