/* THIS IS THE MAIN STYLE SHEET FOR 'COMMON-TONE MODULATION' */

html, body 
	{
	margin: 0; padding: 0; 
	}
	
body
	{
	min-height: 100vh;
	background: #3d3d3d linear-gradient(to bottom, white 299px,
transparent 299px) no-repeat; /*   previous way of doing it:      background: url(images/bodyimage.gif) repeat-x; */
	}	


#top /*main div for whole page, horizontally centered*/
	{
	position: relative;
	width: 1024px;
	padding-top: 1px; padding-bottom: 0px; padding-right: 0px; padding-left: 0px;  
	margin-top: -1px; margin-bottom: 0px; margin-right: auto; margin-left: auto;	
		/* padding-top and margin top take care of Opera bug that 'lowers page' if fed a long page */
	border: none;	
	background: transparent;
	}


#logo  /* image-replacement div, with li's (for actual text) and image-containing span */
    	{
     	position: relative;
     	width: 520px;
     	height: 160px;
     	margin-top: 16px; margin-right: auto; margin-bottom: 0px; margin-left: 97px;
		padding: 0;
     	text-align: center;
     	overflow: hidden;
     	background: transparent;
     	border: none;
     	}

		#logo span
			{
			background: url(../../images/logo.jpg) no-repeat;
			position: absolute;
			top: 0; 
			left: 0;
			width: 100%;
			height: 100%;
			}
		
		#logo h1 
			{			
			padding: 0; 
			text-align: center;
			margin-top: 50px; 
			margin-bottom: 6px;
			/*margin-left: -15px;
			line-height: 150px;  */
			font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
			font-size: 29px; 
			font-weight: normal;
			color: #8A3404;
			/*border: 1px solid green;*/
			}
	



/* ------------LEFT DIV-------------- */

div#left   /* sidebar div*/
	{
	position: absolute;
	left: -203px; top: 128px; bottom: 10px;    /* The reason why this works is precisely because #left is absolutely positioned 
											   RELATIVE to #main:  whatever #main's 'auto' bottom ends up being, #left's bottom
											   will always be 10px higher.  */
	width: 238px; 
	border: 1px solid #605D5C;                  
	margin-top: 0; margin-bottom: 0;
	padding: 0;
	background: #B3774B url("../images/left_logo.jpg") no-repeat;  
	z-index:2;
	font-family: "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Lucida, Verdana, Arial, Helvetica, sans-serif;  
	color: #09090A;
	}
	

* html #left {   /*  sidebar div for IE6 - see: <http://www.alistapart.com/articles/conflictingabsolutepositions/> */
height: 1500px;
height: expression(eval(document.compatMode &&
document.compatMode=='CSS1Compat') ?
(parseFloat(this.parentNode.offsetHeight)-140)
:(parseFloat(this.parentNode.offsetHeight)-138));}


div#left h2 
	{
	font-variant: small-caps; 
	font-size: 23px; 
	font-weight: 900;
	text-align: center;
	padding-top: 125px;
	margin: 0;
	color: #09090A;
	}

div#left h3
	{
	font-variant: small-caps; 
	font-size: 18px; 
	font-weight: 900;
	text-align: center;
	padding: 0;
	margin: 0;
	}
	
div#left h3#format
	{
	font-variant: normal; 
	font-size: 17px;
	margin-top: 20px;
	}	

div#left p
	{
	font-size: 14px; 
	margin-left: 11px; margin-right: 11px; 
	margin-top: 20px; 
	margin-bottom: 0;
	padding: 0;
	text-align: justify;
	line-height: 121%;
	font-family: "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Lucida, Verdana, Arial, Helvetica, sans-serif;  
	color: #09090A;
	}
	

div#left span.imp
	{
	padding-left: 7px;
	}



/*	______________ Left Links ____________________________ */
	
div#left ul#highest
	{
 	position: absolute;
	top: 444px; 
	left: 64px;
	}


div#left ul			/* Note that Georg defines the margins and padding for all id's of ul here, rather than within each id  */
	{				/*   The uls, left on their own, actually leave fairly large margins/padding between their border edges */
	margin: 0;		/*   and the li outer edges. */
	padding: 0;
	}


div#left ul#lowest
	{
	position: absolute;
	bottom: 154px;
	left: 64px;
	}
	


div#left ul li.leftlinks, #left ul li.leftlinks_th
	{
	list-style-type: none;
	margin: 0;
	padding: 0 0 10px 25px;
	background: url(../../images/favicon2.jpg) no-repeat left 30%;
	text-align: left;
	font-family: Verdana, Geneva, Arial, sans-serif;
	font-size: 20px;
	color: #000000;
	}	

		
div#left ul li.leftlinks_th
	{
	margin-top: -15px;
	background-image: none;
	}
	

	
	
	
	
div#left ul li.leftlinks a.left_links
		{
		margin: 0;
		padding: 0;
		background-color: transparent;
		border: none;
		text-decoration: none;
		outline: none;
		}   



div#left a, div#left a.left_links, div#left a.left_links:link, div#left a.left_links:visited 
			{
			color: #CBC5A0; 
			background-color: transparent;
			text-decoration: none;
			outline: none;
			}
			
div#left a.left_links:hover, div#left a.left_links:active, div#left a.left_links:focus 
			{
			color: #F9F5E8; 
			background-color: transparent;
			text-decoration: none;
			outline: none;
			}





/*  ---- main div -----  */

#main  /*right div*/
	{
	position: absolute;
	left: 211px; top: 200px; right: 23px; 
	width: 790px; 
	bottom: auto;
	z-index: 1;
	background: #CBC5A0;
	margin: 0;
	padding: 0;
	border: none;
	min-height: 1200px;
	}
