@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. Generously changed by owner of this site, often to the detriment of the css.
*******************************************************************************/

/* 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 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 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: 140%;
	text-align: center;
}
h2
{
	font-size: 130%;
	text-align: center;
}
h3
{
	font-size: 120%;
	text-align: center;
}
h4
{
	font-size: 110%;
	text-align: center;
}
h5
{
	font-size: 100%;
	text-align: center;
}
h6
{
	font-size: 90%;
	text-align: center;
}

/* alter some HTML elements' default style
 */
a, a:link, a:visited, a:active
{
	text-decoration: underline;
}
a:active {
  position: relative;
  top: 1px;
}
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.
 */
 
 /*The following code creates an exterior container that allow us to wrap the whole page and create minimum and maximum widths for the page with some adjustments for different browsers*/

 #exteriorContainer
{min-width: 775px;
	max-width: 840px;
	margin-left: auto;
	margin-right: auto;
	border-style: ridge;
	border-color: #999999;	
	border-width: thick;
}
* html #exteriorContainer

{
   
		width: 840px;
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under 

narrow viewports */
}

	


body
{
	margin: 15px 1.5%;	/* 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: 95%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */
}
#pageWrapper
{
	border: solid 1px #fff;
	border-width: 0 1px;
	min-width: 40em;	/* IE doens'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
{
	
		
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#membersonlytitle
{	
	text-align: center;
	background-color: #abbbc8;
	color: #000;
	border: solid 1px #7c8aa4;
		
	
	padding: 0;
	margin: 0;
		
}
#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 11em #fff;
	border-right: solid 11em #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;
}
#leftColumn
{
	float: left;
	margin: 0 1px 0 -11.4em;
	width: 11.4em;
	z-index: 4;
}
#rightColumn
{
	float: right;
	width: 11em;
	margin: 0 -11em 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;
}
.logo
{
	text-align: center;
	

}



/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */
.vnav
{
	margin: 1px;
}
.vnav ul, .vnav ul li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}
.vnav ul
{
	border: solid 1px #fff;
	border-bottom-width: 0;
}
.vnav ul li
{
	border-bottom: solid 1px #fff;
}
.vnav ul li, .vnav ul li a
{
	margin: 0;
	display: block;
	padding: 0;
	line-height: normal;
}
.vnav ul li a
{
	display: block;
	padding: 2px 5px 3px 5px;
}
.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;
}


.vnav h3
{
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 120%;
}
* 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 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, .vnav ul, .vnav ul li, .hnav, .hnav ul li a
{
	border-color: #3b5169;
}
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: #eee;
	color: #000;
	font-family: "Trebuchet MS", arial, helvetica, sans-serif;
}
#pageWrapper
{
	font-size: 80%;	/* set your default font size here. */
}

.hnav
{
	background-color: #aba;
	color: #fff;
}
#outerColumnContainer
{
	border-left-color: #7c8aa4;	/* left column background color */
	border-right-color: #7c8aa4;	/* 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: #abbbc8;
	color: #000;
}
#rightColumn .vnav ul li a:link, #rightColumn .vnav ul li a:visited, #rightColumn .vnav ul li a:active
{
	background-color: #abbbc8;
}
.vnav ul li a:hover, #rightColumn .vnav ul li a:hover
{
	text-decoration: none;
	background-color: #4e658e;
	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%;
}
#rightColumn .inside .vnav
{
	font-size: 100%;
}
#footer
{
	font-size: 75%;
	background-color: #4e658e;
	color: #FFFFFF;
	text-align: center;
}
#footer a:link, #footer a:visited, #footer a:active
{
	text-decoration: underline;
		color: #fff;
}

ul.none
{list-style-type: none;
}

p.amazon
{
	text-align: center;
}

p.adobe
{
	text-align: center;
}

p.indent {
	margin-left: 20px;
	padding: 0px;
	border-width: 0px;
	}


p.alert{
text-align: center;
border: 2px solid red;
background-color: #fff;
padding:15px;margin-top:5px;
margin-bottom:5px;
}

