@charset "iso-8859-1";

/*******************************************************************************
*  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 */
}
.bold
{
	font-weight: bold;
}
.bold_italic
{
	font-weight: bold;
	font-style: italic;
}
.italic
{
	font-style: italic;
}
.underline
{
	text-decoration: underline;
}
.smaller
{
	font-size: smaller;
}
.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 1em;
}

/* 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 want this.
 *
 * salt to taste
 */
ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top:     17.5px;
	margin-bottom:  17.5px;
	padding-top:    0;
	padding-bottom: 0;
}
h1
{
	font-size: 160%;
}
h2
{
	font-size:     130%;
	margin-bottom: 35px;
}
h3
{
	font-size: 100%;
}
h4
{
	font-size: 70%;
}
h5
{
	font-size: 40%;
}
h6
{
	font-size: 10%;
}
/* Increase the spacing between lines - JHT */
p
{
	line-height: 125%;
}
/* alter some HTML elements' default style */
a
{
        background-color: #EFFFEF;
	color:            #006600; /* Obscure Dark Green */
}
a, a:link, a:visited, a:active
{
	text-decoration: underline;
}
a:visited
{
  	background-color: #EFFFEF;
	color:            #003399; /* Dark Azure-Blue */
}
a:hover
{
	text-decoration: none;
}
div.centered /* apply this to the div wrapper around the table to be centered */
{
	text-align: center;
}
div.centered table /* this will be automatically applied to the table to be centered */
{
	margin:     0 auto;
	text-align: left;
}

/* 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: 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%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */
}
#pageWrapper
{
	border-left:   3px solid #336633; /* Dark Weak Green */
	border-right:  3px solid #336633;
	border-top:    0px solid #336633;
	border-bottom: 0px solid #336633;
	min-width:     40em;	/* IE doesn't understand this property.
							EMs are used so that as the font size increases,
							the proportional limitations (min-width) increase with it,
							rather than creating a middle column that can only fit
							3 or 4 characters in it. */
	width:         auto;
}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#masthead
{
	border-left:   0px solid #336633; /* Dark Weak Green */
	border-right:  0px solid #336633;
	border-top:    3px solid #336633;
	border-bottom: 1px solid #336633;
	padding:       0.5em 0.5em 0em 1em;
	margin:        0;
}
* html #masthead { /* \*/ height: 0.01%; /* holly hack (VERY IMPORTANT) */ }

#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
	 */
	border-left:  9.5em solid #336633; /* Dark Weak Green */
	border-right: 12em  solid #336633; /* Dark Weak Green */
}
#innerColumnContainer
{
	/* compensate for the borders because of 100% width declaration */
	border-left:   1px solid #336633; /* Dark Weak Green */
	border-right:  1px solid #336633;
	border-top:    0px solid #336633;
	border-bottom: 0px solid #336633;
	margin:        0 -1px;
	width:         100%;
	z-index:       1;
}
#leftColumn, #leftColumn_two_columns, #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;
}
#leftColumn
{
	float:       left;
	margin:      0 0 0 -9.5em;
  	padding-top: 1em;
	width:       9.5em;
	z-index:     4;
}
#rightColumn
{
	float:          right;
	width:          12em;
	margin:         0 -12em 0 1px;
        padding-top:    1em;
        padding-bottom: 1em;
	text-align:	center;
	z-index:        2;
}
#footer
{
	border-left:    0px solid #336633; /* Dark Weak Green */
	border-right:   0px solid #336633;
	border-top:     1px solid #336633;
	border-bottom:  3px solid #336633;
	padding:        0.5em;
	font-size:      smaller;
	vertical-align: middle;
	overflow:       auto;
}
.faq_question
{
	font-weight: bold;
	border:      2px solid #336633;
	padding:     1em;
}

/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */
.vnav
{
	margin: 0em 0em 1em 0em;
}
.vnav ul, .vnav ul li
{
	margin:          0;
	padding:         0;
	list-style-type: none;
	display:         block;
}
.vnav ul
{
        border-left:   1px solid #336633; /* Dark Weak Green */
	border-right:  1px solid #336633;
	border-top:    1px solid #336633;
	border-bottom: 0px solid #336633;
}
.vnav ul li
{
	border-bottom: solid 1px #336633; /* Dark Weak Green */
}
.vnav ul li, .vnav ul li a
{
	margin:      0;
	display:     block;
	padding:     0;
	line-height: normal;
}
.vnav ul li a
{
        background-color: #99CC99; /* Light Weak Green */
	display:          block;
	padding:          5px;
	font-weight:      bold;
	font-size:        smaller;
	color:            #003300; /* Obscure Weak Green */
}
.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover
{
	text-decoration: none;
	cursor:          pointer;
}
* html .vnav ul li a /* hide from IE5.0/Win & IE5/Mac */
{
	height: 0.01%;
}
* html .vnav ul
{
	position: relative;	/* IE needs this to fix a rendering problem */
}

/* everything below this point is related to the pages 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, #masthead, #innerColumnContainer, #footer, .vnav ul, .vnav ul li, ul li a
{
	border-color: #336633; /* Dark Weak Green */
}
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.
	 */
	background-color: #EFFFEF;
	color:            #000;
	font-family:      Verdana, Arial, Helvetica, sans-serif;
}
#pageWrapper
{
	font-size: 100%;	/* set your default font size here. */
}
#masthead
{
	background-color: #CCFFCC; /* Pale Weak Green */
	color:            #000000;
}
#outerColumnContainer
{
	border-left-color:  #99CC99; /* left column background color - Light Weak Green */
	border-right-color: #FFFFFF; /* right column background color */
	background-color:   #EFFFEF; /* set the background color for the middle column here */
	color:              #000000;
}
.vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active
{
	text-decoration:  none;
	background-color: #CCDDCC;
	color:            #000000;
}
.vnav ul li a:hover
{
	text-decoration:  none;
	background-color: #889988;
	color:            #FFFFFF;
}
#footer
{
	background-color: #CCFFCC; /* Pale Weak Green */
	color:            #000000;
	text-align:       center;
}

/*******************************************************************************
*  twoColumnsLeft.css : 2004-08-17 : Ruthsarian Layouts
* ------------------------------------------------------------------------------
*  This stylesheet removes the right-hand column from the 3 column layout
*******************************************************************************/

html>body #rightColumn
{
	display: none;	/* for compliant browsers, hide this column entirely */
}
* html #rightColumn *
{
		display: none;	/* ie's ghost-text bug is triggered by key elements
			   having display:none set. #rightColumn is one of those
			   key elements. so we display:none all child
			   elements (doesn't trigger the bug) and try to
			   make #rightColumn have no chance to affect
			   document flow. */
}
#rightColumn
{
	position: absolute;
	margin:   0;
	padding:  0;
	width:    0;
	height:   0;
	border:   none;	/* remove anything that'll give this element width. */
}
#outerColumnContainer, #innerColumnContainer
{
	border-right-width: 0;	/* to get from 3 to 2 columns, we must hide the
				   right-side border */
}
#innerColumnContainer
{
	margin-right: 0;
}