/* CSS Document */
html, body {
	height: 99%;
}

body{
	line-height: 1.4em;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	padding: 0;
	margin: 0;
}

/* Headers --------------------------------------------------------------*/
h1 {
	font-size: 150%;
	font-weight: bold;
	color: #3881E7;
}

h2 {
	font-size: 120%;
	font-weight: bold;
	color: #3881E7;
	margin: 5px 0 3px 0;
}

h3 {
	font-size: 100%;
	font-weight: bold;
	color: #3881E7;
	margin: 5px 0 0 0;
}

p {
	margin: 3px 0;
}

/* Floats --------------------------------------------------------------*/
.floatleft {
	float: left;
}

.floatright {
	float: right;
}

label {
	position:relative; /*this is the key*/
}

label span {
	position:absolute;
	display:block;
	top: -1.4em;
	left:10px;
	width:180px; 
	z-index:100;
	/* pure opmaak vanaf hier */
    background:#fbe3e4; 
	border:1px solid #FF0000;
	color:#000000;
	padding: 1px 5px 1px 5px;
	font-size: 80%;
	font-weight: normal;
    text-align: left;
}



/* Speciale divs en spans--------------------------------------------------------------*/
.legeinhoud {
	font-style: italic;
}

.melding {
	border : 1px solid;
	padding : 1px 4px;
	font-size: 100%;
	font-weight: bold; 
	margin-bottom: 0px;
	display: none;
}

.melding.error {
	background:#fbe3e4;
    border:1px solid #fbc2c4;
    color:#d12f19;
	display: block;
}

.melding.success {
	background-color:#E6EFC2;
    border:1px solid #C6D880;
    color:#529214;
	display: block;
}

.melding.bezig {
	background: #E6EDF5;
	border:1px solid #4F76A3;
	color: #4F76A3;
	display: block;
}

#login-form {

}

.inlog {
	filter:alpha(opacity=90);
	-moz-opacity:0.9;
	-khtml-opacity: 0.9;
	opacity: 0.9;
	background-color: #FFFFFF;
	float: right;
	margin: 2px;
	padding: 2px;
	z-index: 50;
}

.inlog a {
	font-weight: bold;
}

.fotobalk img{
	margin: 2px 0;
	padding: 1px;
}

.kleinelettertjes {
	font-size: 90%;
}

.eerstekeer {
	background-color:#E6EFC2;
	border:1px solid #C6D880;
}

.euro {
	text-align: right;
}

.leeg  {
	display: none;
}

/* Link styles  --------------------------------------------------------------*/
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:active {
	text-decoration: none;
}

a.selected {
	font-weight: bold;
	text-decoration: underline;
}

/* List styles  --------------------------------------------------------------*/
ul {
	margin-top: 2px;
	margin-left: 2px;
	padding-left: 15px;
}

ul.menu {
	margin: 0;
	padding: 0;
}

li.menu {
	margin: 0;
	padding: 0;
}

/* Table styles  --------------------------------------------------------------*/
/*
 *  File:         demo_table.css
 *  CVS:          $Id$
 *  Description:  CSS descriptions for DataTables demo pages
 *  Author:       Allan Jardine
 *  Created:      Tue May 12 06:47:22 BST 2009
 *  Modified:     $Date$ by $Author$
 *  Language:     CSS
 *  Project:      DataTables
 *
 *  Copyright 2009 Allan Jardine. All Rights Reserved.
 *
 * ***************************************************************************
 * DESCRIPTION
 *
 * The styles given here are suitable for the demos that are used with the standard DataTables
 * distribution (see www.datatables.net). You will most likely wish to modify these styles to
 * meet the layout requirements of your site.
 *
 * Common issues:
 *   'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
 *     no conflict between the two pagination types. If you want to use full_numbers pagination
 *     ensure that you either have "example_alt_pagination" as a body class name, or better yet,
 *     modify that selector.
 *   Note that the path used for Images is relative. All images are by default located in
 *     ../images/ - relative to this CSS file.
 */

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables features
 */

.dataTables_wrapper {
	position: relative;
	/*min-height: 302px;*/
	clear: both;
	_height: 302px;
	text-align: left;
	zoom: 1; /* Feeling sorry for IE */
}

.dataTables_processing {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 250px;
	height: 30px;
	margin-left: -125px;
	margin-top: -15px;
	padding: 14px 0 2px 0;
	border: 1px solid #ddd;
	text-align: center;
	color: #999;
	font-size: 14px;
	background-color: white;
}

