/* toc.css */

BODY {
	background-color:green;
}

A:link{color:yellow; font-weight:bold; }
A:visited{color:gold; font-weight:bold; } 
A:hover{color:orange; font-weight:bold; }   
A:active{color:red; font-weight:bold; }  

B, STRONG, I, EM, CITE, VAR, TT, CODE, KBD, SAMP, 
IMG, SPAN { display: inline }

H2, H3, H4, H5, H6 { margin-bottom: 1em; } 

B, STRONG { font-weight: bolder }  /* relative to the parent */
I, CITE, EM, VAR, ADDRESS, BLOCKQUOTE { font-style: italic }

PRE { 
	white-space: pre;
	font-family:courier;
}

/* MAINTOC (for the main table of contents in the lefthand frame)
TOPLIST (for tables of contents, lists of festival names, etc.) */ 

*/

#mytitle {
}

.rv_hdr1 {
	text-align: left;
	font-weight: bold;
}

.rv_hdr2 {
	text-align: left;
}

.cd, .book {
	font-style: italic;
}

/* .song, .poem {
}
*/

/* kinds of paragraphs */
/* Note: p.j and p.ri are deprecated; p.body and p.sig are more to the point */
p.body, P.j {  			/* justified paragraphs */
	text-align: justify 
}

p.sig, P.ri { 
	text-align: right;	/* used for signatures */
	font-style: italic;
}
p.quote, p.q, p.blockquote {  				/* for quoted paragraphs */
	margin-left: 10%;
	margin-right: 10%
}
	
/* box around text */
DIV.BOX {
		padding-left: 2%;
		padding-right: 2%;
		border: solid;
		border-width: thin; width: 100% }

.SONG {
		margin-left: 15%;
		margin-right: 15%;
		padding-left: 2%;
		padding-right: 2%;
		background: white;
		font-size: 90%;
}
.intro {
		margin-left: 10%;
		margin-right: 10%;
		font-size: 95%;
		font-style: italic;
}

ADDRESS { margin-left: 3em }

OL { list-style: decimal }
MENU { margin: 0 }              /* tight formatting */

DT { margin-bottom: 0 }
DD { margin-top: 0; margin-left: 3em }

HR { border-top: solid }        /* 'border-bottom' could also have been used */

/* experimental chord-symbol code (courtesy CSS & Webdesign Workshop, http://wellstyled.com/index.html) */
.chordline {
       line-height:2.0
       }
    .chordline span {
       position:relative;
       }
    .chordline span strong {
       position:absolute;
       top:-1em; left:0;
       font:bold 75%/1 sans-serif;
       color:green;
       }
    .chordline span strong span {
       display:none;
       }

/* like I even care about setting link/visited/active colors
/* A:link { color: blue }          /* unvisited link */
/* A:visited { color: red }        /* visited links */
/* A:active { color: lime }        /* active links */

