@charset "iso-8859-1";

/*******************************************************************************
*  bigtreestech.css : 2005.09.09
* -----------------------------------------------------------------------------
*  A remake of the skidoo too layout with colors and fonts changed.
*  Also changed menu style to a horizontal suckerfish.
*  Also added ability to switch between 2column-left, 2colum-right, and 3 column
*  formats by changing body class between left2 right2 and empty
*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
*
{
    font-family: 'Comic Sans MS', Veranda, Georgia, 'Times New Roman', Times, serif;
}

.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: 250%;
	font-style: italic;
	font-weight: bold;
}
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
{
	text-decoration: underline;
}
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.
 */
body
{
    margin: 0;
	padding: 0;
	font-size: 100.1%;	/* 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;
}

#masthead
{
	border: solid 1px #fff;
	border-width: 1px 0; 
	padding: 0 0 0.25em 0.5em;
}
#masthead h1, #masthead a
{
    display: block;
    float: left;
	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 14em #fff;
	border-right: solid 14em #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 -14em;
	width: 14em;
	z-index: 4;
}
#rightColumn
{
	float: right;
	width: 14em;
	margin: 0 -14em 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;
}
.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;
}
#leftColumn .inside h3, #rightColumn .inside 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 */
}

/* horizontal navigation elements. create a DIV element with the class hnav
 * and stick one unordered list inside it to generate a horizontal menu.
 */
.hnav
{
    font-size: 90%;
    border-bottom: solid 1px #fff;
	text-align: center;
	margin: 0;
	padding: 0 0 3.2em 0;
}

.hnav ul li a
{
	/* need to middor veritcal padding on .hnav and child anchor elements
	 * because the anchors are _not_ block elements. since they are not
	 * block elements web browsers will not expand .hnav to contain them
	 * even with the extra padding. by applying the same padding to both
	 * the parent .hnav _looks_ like its containing the child anchor
	 * elements.
	 */
	padding-top: 3px;
	padding-bottom: 3px;
}

.hnav ul
{
    float: left;
    width: 100%;
	list-style: none;
	line-height: 1em;
	padding: 0;
	margin: 0;
}

.hnav ul ul
{
	list-style: none;
	line-height: 1em;
	padding: 0;
	margin: 0;
	width: auto;
}

/* Hack to make IE show the horizontal menu correctly
*  Otherwise submenus do not work.
*  They show up as blocks rather than in line.
*/
* html div.hnav ul, * html div.hnav ul ul
{
	width: 600px;
}

.hnav ul li
{
  	border: solid 1px #fff;
	border-left-width: 0;
}

.hnav a
{
	display: block;
	width: 4em;
	color: #7C6240;
	text-decoration: none;
	padding: 0.25em 1em;
}

.hnav li {
	float: left;
	padding: 0;
	width: 6em; 
}

.hnav li ul {
    position: absolute;
	left: -999em;
	height: auto;
	font-weight: normal;
	margin: 0;
}

.hnav li li{
/*	padding-right: 1em; */
	width: 8em
}

.hnav li ul a {
	width: 6em;
    padding: 0.25em 1em;
}


.hnav li ul ul {
/*	margin: -1.75em 0 0 14em; */
}

.hnav li:hover ul ul, .hnav li:hover ul ul ul, .hnav li.sfhover ul ul, .hnav li.sfhover ul ul ul
{
	left: -999em;
}

.hnav li:hover ul, .hnav li li:hover ul, .hnav li li li:hover ul, .hnav li.sfhover ul, .hnav li li.sfhover ul, .hnav li li li.sfhover ul {
	left: auto;
}

.hnav li:hover, .hnav li.sfhover
{
	background: #eda;
}

.element
 {
    border: solid 2px #000;
    height: 20em;
    width: 14em;
    overflow: auto;
 }
 
 #middleColumn .element
 {
    height: auto;
    width: auto;
    border: none;
 }

/* 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.	
 */
 
 
#OuterColumnContainer
{
	clear: left;
}
#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .vnav ul li, .hnav, .hnav ul li a
{
	border-color: #565;
}
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: arial, helvetica, sans-serif;
}

a:hover
{
	background-color: #b3d5ba;
	color: #fff;
}

#pageWrapper
{
	font-size: 80%;	/* set your default font size here. */
}
#masthead, #masthead a, #masthead a:hover
{
	background-color: #d6dfec;
	color: #003300;
	height: 50px;
	text-decoration: none;
}

