/*******************************************************************************/
/*  Triangle Tennis Homes vppT.css : 2005.03.18
*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */

.clear {
	clear: both;
	}
.hide {
	display: none;
	}
.hiddenClear {
	clear: both;
	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;
}
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. salt to taste.
 */

ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top: 6px;
	margin-bottom: 6px;
	padding-top: 0;
	padding-bottom: 0;
}
h1
{
	font-size: 160%;
}
h2
{
	font-size: 130%;
}
h3{
	font-size: 110%;
	}
h4
{
	font-size: 90%;
}
h5
{
	font-size: 75%;
}
h6
{
	font-size: 65%;
}
sup {
	font-size: 80%;
	}
/* alter some HTML elements' default style
 */
a, a:link
{
	color: #39820F;
	text-decoration: none;
	margin: 0;
	padding: 0;
	border: 0;
}
a:hover
{ 
	color: #fff;
	background-color: #39820F; 
}

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
{
	padding: 0 0;
	margin: 0;
}
#pageWrapper
{
	border: solid 1px #fff;
	margin: 0;
	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;

}
#masthead
{
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0;
}
#masthead h1
{
	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 10em #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, #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%;
	font-size: 90%;
	z-index: 5;
}
#leftColumn
{
	float: left;
	margin: 0 0px 0 -10em;
	width: 10em;
	z-index: 4;
}
#rightColumn
{
	float: right;
	width: 150px;
	margin: 0 -150px 0 0px;
	z-index: 2;
}
#footer
{
	border: solid 1px #39820F;
	border-width: 1px 0;
	padding: 0.5em;
}

/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */

.vnav
{
	margin: 1em 0;
}
.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 a
{
	display: block;
	text-decoration: none;
	padding: 2px 10px;
}
* 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 */
}
.vnav h3
{
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 126%;
}

/* horizontal navigation stuff. mostly exactly as seen in the hnav.css styleheet
 * in the original skidoo layout.
 */

.hnav, .tnav
{
	border-bottom: solid 1px #fff;
	margin: 0;
	padding: 3px 0 0px 0;
	white-space: nowrap;
}
.hnav ul span.divider
{
	display: none;
}
* html .hnav/* Hide from IE5/Mac (& IE5.0/Win) */
{
	height: 0.01%;	/* holly hack to fix a render bug in IE6/Win */
}
* html .HNAV
{
	height: auto;	/* above IE6/Win holly hack breaks IE5/Win when page 
			   length get beyond the point that 1% height is taller 
			   than the text height. IE5/Win does not need this 
			   holly hack so we remove it here */
	padding: 0;	/* IE5/Win will resize #hnav to fit the heights of its
			   inline children that have vertical padding. So this
			   incorrect case selector will remove that padding */
}
.hnav ul
{
	text-align: center;
	list-style-type: none;
	line-height: normal;
	margin: 0;
	padding: 0;
}
.hnav ul li
{
	display: inline;
	white-space: nowrap;
	margin: 0;
}
.hnav ul li a, .hnav ul li a:link, .hnav ul li a:visited, .hnav ul li a:active
{
	text-decoration: none;
	margin: 0 -1px 0 0;
	padding: 3px 10px 4px 10px;
	border-left: solid 1px #000;
	border-right: solid 1px #000;
}
* html .HNAV ul li a
{
	/* \*/
		width: 1%;
	/* holly hack for IE5/Win inline padding. this hack fixes different 
	 * rendering bugs in 5.0 and 5.5. Width is used instead of height 
	 * because if the document is too long, these elements become very tall
	 * and disrupt the look of the document. too wide an element is better, 
	 * visually, than too tall. */
}
.hnav ul li a:hover
{
	text-decoration: none;
} 

/* 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%;
}
/* 
 * END LAYOUT SECTION
 */
 
/******************************************
* START THEME SECTION
*******************************************/
sup {
	text-decoration:none;
	}
#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .vnav ul li, .hnav, .hnav ul li a
{
	border-color: #DBF2CC;
}
body
{
	background-color: #fff;
	color: #000;
	font-family: arial, helvetica, sans-serif;
}
#pageWrapper
{
	font-size: 100%;	/* set your default font size multiplier here. */
}
#masthead
{
	background-color: #DBF2CC;
	color: #000;
}
.hnav
{
	background-color: #DBF2CC;
	color: #fff;
	border-bottom: 8px solid #39820F;
	text-align: center;
}
#outerColumnContainer
{
	border-left-color: #DBF2CC;	/* left column background color */
	border-right-color: #DBF2CC;	/* right column background color */
	padding: 0 0 .5em 0;
}
.vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active
{
	text-decoration: none;
	background-color: #cdc;
	color: #000;
}
.vnav ul li a:hover
{
	text-decoration: none;
	background-color: #898;
	color: #fff;
}
.hnav ul li a:link, .hnav ul li a:visited
{
	background-color: #bcb;
	color: #000;
}
.hnav ul li a:hover
{
	background-color: #787;
	color: #fff;
}
#leftColumn .inside
{
	font-size: 95%;
	padding: 0 6px 0 5px;	
}
#middleColumn .inside
{
	font-size: 90%;
	padding: 0 6px 0 6px;
}
#middleColumn h1, h2, h3, h4, h5, h6 {
	margin-top: 2px;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
	}
