/* Beloved Community CSS stylesheet */
/* comments are placed inside these C-style markers -- do not nest! */
/* Indentation and spacing are arbitrary. Colons, semi-colons and curly-braces are required. */

/* these style selectors are special cases created for anchor <a> hyperlink elements*/
a:hover    {color:#FF0000;}
a:link     {color:#0000FF;}
a:visited  {color:#800080;}

/* these selectors are generic for these elements */
body       {background-color:#FFFBF0; color:#000000;}
h1         {font-family:serif; font-size:28pt;}
h2         {font-family:sans-serif; font-size:20pt;}
h3         {font-family:sans-serif; font-size:16pt;}

/*
   Next is an alternate "style" for writing stylesheets, splitting the parameters on multiple lines.
   It's especially useful when style rules are very long, and generally I prefer it because
   it is easier to  find the parameter you are looking for when you edit.
*/
p          {
            font-family:sans-serif;
            font-size:12pt;
            text-align:left;
           }

/* these are all class selectors, that is, apply to any element that uses one of their names in its class attribute */
.nav1      {font-family:serif; font-size:8pt;}
.nav2      {font-family:serif; font-size:10pt;}
.nav3      {font-family:sans-serif; font-size:8pt;}
.navhere   {font-family:serif; font-size:16pt; font-weight:bold;}

/* this selector is an id attribute, that is, id="search" added to the <FORM> element */
#search    {float:right; padding:16px 16px 0 0;}

/* This selector applies only to the <input> elements that are children of the element with id="search" */
#search input {font-family:sans-serif; font-size:10pt;}


