body {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 12px;

	background-color: #ffffff;
}

/* Tabs container */
.r-tabs {
	background-color: #86b8f3;
	border-top: 1px solid #160896;
	border-right: 1px solid #160896;
	border-left: 1px solid #160896;
	border-bottom: 1px solid #160896;
	border-radius: 4px;
}

/* Tab anchor (Tab-opbouw)*/
.r-tabs .r-tabs-nav .r-tabs-anchor {
	display: inline-block;
	padding: 5px 15px;

	text-decoration: none;
	text-shadow: 0 1px rgba(0, 0, 0, 0.4);
	font-size: 14px;
	font-weight: bold;
	color: #fff;
}

/* Active state tab anchor (gehoverde tab)*/
.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
	color: #160896;
	text-shadow: none;

	background-color: white;

	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
}

/* Tab panel  (tekstruimte)*/
.r-tabs .r-tabs-panel {
	background-color: white;

	border-bottom: 4px solid white;

	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;

}