#middleColumn a, #middleColumn a:link {
	color:#1C4E00;
	text-decoration:underline;
	}
#middleColumn a:visited {
	color: #39820F;
	}
#middleColumn a:hover { 
	color: #fff;
	background-color: #39820F; 
	}
#rightColumn .inside {
	font-size:11px;
	padding: 0 .5em 0 .5em;
	}
.leftColPhone {
	font-size: 110%;
	font-weight: bold;
	}
.tbStyle {
	height: 11px;
	font-size: 10px;
	}
.tbHmls {
	height: 11px;
	font-size: 10px;
	vertical-align:middle;
	}
.rcObj h1 {
	margin-top: 0;
	}
.rcObj form {
	margin: 6px 0 0 0;
	padding: 0;
	border: none;
	text-align: center;
	}
.rcObj img, .rcObj a, .rcObj a:link, .rcObj a:visited {
	color: #000;
	text-decoration: none;
	margin: 0;
	padding: 0;
	border: none;
	}
.rcObj a:hover {
	color: #39820F;
	background-color: #DBF2CC;
	}
#rightColumn hr, #leftColumn hr
{
	background-color: #39820F;
	height: 5px;
	width: 100%;
	text-align: center;
}
#rightColumn img.wrap
{
	padding: 0 6px 0 0;
	border: none;
}
#footer
{
	background-color: #39820F;
	color: #fff;
	font-size: 9pt;
	text-align: center;
}
#footer a {
	color:#A3C985;
}
#footer a:hover{ 
	color: #39820F;
	background:#fff;
	}
.tabNav
{
	margin: 0;
	padding: 3px 0 0px 0;
	white-space: nowrap;
	border-color: #DBF2CC;
	background-color: #DBF2CC;
	color: #000;
	border-bottom: 8px solid #39820F;
	font-size: 80%;
}
.tabNav li {
	white-space:nowrap;
	}
* html .tabNav/* Hide from IE5/Mac (& IE5.0/Win) */
{
	height: 0.01%;	/* holly hack to fix a render bug in IE6/Win */
}
* html .TABNAV
{
	height: auto;	/* above IE6/Win holly hack breaks IE5/Win when page 
			   length get beyond the point that 1% height is taller 
			   than the text height. IE5/Win does not need this 
			   holly hack so we remove it here */
	padding: 0;	/* IE5/Win will resize #hnav to fit the heights of its
			   inline children that have vertical padding. So this
			   incorrect case selector will remove that padding */
}
.footNote {
	margin-left:2em;
	text-indent:-1.5em;
	}
.footNoteNum {
  vertical-align: 60%;
	font-size:70%;
	font-weight:bold;
	margin: 0 0 0 .25em;
	}
.footNoteAnchor a, .footNoteAnchor a:link, .footNoteAnchor a:visited {
	text-decoration:none !important;
	color:#000 !important;
	}
/********************************************************
**
**  Begin pNav styles for mini-nav bar ("permanent" nav)
**
**********************************************************/

#pNav
{
	margin: 0;
	padding: .5em .5em 0 0;
}
#pNav .nudgeL
{
	padding: 0 .5em 0 0;
}
#pNav UL
{
	list-style: none;
	margin: 0;
	padding: 0;
	border: none;
}

#pNav LI {
	display: block;
	margin: 0;
	padding: .5em 0 0 0;
	float: right;
	width: auto;
	}
#pNav A {
	color: #39820F;
	display: block;
	width: auto;
	text-decoration: none;
	background: inherit;
	margin: 0;
	padding: 0em .5em 0em .5em;
	border-color: #39820F;
	border-style: solid;
	border-width: 1px 0 0 1px;
	}
#pNav A:hover{ 
	color: #fff;
	background: #39820F;
	}
#pNav BR { 
	clear: both;
	}
.vppNavTableA {
	border-collapse:collapse;
	text-align:center;
	background-color:#DBF2CC;
	border: 4px solid #39820F;
	border-bottom-color:#A3C985;
	border-right-color:#A3C985;
	}
/********************************************************
**
**  Begin generic vertical nav class bodyVnav
**
**********************************************************/
.bodyVnav {
	padding: .5em .5em .5em 0em;
	font-size: .9em;
	color: #39820F;
	display: none;
	/*/*/display: block; /* Hide from NN4*/
	}
.bodyVnav a {
	padding: 0em .5em 0 .5em;
	border-color: #39820F;
	border-style: solid;
	border-width: 1px 0 0 1px;
	text-decoration:none !important;
	}
.bodyVnav a:link {
	color: #39820F !important;
	text-decoration: none;
	}
.bodyVnav a:visited {
	color: #39820F !important;
	}
.bodyVnav a:hover {
	color: #fff !important;
	background-color: #39820F;
	}
/*************************
**  Begin printBanner layers and styles
*************************/
#printBanner {
	width: 100%;
	border: 2px solid #39820F;
	font-size: 11px;
	display: none;
	}
.pbTable p {
	border: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-weight: bold;
	}
.pbTable p.title {
	font-size: 24px;
	padding: 0 0 3px 0;
	}
