/* BLACK & WHITE VERSION */

body {
  background-color: #000;
  background-image: url('../images/bg_hikingShoes.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;   /* THIS makes it fill the screen */
  font-size: 20px;
  font-family: "Times New Roman";
  margin: 0;
}

p {
  line-height: 1.6em;
}

img {
  max-width: 100%;
  height: auto;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.right {
  float: right;
  margin-left: 1em;
}

.left {
  float: left;
  margin-right: 1em;
}

.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media only screen and (min-width: 600px) {
  .small {
    max-width: 60%;
    height: auto;
  }
}

.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
  color: #555;
}

/* LINKS */
a {
  color: #000;
}

a:hover { 
  background-color: #fff;
  color: #000;
  text-decoration: underline;
}

/* HEADINGS */
h1, h2, h3, h4, h5 {
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
}

/* MAIN CONTAINER */
#container {
  margin: 3em auto;
  width: 90%;
  max-width: 700px;
  background-color: #fff;
  color: #000; 
  outline-color: #000;
  outline-style: ridge;
  outline-width: 4px;
  outline-offset: 0;
}

#content {
  padding: 10px 5% 20px 5%;
}

/* HEADER */
#header {
  background-color: #000;
  padding: 0 5%;
  border-color: #000;
  border-style: ridge;
  border-width: 0 0 4px 0;
}

#header ul {
  list-style-type: none;
  padding: 0.5em 0;
  margin: 0;
}

#header li {
  font-size: 1.2em;
  display: inline-block;
  margin-right: 1.5em;
  margin-bottom: 0.2em;
  margin-top: 0.2em;
}

#header li a {
  color: #fff;
  text-decoration: none;
  background-color: inherit;
}

#header li a:hover {
  text-decoration: underline;
}

/* POST LIST */
#recentpostlistdiv ul,
#liveblogsDiv ul {
  list-style-type: square;
  font-size: 1.2em;
  padding-left: 2em;
}

.moreposts {
  font-size: 0.8em;
  margin-top: 0.2em;
  color: #444;
}

/* NEXT / PREV */
#nextprev {
  text-align: center;
  margin-top: 1.4em;
}

/* DISQUS */
#disqus_thread {
  margin-top: 1.6em;
}

/* FOOTER */
#footer {
  font-size: 0.8em;
  padding: 0 5% 10px 5%;
  color: #444;
}