/* 
main.css
Version 0.2 changed background color to mostly grey  2009-08-05
Version 0.1

General CSS Stylesheet Definitions Common to Circuitous Root
Intended to be incorporated into other CSS stylesheets.
Requires: CSS Level 2
          common.css

Copyright 2006-2009 by David M. MacMillan and Rollande Krandall.
Based on earlier work by David M. MacMillan that was copyright 2003-2005.

If you wish to consider this a document rather than a program, then
this work is licensed under the Creative Commons Attribution-ShareAlike
License.  To view a copy of this license, visit
   http://creativecommons.org/licenses/by-sa/2.0/
or send a letter to
Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA.

If you wish to consider this a program rather than a document, then
this work is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
   
You should have received a copy of the GNU General Public License
along with this program; if not, write to the
Free Software Foundation, Inc.
59 Temple Place, Suite 330
Boston, MA  02111-1307
USA

Circuitous Root is a registered trademark of David M. MacMillan and 
Rollande Krandall

Presented originally by Circuitous Root (R). http://www.CircuitousRoot.com/

*/

@import "common.css";

/* HTML is the root container.  Set it to a neutral white,
   and then (below) set BODY to the actual background color for the page.
   This way the page-as-intended is clearly separated from a too-wide
   browser window's extra space.
*/ 
HTML {
   background-color: white
   }

BODY {
/* former and other colors:
    #99CCFF; a very readable light blue
    #b0b0bf; silver-grey with a hint of blue
    #b0bfb0; actually very readable, but looks like old hospital green
    #b0b7bf; silver-grey; push in only a little green, and more blue
    #e5d78a; a decent very yellowish old paper approximation
    #f0e0b0; lighter old paper approximation
*/
   background-color: #f0e0b0
   }

A:link    { color: black}
A:visited { color: black}
A:hover   { color: blue}

SUP {font-size: xx-small; font-family: sans-serif}

/* This section only exists on the main page: */
DIV.lemurcomlinks {
   clear:        left;
   font-size:    small;
   text-align:   left;
   margin-right: 10%;           /* outside of the border */
   margin-top: 5em;
   padding:      1em;           /* between the border and the text */
   border:       inset medium   /* opposite of the "legal" div */
   }

/*
Version 0.1 lightened up background to 99CCFF
Version 0.0 initial
*/
