/* stylesheet.css */   
     
         /* Page background */
    body { 
         background-image: url("backgrounds/smallfleshcanvas.jpg");
         background-repeat: repeat;
		 margin-top: 0px;
}
         /* Regular links */
 
    a:link{        
        text-decoration:underline;
        color:#784331; /* Reddish Brown */
    }
    a:visited{
        color:#784331; /* Reddish Brown */
    }
    a:hover{
        color:#576690; /* Medium Blue */
    }
    a:active{
        color:#CD9C76; /* Flesh */
    }
    
    /* Special links */
  
     a.special:link{
        color:#784331; /* Reddish Brown */
        text-decoration:none;
        font-family:Pristina;
     }
     a.special:visited{
        color:#784331; /* Reddish Brown */
        text-decoration:none;
        font-family:Pristina;
     }
     a.special:hover{
        color:#576690; /* Medium Blue */
        text-decoration:underline;
        font-family:Pristina;
     }
     a.special:active{
        color:#CD9C76; /* Flesh */
        text-decoration:underline;
        font-family:Pristina;
     }

     /* Paragraph style for Song List */
     p.songlist{
	color:#784331; /* Reddish Brown */
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 14px;
	font-style: normal;
	line-height: 1.5em;
     } 
