/*

File: screen.css
Purpose: CSS styles for all media types, particularly screen
Contents:
  - Structure
    - Disclaimer
  - Colors and images
  - Typography
  - General
    - Form elements
Colors:
  - #006e3a (dark green)
  - #f3ea9b (yellow)
  - #f7f0b9 (yellow @ 70%)
  - #faf7d7 (yellow @ 40%)
  - #f0f0f2 (light purple)
  - #a4a3af (dark purple)
  - #e0aa83 (orange-ish)

*/



/*-------------------------------------------------------------------------------------------------
 Structure
-------------------------------------------------------------------------------------------------*/
body {
  margin: 0 auto;
  padding: 0 10px;
  position: relative;                            /* So things can be absolutely positioned within it */
  width: 900px;
}
.box {
  padding: 10px;
  padding-bottom: 30px;
}
.box.alone {
  float: left;
  margin: 0 auto 10px auto;
}
.box.alone + * {
  clear: both;
}
.box.alone img,
.box.complement img,
.box.featured img {
  display: block;                                /* So there isn't a font-size dependent space underneath the <img>; listed for each to keep transparency on Google map images */
}
.box.complement {
  float: right;
  margin: 0 0 10px 10px;
}
.box.featured {
  float: left;
  margin: 0 10px 10px 0;
}
#content {
  width: 680px;
}
#content h1 {
  margin-top: 10px;
  padding-top: 10px;
}
/*#content.vcard a.email {                        IE can't handle this, so a big work-around follows...
  float: right;
  margin-top: -2.7em;
}*/
#content.vcard div.email_container {             /* This extra <div> for IE */
  clear: both;
  margin-bottom: -2em;
  position: relative;
    right: 0;
    top: -2.7em;
  text-align: right;
}
#content.vcard div.box {
  margin-top: 1.4em;                             /* Align it with the first paragraph since the email screwed it up */
}
#footer {
  float: right;
}
#footer .vcard {
  display: none;
}
#footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#footer li {
  clear: none;
  display: block;
  float: left;
  margin-right: 2em;
}
#footer address {
  display: block;
}
#header {
  position: absolute;
    right: 10px;
    top: 0;
  margin-bottom: 1em;
  width: 200px;
}
#header h1 {
  margin: 0;
  padding: 0;
}
#header h1 img {
  display: block;
}
#nav {
  position: absolute;
    right: 10px;
    top: 144px;
  width: 200px;
}
#nav ol {
  margin: 0;
  padding: 0;
}
#nav ol a,
#nav ol span.current {
  display: block;
  padding: 5px 0;
}
#show-hide {
  display: none;
}
.to_top {
  margin: 1em 0;
}
.to_top a {
  padding: 0.2em 0.8em;
}


/*-------------------------------------------------------------------------------------------------
 Colors and images
-------------------------------------------------------------------------------------------------*/
a:link {
  border-bottom: 1px solid #006e3a;
  color: #006e3a;
}
a:visited {
  border-bottom: 1px dotted #777;
  color: #777;
}
a:hover,
a:active {
  background-color: #f3ea9b;
  border-bottom: 1px solid #000;
  color: #000;
}
body {
  background-color: #fff;
  color: #000;
}
.box {
  background-color: #eee;
  border: 1px solid #999;
}
.box.this_page {
}
.box img,
.box.map div.map {
  border: 1px solid #999;
}
a.disclaimer {
  border-bottom: 1px solid transparent;          /* So #disclaimer doesn't wiggle when :hover'ed/un-:hover'ed */
}
#disclaimer {
  background-color: #fff;
}
#footer .vcard a:link,
#footer .vcard a:visited,
#footer a.disclaimer:link,
#footer a.disclaimer:visited {                   /* Override regular <a> styles */
  background-color: transparent;
  border: none;
}
#header h1 {
  background-color: transparent;
  border: none;
}
#header h1 img {
  border: none;
}
h1 {
  /*background-color: #006e3a;
  border: 4px solid #000;
  color: #f3ea9b;*/
  border-bottom: 6px double #000;
}
h2 {
  border-bottom: 1px solid #000;
}
.this_page h2 {
  border-bottom: 1px dashed #000;
}
h2, h3, h4, h5, h6 {
}
html {
  background-color: #006e3a;
  background-image: url(/images/css/body_shadow.background.png);
  background-position: center center;
  background-repeat: repeat-y;
}
#nav ol {
  background-color: #006e3a;
  background-image: url(/images/css/sign.middle.png);
  background-position: center center;
  background-repeat: repeat-y;
}
/*#nav:after {
  content: url(/images/css/sign.bottom.png);
}
#nav:before {
  content: url(/images/css/sign.top.png);
}*/
#nav li {
  background-image: url(/images/css/sign.line.png);
  background-position: bottom center;
  background-repeat: no-repeat;
}
#nav li.first div {                              /* Extra <div> for the first item because it already has a background-image */
  background-image: url(/images/css/sign.line.png);
  background-position: bottom center;
  background-repeat: no-repeat;
}
/*#nav li:first-child {                          Just used regular classes (below) for wider support
  background-image: url(/images/css/sign.top.png);
  background-position: top center;
  background-repeat: no-repeat;
  padding-top: 25px;
}
#nav li:last-child {
  background-image: url(/images/css/sign.bottom.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  padding-bottom: 25px;
}*/
#nav li.first {                                  /* IE6 */
  background-image: url(/images/css/sign.top.png);
  background-position: top center;
  background-repeat: no-repeat;
  padding-top: 25px;
}
#nav li.last {                                   /* IE7, Opera */
  background-image: url(/images/css/sign.bottom.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  padding-bottom: 25px;
}
#nav ol a,
#nav ol span.current {
  color: #f3ea9b;
  text-decoration: none;
}
#nav ol a:link,
#nav ol a:visited {
  border: none;
}
#nav ol a.current,
#nav ol a:hover,
#nav ol a:active,
#nav ol a:focus,
#nav ol span.current {
  background-color: transparent;
  background-image: url(/images/css/sign.current.png);
  background-position: center center;
  background-repeat: no-repeat;
  /*background-image: url(../images/css/current.background.png);
  background-position: center right;
  background-repeat: no-repeat;*/
  border: none;
}