.hnav
{
	background-color: #c1cebd;
	color: #fff;
}
#outerColumnContainer
{
	border-left-color: #ddeedf;	/* left column background color */
	border-right-color: #ddeedf;	/* right column background color */
	background-color: #ecffee;		/* 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: #c7e8c0;
	color: #000;
}
#rightColumn .vnav ul li a:link, #rightColumn .vnav ul li a:visited, #rightColumn .vnav ul li a:active
{
	background-color: #c7e8c0;
}
.vnav ul li a:hover, #rightColumn .vnav ul li a:hover
{
	text-decoration: none;
	background-color: #b3d5ba;
	color: #fff;
}
.hnav ul
{
    font-weight: bold;
}

.hnav ul ul
{
    font-weight: normal;
}
.hnav ul li a:link, .hnav ul li a:visited
{
	background-color: #c7e8c0;
	color: #000;
	text-decoration: none;
}
.hnav ul li a:hover
{
	background-color: #b3d5ba;
	color: #fff;
}

.loginout
{
    display: block;
    color: #000;
    float: right;
    margin: 0;
    padding: 3px 5px 0 0;
}


#rightColumn .inside, #leftColumn .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
{
    padding: 0 5px 0 3px;
}

#leftColumn .inside
{
    padding: 0 3px 0 5px;
}

#rightColumn .inside .caption, #leftColumn .inside .caption
{
  margin: 0;
  padding: 0 0 0 1.5em;
  display: block;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.element
{
  display:block;
    text-align: left;
    margin: 0;
    padding: 1px;
    background: white;
}

#middleColumn .element
{
    background: none;
}

.element p
{
    margin: 0;
    padding: 0 1px 0.5em 1px;
}
.element #weather p
{
    margin: 0;
    padding: 0 1px 3px 1px;
}

.element #weather table, .element #weather form
{
  margin: 0;
  padding: 0;
}

.element #weather td
{
  margin:0;
  padding: 0 2px 0 2px;
  text-align: center;
  font-size: 95%;
  width:12em;
}
 .element .label
 {
    display: block;
    float: left;
    font-size: large;
    padding: 1px 0.5em 0 1em;
 }
 
 #middleColumn .element #liveImages, #middleColumn .trend0
 {
    display: block;
    width: 50%;
    float: left;
    text-align: center;
 }
 
 /*#middleColumn .element #liveDetail,*/ #middleColumn .trend1
 {
    display: block;
    width:50%;
    float: right;
    text-align: center;
 }
 
 #middleColumn #liveDetail table
 {
   padding: 1em;
   margin: auto;
 }
 
 #middleColumn .whead
 {
    font-size: large;
    font-weight: bold;
    text-align: center;
    margin:0;
    padding:0;
 }
#middleColumn .wcat
{
    font-size: small;
    text-align: right;
    padding: 2px 1em 2px 2px;
}

#middleColumn .wval
{
    font-size: small;
    text-align: left;
    padding: 2px 2px 2px 1em;
}
 
 .element #liveImages img
 {
   padding:0;
   margin: 0 0 1em 0;
   border: 1px solid black;
 }


#infrared
 {
    display:block;
    padding: 1em 0;
    margin: 0;
 
    text-align: center;

 }
 
 #middleColumn .element h3
 {
    margin:0;
 }
 
 #middleColumn .trend0, #middleColumn .trend1
 {
   padding: 0 0 1em 0;
 }

#footer
{
	background-color: #eceedc;
	color: #003300;
	text-align: center;
	font-size: 75%;
	margin: 0;
	padding: 0;
}
#footer p
{
	margin-top: 5px;
	margin-bottom: 2px;
}


body.right2 div#leftColumn { display: none; }
body.right2 div#middleColumn { margin: 0; }
body.right2 div#innerColumnContainer, body.right2 div#outerColumnContainer { border-left-width: 0; }

body.left2 div#rightColumn { display: none; }
body.left2 div#SOWrap { margin: 0; }
body.left2 div#innerColumnContainer, body.left2 div#outerColumnContainer { border-right-width: 0; }

body.nosides div#leftColumn, body.nosides div#rightColumn { display: none; }
body.nosides div#middleColumn, body.nosides div#SOWrap { margin: 0; }
body.nosides div#innerColumnContainer, body.nosides div#outerColumnContainer { border-right-width: 0; }
body.nosides div#innerColumnContainer, body.nosides div#outerColumnContainer { border-left-width: 0; }

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

