/* De confirm box */
#ajaxBg {
	 position: fixed;
	 top: 0px;
	 left: 0px;
	 width: 100%;
	 height: 100%;
	 background-color:#000;
	 filter: alpha(opacity=75);
	 -moz-opacity: 0.75;
	 opacity: 0.75;
	 z-index: 998;
}
* html #ajaxBg { /* ie6 hack */
	 position: absolute;
	 height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}
.confirm {
	width: 300px;
	height: 150px;
	position: fixed;
	z-index: 999;
	left: 50%;
	top: 50%;
	margin: -75px 0px 0px -150px;
	border: 2px solid #5C4343;
	text-align: left;
	background-color: #FFD4D4;
}

.confirm a {
	color: #5C4343;
}

* html .confirm { /* ie6 hack */
position: absolute;
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
}
.confirm_title {
	background-color: #FFD4D4;
	color: #5C4343;
	height: 30px;
	padding: 0px 0px 0px 10px;
	font: bold 12px Verdana, Arial;
	line-height: 30px;
}
.confirm p {
	padding: 5px 10px;
	color: #5C4343;
	font: normal 11px Verdana, Arial;
}
.confirm_buttons {
	position: absolute;
	bottom: 10px;
	right: 0;

}
p.buttons a {
	width: 88px;
	height: 21px;
	line-height: 21px;
	margin-right: 10px;
	border: 0;
	color: #3c3e41;
	font: bold 10px Verdana, Arial;
	cursor: pointer;
}

/** chat pop up **/

.chat {
	z-index: 1001;
	position: absolute;
	background-image: url('chat_img/bg_chatbox.png');
	width: 370px;
	height: 410px;
	padding: 30px 0;
	top: 100px;
	left: 300px;
}

.chat .innerchat {
	border: 1px solid #999;
	background-color: #fff;
	width: 308px;
	height: 318px;
	margin: 0 30px;
	overflow: auto;
}

.chat textarea {
	margin-top: 10px;
	width: 235px;
	height: 80px;
	margin-left: 30px;
	float: left;
	font-family: Arial;
	font-size: 12px;
	border: 1px solid #999999;
}

.chat input.submit {
	background-image: url("chat_img/button.gif");
	height: 68px;
	width: 68px;
	margin-right: 30px;
	float: right;
	line-height: 67px;
	border: 0;
	margin-top: 16px;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
}	

.chat div.close {
	position:absolute;
	top: 5px;
	right: 5px;
	background-image: url("chat_img/sluiten.png");
	height: 34px;
	width: 33px;
	z-index: 10;
	cursor: pointer;
}

p.buttons {
	bottom:0;
	position:absolute;
	right:0;
}

.chat p {
	margin-bottom: 0px;
	margin-top: 0px;
	font-family: Arial;
	font-size: 12px;
}

.chat p.afzender {
	font-weight: bold;
	margin-left: 10px;
	margin-top: 5px;
}

.chat p.message {
	margin-left: 20px;
	margin-bottom: 3px;
}

.chat .titlebar {
	margin-bottom: 5px;
	background-color: #f4d5d5;
	border-bottom: 1px solid #e1c4c4;
	font-family: Arial;
	font-size: 12px;
	padding: 5px;
}

/** einde chat pop up **/