/* $Id: screen.css,v 1.4 2012/01/15 09:34:07 olejakob Exp $ */
.print {
	display: none !important;
}

/* ##### 3 columns layout ##### */

/* column container */
.kat3c-mask {
background-color: #fff6dc; /* right column background */
position:relative;		/* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
clear:both;
float:left;
width:100%;				/* width of whole page */
overflow:hidden;		/* This chops off any overhanging divs */
}
/* holy grail 3 column settings */
.kat3c {
/*background:#e0e0e0;    	/* Right column background colour */
}
.kat3c .colmid {
float:left;
width:200%;
margin-left:-200px; 	/* Width of right column */
position:relative;
right:100%;
background-color:#ffffff;	/* Centre column background colour */
}
.kat3c .colleft {
float:left;
width:100%;
margin-left:-50%;
position:relative;
left:400px;         	/* Left column width + right column width */
/*background:#FFD8B7;    	/* Left column background colour */
border-right: 1px solid #d0d0d0;
}
.kat3c .col1wrap {
float:left;
width:50%;
position:relative;
right:200px;        	/* Width of left column */
padding-bottom:1em; 	/* Centre column bottom padding. Leave it out if it's zero */
}
.kat3c .col1 {
margin-left:215px;	/* Centre column side padding:
								Left padding = left column width 
									+ centre column left padding width */
margin-right:215px;	/*	Right padding = right column width 
									+ centre column right padding width */
position:relative;
left:200%;
overflow:hidden;
}
.kat3c .col2 {
float:left;
float:right;			/* This overrides the float:left above */
width:190px;        	/* Width of left column content (left column width minus left and right padding) */
position:relative;
right:5px;         	/* Width of the left-had side padding on the left column */
}
.kat3c .col3 {
float:left;
float:right;			/* This overrides the float:left above */
width:170px;        	/* Width of right column content (right column width minus left and right padding) */
margin-right:15px;  	/* Width of right column right-hand padding + left column left and right padding */
position:relative;
left:50%;
padding-bottom: 20px;
}

