@charset "iso-8859-1";

/*******************************************************************************
*  skidoo_too.css : 2005.06.09
* -----------------------------------------------------------------------------
*  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;
}
.hide
{
	display: none;
}
.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;
}
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 given here.
	 */
	border-bottom: 1px solid;
	border-color: transparent;
	margin-bottom: -1px;
}

/* 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;
}
h1
{
	font-size: 220%;
}
h2
{
	font-size: 190%;
}
h3
{
	font-size: 160%;
}
h4
{
	font-size: 130%;
}
h5
{
	font-size: 100%;
}
h6
{
	font-size: 70%;
}

/* alter some HTML elements' default style
 */

a, a:link, a:visited, a:active
{
	font-weight: bold;
	text-decoration: none;
	color: #FF9228;
}
a:hover
{
	text-decoration: none;
	color: #ffc728;
}

.picslink {
	border: 2px solid #FF9228;
}

.picslink:HOVER{
	border: 2px solid #F3D16F;
}

.picslinkout {
	border: 2px solid #FF9228;
}

.picslinkin{
	border: 2px solid #F3D16F;
}


/* 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
{
	padding: 0px;
	margin: 0px;
}
#pageWrapper
{
	/* border: solid 1px #fff;
	border-width: 0 1px; */
	/* margin: 0 5%; */		/* set side margins here 'cause IE doesn't like it set
				   on the body element */
	min-width: 40em;	/* IE doens't understand this property. I use ems rather
				   than pixels so that the layout shouldn't break even
				   when the browser's default size is set very large */
	width: auto;
}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#masthead
{
	text-align:center;
	border-bottom: solid 1px #fff;
	border-width: 1px 0;
	margin-top: 0px;
	padding: 0em;
	/*padding-top: 2px;*/
	/*padding-left: 150px;
	margin-right: 150px;*/
	height: 50px;
}

#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: solid 150px #fff;
	border-right: solid 150px #fff;
}
#innerColumnContainer
{
	border: solid 1px #fff;
	border-width: 0 1px;
	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;
	/* height: 100px; */
}
#leftColumn
{
	float: left;
	margin: 130px 1px 0 -150px;
	width: 150px;
	z-index: 4;
}
#rightColumn
{
	float: right;
	width: 150px;
	margin: 0 -150px 0 1px;
	z-index: 2;
}
#footer
{
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.5em;
}

/* p.fontsize-set
{
	text-align: center;
}
p.fontsize-set img
{
	border-width: 0;
} */


/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */

.vnav
{
	margin: 1em 0;
	border-left: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	/*background-color: #f7ef89;*/
}
.vnav ul
{
	background-color: #f7ef89;
	border-left: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
}
.vnav ul, .vnav ul li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}

.vnav ul li, .vnav ul li a
{
	margin: 0;
	display: block;
	padding: 0;
	line-height: normal;
	/*background-color:#FFFF99;*/
	border-top: 1px solid #ffffff;
	/*border-bottom: 1px solid #ffffff;*/
}
.vnav ul li a
{
	display: block;
	padding: 2px 2px 5px 2px;
}
.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-align:center;
	vertical-align: middle;
	text-decoration: none;
	cursor: pointer;
}
.vnav h3
{
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 126%;
}
* 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 */
}

/* below is a series of selectors to get a consistent font size across
 * platforms. this is outside the 'theme' section on purpose. use #pageWrapper
 * to set the base font-size for the layout.
 */

body
{
	font-size: 100.1%;
} 
  html>body
{ 
	/* Opera's default font size is typically 10% smaller than IE or Mozilla
	 * so we correct for this here, since we're using percentages 
	 * everywhere. And we do this because pixel-based fonts don't resize
	 * under IE/Win and percentages/ems are essentially the same, and I like
	 * percentages for fonts.
	 */
	font-size: 110%;
}
 body:last-child, * html body
{
	/* of course the previous selector for Opera's fix is caught by more 
	 * than a few other browsers, so we reset that value here.
	 */
	font-size: 100.1%;
} 

/* 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, #masthead, #innerColumnContainer, #footer
{
	border-color: #ff9228;
}
 body
{
	background-color: #eee;
	color: #000066;
	/* color: #000; */
	font-family: arial, helvetica, sans-serif;
} 
#pageWrapper
{
	font-size: 80%;	/* set your default font size here. */
}
#masthead
{
	/*background-color: #3B74BA;*/
	background-color: #83aef0;
	/* background: url(dunestop.jpg) repeat; */
	color: #fff;
}
#outerColumnContainer
{
	border-left-color: #f3d16f;	/* left column background color */
	border-right-color: #f3d16f; /* right column background color */
	background-color: #fff;		/* set the background color for the
					   middle column here */
}
.vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active
{
	text-decoration: none;
	/* background-color: #ffde00; */
	/* color: #000000; */
	color: #000066;
}

#rightColumn .vnav ul li a:link, #rightColumn .vnav ul li a:visited, #rightColumn .vnav ul li a:active
{
	background-color: #ded;
}
.vnav ul li a:hover, #rightColumn .vnav ul li a:hover
{
	text-decoration: none;
	/*background-color: #898;*/
	color: #fff;
}
#rightColumn .inside
{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 90%;
}
#middleColumn .inside
{
	padding-left: 30px;
	padding-bottom: 40px;
}
#rightColumn .inside .vnav
{
	font-size: 110%;
}
#footer
{
	background-color: #7D9ED0;
	color: #fff;
	text-align: center;
}
#footer a
{
	font-weight:normal;
	color: #fff;
}
#leftimage{
	position: absolute;
	left: 0px;
	top: 0px;
}

#rightimage{
	/* float: right; */
	position: absolute;
	right: 0%;
	margin: 0px;
	padding: 0px;
	top: 0px;
}

#rightads{
	margin-top: 120px;
	margin-bottom: 10px; 
	/* Comment out the stuff below here when you actually get ads*/
	/*width:120px;
	height: 300px;
	border: 1px solid #000033;*/
}

.submenuitem{
	padding-left: 50px;
}


.odd{
	background-color: #FFFFFF;
}

.even{
	background-color: #F0F5FE;
}
.oddcomments{
	background-color: #FFFFFF;
}

.evencomments{
	background-color:#B9D5E1;
}
.gcmenu
{
	margin-left:20px;
	margin-right:40px;
	padding:5px;
	color: #FFFFFF;
	background-color: #7D9ED0;
}
.gcmenu a
{
	font-weight:bold;
	color: #ffffff;
}
.gcmenu a:hover
{
	text-decoration:underline;
}

.pagetitle
{
	padding-left: 20px;
	padding-right: 40px;
}

.sitemap ul
{
	margin-top: 0px;
	padding-top: 5px;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.sitemap li
{
	padding-bottom: 5px;
}

.videoitem
{
	border-top: 2px dotted #FF9228;
	border-bottom: 2px dotted #FF9228;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-bottom: 10px;
}

.videotext
{
	text-align: right;
	padding-right: 15px;
}

.vidtable td{
	padding-top: 5px;
	padding-right: 15px;
	border-top: 2px dotted #FF9228;
}
.vidtable th{
	padding-right: 15px;
}
.viddetails td{
	padding-top: 5px;
	padding-right: 15px;
	border-top: 0;
}

.wheretosubject{
	vertical-align:top;
	font-weight:bold;
	white-space:nowrap;
}
/******************************************************************************/