@charset "utf-8";
/* CSS Document */

body  {
	background: #5D5D5D;
	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: #000000;
	font-family: "Trebuchet MS";
	font-size: 11pt;
	font-style: normal;
	font-weight: normal;
}

.BodyClass #container {
	width: 97%;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	margin-top: 5px;
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	background-image: url(../graphics/bg.gif);
	background-repeat: repeat;
} 

.BodyClass #wegwijzer { 
	background: #606C92; 
	padding: 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	border-bottom:#000000 solid 1px;
	border-left:#000000 solid 1px;
	margin-top: 5px;
} 

/* Tips for menuleft:
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 ".BodyClass #menuleft p" rule.
*/
.BodyClass #menuleft {
	float: left;
	width: 220px; /* since this element is floated, a width must be given */
	padding: 5px; /* top and bottom padding create visual space within this div  */
	margin-left: 0px;
	margin-top: 5px;
}

.BodyClass #menuleft h3, .BodyClass #menuleft p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

/* Menu Right: (gebruikt in Webshop) */
.BodyClass #menuright {
	float: right;
	width: 200px; /* since this element is floated, a width must be given */
	padding: 5px; /* top and bottom padding create visual space within this div  */
	margin-left: 0px;
	margin-right: 5px;
	margin-top: 5px;
	border: #000000 solid 1px;
	background: #FFFFFF;
}

/* Tips for mainContent:
1. The space between the mainContent and menuleft is created with the left margin on the mainContent div.  No matter how much content the menuleft div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #menuleft space when the content in #menuleft 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.
*/
.BodyClass #mainContent { 
	margin: 10px 10px 0 230px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	padding: 5px; 		 /* top and bottom padding create visual space within this div  */
	background: #FFFFFF url("../graphics/panel-bottom-grey.gif");
	background-repeat: repeat-x;
	background-position: bottom;
} 

.BodyClass #mainContentFullWidth { 
	margin: 10px 10px 0 10px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	padding: 5px; 		 /* top and bottom padding create visual space within this div  */
	background: #FFFFFF url("../graphics/panel-bottom-grey.gif");
	background-repeat: repeat-x;
	background-position: bottom;
} 

.BodyClass #mainContentCenter { 
	margin: 10px 230px 0 230px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	padding: 5px; 		 /* top and bottom padding create visual space within this div  */
	background: #FFFFFF url("../graphics/panel-bottom-grey.gif");
	background-repeat: repeat-x;
	background-position: bottom;
	margin-top: 5px;
} 

.BodyClass #pageBanner { 
	background: #FFFFFF;
	padding: 0px 0px 0px 0px; 
	border:#111111 solid 1px;
} 

.BodyClass #pageBanner p { 
	color: #0000FF;
	font-weight:bolder;
}

.BodyClass #footer { 
	padding: 10px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#606C92;
	border-top:#FFFFFF solid 1px;
} 
.BodyClass #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 4px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* 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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
    height:0;
    font-size: 1px;
    line-height: 0px;
}




/* Einde van de styles voor de pagina-opbouw */

/* hide from incapable browsers */
#sizer {
	text-align: center;	
} 

.handcursor{
cursor:hand;
cursor:pointer;
}

H5 {
	color:#336699;
	text-align: left;
	font-family: "Trebuchet MS", "Verdana", "Sans-Serif";
	font-size: 125%;
	font-weight: bold;
	border-bottom: #336699 solid 3px;
	text-indent: 16px;
}

H4 {
	color: #35426D;
	text-align: right;
	font-family: "Trebuchet MS", "Verdana", "Sans-Serif";
	font-size: 110%;
	font-weight: bold;
}

H3 {
	color: #35426D;
	text-align: right;
	font-family: "Trebuchet MS", "Verdana", "Sans-Serif";
	font-size: 120%;
	font-weight: bold;
}

H2 {
	color: #35426D;
	text-align: left;
	font-family: "Trebuchet MS", "Verdana", "Sans-Serif";
	font-size: 140%;
	font-weight: bold;
}


.wegwijzer {font-family: "Trebuchet MS", "Verdana", ;
	font-size: 90%;
	font-style: none;
	text-decoration: none ;
	color: #FFFFFF ;
}

.WegwijzerNOLink {font-family: "Trebuchet MS", "Verdana", ;
	font-size: 90%;
	font-style: none;
	text-decoration: none ;
	color: #FEFEFE ;
}