/*-------------------------------------------------------------------------------------------------
 Typography
-------------------------------------------------------------------------------------------------*/
body {
  font-family: Verdana, Arial, sans-serif;
}
#content p {
  line-height: 1.4em;
}
#content h1 {
  font-weight: normal;
}
a.disclaimer {
  font-size: smaller;
  text-align: right;
}
#footer .vcard {
  font-size: small;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
h1 {
  letter-spacing: 0.05em;
}
h4 {
  font-size: 1.4em;                              /* For use with ther serif font-family because the em-height is smaller than the sans-serif */
}
#nav ol {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: large;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
#nav ol {
  list-style-type: none;
}
.to_top {
  font-size: small;
  letter-spacing: 0.05em;
  text-align: right;
}


/*-------------------------------------------------------------------------------------------------
 General
-------------------------------------------------------------------------------------------------*/
a {
  text-decoration: none;
}
abbr,
acronym {
  border-bottom: none;
}
abbr:hover,
acronym:hover {
  cursor: help;
}
.addendum {
  color: #999;
}
address {
  font-style: normal;
}
.print_only {
  display: none;
}

/* Form elements  -------------------------------------------------------------------------------*/
input,
select,
textarea {
  background-color: #eee;
  border: 1px solid #999;
  font-family: Verdana, sans-serif;
  font-size: medium;
  padding: 5px;
}
input:focus,
input.button:focus,
input.button:hover,
select:focus,
textarea:focus {
  background-color: #f3ea9b;
  border: 1px solid #000;
}
input.button:focus,
input.button:hover {
  cursor: pointer;
}
input.checkbox,
input.radio {
  background-color: transparent;                 /*  IE  */
  border: none;                                  /*  IE  */
}
input.button {
  margin-right: 2em;
  width: 6em;
}
input.button:last-child {
  margin-right: 0;
}
div.buttons {
  margin-left: 7.1em;                            /* margin-right + padding-right + width of .fields li label {} */ /* Has an IE6 fix */
}
label.required {
  background-image: url(/images/css/required.png);
  background-position: 6em 0.2em;
  background-repeat: no-repeat;
}
.fields {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.fields li {
  margin-bottom: 0.4em;
}
.fields li label {
  display: block;
  float: left;
  margin-right: 0.5em;
  padding: 5px 0.6em 2px 0;                      /* For the background-image for .required fields */
  width: 6em;                                    /* Has an IE6 fix */
}
.stop {
  background-color: #f3ea9b;
  border-bottom: 1px dotted #000;
}
#message {
  background-position: center left;
  background-repeat: no-repeat;
  min-height: 25px;
  padding-left: 25px;
}
#message.error {
  background-image: url(/images/css/send.error.png);
}
#message.fix {
  background-image: url(/images/css/send.fix.png);
}
#message.processing {
  background-image: url(/images/css/send.processing.gif);
}
#message.success {
  background-image: url(/images/css/send.success.png);
}
