/*
 * two and three column liquid layouts
 * works in ie6, ie7, firefox, safari and opera
 * thanks to http://www.positioniseverything.net/articles/onetruelayout/
 */
 
body {
	margin: 0;
	padding: 0;
}

/*
 * common layout stuff
 */
.twocolumns .sidebar, .threecolumns .sidebar {
	width: 165px;
	padding: 0px 10px 0px 10px;
	float: left;
	margin-left: -100%;
}
.twocolumns .main_wrapper, .threecolumns .main_wrapper {
	float: left;
	width: 100%;
}
.twocolumns .main, .threecolumns .main {
	padding: 0px 10px 0px 10px;
	margin-left: 185px;
}

/*
 * two columns (10px+165px+10px, liquid)
 */


/*
 * three columns (10px+165px+10px, liquid, 10px+120px+20px)
 */
.threecolumns .main {
	margin-right: 150px;
}
.threecolumns .tickle {
	float: right;
	margin-left: -150px;
	width: 120px;
	padding: 0px 20px 0px 10px;
}
* html .threecolumns .tickle {
	margin-left: -150px;
}

/* easy clearing */
.twocolumns:after, .threecolumns:after {
	content: '.';
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.twocolumns, .threecolumns {
	display: inline-block;
}
/*\*/
* html .twocolumns, * html .threecolumns {
	height: 1%;
}
.twocolumns, .threecolumns {
	display: block;
}
/* */


/*
 * stuff to make the columns equal height
 */

/* Start Mac IE5 filter \*/
.main, .sidebar, .tickle {
	padding-bottom: 32767px !important;
	margin-bottom: -32767px !important; 
}
@media all and (min-width: 0px) {
	.main, .sidebar, .tickle {
		padding-bottom: 0 !important;
		margin-bottom: 0 !important; 
	}
	.main:before, .sidebar:before, .tickle:before {
		content: ' ';
		display: block;
		background: inherit;
		padding-top: 32767px !important;
		margin-bottom: -32767px !important;
		height: 0;
	}
}
/* End Mac IE5 filter */

.twocolumns, .threecolumns {
	overflow: hidden; /* This hides the excess padding in non-IE browsers */
}
/* we need this for IE 5.01 - otherwise the wrapper does not expand to the
necessary height (unless fixed, this problem becomes even more acute 
weirdness as the method is enhanced */
.twocolumns, .threecolumns {
/* Normally a Holly-style hack height: 1% would suffice but that causes 
IE 5.01 to completely collapse the wrapper - instead we float it */
	float: left;
/* NB. possibly only IE 5.01 needs to get this float value - otherwise 5.5 sometimes 
(I saw it happen many moons ago) makes the width of wrapper too small 
the float: none with the comment is ignored by 5.01,
5.5 and above see it and carry on about their business
It's probably fine to just remove it, but it's left here 
just in case that many moons ago problem rears its head again */
	float/**/: none;
}