.CopyrightText {font-family: "Tahoma", "arial", "Helvetica", "Geneva", "sans-serif";
	font-size: 95%;
	font-style: none;
	text-decoration: none ;
	color: #FFFFFE ;
}


A {color: #0000FF;}
A:hover {color: #006600; text-decoration: none;}

A.WegwijzerLink {font-family: "Trebuchet MS", "Verdana"; font-size: 90%; color: #FEFEFE; text-decoration: none;}
A.WegwijzerLink:visited {color: #FEFEFE; text-decoration: none;}
A.WegwijzerLink:hover {color: #FFFF11; text-decoration: underline;}

A.WorkshopLink {font-family: "Trebuchet MS", "Verdana"; color: #OOOOFF; text-decoration: none;}
A.WorkshopLink:visited {color: #OOOOFF; text-decoration: none;}
A.WorkshopLink:hover {color: #OO6600; text-decoration: underline;}

A.PageBannerlink {color: #FFFFFF; text-decoration: none;}
A.PageBannerlink:visited {color: #FFFFFF; text-decoration: none;}
A.PageBannerlink:hover {color: #CCFF00; text-decoration: none;}

A.Hulpmiddelenlink { color: #FFFFFE; font-size: 10pt; font-family: "Verdana","Arial","Helvetica"; text-decoration: none;}
A.Hulpmiddelenlink:visited { color: #FFFFFE; text-decoration: none; }
A.Hulpmiddelenlink:hover { color: #00DD00;	text-decoration: underline; }

.ImageClick {cursor: hand;}

UL {
	list-style-type: square;
	list-style-image:  url(../graphics/golddot.gif);
	list-style-position: outside;
	align: absmiddle;
}

LI {
	margin-bottom: 3px;
	vertical-align: middle;
}


.greyfade 
{
	display:inline-block;
	/*position: relative; top: -2px;left: -2px;*/
	background: #F8F8F8 url("../graphics/panel-bottom-grey.gif");
	background-repeat: repeat-x;
	background-position: bottom;
	border: 1px solid #B6B6B6;
	color: #242424;
	padding:10px;
	z-index: 1 !important;
}

.bluefade 
{
	/* position: relative; top: -2px;left: -2px; */
	display:inline-block; 
	padding: 10px;
	background: #E7F0FA url("../graphics/panel-bottom-blue.gif");
	background-repeat: repeat-x;
	background-position: bottom;
	border: 1px solid #8DAED2;
	color: #242424;
	z-index: 1 !important;
}

.WorkshopTitel {
	color:#35426D;
	font-size:115%;;
	font-weight:bolder;
	text-decoration:none;
}

.tip {
	font-size: 80%; 
	border:solid 1px #666666; width:370px; padding:1px;
	position:absolute; z-index:100;
	visibility:hidden; color:#333333; top:20px;
	left:90px; background-color:#ffffcc;
	layer-background-color:#ffffcc;
	z-index: 1 !important;
}


.tabcontainer
{
position:relative;
}

.tabcontainer a {
text-decoration:none;
}

.tabgewoon
{
	width:150px;
	background-image : url(../graphics/niet_aktieve_tab.gif);
	background-repeat : no-repeat;
	text-align:center;
	margin-left:1px;
	float:left;
	border-bottom:1px solid silver;
	font-family: "verdana","arial","sans-serif";
	font-size:0.8em;
}

.tabaktief
{
	width:150px;
	background-image : url(../graphics/aktieve_tab.gif);
	background-repeat : no-repeat;
	text-align:center;
	margin-left:1px;
	float:left;
	border-bottom:none;
	font-family : "verdana","arial","sans-serif" ;
	font-size:.8em;
} 

.zondertab
{
	text-align:center;
	margin-left:1px;
	float:left;
	font-family : "verdana","arial","sans-serif";
	font-size:.8em;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	width: 100px;
	height: 16px;
} 

/* Aanmeldingsbox */

.username_input, .password_input {
	width: 150px;
	font-size: small;
	background-repeat: no-repeat;
	background-position: 1% 50%;
	padding-left: 22px;
	margin-bottom: 4px;
}

.login_submit {
	font-size: small;	
}

.username_input {
	background-image: url(../graphics/form_username.png);
}

.password_input {
	background-image: url(../graphics/form_password.png);
}

/* Einde Aanmeldingsbox */

