@charset "UTF-8";
/* CSS Document */



body {
  font-family: 'Lucida Sans Typewriter', 'Lucida Console', monaco, 'Bitstream Vera Sans Mono', monospace;
  font-size: 20px;
	width: 50%;
}





td.songInactive {
	color : #000000;
	background-color : #ffffff; }

td.songActive {
	color : #ffffff;
	background-color : #000000; }

td.songInactive:hover {
	color : #cccccc;
}

td.songActive:hover {
	color : #888888;
}





/* Dropdown Button */
.dropbtn {
    background-color: #000000;
    color: white;
	font-family: 'Lucida Sans Typewriter', 'Lucida Console', monaco, 'Bitstream Vera Sans Mono', monospace;
    font-size: 20px;
    border: none;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
	font-family: 'Lucida Sans Typewriter', 'Lucida Console', monaco, 'Bitstream Vera Sans Mono', monospace;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #888888}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #888888;
}




/* new menu */

.albumNav {
    background-color: #000000;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.albumNav a {
    float: left;
    display: none;
    color: #ffffff;
    text-align: center;
    padding: 4px 12px;
    text-decoration: none;
    font-size: 16px;
}

/* Change the color of links on hover */
.albumNav a:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Add an active class to highlight the current page */
.active {
    background-color: #555555;
    color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.albumNav .icon {
	float: right;
    display: block;
}




  .albumNav.responsive {position: relative;}
  .albumNav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
}
	.albumNav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }






/* Media query for Mobile devices*/
@media only screen and (min-width : 285px) and (max-width : 480px) {
body {
	width: auto;
}
}
/* end mobile devices */

/*
@media screen and (max-width: 700px) {
  body {
	width: 90%;
}
}
*/

@media only screen and (min-width : 480px) and (max-width: 900px) {
  body {
	width: 80%;
}
}





/*
@media screen and (max-width: 540px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}
*/


