/*  pc.css

PC css

Peter Forbes
23 Jan 2002

*/

body {
  font-family: Verdana, Georgia, Arial, Helvetica, sans-serif; 
  font-size: small;	/* There are 7 different sizes  xx-small, medium to xx-large */ 
  background-color: white;
}

a  {
	text-decoration: none; /* gets rid of the underline in links */
	color : #0000FF
}

/* a:hover  {
	text-decoration: underline; 
	color : #FF9933;
} */

/* Positioning
------------------------------------------------------------------------------*/

/* Centered */
body {
  margin: 10px auto; 
  width: 727px;
}
/* float this on the right */
#links {
   float: right;
   margin: 10px;
   padding: 10px;
}
/* stack these on the left */
#resources, #sites {
   margin: 10px;
   padding: 10px;
   float: left;
}

/* Lists
------------------------------------------------------------------------------*/

li {
  list-style: none; // remove bullets
}

div ul { margin: 0; padding: 0; }
div li {
  font-weight: bold;
  margin-bottom: 0.4em;
}
div li li {
  font-weight: normal;
  margin-bottom: 0;
}

li a {
  display: block;
  margin: 0;
  padding: 0.1em 0.4em;
  width: auto;
}
/* Indent second level items */
div li li a { 
  padding-left: 0.7em;
}

/* highlight on hover */
li a:hover {
  background: #FF9933;
}

/* Headings
------------------------------------------------------------------------------*/
h2 {
  border-bottom: 1px solid black;
}
