/*
 * A CSS Design for my Java lab manual ("Espresso")
 */

/* BODY 
	The overall appearance is improved by adding some whitespace
	at the left and right sides.  I also like white backgrounds.
 */
/* changed from BODY  by Henry Walker to better match other CSC 161 readings */.rebelskyStyle {
  margin-left: 0.6in;   /* reduced from 1.2in by HMW */
  margin-right: 0.2in;  /* reduced from 0.5in by HMW */
  color: black;
  background-color: white;
  background-position: top left;
  background-attachment: fixed;
  background-repeat: no-repeat;
}*/  

/* HEADERS
	I like to use a sans-serif font for my headers.
 */
H1, H2, H3 {
  font-family: Helvetica, sans-serif;
  color: rgb(128,128,128);
  background-color: white;
}

/* PAGENOTES
	Notes at the bottom of the page should have less impact.  I 
	increase the margin and set the font color to grey.
 */
DIV.pagenotes {
  margin-left: 15%;
  color: gray;
  background-color: white;
  font-size: small;
}

/* ADDRESS 
	I like to see the author right-aligned
 */
ADDRESS {
  text-align: right;
}

/* P.LINKS
	I like to see the links in the header right in a sans-serif
	font.
 */
P.links {
  text-align: left;
  font-size: small;
  font-family: Helvetica, sans-serif;
}

/* P.sitetitle
 *   The title of the site
 */
P.sitetitle {
  text-align: right;
  font-size: small;
  font-family: Helvetica, sans-serif;
  font-weight: bold;
}
P.sitetitle A {
  color: dark gray;
}
