
/* My CSS File */ 
/* Define body background color & font */
 /*choose arial,helvetica or times,roman or courier,monospace*/ 
body 
{ 
font-family: Verdana; 
font-size: 15pt; 
color:#000000; 
background-color: #FFFF33; 
background-image: url('logo.gif'); 
background-repeat: repeat-y 
} 
h1 
{ 
color: #669933; 
font-size: 25pt; 
font-weight: bold; 
font-style: italic; 
margin-left: 2.5in; 
margin-right: 1in; 
}

h2 
{ 
color: #000000; 
font-size: 15pt; 
font-weight: bold; 
font-style: italic; 
margin-left: 2.5in; 
margin-right: 1in; 
} 

h3 
{ 
color: #666666; 
font-size: 12pt; 
font-weight: bold; 
font-style: italic; 
margin-left: 2.5in; 
margin-right: 1in; 
} 

h4 
{ 
color: #999999; 
font-size: 8pt; 
font-weight: bold; 
font-style: italic; 
font-family: arial,helvetica; 
margin-left: 2.5in; 
margin-right: 1in; 
} 

p 
{ 
color: black; 
font-size: 10pt; 
font-weight: bold; 
font-style: italic; 
margin-left: 2.5in; 
margin-right: 1in; 
} 

/* Create a class of link named 'normal' */ 

a 
{ 
  font-family: arial,helvetica; 
  font-size: 10pt; 
font-weight: bold; 
text-decoration: underline; 
} 

a:link 
{ 
color: green; 
} 

a:visited 
{ 
color: #orange; 
} 

a:hover 
  { 
color: gray; 
} 

a:active 
{ 
color: #black; 
} 
