/*******************************************************************************
*  skidoo_too.css : 2005.08.29
* -----------------------------------------------------------------------------
*  A remake of the skidoo layout with the middle column appearing first in
*  source ordering.
*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
html[xmlns] .mozclear {
	border-bottom:1px solid;
	border-color:transparent;
	margin-bottom:-1px;
}
.hide
{
	display: none !important;
}
.inside
{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	padding: 0 1em;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */
/*ul, ol, dl
{
	margin-top: 0.05em;
	margin-bottom: 0.05em;
	padding-top: 0;
	padding-bottom: 0;
}*/
h1 {
	padding-left:0.7em;
	margin:0;
	color:rgb(0,103,102);
	background-color: transparent;
	text-align:left;
}
h2 {
	padding-left:0.7em;
	margin:0;
	color:rgb(0,103,102);
	background-color: transparent;
	text-align:left;
}
h3 {
	padding-left:0.7em;
	margin:0;
	color:rgb(0,103,102);
	background-color: transparent;	
	text-align:left;
}
p {
	padding:0.7em;
	margin:0;
	color:rgb(0,103,102);
	background-color:transparent;
	text-align:left;	
}
p strong {
	font-weight:bold;
}
.underline {
	text-decoration:underline;
}
a img {
	border-width:0;
}
ol li {
	color:rgb(0,103,102);
	background-color: transparent;	
}
ul {
	color:rgb(0,103,102);
	background-color: transparent;
	/*padding: 0;	
	margin-left:0.8em;*/
}
ul li {
	color:rgb(0,103,102);
	background-color: transparent;	
	padding: 0;	
	margin: 0;
}
code {
	text-decoration: none;
}
acronym {
	border-bottom: dotted 0.05em; 
	cursor: help;
}
noscript {
	color:rgb(0,103,102);
	background-color: transparent;
	text-align:left;	
}
cite {
	font-style: normal;
	color: rgb(0,103,102);
}
/* alter some HTML elements' default style
 */
