
/*
GENERAL STYLING
*/
/* border:nones are for NN4 */
html {
	margin:0;
	padding:0;
}

body {
	margin:0;
	padding:0;
	background-color:#D0D1D3;
}

div, h1, h2, h3, h4, h5, h6, p {
	padding:0;
	margin:0;
}

img {
	border:none;
}

.clear { clear: both;} /* CSS HACK: only for NN4, so now use Caio hack to cleanse palette */
/*/*/ .clear { display: none; } /* */
.box-wrap {
	color:#000000;
	background:white url(../images/background_wrapper.gif) repeat-y;
	width:880px;
	margin:0 auto;
	position:relative;
}

.box-header {
	color: #000000;
	background:transparent; /* use underlying background */
	background:transparent url(../images/header_default.gif) 10px 0 no-repeat;
	height:175px;
	margin:0;
	padding:2px 20px;
	border: none;
}

.box-footer {
	background: #999966;
	padding: 0.5em;
	clear: both;
	border: none
}

/*
COLUMNS LAYOUT
*/
.columns-float {
	float: left;
	width: 665px;
	height:auto;
	background:transparent;
	position:relative;
}

.column-one {
	float: right;
	width: 480px;
	position:relative;
	background:white;
}
/* CSS HACK: Caio hide from NN4 since NN4's float model is all wrong */
/*/*/
.column-two { 
	margin-right: 480px;
	/* gradient background for left column */
	
	/* changed background shorthand definition to regular
	rule-set to avoid possible problems with Safari
	*/ 
	background-image:url(../images/gradient_left_col.gif);
	background-repeat:no-repeat;
	/* background-position:10px 0; */
	background-position:0 0;
	padding-top:11px;
	float:none;
}

.column-three {
	margin-left:665px;
	width:202px;
	position:relative;
	clear:right;
}
/* */
.column-one-content, .column-two-content, .column-three-content {
	padding: 6px;
	border: none;
	color: #000000;
}

/* GUTTERS BETWEEN COLUMNS */
.column-one-content {
	margin-left: 15px;
	margin-right: 15px;
}
/* HORIZONTAL PADDING OUTSIDE COLUMNS */
.column-two-content { margin-left: 10px; }
.column-three-content { margin-right: 10px; }
/* VERTICAL PADDING ABOVE COLUMNS */
.box-header {
	margin-bottom:0;
}
.column_padding_after {
	height:0;
	font-size: 1px;
	line-height:0;
	clear: both;
}
/* CSS HACK:  position:relative needed by IE6 otherwise the header and col 2 
don't show up on initial rendering - they're there but you have to minimise
the window or switch to another app and back to see the full effect. 
But IE5(pc) doesn't like it. And nor does NN4.
NB. the use of pos:rel has to go way beyond skin-deep - any nested element 
that needs a background colour appears to require to be be relatively positioned */ 
/*/*/
.box-wrap, .columns-float, .column-one, .column-two, .column-three, h2 {
	p\osition: relative;
}
/* */