.excerpt{
text-align: center;
border: 2px solid #000000;
background-color:#ffff99;
padding:5px;margin-top:5px;
margin-bottom:5px;
margin-left:40px;
margin-right:40px;
}
.featured {
text-align : left;
border : 2px solid #000000;
background-color : #ffff99;
padding : 5px;
margin-top : 5px;
margin-bottom : 5px;
margin-left : 40px;
margin-right : 40px;
}
p.center {
	text-align: center;
	}
p.meetinginfo {

	text-align: center;
	background-image: url(longpostit.gif);
	height: 232px;
	background-repeat: no-repeat;
	background-position: center;
	font-family: "Comic Sans MS",Verdana;
	font-size: 85%;
}
div.meetinginfo {

	text-align: center;
	background-image: url(longpostit.gif);
	height: 232px;
	background-repeat: no-repeat;
	background-position: center;
	font-family: "Comic Sans MS", Verdana;
	font-size: 85%;
}

p.obit{
text-align: left;
border: double #000000;
background-color:#cccccc;
padding:5px;margin-top:5px;
margin-bottom:5px;
margin-left:40px;
margin-right:40px;
}


div.obit{
text-align: left;
border: double #000000;
background-color:#cccccc;
padding:5px;margin-top:5px;
margin-bottom:5px;
margin-left:40px;
margin-right:40px;
}

img.right
	{float: right;
	margin:3px 3px 3px 4px;
	}
img.left
	{float: left;
	margin: 3px 4px 3px 4px;
	}
	
img.aligncenter
	{display: block;
    margin-left: auto;
    margin-right: auto }
    
    img.centered {display: block;
    margin-left: auto;
    margin-right: auto }
img.center
	{display: block;
    margin-left: auto;
    margin-right: auto }
    
    img.centered {display: block;
    margin-left: auto;
    margin-right: auto }

img.alignright {float: right;
	margin:3px 3px 3px 4px;
	}

img.alignleft {float: left;
	margin: 3px 4px 3px 4px;
	}

table {
border: thin solid black;
border-collapse: collapse;
}
table.center {margin-left:auto; margin-right:auto;
text-align: center;
}
table.bordernone {
border-style: none;
margin-left:auto; margin-right:auto;
text-align: center;
border: none;
border-collapse: collapse;
}

td, th {
border: thin solid black;
padding:5px;
}
td.center {
text-align: center;
}

/*the following should set up a captioned image floated to the right.  In html use <div class="captionedimg">
<img src="filename.ext" width="xx" height="xx" /><br />
Caption Here
</div>  and following with your <p></p> for surrounding text.       */

div.captionedrightimg
{
float:right;
width:175px;
margin:10px 10px 10px 10px;
padding:15px 15px 15px 15px;
border:2px outset black;

font-style: italic;
text-align:center;
}


div.captionedleftimg
{
float:left;
width:175px;
margin:10px 10px 10px 10px;
padding:15px 15px 15px 15px;
border:2px outset black;

font-style: italic;
text-align:center;
}
/* the following sets up a gallery type of division with captions
 */


div.img
  {
  margin: 2px;
  border: 1px solid #0000ff;
  height: auto;
  width: auto;
  float: left;
  text-align: center;
  }
div.img img
  {
  display: inline;
  margin: 3px;
  border: 1px solid #ffffff;
  }
div.img a:hover img
  {
  border: 1px solid #0000ff;
  }
div.desc
  {
  text-align: center;
  font-weight: normal;
  width: 210px;
  margin: 2px;
  }

div.text
{
text-align: left;
font-weight: normal;
margin-top: 2px;
float: left
}

li.member
{list-style-type: square;
}

/* below are image attributes from blog to make php blog pull-in work*/
img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
	}

img.alignright {
	padding: 4px;
	margin: 0 0 2px 7px;
	display: inline;
	}

img.alignleft {
	padding: 4px;
	margin: 0 7px 2px 0;
	display: inline;
	}
	
	.chh
{
background-color:#bfcbe1;
}
 .nonchh
{
background-color:#e8eaed;
color:#474f5a;
}

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