a {
	color:rgb(117,84,41);
	background-color: transparent;
	text-decoration: none;
} 
a:link {
	color:rgb(117,84,41);
	background-color: transparent;
	text-decoration: none;
}
a:visited {
	color:rgb(216,193,169);
	text-decoration: none;
	background-color: transparent;	
}
a:hover {
	color:rgb(83,33,0);
	text-decoration: underline;
	background-color: transparent;
}
a:focus {
	color:rgb(83,33,0);
	text-decoration: none;
	background-color: transparent;
}
label {
	cursor: pointer;
}

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */
body
{
	margin: 25px 5%;	/* margin instead of padding for the gutterspace around 
	 			   the layout because IE breaks the layout when 
	 			   horizontal padding is applied to the body element.
	 			   % over pixels for that horizontal gutterspace so that
	 			   it automatically goes below 20px on low-res browsers
	 			   to create more space for the content. */
}
#pagewrapper {
	/*border:1px hidden black;
	border-width:0 1px;*/
	/*min-width: 40em;	/* IE doens't understand this property. EMs are used
				   so that as the font size increases, the proportional
				   limitations (min-width) increase with it, rather
				   than creating a middle column that can only fit
				   3 or 4 characters in it. */
	/*width: auto;*//*skidoo_too*/
	border-width:0 1px;
	border-style:hidden;
	border-color: Black;/*Webmaken*/
}
#masthead
{
	position: relative;
	text-align: center;
	/*border: hidden 1px #fff;
	border-width:1px 0;	
	padding: 0.5em;*//*skidoo_too*/
	border-width:1px 0;
	border-bottom-color: Black;
	border-style: hidden;
	padding:0.01em;/*Webmaken*/
}
#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: 15em hidden rgb(255,255,255);
	position: relative;
	padding: 0 0 0 15em;
	border-right: hidden;
	border-right-width: 0;	/* to get from 3 to 2 columns, we must hide the
				   right-side border */
	/*border:1px solid red;*/
}
body#zoeken #outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	/*border-left: 14em hidden rgb(255,255,255);*/
	position: relative;
	padding: 0;
	border-left: hidden;
	border-left-width: 0;	/* to get from 3 to 1 columns, we must hide the
				   right-side border */	
	border-right: hidden;
	border-right-width: 0;	/* to get from 3 to 1 columns, we must hide the
				   right-side border */
}
#innerColumnContainer
{
	text-align: left;
	/*	margin-right: 0;
	margin-left: 0 -1px;*//* compensate for the borders because of
				   100% width declaration *//*Skidoo_too*/
	margin:0 0 0 -1px;/*Webmaken*/		
	/*border: hidden 1px #fff;
	border-right-width: 0;*//* to get from 3 to 2 columns, we must hide the
				   right-side border */	/*Skidoo_too*/
	border-width:1px 0 1px 1px;
	border-style:hidden;
	border-color:Black;/*Webmaken */
	width:100%;
	z-index: 1;	
	/*border:1px solid blue;*/
}
body#zoeken #innerColumnContainer
{
	/*	margin-left: 0 -1px;	/* compensate for the borders because of
				   100% width declaration */
	/*margin-right: 0;*//*Skidoo_too*/
	margin:0 -1px 0 0;/*webmaken*/
	/*border: hidden 1px #fff;*/
	/*border-right-width: 0;*/	/* to get from 3 to 1 columns, we must hide the
				   right-side border */	
	/*border-left-width: 0;*/	/* to get from 3 to 1 columns, we must hide the
				   right-side border */	/*Skidoo_too*/
	border-width:1px 0 1px 0;
	border-style:hidden;
	border-color:Black;/*Webmaken */					
	width: 100%;
	z-index: 1;
}
#leftColumn, #middleColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
	/*border:1px solid green;*/
}
#middleColumn
{
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
	/*border:1px solid purple;*/
}
#leftColumn
{
	float: left;
	margin: 0 1px 0 -15em;
	width: 15em;	
	z-index: 4;
	text-align: left;
}
#rightColumn
{
	float: right;
	width: 14em;
	margin: 0 -14em 0 1px;
	z-index: 2;
}
html>body #rightColumn 
{
	display: none;	/* for compliant browsers, hide this column entirely */
}
* html #rightColumn *
{
	display: none;	/* ie's ghost-text bug is triggered by key elements
			   having display:none set. #rightColumn is one of those
			   key elements. so we display:none all child
			   elements (doesn't trigger the bug) and try to
			   make #rightColumn have no chance to affect
			   document flow. */
}
#rightColumn
{
	position: absolute;
	margin: 0;
	padding: 0;
	width: 0;
	height: 0;
	border: none;	/* remove anything that'll give this elemnt width. */
}
html>body#zoeken #rightColumn
{
	display: none;	/* for compliant browsers, hide this column entirely */
}
html>body#zoeken #leftcolumn
{
	display: none;	/* for compliant browsers, hide this column entirely */
}
* html body#zoeken #rightColumn
{
	display: none;	/* ie's ghost-text bug is triggered by key elements
			   having display:none set. #rightColumn is one of those
			   key elements. so we display:none all child
			   elements (doesn't trigger the bug) and try to
			   make #rightColumn have no chance to affect
			   document flow. */
}
* html body#zoeken #leftcolumn
{
	display: none;	/* ie's ghost-text bug is triggered by key elements
			   having display:none set. #rightColumn is one of those
			   key elements. so we display:none all child
			   elements (doesn't trigger the bug) and try to
			   make #rightColumn have no chance to affect
			   document flow. */
}
body#zoeken #rightColumn, #leftcoumn
{
	position: absolute;
	margin: 0;
	padding: 0;
	width: 0;
	height: 0;
	border: none;	/* remove anything that'll give this elemnt width. */
}
/*body#intro #rightColumn, #leftcoumn
{
	position: absolute;
	margin: 0;
	padding: 0;
	width: 0;
	height: 0;
	border: none;	
}*/
/******************************************************************************/

