/* 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%;              /* % 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;      /* some padding for readability */
	margin: 0;               /* keep flush with adjacent containers */
	background-color: #FFFFFF;  /* light blue color will show behind the center column */
	color: #000;
	border-color: #999;      /* 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 */
	padding-top: 1.2em;
	padding-right: 1.5%;
	padding-bottom: 0.2em;
	padding-left: 1.5%;
}

} /* 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 {
  margin: 0;
  padding: 0;
  width: 100%;
  color: #000;
  font-family: Arial, Geneva, Helvetica, sans-serif;
}
h1 {
  font-size: 175%;
  margin: .3em;
  color: #FFFFFF;
}
h2 {
  font-size: 125%;
  margin: .2em 0;
  color: #32CB21;
  font-style:italic;
  font-family:times, times new roman, serif;
}
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 */
/*  background-image:url(images/SVNH-logo2.gif); */
/*  background-repeat:no-repeat; */
/*  background-position:top left; */
  background-color: #172787;  /* blue background color */
  margin: 0;
  padding-top: 2em;
  padding-bottom: 1em;
  font-size: 88%;
  text-align: center;
  }

/* Styles for the navbar on the left side. */

#nav {
float: left;
top: 263px;
left: 9px;
width: 185px;
text-align: right;
}

#nav p {
padding-right: 5px;
padding-left: 2px;
margin-bottom: 5px;
font-size: 1em;
}

#nav a:link, #nav a:visited {
color: #330099;
text-decoration: none;
}

#nav a:hover, #nav a.current {
color: #0066FF;
text-decoration: none;
}

span.arrow {
color: #33CC33;
font-size: 1.2em;
font-weight: bold;
}
/* page footer, uses body colors */
.footer {
  clear: both;             /* below all columns */
  width: 100%;             /* full window width */
  background-color: #cfcfcf;  /* light gray backgound color */
  margin: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  font-size: 88%;
  text-align: center;
}
.header p,
.footer p {
  margin-bottom: 0;        /* prevent gaps between divs in some browsers */
}

/* container for the 3 columns */
.outer-container {
  width: 100%;             /* full window width */
  margin: 0;               /* keep flush with adjacent containers */
  background-color: #32CB21;  /* color will show behind the right column */
  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-color: #FFFF00;  /* yellow color will show behind the left column */
  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;      /* some space from right window edge */
	font-size: 90%;
	padding-top: 0.3em;
	padding-right: 1.5%;
	padding-bottom: 0.3em;
	padding-left: 0;
}
.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 */
