@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: Verdana, Arial, Helvetica, sans-serif;}
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: #333333;
	/*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%;
	background-image: url(images/gradient.gif);
	background-repeat: repeat-x;
	background-position: left top;
}
#pageWrapper
{
	width: 790px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	/* margin-bottom: -50px; */
	padding: 0;
	text-align: left;
	/*border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	*/
}
* 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: 210px;
	border-left: solid 215px #FFF;
}
#innerColumnContainer
{
	background-color: #fff;
	margin: 0 -1px;		/* 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 -1px;
	width: 100%;
	z-index: 5;
}
#middleColumn .inside {
	margin: 5px;

}
#leftColumn
{
	float: left;
	width: 214px;
	z-index: 4;
	background-color: #FFF;
	margin-top: 0;
	margin-right: 1px;
	margin-bottom: 0;
	margin-left: -214px;
}
#leftColumn .inside {
padding: 0;
}
#rightColumn
{
	float: right;
	width: 14em;
	margin: 0 -14em 0 1px;
	z-index: 2;
}
div#header {
	position:absolute;
	top: 0px;
	color: #000000;
	margin: 0 0 0 0;
	border: none;
	width: 790px;
	background: url(images/banner.jpg) no-repeat left top;
	z-index:4;
	height: 210px;
	color: #fff;
}
div.topButtons {
	line-height: 28px;
	word-spacing: 30px;
	margin-bottom: 100px;
	padding: 30px 0 0 306px;
}
div.topButtons span, div#topButtons span {
float: left;
display:block;
width: 110px !important;
text-align:center;
line-height: 25px;
padding-right: 10px;
}
div.topButtons a {
color: #666666;
word-spacing: 0;
}
div#topButtons {
display: none;
padding-left: 15px;
word-spacing: 25px;
color: #fff;
}
div#topButtons a {
color: #fff;
word-spacing: 0;
}



/* 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: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #b5e2fc;
	}
html {
height: 100%;		/* force display scrollbar*/
margin: 0 0 1px 0;
background-color: #b5e2fc;
}
body {
background-color: #b5e2fc;
}
#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
{
	background-color:#FFFFFF;
	clear: both;
	width: 100%;
	font-size: 10px;
	padding: 0px;
	border-top-width: 1px;
	border-top-style: solid;	/*border-top: 1px solid #D45006;*/
	border-top-color: #E5E5E5;
	border-right-color: #E5E5E5;
	border-bottom-color: #E5E5E5;
	border-left-color: #E5E5E5;
	background-image: url(/css/2/images/footer.jpg);
	height: 14px;
}
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;
}

/******************************************************************************/
