/*-----------------------------------------------------------------------------
    Cascading Stylesheet

    version:   1.0
    date:      01/03/07
    author:    Charles Samson
    email:     csamson@me.com
    website:   greenmeters.net

    -----------------------------------------------------------------------------*/

body {
  background-color: black;
}


a { text-decoration: none; color:orange; }
   a:hover {
        color: yellow;
    }
    a:visited {
        color: orange;
    }
    a:focus {
        color: yellow;
    }

a.home-link,
a.home-link:visited {
  color: #4A4A4A;
}
a.home-link:hover,
a.home-link:focus {
  color: #777777;
}
	
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  transform: scaleY(-1);
}


iframe {
    display: block;
    border-style:none;
}

.copy {
  max-width: 746px; /* was calc(36em + 170px); lock to px so it always constrains */
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
  text-align: left;
}

.blog details {
  margin-bottom: 1.75em;
}

.blog summary {
  cursor: pointer;
  list-style: none;
  color: #666666;
  font-family: courier, monospace;
}

.blog summary::-webkit-details-marker {
  display: none;
}

.blog summary::marker {
  content: "";
}

.blog summary::before {
  content: "▶";
  color: #666666;
  display: inline-block;
  width: 1.25em;
  margin-right: 0.25em;
}

.blog details[open] summary::before {
  content: "▼";
  color: #6A8AB8;
}

.blog .post-title {
  font-weight: bold;
}

.blog details[open] .post-title {
  color: #6A8AB8;
}

.blog .post-meta {
  color: #444444;
  font-weight: normal;
  font-size: smaller; /* stays a step under title/body; scales with iOS text adjust */
  margin-left: 0.75em;
}

.blog .post-meta-long {
  display: none;
}

.blog details[open] .post-meta-short {
  display: none;
}

.blog details[open] .post-meta-long {
  display: block;
  color: #555555;
  margin-left: 0;
  margin-top: 0.15em;
  text-align: right;
}

.blog .post-body {
  margin: 0.6em 0 0.4em 1.5em;
  color: #C990C0;
  font-family: courier, monospace;
}