/***


FILE:   default.css
DATE:   January 2006
AUTHOR: Francis J. Skettino
DESC:   Open Source Web Design CSS


Element Order Guide: (not complete)
   display, float, width, height, margin, 
   padding, border, background, font, text, color


***/



/*** START GENERAL ***/

body
{
    margin: 5;
    padding: 5;
    background-color: #fff;
    font-family: arial, helvetica, sans-serif;
    /*
    text-transform: lowercase;
    */
}



h2
{
    font-size: 1.4em;
    color: #434343;
}

h2 a,
h2 a:visited
{
    color: #434343;
    text-decoration: none;
}

h2 a:active,
h2 a:hover
{
    color: #74a8f5;
}

p
{
    color: #666699;
}

em
{
    font-style: normal;
    font-weight: bold;
}

a:link,
a:visited
{
    color: #666699;
}

a:active,
a:hover
{
    color: #99CC00;
}

img {
border: 0;
/*display: block;*/
}

hr {
 height: 1px;
text-align: left;/*this will align it for IE*/
margin: 0 auto 0 0; /*this will align it left for Mozilla*/
}

INPUT, TEXTAREA {
/*background: #99CC00;*/
color: #666699;
font-weight: bold;
/*font-style: italic;*/
font-size: 25px;
/*font-family: serif;*/
}



/*** END GENERAL ***/



