@charset "iso-8859-1";
@import url(design.css);

/*******************************************************************************
*  skidoo_too.css : 2005.08.29
* -----------------------------------------------------------------------------
*  A remake of the skidoo layout with the middle column appearing first in
*  source ordering.
*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
.hide
{
	display: none !important;
}
.inside
{
	/* 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.
	 */
	padding: 0 0px;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */
ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}

/* alter some HTML elements' default style
 */
/*a, a:link, a:visited, a:active
{
	text-decoration: underline;
}
a:hover
{
	text-decoration: none;
}*/
code{	font-family: "Courier New", Courier, monospace;}
label{cursor: pointer;}
table{ font-size: 100%;}
td, th { vertical-align: top; }

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */
body
{
	margin: 0px 0 0px 0;
	padding: 0px;
	color: #FFFFFF;
	/*margin: 25px 4%;	/* margin instead of padding for the gutterspace around 
	 			   the layout because IE breaks the layout when 
	 			   horizontal padding is applied to the body element.
	 			   % over pixels for that horizontal gutterspace so that
	 			   it automatically goes below 20px on low-res browsers
	 			   to create more space for the content. */
	font-size: 100.1%;
	z-index: 0;
	height: auto;
	height /**/:auto;
	min-height: 100%;

}
#pageWrapper
{
	width: 780px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	/* margin-bottom: -50px; */
	padding: 0;
	text-align: left;
	border-right: solid 160px #fff;
}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	padding-top: 207px;
	/*border-right: solid 160px #fff;*/
	/*border-left: solid 215px #FFF;*/
}
#innerColumnContainer
{
	background-color: #fff;
	margin: 0 0px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
}
#leftColumn, #middleColumn, #rightColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
	
}
#middleColumn
{
	float: right;
	margin: 0 0 0 0px;
	width: 100%;
	z-index: 5;
}
#middleColumn .inside {
	border: 1px solid #EDEEE9;
	padding: 5px;
}
#leftColumn
{
	display: none;
	float: left;
	margin: 0 1px 0 -215px;
	width: 215px;
	z-index: 4;
	background-color: #FFF;
}
#leftColumn .inside {
padding: 0;
}
#rightColumn
{
	position:fixed; top:0; left:0; margin:0; padding:0;
}
#rightColumn {width: 100%; height: 0; background-color: transparent; border: none; text-align: left; 
min-width: 600px; margin-top: 25px; background-color:#999999;}
#rightColumn div.inside {float: right; margin-right: 5px; width: 170px; height: 500px; min-height: 60%; 
background-color: transparent; display: inline; margin-bottom: 4em; overflow: visible; }

div#header {
	position:absolute;
	top: 0px;
	color: #000000;
	margin: 0 0 0 0;
	border: none;
	width: 780px;
	background: url(images/header.jpg) no-repeat left 23px;
	z-index:4;
	height: 197px;
	color: #fff;
}
div#topButtons {
color: #0745FF;
}

/*div#topButtons ul { margin: 0; padding: 0; }
div#topButtons li { display: inline; padding: 0 20px 0 0; }*/

div#topButtons a {
color: #0745FF;
}



/* everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. you should probably leave a default theme within this stylesheet
 * just to be on the safe side.	
 */
#pageWrapper, #innerColumnContainer, #footer
{

}
html, body
{
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	color: #000;
	font-family: arial, helvetica, sans-serif;
}
html {
height: 100%;		/* force display scrollbar*/
margin: 0 0 1px 0;
background-color: #FFFFFF;
}
body {
background-color: #FFFFFF;
}
#pageWrapper
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px; /* set your default font size here. */
	z-index: 3;
}

#outerColumnContainer
{
	background-color: #fff;		/* set the background color for the
					   middle column here */
}

#footer
{
	margin: 0 -1px;
	border: 1px solid #EDEEE9;
	background-color:#F6F8ED;
	padding: 0px;
	clear: both;
	width: 100%;
	font-size: 10px;
}
div#footer a {
font-size: 10px;
font-weight: normal;
}
div#by {
margin: 0px 0 0 0;
float:left;
padding-left: 5px;
}

div.footer-info {
margin: 0px 0 0px auto;
width: 50%;
text-align:right;
padding-right: 5px;
}

/******************************************************************************/