.dataTables_length {
	width: 100px;
	float: left;
	display: block;
}

.dataTables_filter {
	/*width: 50%;*/
	float: right;
	text-align: right;
	display: block;
}

.dataTables_info {
	width: 60%;
	float: left;
}

.center .dataTables_info {
	text-align: center;
}

.dataTables_paginate {
	width: 44px;
	* width: 50px;
	float: right;
	text-align: right;
}

/* Pagination nested */
.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
	height: 19px;
	width: 19px;
	margin-left: 3px;
	float: left;
}

.paginate_disabled_previous {
	background-image: url('../images/navigatie/icons/arrows-double-arrowhead-left.png');
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}

.paginate_enabled_previous {
	background-image: url('../images/navigatie/icons/arrows-double-arrowhead-left.png');
}

.paginate_disabled_next {
	background-image: url('../images/navigatie/icons/arrows-double-arrowhead-right.png');
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}

.paginate_enabled_next {
	background-image: url('../images/navigatie/icons/arrows-double-arrowhead-right.png');
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables display
 */
table.display {
	margin: 0 auto;
	width: 100%;
	clear: both;
}

table.display thead th {
	padding: 3px 18px 3px 10px;
	border-bottom: 1px solid black;
	font-weight: bold;
	cursor: pointer;
	* cursor: hand;
}

table.display tfoot th {
	padding: 3px 10px;
	border-top: 1px solid black;
	font-weight: bold;
}

table.display tr.heading2 td {
	border-bottom: 1px solid #aaa;
}

table.display td {
	padding: 3px 10px;
}

table.display td.center {
	text-align: center;
}

tfoot th.total{
	border-top: 3px double black;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables sorting
 */

.sorting_asc {
	background: url('../images/navigatie/icons/arrows-arrow-up.png') no-repeat center right;
}

.sorting_desc {
	background: url('../images/navigatie/icons/arrows-arrow4-down.png') no-repeat center right;
}

.sorting {
	background: url('../images/navigatie/icons/arrows-two-directions-up-down1.png') no-repeat center right;
}

.sorting_asc_disabled {
	background: url('../images/navigatie/icons/arrows-arrow-up.png') no-repeat center right;
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}

.sorting_desc_disabled {
	background: url('../images/navigatie/icons/arrows-arrow4-down.png') no-repeat center right;
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}





/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables row classes
 */
table.display tr.odd.gradeA {
	background-color: #ddffdd;
}

table.display tr.even.gradeA {
	background-color: #eeffee;
}

table.display tr.odd.gradeA {
	background-color: #ddffdd;
}

table.display tr.even.gradeA {
	background-color: #eeffee;
}

table.display tr.odd.gradeC {
	background-color: #ddddff;
}

table.display tr.even.gradeC {
	background-color: #eeeeff;
}

table.display tr.odd.gradeX {
	background-color: #ffdddd;
}

table.display tr.even.gradeX {
	background-color: #ffeeee;
}

table.display tr.odd.gradeU {
	background-color: #ddd;
}

table.display tr.even.gradeU {
	background-color: #eee;
}


tr.odd {
	background-color: #E2E4FF;
}

tr.even {
	background-color: white;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Misc
 */
.top, .bottom {
	padding: 5px;
	background-color: #F5F5F5;
	border: 1px solid #CCCCCC;
}

.top .dataTables_info {
	float: none;
}

.clear {
	clear: both;
}

.marginate {
	clear: both;
	padding-top: 7px;
}

.dataTables_empty {
	text-align: center;
}

tfoot input, thead input {
	margin: 1px 0px;
	width: 95%;
	color: #444;
}

tfoot input.date, thead input.date{
	width: 48%;
}

tfoot input.search_init, thead input.search_init {
	color: #999;
}

td.group {
	background-color: #d1cfd0;
	border-bottom: 2px solid #A19B9E;
	border-top: 2px solid #A19B9E;
}

td.details {
	background-color: #d1cfd0;
	border: 2px solid #A19B9E;
}

td.omzet {
	text-align: right;
}

td.noborder {
	border-top: 0px solid #A19B9E;
	border-left: 0px solid #A19B9E;
	border-right: 0px solid #A19B9E;
}

td.tdmaand_0 {
	background-color: #ddffdd;
}

td.tdmaand_1 {
	background-color: #eeffee;
}


.example_alt_pagination div.dataTables_info {
	width: 40%;
}

.paging_full_numbers {
	width: 400px;
	height: 22px;
	line-height: 22px;
}

.paging_full_numbers span.paginate_button,
 	.paging_full_numbers span.paginate_active {
	border: 1px solid #aaa;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	padding: 2px 5px;
	margin: 0 3px;
	cursor: pointer;
	*cursor: hand;
}

.paging_full_numbers span.paginate_button {
	background-color: #ddd;
}

.paging_full_numbers span.paginate_button:hover {
	background-color: #ccc;
}

.paging_full_numbers span.paginate_active {
	background-color: #99B3FF;
}

table.display tr.even.row_selected td {
	background-color: #B0BED9;
}

table.display tr.odd.row_selected td {
	background-color: #9FAFD1;
}


/*
 * Sorting classes for columns
 */
/* For the standard odd/even */
tr.odd td.sorting_1 {
	background-color: #D3D6FF;
}

tr.odd td.sorting_2 {
	background-color: #DADCFF;
}

tr.odd td.sorting_3 {
	background-color: #E0E2FF;
}

tr.even td.sorting_1 {
	background-color: #EAEBFF;
}

tr.even td.sorting_2 {
	background-color: #F2F3FF;
}

tr.even td.sorting_3 {
	background-color: #F9F9FF;
}


/* For the Conditional-CSS grading rows */
/*
 	Colour calculations (based off the main row colours)
  Level 1:
		dd > c4
		ee > d5
	Level 2:
	  dd > d1
	  ee > e2
 */
tr.odd.gradeA td.sorting_1 {
	background-color: #c4ffc4;
}

tr.odd.gradeA td.sorting_2 {
	background-color: #d1ffd1;
}

tr.odd.gradeA td.sorting_3 {
	background-color: #d1ffd1;
}

tr.even.gradeA td.sorting_1 {
	background-color: #d5ffd5;
}

tr.even.gradeA td.sorting_2 {
	background-color: #e2ffe2;
}

tr.even.gradeA td.sorting_3 {
	background-color: #e2ffe2;
}

tr.odd.gradeC td.sorting_1 {
	background-color: #c4c4ff;
}

tr.odd.gradeC td.sorting_2 {
	background-color: #d1d1ff;
}

tr.odd.gradeC td.sorting_3 {
	background-color: #d1d1ff;
}

tr.even.gradeC td.sorting_1 {
	background-color: #d5d5ff;
}

tr.even.gradeC td.sorting_2 {
	background-color: #e2e2ff;
}

tr.even.gradeC td.sorting_3 {
	background-color: #e2e2ff;
}

tr.odd.gradeX td.sorting_1 {
	background-color: #ffc4c4;
}

tr.odd.gradeX td.sorting_2 {
	background-color: #ffd1d1;
}

tr.odd.gradeX td.sorting_3 {
	background-color: #ffd1d1;
}

tr.even.gradeX td.sorting_1 {
	background-color: #ffd5d5;
}

tr.even.gradeX td.sorting_2 {
	background-color: #ffe2e2;
}

tr.even.gradeX td.sorting_3 {
	background-color: #ffe2e2;
}

tr.odd.gradeU td.sorting_1 {
	background-color: #c4c4c4;
}

tr.odd.gradeU td.sorting_2 {
	background-color: #d1d1d1;
}

tr.odd.gradeU td.sorting_3 {
	background-color: #d1d1d1;
}

tr.even.gradeU td.sorting_1 {
	background-color: #d5d5d5;
}

tr.even.gradeU td.sorting_2 {
	background-color: #e2e2e2;
}

tr.even.gradeU td.sorting_3 {
	background-color: #e2e2e2;
}


/*
 * Row highlighting example
 */
.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
	background-color: #ECFFB3;
}

.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
	background-color: #E6FF99;
}


/*
 * KeyTable
 */
table.KeyTable td {
	border: 3px solid transparent;
}

table.KeyTable td.focus {
	border: 3px solid #3366FF;
}

table.display tr.gradeA {
	background-color: #eeffee;
}

table.display tr.gradeC {
	background-color: #ddddff;
}

table.display tr.gradeX {
	background-color: #ffdddd;
}

table.display tr.gradeU {
	background-color: #ddd;
}

div.box {
	height: 100px;
	padding: 10px;
	overflow: auto;
	border: 1px solid #8080FF;
	background-color: #E5E5FF;
}

/* Basis table styles - origineel */
table {
	margin-top: 10px;
	width: 100%;
}

table, th, td {
	border: 1px solid #90979F;
	border-collapse: collapse;
}

caption {
	font-size: 150%;
	font-weight: bold;
	margin: 5px;
}

td, th {
	padding: 4px;
}

thead th {
	text-align: center;
	background: #E6EDF5;
	color: #4F76A3;
	font-size: 100% !important;
}

thead th.standaardorder {
	text-align: center;
	background: #fbe3e4;
	color: #d12f19;
	font-size: 100% !important;
}

tbody th {
	font-weight: bold;
	text-align: left;
}

tbody tr { background: #FCFDFE; }

#orderregels td {
	text-align: left;	
}

#orderregels input {
	height: 10pt;
	font-size: 9pt;
}

