h1, h2{
	margin: 20px 5%;
	font-family: 'Cinzel', serif;
	color: #432;
}

#content{
	display: flex;
	flex-direction: column;
}

#page_header h2{
	margin: 0;
}

#tunes{
	display: flex;
	flex-direction: row;
	flex-grow: 0;
	width: 90%;
	margin-left: 5%;
	margin-bottom: 30px;
}

#tune_list{
	flex-grow: 1;
	width: 25%;
	max-width: 25%;
	overflow-y: auto;
}

.tune_type{
	align-self: flex-start;
	width: 100%;
	box-sizing: border-box;
}

.ui-accordion-content{
	padding-left: 5% !important;
	padding-right: 5% !important;
}

.tune, .book{
	font-family: 'Muli', sans-serif;
	background: #8e867f;
	color: #EEE;
	font-size: 110%;
	padding: 5px 10px;
	margin: 5px 0;
	border-radius: 2px;
	cursor: pointer;
}

.tune:hover{
	background: #765;
}

.sel_tune{
	background: #654;
}

.sel_tune:hover{
	background: #765;
}

/*#cover{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background: #222;
	opacity: 0.7;
}*/

#tune_info{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	/*position: absolute;*/
	/*width: 60%;*/
	/*height: 80%;*/
	width: 75%;
	background: #DDD;
	margin-left: 5px;
	/*left: 20%;*/
	/*top: 10%;*/
	
}

#tune_info_back{
	content: "";
	background: url('/img/music.jpg');
    background-size: auto 140%;
    background-position: center center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    opacity: 0.2;
}

#tune_info_cont{
	display: flex;
	flex-grow: 10;
	width: 100%;
	box-sizing: border-box;
	font-family: 'Muli', sans-serif;
	padding: 0 5%;
	margin-bottom: 30px;
	overflow-y: auto;
}

#tune_info #item_close{
	display: none;
	padding: 4px 10px;
	margin: 10px 0 0 10px;
	border: 1px solid #AAA;
	font-size: 1.3em;
}

#tune_info_cont a{
	/*color: #009;*/
	color: #4F261A;
	text-decoration: underline;
}

#t_cont{
	width: 100%;
}

.t_cont_book{
	display: flex;
	flex-direction: row;
}

#t_img{
	width: 40%;
	float: left;
	margin: 0 20px 20px 0;
	cursor: pointer;
}

#b_img{
	width: 30%;
	margin: 20px 0;
}

.b_img_book{
	align-self: flex-start;
}

#audio{
	display: flex;
	flex-direction: column;
	color: #654;
	font-size: .9em;
	margin-bottom: 8px;
}

#audio audio{
	width: 100%;
}

#t_text{
	font-size: 1.1em;
}

#t_text p:first-of-type{
	margin-top: 0;
}

#t_text img{
	width: 100%;
	cursor: pointer;
}

.copyright{
	color: #777;
}

#location{
	margin-top: 30px;
}

.book_item {
	margin: 2px 0 2px 8%;
}

#ms_header{
	display: flex;
	flex-direction: row;
	align-items: center;
}

#ms_header button{
	margin-right: 5px;
}

#ms_comment{
	margin: 0 5%;
	color: #432;
	font-size: 0.8em;
}

#manuscript{
	width: 90%;
	margin: 10px 0;
	padding: 0 5%;
}

#manuscript img{
	width: 100%;
	cursor: pointer;
}

.transcript{
	background: #d2d2d1;
	padding: 3% 8%;
	font-style: italic;
	color: #432;
}

@media screen and (max-width: 900px) {

	#content{
		overflow-x: hidden;
	}

	#page_title{
		display: none;
	}

	#tunes{
		position: relative;
		width: 100%;
		margin: 0;
	}

	#tune_list{
		width: 80%;
		max-width: 80%;
	}

	#tune_info{
		position: absolute;
		width: 90%;
		height: 100%;
		left: 85%;
	}

	#audio{
		display: block;
	}

	.t_cont_book{
		display: block;
	}

	#t_img{
		width: 100%;
	}

	.b_img_book{
		align_self: auto;
	}

	#tune_info_cont{
		width: 100%;
		box-sizing: border-box;
	}

	#ms_header{
		flex-direction: column;
	}

}
