body { 
    background-color: white;
    text: black;
    vlink: purple;
    alink: red;
    link: blue;
}


h1.heading {
	/* Used to display page headings (eg. "Search results", "[Notebook] for [date]") */
  font-weight: bold;
  font-size: large;
  text-decoration: none;
}

h3.status {
  /* Used to display status messages (eg. "Entry added.") */
}

p.alert {
	/* Used to display alerts (eg. "No entries") */
  color: red;
  font-weight: bold;
  font-size: larger;
}

a.nav {
   /* Used when rendering date navigation bars */
   text-decoration: none;
}

/* Entry rendering. */

.entryAuthor {
	/* Used to display the name of the author of a particular
  	   NewsBruiser entry */
   font-weight: bold;
}

a.permalink {
	/* Used to display the link to a particular NewsBruiser entry */
   text-decoration: none
}
    
.entryDate { 
	/* Used to display the date of a NewsBruiser entry */
   font-weight: bold;
   color: 005500;
}

.entryText {
	/* Used to display the text of a NewsBruiser entry */
}

/* Index */

.notebookPanel {
	/* Used to display a notebook's panel. */
}

.notebookHead {
	/* Used to display the notebook's name and mantainer. */
	color:005500;
}

.notebookSubhead {
	/* Used to display the notebook's description. */
	text-align:center;
	border-width:1;
	border-style:dotted;
}

.calendarSubpanel {
	/* Used to display the panel containing the calendar */
	background-color:F0F0F0;
}

.entrySubpanel {
	/* Used to display the panel containing the most recent entry */
	background-color:F0F0F0;
}

.linkSubpanel {
	/* Used to display the panel containing links to the CGIs for a
           notebook. */
	background-color:EEEEEE;
}

/* Calendar */

.calendarMonthName {
	/* Used to display the month and year. */
   font-size: normal;
   font-weight: bold;   
   text-align: center;
}

.calendarDayOfWeek {
	/* Used to display the name of days of the week. */
   font-size: small;
   font-weight: normal;  
}

.calendarDate {
	/* Used to display the a date (possibly linked to the list of
	entries for that date) */
   font-size: small;
   font-weight: normal;  
}

/* Today In History */

.yearsAgo {
	/* Used to display the "n years ago:" header */
}

.historicEntryText {
	/* Used to display the first portion of an historic entry */
    font-style: italic;
}

    