#orderregels input.wpnotok {
	background-color: #fbe3e4;
}

#orderregels input.wpisok {
	background-color: #E6EFC2;
}

/*#orderregels select {
	width: 50pt;
	font-size: 9pt;
}*/

.orderregel_contract, .orderregel_teler {
	width: 82pt;
}

.orderregel_aantalvol, .orderregel_aantalprijs {
	width: 50pt;
	font-size: 9pt;
}

.behandeling {
	background-color: #fbe3e4;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * TableTools styles
 */
.TableTools {
	padding: 0;
	border: 1px solid #d0d0d0;
	background-color: white;
	float: right;
	margin: 0;
}

.TableTools_button {
	position: relative;
	float: left;
	margin-right: 1px;
}

.TableTools_csv {
	background: url(../images/navigatie/icons/alphanumeric-word-csv.png) no-repeat center center;
	border: 1px solid #f0f0f0;
}

.TableTools_csv_hover {
	background: url(../images/navigatie/icons/alphanumeric-word-csv.png) no-repeat center center;
	border: 1px solid #d0d0d0;
	background-color: #E6EFC2;
}

.TableTools_xls {
	background: url(../images/navigatie/icons/alphanumeric-word-xls.png) no-repeat center center;
	border: 1px solid #f0f0f0;
}

.TableTools_xls_hover {
	background: url(../images/navigatie/icons/alphanumeric-word-xls.png) no-repeat center center;
	border: 1px solid #d0d0d0;
	background-color: #E6EFC2;
}

.TableTools_clipboard {
	background: url(../images/navigatie/icons/business-clipboard1.png) no-repeat center center;
	border: 1px solid #f0f0f0;
}

.TableTools_clipboard_hover {
	background: url(../images/navigatie/icons/business-clipboard1.png) no-repeat center center;
	border: 1px solid #d0d0d0;
	background-color: #E6EFC2;
}

.TableTools_print {
	background: url(../images/navigatie/icons/business-printer.png) no-repeat center center;
	border: 1px solid #f0f0f0;
}

.TableTools_print_hover {
	background: url(../images/navigatie/icons/business-printer.png) no-repeat center center;
	border: 1px solid #d0d0d0;
	background-color: #E6EFC2;
}

.TableTools_PrintInfo {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 400px;
	height: 150px;
	margin-left: -200px;
	margin-top: -75px;
	text-align: center;
	background-color: #3f3f3f;
	color: white;
	padding: 10px 30px;
	
	opacity: 0.9;
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}

.TableTools_PrintInfo h6 {
	font-weight: normal;
	font-size: 28px;
	line-height: 28px;
	margin: 1em;
}

.TableTools_PrintInfo p {
	font-size: 14px;
	line-height: 20px;
}

/* Tooltips styles  --------------------------------------------------------------*/
a.info{
    position:relative; /*this is the key*/
    z-index:1; 
    text-decoration:none;
}

a.info:hover{
	z-index:2; 
}

a.info span{
	display: none;
}

a.info:hover span{ /*the span will display just on :hover state*/
    display: block;
    position: absolute;
    top: 2em; 
	left: -5em; 
	width: 20em;
	padding: 1px 5px 1px 5px;
    border:1px solid #000000;
    background-color:#E6EDF5; 
	color:#000000;
	font-size: 80%;
	font-weight: normal;
    text-align: left;
}

.afkorten a.info:hover span{
	font-size: 100%;
	width: 40em;
}

.versie a.info:hover span{
	font-size: 100%;
	width: 12em;
}

.uitleg {
	margin-left: 5px;
}

/* Button styles  - -------------------------------------------------------------*/
/* Buttons - Basis */
.buttons a{
    display: block;
    margin: 0 1px;
    padding: 0px 1px;
    background-color:#f5f5f5;
    border:1px solid #A4A4A4;
    border-top:1px solid #eee;
    border-left:1px solid #eee;
	min-height: 15px;
    font-size:100%;
    line-height:100%;
    text-decoration:none;
    font-weight:bold;
    color:#565656;
    cursor:pointer;
}

.buttons a img{
    padding: 0px 0px 0px 0px;
    border:none;
    width:18px;
    height:18px;
	vertical-align: middle;
}

/* Buttons - NEUTRAL */
.buttons a.neutral{
    color:#565656;
}
.buttons a.neutral:hover{
    background-color:#dff4ff;
    border:1px solid #c2e1ef;
    color:#336699;
}
.buttons a.neutral:active{
    background-color:#6299c5;
    border:1px solid #6299c5;
    color:#fff;
}

/* Buttons - POSITIVE */

.buttons a.positive{
	color:#529214;
}
.buttons a.positive:hover{
    background-color:#E6EFC2;
    border:1px solid #C6D880;
    color:#529214;
}
.buttons a.positive:active{
    background-color:#529214;
    border:1px solid #529214;
    color:#fff;
}

/* Buttons - NEGATIVE */

.buttons a.negative{
    color:#d12f19;
}
.buttons a.negative:hover{
	background:#fbe3e4;
    border:1px solid #fbc2c4;
    color:#d12f19;
}
.buttons a.negative:active{
    background-color:#d12f19;
    border:1px solid #d12f19;
    color:#fff;
}

/* Buttons - UITGEZET */

.buttons a.uitgezet{
    filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}
.buttons a.uitgezet:hover{
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}
.buttons a.uitgezet:active{
    filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}

/* Form styles  --------------------------------------------------------------*/
.verplicht {
	border-color: red;
}

/*Input velden*/
input.inlogfield {
	height: 10pt;
	font-size: 9pt;
}

select {
	/*max-width: 350px; */
}

select.multipleselect {
	height: 15em;
}

/* Image styles  - -------------------------------------------------------------*/
img{
	border: none;
}

img.lijntje{
	border: 1px solid #A4A4A4;
}

img.imagemidden{
	vertical-align: text-bottom;
}

/* Editable text  --------------------------------------------------------------*/
.editableText {
	min-height: 22px;
}
.editableText:hover {
	outline: 1px dashed grey;
}
.editableToolbar:hover + * {
	outline: 1px dashed grey;
}
.editableToolbar {
}
.editableToolbar a{
    display: block;
    width: 20px;
    height: 20px;
    float: left;
    margin: 0px 2px;
}
.editableToolbar .edit {	
	background: url("../images/navigatie/icons/business-pencil1.png");
}
.editableToolbar .save {
    background: url("../images/navigatie/icons/business-diskette4.png");
}
.editableToolbar .cancel {
    background: url("../images/navigatie/icons/alphanumeric-x-styled.png");
}

/* Containers  --------------------------------------------------------------*/
#container_site {						/* Hele site*/
	position: relative;
	min-height: 100%;
	width: 960px;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}

