html {
	background: #333;
}
body {
	position: relative;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	margin: 0 auto;
	background: #222;
	color: #f9f9f9;
	box-shadow: 0 0 23px;
}
.songs {
	text-align: center;
}
.song {
	padding: 0 0 150px;
	border-bottom: 1px solid #f9f9f9;
	margin: 150px 0 0;
}
.songlist {
    background: #f9f9f9;
    padding: 20px 20px 40px 40px;	
    color: #333;
    box-sizing: border-box;
    min-width: 320px;
}
.alphabet {
    position:  fixed;
    left: 10px;
    top: 0;
    width: 10px;
    text-align: center;
    height: 100vh;
}
.alphabet a {
    display: block;
    width: 100%;
    height: 3.846%;
    color: #aaa;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
}
.page-title {
	text-align: center;
	margin-top: 0;
	text-transform: uppercase;
}
.link-to-top {
	display: block;
	position: fixed;
	bottom: 10px;
	right: 10px;
	font-family: "font-awesome";
	background: rgba(0,0,0,0.7);
	color: #fff;
	padding: 10px;
	border-radius: 50%;
	font-size: 28px;
	width: 30px;
	height: 30px;
	line-height: 35px;
	text-align: center;
	opacity: 0.25;
	z-index: 2;
}
.table-of-contents {
	position: relative;
	left: -10px;
	margin: 0;
	list-style: none;
	width: 100%;
	padding-left: 0;
	z-index: 1;
}
.table-of-contents li {
    background-color: #f9f9f9;
}
.table-of-contents li:active,
.table-of-contents li.active {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#deecf7+0,f9f9f9+100 */
	background: rgb(222,236,247); /* Old browsers */
	background: -moz-linear-gradient(left, rgba(222,236,247,1) 0%, rgba(249,249,249,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(222,236,247,1) 0%,rgba(249,249,249,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(222,236,247,1) 0%,rgba(249,249,249,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#deecf7', endColorstr='#f9f9f9',GradientType=1 ); /* IE6-9 */
}
.table-of-contents li input {
    float: right;
    margin-top: 14px;
}
.table-of-contents li:first-child a {
	border-top: 1px solid #aaa;
}
.table-of-contents a {
	width: 100%;
	display: block; 
	padding: 10px 10px;
	border-bottom: 1px solid #aaa;
	text-decoration: none;
	font-size: 16px;
	color: #555;
}
.table-of-contents a:hover {
	color: #000;
}
.songlist input[type="submit"] {
    position: relative;
	width: 100%;
	text-align: center;
	bottom: auto;
	left: auto;
    background: transparent;
    border: none;
    color: #aaa;
    text-transform: uppercase;
    color: #6ad;
    font-weight: bold;
    font-size: 14px;
}
h1.title {
	text-transform: uppercase;
	margin: 10px 0 0;
	font-size: 175%;
}
.authors {
	margin: 0;
	font-size: 66%;
	color: #777;
	font-weight: normal;
	display: inline;
}
h2.author:after {
	content: ", ";
}
h2.author:last-child:after {
	content: "";
}
p {
	margin: 0;
	padding: 10px 0;
}
p.c1, p.c2, p.c3 {
	font-weight: bold;
}
p.b1, p.b2, p.b3 {
	font-style: italic;
}

.fullscreen .songlist {
    display: none;
}

body.fullscreen {
    margin-left: 0;
}

@media screen and (min-width: 1000px) {
	body { font-size: 24px; }
}
@media screen and (min-width: 768px) {
	.song {
		padding: 150px 0;
		margin: 0;
	}
	.songlist {
	    position: fixed;
	    left: 0;
	    top: 0;
	    bottom: 0;
	    overflow-y: auto;
	}
	body {
		font-size: 18px;
		max-width: none;
		margin: 0 0 0 320px;;
		background: #222;
		padding: 20px;
		box-shadow: none;
		color: #f9f9f9;
		font-weight: normal;
	}
	.songlist input[type="submit"]{
		position: fixed;
		bottom: 10px;
    	left: 350;
    	width: auto;
	}
}