* html #main {height: 1200px; /* min-height for IE5 */}

#main div#title_div  /* image-replacement div, with h1 for text, and image-containing span */
    	{
     	position: absolute;
     	width: 790px;
     	height: 110px;
     	margin: 0;
		padding: 0;
     	text-align: center;
     	overflow: hidden;
     	background: transparent;
     	border: none;
     	}

#main span#title
			{
			background: url("images/title.png") no-repeat;
			position: absolute;
			top: 0; 
			left: 0;
			width: 100%;
			height: 100%
			}
		
#main h1#title_text
			{			
			padding: 0; 
			text-align: center;
			margin-top: 50px; 
			margin-bottom: 6px;
			font-family: "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Lucida, Verdana, Arial, Helvetica, sans-serif;
			font-size: 24px; 
			font-weight: normal;
			color: #8A3404;
			}			
			
#main h1
	{	
	font-family: "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Lucida, Verdana, Arial, Helvetica, sans-serif;  
	font-variant: small-caps; 
	font-size: 36px; 
	font-weight: 900;
	text-align: center;
	padding-top: 31px;
	padding-bottom: 0;
	margin: 0;
	color: #C5683B;
	}


#main h2
	{
	font-family: "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Lucida, Verdana, Arial, Helvetica, sans-serif;  
	font-variant: small-caps; 
	font-size: 28px; 
	font-weight: 900;
	text-align: center;
	padding: 0;
	margin: 0;
	color: #C5683B;
	}
	
#main h3
	{
	
	font-family: Verdana, Geneva, sans-serif;
	font-size: 18px;
	color: #605D5C;
	line-height: 135%;
	font-weight: 900;
	text-align: center;
	margin: 39px auto 45px auto;
	padding: 0;
	}






/* --------------------------- link to PDFINFO ------------------------- */

#main ul#pdf
	{
	width: 264px;
	margin: 142px 0 24px 75px; /* top was 68px, bottom was 0 */
	overflow: visible;
	list-style: none;
	padding: 0;
	background-color: transparent;
	}   
	
#main ul#pdf li	
	{
	width: 264px; 
	margin: 0 auto; 
	padding: 0;
	list-style: none;
	}

#main ul#pdf li a
	{
	display: block;
	width: 220px;
	height: 100%;
	background: #CBC5A0 url('../../images/PDF-bar.png') no-repeat 0 50%;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: black; 
	text-decoration: none;
	outline: none;
	margin: 0;
	padding-left: 36px; padding-right: 0; padding-top: 0; padding-bottom: 0
	}
	
#main ul#pdf li a:hover
	{
	width: 264px;
	color: #C5683B;
	text-decoration: none;
	outline: none;
	}	
	



/* --------------------------- end of link to PDFINFO ---------------------- */













	
#main p
	{
    /*width: 640px; */
	margin-top: 40px;   
	margin-left: 75px;   
	margin-right: 75px;
	margin-bottom: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;  
	font-size: 16px;  
	color: black; 
	line-height: 135%;
	}

#main p#hi
	{
	margin-top: 0;  
	padding-bottom: 19px 
	}


#main p.first
	{
	margin-top: 20px; 
	}



#main p.bigbreak2
	{
	margin-top: 140px;
	margin-bottom: 14px;
	}


#main p#about
	{
	margin-top: 36px;
	margin-bottom: 55px;
	font-size: 15px;
	font-style: italic;
	line-height: 160%;
	color: #AF4205; 
	}



#main span.underline
	{
	text-decoration: underline;
	}

#main span.nowrap
	{
	white-space: nowrap;
	}
	
#main #schumann
	{
	width: 591px; height: 500px; 
	background: url(images/schumann.gif) no-repeat;
	background-color: #CBC5A0;
	margin: 45px auto 0 auto;
	padding-bottom: 25px;
	}
	
#main p#aldwell
	{
	width: 531px;
	margin-top: 40px;
	margin-right: 132px;
	margin-bottom: 0px;
	margin-left: 127px;
	}	
	
#main span.ml
	{
	font-size: 12px;
	color: #C5683B;
	}	
	
#main #Ab-ab
	{
	width: 500px; height: 255px; 
	background: url(images/Ab-ab.png) no-repeat;
	background-color: #CBC5A0;
	margin: 45px auto 0 auto;
	padding-bottom: 25px;
	}
	
#main #ravel
	{
	width: 577px; height: 183px; 
	background: url(images/ravel.png) no-repeat;
	background-color: #CBC5A0;
	margin: 45px auto 0 auto;
	padding-bottom: 25px;
	}
	
	
span.arrow
	{
	display: inline-block;
	height: 12px;
	vertical-align: 10%;
	margin-top: -5px;
	}	
	
#main p.step
	{
	margin-bottom: 68px;
	}	

span.indent1
	{
	margin-left: 24px;
	}

span.indent2
	{
	margin-left: 118px;
	}	 	
	
span.indent3
	{
	margin-left: 19px;
	}
	
span.indent4
	{
	margin-left: 7px;
	}	


#sig
	{
	width: 200px; height: 58px;
	background-image: url(../../images/sig_green.png); 
	background-repeat: no-repeat;
	background-color: #CBC5A0;
	margin-top: 0px;
	margin-left: 57px;
	margin-right: auto;
	margin-bottom: 050px; /* was 70px; */   
	padding: 0;
	}



#main a.about	
	{
	display: inline-block;
	width: 27px; height: 22px; 
	vertical-align: -.4em;
	margin: 0;
	padding: 0;
	background: url(../images/about_link_icon2.png) no-repeat; 
	background-color: transparent;
	border: none;
	text-decoration: none;
	outline: none;
	}