/* hide these rules from CSS-challenged browsers */
@media screen, projection {
/* below exploits a parsing error so @media rules will be visible to MacIE5 */
.BeNiceToMacIE5 {
  font-family: "\"}\"";
  font-family: inherit;
}
/* left column */
.nav {
  width: 28%;              /* was 28% of inner-container width is ~same width as right column */
  float: left;             /* left side of inner-container */
  margin: 0;               /* keep flush with adjacent containers */
  padding: .3em 0 0 2%;    /* space from window edge (IE messes up with margin, so use padding) */
  font-size: 90%;
}
/* center column */
.content {
  width: 65%;              /* % of inner-container width */
  float: right;            /* right side of inner-container */
  padding: .2em 1.5%;      /* some padding for readability */
  margin: 0;               /* keep flush with adjacent containers */
  background-color: #F0F8FF;  /* center column color */
  background-image: url(images/backgrnds/bird-bamboo.jpg);
background-attachment: fixed;
  color: #000;
  border-color: #FFD700;      /* W3C CSS validation service get an erroneous */
  border-style: solid;     /*   parse error on border-right shorthand, */
  border-width: 0 1px;     /*   but not on individual properties */
}

} /* end screen only rules */

@media screen, projection, print {
/* below exploits a parsing error so @media rules will be visible to MacIE5 */
.BeNiceToMacIE5 {
  font-family: "\"}\"";
  font-family: inherit;
}
html, body.index {
  margin: 0;
  padding: 0;
  width: 100%;
  color: #000;
background-image: url(images/backgrnds/bird-bamboo.jpg);
	 background-attachment: fixed;
	
 }
h1 {
  font-size: 175%;
  margin: .3em;
}
h2 {
  font-size: 125%;
  margin: .2em 0;
}
a:link {
  color: #00f;
  background-color: transparent;
}
/* a:visited {
  color: #909;
  background-color: transparent;
} */

/* page header, uses body colors */
.header {
  width: 100%;             /* full window width */
  margin: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  text-align: left;
	
}

.header p {line-height:1.5em;}

/* page footer, uses body colors */
.footer {
  clear: both;             /* below all columns */
  width: 100%;             /* full window width */
  margin: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  font-size: 88%;
  text-align: left;

}
.header p,
.footer p {color:Black;
  margin-bottom: 0; margin-left:2em;font-size:88%;line-height:1em;      /* prevent gaps between divs in some browsers */
}

#rightcontent li {font-size:90%}

/* container for the 3 columns */
.outer-container {
  width: 100%;             /* full window width */
  margin: 0;               /* keep flush with adjacent containers */
  background-color: 	#2F4F4F;  /*color behind the right column */
  background-image: url(images/backgrnds/blkred.jpg);
   background-attachment: fixed;
  color: #000;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}
/* container for just the left and center columns */
.inner-container {
  width: 76%;              /* leaves 24% of window width for right column */
  float: left;             /* left side of window */
background-image: url(images/backgrnds/blkred.jpg);  /* Left column image or color*/
 background-attachment: fixed;
   /* background-color:#2F4F4F; /* 
  
  color: #000;             /*   delete these colors to get same color as right column */
  margin: 0;               /* keep flush with adjacent containers */
}
/* right column */
.sidebar {
  width: 21%;              /* a little less than available 24% */
  float: right;            /* right side of window */
  margin: 0;               /* keep flush with adjacent containers */
  padding: .3em 1.5% .3em 0;      /* some space from right window edge */
  font-size: 90%;
}
.clear {
  clear: both;
  margin: 0;               /* keep flush with adjacent containers */
  padding: 0;
  height: 0;
  overflow: hidden;
}
} /* end screen/print rules */

/* rules for WinIE only */
@media screen, projection {
* html .clear {
  display: none;           /* prevent excessive gap at div bottom in WinIE5 */
}
} /* end WinIE only rules */



/* print only rules (per request) */
@media print {
.nav {
	display: none;
}
.content {
	float: left;
}

} /* end print only rules */