#container_top {							/* Bovenste gedeelte + menubalk*/
	margin: 0 auto;
	padding: 0;
	height: 251px;
	width: 960px;
	margin: 0 auto;
	clear: right;
}

#container_top_bovenbalk {				/* Bovenste gedeelte*/
	width: 960px;
	height: 90px;
	margin: 0 auto;
	padding: 0;
}

#container_top_bovenbalk_logo {			/* Logo nautilus bovening*/
	height: 90px;
	width: 161px;
	float: left;
	text-align: left;
	padding: 0px 2px 0px 0px;
}

#container_top_bovenbalk_theart {		/* The art of...*/
	height: 50px;
	width: 640px;
	float: left;
	text-align: center;
}

#container_top_bovenbalk_functies {		/* Functies rechtsboven*/
	height: 50px;
	width: 157px;
	float: right;
	text-align: right;
	z-index: 50;
	font-size: 11px;
}

#container_top_menubalk_klein {		/* Inlog-balk*/
	top: 50px;
	height: 40px;
	width: 797px;
	float: right;
	text-align: right;
}

#container_top_menubalk_groot {				/* Menubalk*/
	top: 90px;
	width: 960px;
	height: 161px;
	margin: 0 auto;
	padding: 0;
	text-align: left;
}

#container_top_menubalk_schilderij {		/* Foto/Schilderij rotation*/
	width: 161px;
	height: 161px;
	margin: 0 auto;
	padding: 0px 2px 0px 0px;
	float: left;
}
 
