body  {
	font: 100% "Trebuchet MS" ;
	background: #3da0db;
	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;
}
.twoColFixRtHdr #container { 
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #fff;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(../images/bg.gif);
} 
.twoColFixRtHdr #menu { 
	background: #cccccc; 
	min-height: 30px;
	
	  /* 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. */
}

.twoColFixRtHdr #kruimels {
	font-size: 70%;
		background: #cccccc;
		padding: 0px 10px;
}
 
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	padding-right: 10px;
	width: 300px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the  */
}

.twoColFixRtHdr #mainContent { 
	margin: 0 300px 0 0px; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixRtHdr #footer { 
	text-align: right;
	padding: 0px 0px 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	margin-top: 20px;
	background-color: #ffffff;
	font-size: 50%;
	min-height: 50px;
} 

.twoColFixRtHdr #footer img { 
	padding: 10px;
	
} 



.twoColFixRtHdr #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: 0px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: black;
}
.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;
}



a {
	color: #FF0000;
	font-weight:bold;
	text-decoration:none;
}
a:hover {
	color: #FF0000;
	text-decoration:underline;
}
a:visited {
}

.twoColFixRtHdr #menu ul { /* alle lijsten */
	padding: 0;
	margin: 0;
	list-style: none;
	float: right;
}

.twoColFixRtHdr #menu li { /* all list items */
	float: left;
	position: relative;
	width: 10em;

	color: black;
}

li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	background-image: url(../images/menu.png);
	background-position: top left;
	background-repeat: repeat;
	left: 0;
}

li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}

/* om de linkjes de breedte aan te laten nemen van de menu item */
* html #dropdown a {
	width: 100%;
}

#dropdown { background-color: #cccccc; }

#dropdown a:link, #dropdown a:visited {
	display: block;
	text-decoration: none;
	padding-top: 8px;
	padding-left: 0.5em;
	padding-right: 0.5em;
	color: #333333;
	font-size: 80%;
	min-height: 22px;
}

#dropdown a:hover, #dropdown a:active {
	background-color: #3da0db;
	color: white;
}

/* ================================================= 
 * =================================================
 * ================== teksten =======================
 */

cite {
	font-size: 90%;
	font-style: normal;
}
h1 {
	font-size: 150%;
	color: white;
	margin: 0px;
	padding: 0px;
}

h2 {
	font-size: 130%;
	color: white;
	margin: 0px;
	padding: 0px;
}

h3 {
	font-size: 110%;
	color: white;
	margin: 0px;
	padding: 0px;
}

h4 {
	font-size: 90%;
	color: white;
	margin: 0px;
	padding: 0px;
}



p {
	padding: 0 10px;
	line-height:20px;
	color: white;
}

li {
	color: white;
}



/* ================================================= 
 * =================================================
 * ================== formulieren ==================
 */
input.txt {
  color: black;
  background-color: white;
  border: 1px inset silver;
  width: 200px;
}
input.btn {
  color: black;
  background-color: white;
  border: 1px outset silver;
}
form div {
  clear: left;
  margin: 0;
  padding: 0;
  padding-top: 5px;
}
form div label {
  float: left;
  width: 30%;
  font: bold 0.9em;
}
fieldset {
  border: 1px dotted silver;
 
  padding: 0.6em;
}
legend {
  background-color: #FFFFFF;
}

