{
	padding: 0;
	margin: 0;
	border: 0;
}

body, html {
	color: #333333;
	font-size: 13px;
	font-family:  "Tahoma", "Verdana", "Arial", "Helvetica", "Arial", "Garamond", "Times New Roman", "Bookman Old Style", "Book Antiqua", "Courier" ;
	text-align: center; /*** Centers the design in old IE versions ***/
	background-color: #E0E0E0;
	scrollbar-face-color: #ff7800; 
	scrollbar-shadow-color: #ffb26e;
	scrollbar-highlight-color: #ffb26e;
	scrollbar-3dlight-color: #ff7800; 
	scrollbar-darkshadow-color: #ff7800; 
	scrollbar-track-color: #ffb26e; 
	scrollbar-arrow-color: #ffb26e;
}

.clear {
	clear: both;
}

#mainContainer {
	width: 947px;
	margin: 0 auto; /*** Centers the design ***/
	min-height: 300px;
	background: #E0E0E0;
	text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
	background-image: URL('/images/content.jpg');
	background-repeat:repeat-y;
}

* html #mainContainer {
	height: 300px; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}

/**************************
HEADER
**************************/
#box_top {
	height: 147px;
	background-image: URL('/images/top.jpg');
	background-repeat:no-repeat;
	margin: 0px;
	padding: 0px;
	align: left;
	
}

/**************************
CONTENT AND COLUMNS
**************************/
.outer {
	padding-left: 165px;  
}

* html .outer {
	/*** No need for hacking IE on this layout ***/
}

.inner {
	width: 595px; /*** This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
}

* html .inner {
	width: 100%;
}

/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/

.float-wrap {
	float: left;
	width: 947px; /*** Deze was 649px, maar is aangepast i.v.m. verspringen menu naar onderen ***/
	margin-left: -165px; /*** Same length as .outer padding-left but with negative value ***/
	background-image: URL('/images/content.jpg');
	background-repeat:repeat-y;
}

* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}

#content {
	float: right;
	margin-top:20px;
	margin-bottom:20px;
	margin-right:0px;
	padding-right:70px;
	width: 660px; /*** 670 px; Deze was 730px, maar is aangepast i.v.m. verspringen menu naar onderen ***/
	overflow: auto;
	line-height: 150%;
	font-size: 14px;
	letter-spacing: 2px;
}

* html #content {
	position: relative; /*** IE needs this  ***/
}


/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#box_menu {
	float: left;
	width: 182px;
	margin-top:35px;
	min-height: 450px;
	padding: 1px;
	font-size: 12px;
	font-weight: bold;
}

* html #box_menu {
	position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
	height: 550px;
}

/**************************
FOOTER
**************************/
#footer {
	width: 949px;
	margin: 0 auto; /*** Since the footer is outside the #mainContainer we also need to center the footer ***/
	height: 155px;
	background-image: URL('/images/bottom_001.jpg');
	background-repeat:no-repeat;
}

h1 {
	font-size: 20px;
	font-weight: bold;
	font-variant: small-caps;
	color: #ff7800;
}

h2 {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #ff7800;
}

h3 {
	font-size: 13px;
	font-weight: bold;
	margin-bottom: 2px;
}

a:link, a:visited {
	color: #333333;
}

a:hover {
	color: #666666;
}

ul,li {
	margin-top: 0px;
}