#container_top_menubalk_klein_item {			/* Menuitem klein*/
	top: 50px;
	width: 187px;
	height: 28px;
	margin: 0 0 0px 12px;
	padding: 0px 0px 0px 0px;
	float: left;
}

#container_top_menubalk_groot_item {			/* Menuitem groot*/
	top: 90px;
	width: 166px;
	height: 136px;
	margin: 0 0 0 12px;
	padding: 25px 0 0 21px;
	float: left;

}

#container_main {						/* Container voor de main content*/
	margin: 0 auto;
	width: 960px;
	margin: 0 12px 0 0;
	padding: 0;
	clear: left;
}

#container_main_links{					/* Kolom links*/
	width: 161px;
	text-align: left;
	padding: 0px 0px 5px 0px;
	margin: 10px auto;
	float: left;
	clear: left;
}

#container_main_midden{					/* Kolom midden*/
	width: 633px;
	text-align: justify;
	padding: 0px 0px 5px 0px;
	margin: 10px 12px 10px 12px;
	float: left;
}

#container_main_rechts{					/* Kolom rechts*/
	width: 142px;
	text-align: right;
	padding: 0px 0px 5px 0px;
	margin: 10px auto;
	float: left;
	clear: right;
}

#container_main_rechts_tweecol{					/* Kolom rechts*/
	width: 787px;
	text-align: justify;
	padding: 0px 0px 5px 0px;
	margin: 10px 0px 10px 12px;
	float: left;
}

