/*
	harp table is actually a list
	it needs relative position in order for the pedals' absolute position to work
*/
div#harptable {
	position: relative;
	margin-left: 3em;
	margin-top: 1.5em;
	height: 72px;
/*	border: 1px solid green; */
}
#harptable ul {
	clear: left;
	list-style: none;
	margin: 0;
}
#harptable li {
	float: left;
	margin: 0;
	width: 1.7em;
	height: 24px; /* 1.5em */
	text-align: center;
/*	border: 1px solid green;*/
}

/* background for natural row */
#harptable li.mid {
	background: url(../pix/harp-horiz.gif) 50% 50%;
}

/* styles for divider column between b and e pedals (between feet) */
#harptable li.narrow {
	width: 1em;
}
#harptable li.vertdiv {
	background: url(../pix/harp-vert.gif) 50% 50%;
}
#harptable li.cross {
	background: url(../pix/harp-cross.gif) 50% 50%;
}

/* font for accidental symbols */
.acci {
	font-family: Arial Unicode MS, Lucida Sans Unicode;
	font-size: 1.2em;
}
.accismall {
	font-family: Arial Unicode MS, Lucida Sans Unicode;
}

/*
	black pedal rectangles which will be draggable
	positioned absolutely within #harptable
*/
div.pedal {
	position: absolute;
	width: 0.6em;
	height: 21px; /* 1.3em */
	top: 26px; /* 1.6em */
	background-color: black;
	cursor: url(../pix/updown.cur), move;
	display: none;
}
div#d-ped {
	left: 2.2em;
}
div#c-ped {
	left: 3.9em;
}
div#b-ped {
	left: 5.6em;
}
div#e-ped {
	left: 8.4em;
}
div#f-ped {
	left: 10.1em;
}
div#g-ped {
	left: 11.8em;
}
div#a-ped {
	left: 13.5em;
}

img#spkr {
	margin-top: 3px;
	cursor: pointer;
}

div.buttons {
	clear: left;
	margin-left: 3.4em;
}

.buttons button {
	font-size: 1em;
	cursor: pointer;
	margin-top: 0.5em;
	border: 1px solid grey;
	padding: 0.3em;
	background-color: #eee;
}

#harpex {
	margin-left: 3.6em;
}

/* stuff for popout window */

body#popbody {
	background: none;
}

div#popcontent {
	margin: 10px;
	width: 340px;
}

#popcontent h1 {
	font-size: 1em;
	font-weight: normal;
	text-align: center;
}

#popcontent #pagefoot {
	padding: 16px;
	text-align: center;
}
