/*    Cascading Style Sheet definitions for Mullens Web 

  Created:        10 Nov 2008
  Last Modified:  23 Nov 2008
                  28 Nov 2008 dgm changed h3 color to "black"
                  22 Dec w008 dgm added margins for body
                  28 Feb 2009 dgm inclluded "center-image" definition


*/


html, body {               /* Define text nxd background colors for document body  */
   color: black;
   background: lightblue;
   
 /* margin-left: 10%; margin-right: 10%; */  /* Define margins for body */
}

/*  definition of hot link background and text colors   */

a:link {                   /* Define background & foreground colors for (hot) links  */
   background: #fff;
   color: green;
}

a:visited {                /* Define background & foreground colors for visited links  */
   background: #fff;
   color: brown;
}

a:hover     {color:black}
a:active    {color:blue}

/* centering an image using block */

IMG.center-image {
    display: block;
    margin-left: auto;
    margin-right: auto } 

/*   definition of header fonts    */

h1,h2,h3,h4
{
font-family: "comic sans ms", arial, 'sans serif'; 
}

h2
   {
   font-size:100%;     /* normal font size */
   color:black;
   font-weight:100;
   }

h3
   {
   margin:0;
   color:black;
   font-size:150%;     /* bigger font */
   }
   
h4
   {
   font-size:200%;     /* even bigger font */
   color:red;
   font-weight:200;
   }
   
/*  define paragraph classes for right & center alignment  ( left is default )  */
   
p.right {text-align: right}
p.center {text-align: center}


/*  The style rule below will match all input elements that have a type attribute with a value of "text"  */

input[type="text"] {background-color: blue}


/*  End of Cascading Style Sheet Definitions  */