                /* Berryhill CSS file */

         /* Define body background color & font */

body
{
  font-family: arial,helvetica;
  font-size: 10pt;
  background-color: #CCFFFF;
}

         /* Create a class of link named normal */


a.normal
{
  font-family: arial,helvetica;
  font-size: 10pt;
  font-weight: bold;
  text-decoration: underline
}
a.normal:link
{
  color: #8B4513;
}
a.normal:visited
{
  color: #8B4513;
}
a.normal:hover
{
  color: #FF0000;
}
a.normal:active
{
  color: #8B4513;
}

             /* Create a class of link named navbar */

a.navbar
{
float: top;
width: 100px;
padding: 6px;
border-right: 1px soild white;
font-family: arial,helvetica;
font-size: 10pt;
font-weight: bold;
text-decoration: none;
text-align: center;
}

a.navbar:link
{
color: black;
background-color: #CAE1FF;
}

a.navbar:visited
{
color: black;
background-color: #CAE1FF;
}

a.navbar:hover
{
color: white;
background-color: #00BFFF;
}

a.navbar:active
{
color: red;
background-color: #FFE4E1;
}

                 /* Define a heading named h1 */         

h1 {
   color: red;
   font-size: 15pt;
   text-align: center;
   font-weight: bold;
   font-style: italic;
   font-family: arial,helvetica;
   }



                /* Define a heading named h2 */

h2
{
  color: green;
  font-size: 12pt;
  text-align: center;
  font-style: normal;
  font-family: arial,helvetica;
} 



                /* Define a paragraph named p */

p.green
  {
   font-size: 11pt;
   font-family: times,roman;
   color: green;
   margin-left: 1in;
   margin-right: 1in;
   text-align: center;
   font-weight: bold;
}

                /* Define a paragraph named p.box */

p.box
{
width: 300;
height: 150;
align: center;
background-color: #003300;
color: white;
border: 2px dashed teal;
padding: 7px;
text-decoration: italic;


              /* Define a heading named h3 */
h3
{
color: green;
font-size: 13pt;
text-align: center;
font-weight: bold;
font-style: italic;
font-family: arial,helvetica;
}
             /* Define a heading named h4 */
h4
{
color: red;
font-size: 13pt;
text-align: center;
font-weight: bold;
font-style: italic;
font-family: arial,helvetica;
}