﻿/*
 * Author: Michael H. Shacter
 * Idea borrowed from Bert Bos <bert@w3.org>, but with a
 * different implementation.
 * The chief advantage of this implementation is that the
 * degree of shadow can be easily modified by adjusting the
 * left and top attributes of the 'section' div
*/

.shadow	{
	margin-left:2em; 
	margin-right:2em; 
	background-color:#000080;
}

.sectionabove	{
	border:1px solid #000080; 
	position:relative;
	left:-0.5em;
	top:-0.5em;
	padding-left:1.5em; 
	padding-right:1.5em; 
	padding-top:0.5em; 
	padding-bottom:0.5em; 
	background-image:url('../images/sheetmusic.jpg'); 
	}
	
.sectionbelow	{
	border:1px solid #000080; 
	position:relative;
	left:0.5em;
	top:0.5em;
	padding-left:1.5em; 
	padding-right:1.5em; 
	padding-top:0.5em; 
	padding-bottom:0.5em; 
	background-image:url('../images/sheetmusic.jpg'); 
	}	


