/*
stylemain.css
main webpage style sheet
revised 10-23-2005 jwb -- added generic font family (sans-serif)
revised 11-13-2005 jwb -- added blockquote workaround (p.quote)
*/

BODY    { background: white;
            color: black;
            font-family: "times new roman", sans-serif;
            font-size: 18px; margin-top: 5%;
            margin-left: 5%;
            margin-right: 25%}

P          { font-family: verdana, sans-serif;
            font-size: 12px;
            line-height: 14pt; } /* spacing between lines of text */

P.quote   { font-style: italic;
            margin-left: 10%;
            margin-right: 10%; }  /* added 11-13-2005 jwb -- a blockquote workaround */
                                  /* useage tip: <p class="quote">                   */	    

UL        { font-family: verdana, sans-serif;
            font-size: 12px;
            line-height: 14pt; }

A:link    { color: blue;
            background-color: white }
A:active  { color: green;
            background-color: white }
A:visited { color: red;
            background-color: white }

div.box   { border: solid; border-width: thin; padding-left: 2em; padding-top: 1em; padding-bottom: 1em; padding-right: 1em; width: 30%} 
/* ^^^ draws a line box around text
*/

/* --- to be added

h1 {
   font-size: 40px;
   height: 200px;
}

.warning {
   color: Red;
   font-weight: bold;
}

-- */

.side {
	width: 150px;
	border: solid;
	border-width: 1px;
	padding-left: 1em;
	padding-right:1em;
	text-align: center;
	float: left;
	/* width: 25%; border: solid; border-width: thin; padding-left: 2em; padding-top: 1em; padding-bottom: 1em; padding-right: 1em; width: 80% */
	}

.overheardcontent {
	padding-left: 12em;	
	}	

#footer {
   background-color: white;
   font-size: 9px;
   font-style: italic;
   text-align: center;
   }

