/* --- Temporary styles --- */
/* should be removed after integration */

/* --- Person box styling --- */

#box_person {
	width: 256px;
}

#box_person h4 {
	font: bold 14px Verdana;
	color: #7F7F7F;
	margin: 0 0 0px;
	padding: 0;
}

#box_person h5 {
	font: normal 11px Verdana;
	color: #000000;
	margin: 0 0 5px 0;
	padding: 0;
}

#box_person div.hr {
	height: 1px;
	border: none;
	border-bottom: 1px solid #B2B2B2;
	margin: 8px 0 8px 0;
}

#box_person select {
	border: 1px solid #B2B2B2;
	font: normal 10px Verdana;
	/*width: 185px;*/
	width: 209px;
}

#box_person a img 
{
	display: inline-block;
	border: none;
}

#box_person_select {
	float: left;
	width: 210px;
}

#box_person_nav {
	float: right;
	width: 46px;
}

#box_person_nav a {
	text-decoration: none;
}

#box_person a#show_prev {
}

#box_person a#show_next {
	margin-left: 4px;
}

#box_person_content {
	margin-top: 5px;
}

/* --- Transscript styling --- */

#box_transcript h2 {
	font: bold 14px Verdana;
	color: #000;
	margin: 0 0 0px;
	padding: 0;
}

#box_transcript h3 {
	font: normal 12px Verdana;
	color: #000000;
	margin: 0 0 5px 0;
	padding: 0;
}

#box_transcript #transscript_text {
	font: normal 11px Verdana;
	color: #E33485;
	line-height: 18px;
}

#box_transcript a#close_transscript {
	display: block;
	height: 22px;
	width: 87px;
	background: #fff url(../images/btn_sluiten.gif) top left no-repeat;
}

#box_transcript a#close_transscript:hover {
	background: #fff url(../images/btn_sluiten_hover.gif) top left no-repeat;
}
/* --- Clearfix --- */

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.clearfix {
	display: inline-block;
}

html[xmlns] .clearfix {
	display: block;
}

* html .clearfix {
	height: 1%;
}

/* --- Modal window styling --- */

/* jqModal base Styling courtesy of;
	Brice Burgess <bhb@iceburg.net> */

/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
	the Window's z-index value will be set to 3000 by default (in jqModal.js). You
	can change this value by either;
	  a) supplying one via CSS
	  b) passing the "zIndex" parameter. E.g.  (window).jqm({zIndex: 500}); */
	
.jqmWindow {
    display: none;
    
    position: fixed;
    top: 20%;
    left: 50%;
    
    margin-left: -300px;
    width: 600px;
    
    background-color: #FFF;
    color: #333;
    border: 3px solid #CCC;
    padding: 12px;
}

.jqmOverlay { 
	background-color: #000; 
}

/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.jqm {position:absolute;top:0;left:0;z-index:-1;
	width: expression(this.parentNode.offsetWidth+'px');
	height: expression(this.parentNode.offsetHeight+'px');
}

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html .jqmWindow {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}