﻿/*******************************************************************************
*  skidoo_lean.css : 2004-08-17 : Ruthsarian Layouts
* ------------------------------------------------------------------------------
*  lean and mean version of the original skidoo layout seen at:
*  http://webhost.bridgew.edu/etribou/layouts/skidoo/
*  CSS for horizontal and vertical nav elements based on unordered lists
*  isn't here to help reduce the layout to its core components.
*******************************************************************************/
/*SC @ PKC modifications - modified to remove right col */
#pageWrapper
{
	border-style: hidden; /*SC solid*/
	border-width: 0;	/* layout's side borders */
	margin: 0;
	min-width: 500px;	/* IE doens't understand this property */
	width: auto;
}
* html #pageWrapper
{
	word-wrap: break-word;	/* invalid CSS but keeps IE from breaking 
				   horribly under narrow viewports */
}
#masthead
{
	/*SC inserted margin rule - */
	margin-bottom:3px;
	padding:5px 0px 0px 0px;
	/*SC new rule - */
	overflow:hidden;/* to stop left(navigation) col from jumping into centre col of main content*/
}
#masthead h1
{
	display: inline;	/* easier than setting 0 padding and margin */
}

#outerColumnContainer
{
	background-color: #fff;
	border-style: solid;
	border-width: 0 0 0 19em;	/* side border widths must equal the  widths of the left and right columns. 
				 */
	border-left-color: #fff;	/*SC:#ccc    left hand column background color */
	border-right-color: #fff;	/*SC #999    right hand column background color */
	color: #000;
	z-index: 1;
}
* html #outercolumncontainer
{
	/* IE5.0/Win fix for 1px whitespace between masthead and body. 
	 * The case-incorrect selector is on purpose. IE5.0 and IE5.5 are
	 * case insensitive and I'm targeting IE 5.0. 5.5 doesn't get hurt
	 * by this extra margin work.
	 */
	margin-top: -1px;
	border-top: solid 1px #000;
}
#innerColumnContainer
{
	border-style: solid;
	/*SC border-color: #cdcbcc */
	border-width: 0 0 0 1px;	/* puts a border between middle and the left columns. */
	margin: 0  0 0 -1px;		/* compensate for the borders because of 100% width declaration */
	width: 100%;
	z-index: 2;
}
html[xmlns] .mozclear
{
	/* this selector should be valid CSS, but Opera 7.5 (and above) will pick
	 * this up as well. Shouldn't be a problem, Opera should handle this fine,
	 * but it's a Mozilla-targeted hack, and it should probably only affect
	 * mozilla. You can do that by replacing the INVALID CSS selector
	 * :root .mozclear for what's give here.
	 */
	border-bottom: 1px solid;
	border-color: transparent;
	margin-bottom: -1px;
}
#leftColumn, #rightColumn, #contentColumn
{
	float: left;
	overflow: visible;	/* fix for IE italics bug */
	position: relative;
	z-index: 10;
}
#leftColumn
{
	margin: 0 1px 0 -19em;	/* the margin on the side the column is to be
				   rendered on must be the negative equal of 
				   the column's width. The opposite border must
				   be 1px */
	width: 19em;
}
#rightColumn
{
    float: right;
		/* doesn't have to be floated right, but if using some
			   original skidoo tweaks, you need it this way */
	margin: 0 0 0 1px;	/* same as in the #leftColumn but reversed */
	width: 0em;
}
#contentColumn
{
	margin: 0 -1px;		/* required to get the negative margin-based
				   layout to work. if #contentColumn does not
				   overlap the left and right columns, then
				   the whole layout will break */
	width: 100%;
}
/*SC inserted new rule for IE */
form{margin:0;padding:0;}

#footer
{
	background-color: #666;
	border-style: hidden; /*SC solid */
	border-width: 1px 0;	/* border for bottom of layout and top of footer area */
	position: relative;
	text-align: center;
	/*SC inserted margin rule - */
	margin-top:5px;
}
html>body #footer
{
    /*SC, padding-bottom: 1.01em; */
    /* attempt to fix Gecko engine's rounding errors which can disrupt the layout. */
	padding-bottom: 0.41em;	
}
p, h1, h2, h3, h4, h5, h6
{
	margin: 1em 0;		/* for better consistency across platforms */
}
.clear
{
	clear: both;
}
.inside
{
	padding: 0 0.1em;	/* SC: 0 1.5em
                   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. */
}
#leftColumn, #centerColumn
{
	padding-top: 0.5em;
	padding-bottom: 0.5em;	/* this is the vert padding talked about in the .inside selector comment. */
}
/* SC New padding to fix headings */
#leftColumn .inside, #contentColumn .inside
{
	padding: 0 1em;
}
/*SC #masthead  , #footer  
{
	padding: 0.5em 1em 0 1em;
}
*/
/*SC inserted - */
#footer{padding:0.4em;}

#pageWrapper,  #masthead, #footer
{
    /*SC removed from this rule: #innerColumnContainer, */
	border-color: #000;	/* one-stop control of border color used within the layout */
}
/* SC inserted */
#innerColumnContainer{border-color:#cdcbcc}

#outerColumnContainer
{
	border-top-color: #000;	/* should match the above border color */
}

/******************************************************************************/