body {
  background-color: #ffffff;
  color: #000000;
}
a:link {
  color: #00c;
  background-color: transparent;
}
a:visited {
  color: #909;
  background-color: transparent;
}
a:hover {
  color: #513600;
  background-color: transparent;
}


<!-- hide these rules from legacy browsers and mobile devices -->


body {
  background-color: #ffffff;
  color: #000;
}
.wrapper {
  margin: 1% 5%;
  padding: 0;
  border: thin solid #000000;
}
h1 {
  background-color: #c0c0c0;    /* different color than content */
  color: #000000;
  margin: 0;
  padding: .2em 2%;
  font-family: sans-serif;
}
h2 {
  margin: .2em 0;
  font-family: sans-serif;
}
P  {
  font-family: sans-serif;
  text-align: justify;
}
.main {
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: thin solid #000000;
  border-bottom: thin solid #000000;
  color: #000000;
  font-family: sans-serif;
  background: #ffffff url(images/2col-bg2.png) 75% 0 repeat-y;
/* background-color value is for content background.
   Image is 2000px wide, ~25% is colored, where sidebar should be 
   (exact pixel count of colored area is actually closer to 26%).
   Position corresponds to right sidebar, repeat img vertically.
   Could be easily modified for left sidebar - just flip the image,
   change bg position to 25% and change .content to float:right.
*/
}
.content {
  width: 67%;         /* width of .main container */
  float: left;        /* left side of window */
  margin: 0;
  padding: 1% 2%;
  P: justified;
}
.sidebar {
  margin-left: 75%;   /* past content */
  padding: 1%;
  font-size: 90%;
}
.clear {
  clear: both;        /* extend height of .main to longest column */
  height: 1px;
  overflow: hidden;   /* prevent IE expanding the container */
  margin: 0;          /* keep flush with surrounding blocks */
}
.footer {
  background-color: #ffffff;  /* same bg color as h1 */
  color: #000000;
  margin: 0;          /* flush with .main */
  padding: 1% 2%;
  font-family: sans-serif;
}
.sidebar ul {
  margin-left: 1em;
  padding-left: 0;
}
} /* end @media rules */