#container_main_driecol{					/* Kolom rechts*/
	width: 960px;
	text-align: justify;
	padding: 0px 0px 5px 0px;
	margin: 10px 0px 10px 0px;
	float: left;
}

/* ColorBox  --------------------------------------------------------------*/
/*
    ColorBox Core Style
    The following rules are the styles that are consistant between themes.
    Avoid changing this area to maintain compatability with future versions of ColorBox.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative; overflow:hidden;}
#cboxLoadedContent{overflow:auto;}
#cboxLoadedContent iframe{display:block; width:100%; height:100%; border:0;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}

/* 
    Example user style
    The following rules are ordered and tabbed in a way that represents the
    order/nesting of the generated HTML, so that the structure easier to understand.

*/
#colorbox{}
#cboxTopLeft{width:21px; height:21px; background:url(../images/navigatie/colorbox_borderTopLeft.png) no-repeat;}
#cboxTopRight{width:21px; height:21px; background:url(../images/navigatie/colorbox_borderTopRight.png) no-repeat;}
#cboxBottomLeft{width:21px; height:21px; background:url(../images/navigatie/colorbox_borderBottomLeft.png) no-repeat;}
#cboxBottomRight{width:21px; height:21px; background:url(../images/navigatie/colorbox_borderBottomRight.png) no-repeat;}
#cboxMiddleLeft{width:21px; background:url(../images/navigatie/colorbox_borderMiddleLeft.png) repeat-y;}
#cboxMiddleRight{width:21px; background:url(../images/navigatie/colorbox_borderMiddleRight.png) repeat-y;}
#cboxTopCenter{height:21px; background:url(../images/navigatie/colorbox_borderTopCenter.png) repeat-x;}
#cboxBottomCenter{height:21px; background:url(../images/navigatie/colorbox_borderBottomCenter.png) repeat-x;}
#cboxContent{background:#fff;}
#cboxLoadedContent{margin-bottom:28px;}
#cboxTitle{position:absolute; bottom:4px; left:0; text-align:center; width:100%; color:#949494;}
#cboxCurrent{position:absolute; bottom:4px; left:58px; color:#949494;}
#cboxSlideshow{position:absolute; bottom:4px; right:30px; color:#0092ef;}
#cboxPrevious{position:absolute; bottom:0; left:0px; background:url(../images/navigatie/icons/arrows-triangle-solid-left.png) no-repeat; width:25px; height:25px; text-indent:-9999px;}
#cboxNext{position:absolute; bottom:0; left:27px; background:url(../images/navigatie/icons/arrows-triangle-solid-right.png) no-repeat; width:25px; height:25px; text-indent:-9999px;}
#cboxLoadingOverlay{background:url(../images/navigatie/colorbox_loading_background.png) center center no-repeat;}
#cboxLoadingGraphic{background:url(../images/navigatie/colorbox_loading.gif) center center no-repeat;}
#cboxClose{position:absolute; bottom:0; right:0; background:url(../images/navigatie/icons/alphanumeric-circled-x4.png) no-repeat; width:25px; height:25px; text-indent:-9999px;}




