
/*  the methods on this page is largely the hard work (freely given) of many other people from the css-discuss list [http://www.css-discuss.org], including (but not limited to) Big John, Holly Bergevin, Douglas Livingstone, Scott Sauyet, Victor Caston and Mike Papageorge  */

/* border:nones are for NN4 */
html { margin: 0px; padding: 0px; }

body
	{
	margin: 0px;
	padding: 0px;
	background-color: #ffffff;
	color:#000000;
	background-image: url(images/sky.jpg); 
	background-repeat:repeat;  
	background-position:top left;
	font-family:tahoma, verdana, arial, sans-serif; 
	font-size:small;
	}
	
a:link { 
color:#003399;
text-decoration:underline; 
font-weight:bold;}

a:active { 
color:#ffffff; 
text-decoration:underline; 
font-weight:bold;
}

a:visited { 
color:#660099; 
text-decoration:underline; 
font-weight:bold;
}

a:hover { 
color:#ffcc00; 
text-decoration:none; 
}

a.white:link { 
color:#ffffff;
text-decoration:underline; 
}

a.white:visited { 
color:#ffffff;
 
}



p {padding: 0px 0px 8px 0px; margin: 0px;}
p.title {font-size: large; font-weight:bold;}


.clear { clear: both;} /* CSS HACK: only for NN4, so now use Caio hack to cleanse palette */
/*/*/ .clear { display: none; } /* */

/* box-wrap is only needed if you want to set a background color for the columns, put a border round the content block or fix the content width */
#box-wrap
	{
	color : #ffffff;
	background-image: url(images/grass.jpg); 
	background-repeat:repeat; 
	border: 0px;
	width:750px;
	margin: 0px;
	padding: 0px;
	text-align:left;
	border: 1px solid #000000;
	}
	
#header
	{
	color: #000000;
	background: transparent;
	margin: 0px;
	padding: 0px;
	border: 0px solid #000000;
	width:750px;
	}

	
#footer
	{
	background:#ffffff;
	padding: 0px;
	clear: both;
	border-top: 1px solid #ffffff;
	width:750px;
	color:#ffffff;
	background-color:transparent; 
	background-image: url(images/grass.jpg); 
	background-repeat:repeat;  
	text-indent: 10px;
	}
	
/* ====================================================================
COLUMNS LAYOUT
-------------------------------------------------------------------- */

#columns-float
	{
	float: left;
	width: 750px;
	padding: 0px;
	}
	
	
#navigation
	{
	float: right;
	width: 520px; /* change this to 520 when borders are removed */
	padding: 0px;
	border: 0px solid #000000;
	color: #000000;
	background-image: url(images/text_bg.jpg); 
	background-repeat:no-repeat;  
	background-position:top;
	background-color: #ffffff;
	text-align:left;
	height: auto;
	}

#text
	{

	padding: 20px;
	border: 0px solid #000000;
	color: #000000;
	text-align:left;
	width: 455px;
	height: auto;
	}

/* CSS HACK: Caio hide from NN4 since NN4's float model is all wrong */

#column-sidebar { 
float: left;
width: 230px;
padding: 0px;
border: 0px solid #000000;
color: #000000;
background-color:transparent; 
background-image: url(images/grass.jpg); 
background-repeat:repeat-y;  
background-position:top left;
text-align:left;
height: 600px;
}



/* 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-main, #column-sidebar, #navigation, h2
	{ p\osition: relative; }
/* */

