* {
  	box-sizing: border-box;
  	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
  	font-size: 16px;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}

.body {
  	background-color: #435165;
	color:DarkSlateGray;
	font: 1.2em/20px "helvetica neue",Helvetica,Arial,Verdana,sans-serif;
	width:100%;
}

.navtop {
	display:block;
	background-color: #2f3947;
	height: 40px;
	width: 100%;
	border: 0;	
	padding-left:3%;
}
.navtop div {
	display:flex;
	margin: 0 auto;
	width: 100%;
	height: 100%;	
}
.navtop div h1, .navtop div a {
	display: inline-flex;
	align-items: center;
}
.navtop div h1 {
	flex: 1;
	font-size: 24px;
	padding: 0;
	margin: 0;
	color: #eaebed;
	font-weight: normal;
}
.navtop div a {
	padding: 0 20px;
	text-decoration: none;
	color: #eaebed;
	font-weight: bold;
}
.navtop div a i {
	padding: 2px 8px 0 0;
}
.navtop div a:hover {
	color: #3274d6;
}

.content {
	width: 500px;
	margin: 0 auto;
	margin-top:5px;
	text-align:left;
}
.content h2 {
	margin: 0;
	padding: 25px 0px;
	font-size: 13pt;
	border-bottom: 1px solid #e0e0e3;
	color: #4a536e;
	text-align:left;
}

.content h2 label{
	margin: 0;
	padding: 0;
	font-size: 13pt;
}

.contentButtonDiv {
	width: 100%;
  	text-align:center;
}

.contentInputDiv {
	width: 100%;
  	text-align:left;
}

.content > p, .content > div {
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	margin: 25px 0;
	padding: 25px;
	background-color: #fff;
}
.content > p table td, .content > div table td {
	padding: 5px;
}
.content > p table td:first-child, .content > div table td:first-child {
	font-weight: bold;
	color: #4a536e;
	padding-right: 15px;
}
.content > div p {
	padding: 5px;
	margin: 0 0 10px 0;
}

.title{
	text-align:center;
	width: 100%;
	height: auto;
}

.title img {
	width: 50%; 
	height: auto;
}

.welcome{	
	width:100%;
	text-align:left;
	padding-left:6%;
	padding-top: 60px;
	font-size:11pt;	
}

.welcome h3{
	font-size:13pt;
}

.welcome h2{
	font-size:12pt;
}

.welcome b{
	font-size:12pt;
}

.welcome div{
	width:100%;
	text-align:left;
}

.welcome div a{
	font-size:13pt;
	text-decoration: none;
	font-weight: bold;	
}

.login {
  	width: 400px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 80px auto;
}
.login h1 {
  	text-align: center;
  	color: #5b6574;
  	font-size: 24px;
  	padding: 20px 0 20px 0;
  	border-bottom: 1px solid #dee0e4;
}
.login form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
}
.login form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #3274d6;
  	color: #ffffff;
	margin: 0 5px;
}
.login form input[type="password"], .login form input[type="text"] {
  	width: 310px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
	margin-right: 15px;
  	padding: 0 15px;
}
.login form input[type="submit"] {
  	width: 100%;
  	padding: 15px;
 	margin-top: 20px;
  	background-color: #3274d6;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.login form input[type="submit"]:hover {
	background-color: #2868c7;
  	transition: background-color 0.2s;
}

.loginForgot {
	text-align:right;	
	width:100%;
	margin: 4%;
}

.loginForgot a {
	color:#435165;
	font-size:smaller;
}

.register {
  	width: 400px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 80px auto;
	margin-bottom: 25px;
}
.register h1 {
  	text-align: center;
  	color: #5b6574;
  	font-size: 24px;
  	padding: 20px 0 20px 0;
  	border-bottom: 1px solid #dee0e4;
}
.register form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
}
.register form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 30px;
 	height: 30px;
  	background-color: #3274d6;
  	color: #ffffff;
}
.register form input[type="password"], .register form input[type="text"], .register form input[type="email"] {
  	width: 350px;
  	height: 30px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
}
.register form input[type="checkbox"] {
  	width: 15px;
  	height: 15px;
  	border: 1px solid #dee0e4;
	vertical-align: middle;
    position: relative;
}

.registerDisclaimer {
	text-align:left;	
	width:100%;
	margin: 2%;
	font-size:12px;
}

.registerDisclaimer a{	
	text-decoration:none;
	font-size:12px;
	color:#435165;
}

.register form input[type="submit"] {
  	width: 100%;
  	padding: 15px;
  	margin-top: 20px;
  	background-color: #3274d6;
 	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.register form input[type="submit"]:hover {
	background-color: #2868c7;
  	transition: background-color 0.2s;
}

.menuItem{
	cursor: pointer; 
	color: #FEF591;
	font-size: 14px;
	margin: 0px;
	padding: 0px;
}

.popup {
  position: absolute;
  display:inline-block;  
}

.popup .popuptext {
  visibility: hidden;
  position:fixed;
  width: 320px;
  background-color: #435165;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px;          
  top: 20%;
  left: 40%;
  margin-left: -80px;
}                

.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 50px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: White;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  text-align:center;
  max-height: 100%;
  overflow: auto; /* Enable scroll if needed */	
}

/* The Close Button */
.closeButton {
  color: Black;
  text-align:right;
  font-size: 28px;
  font-weight: bold;
}

.closeButton:hover,
.closeButton:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.mainSection{
	width:100%;
	margin-top:10px;
	text-align:center;
	background-color:LightGray;
}

.divTable{
	display: table;
	width: 90%;
	border-color:DarkSlateGray;
	table-layout:fixed;
}

.divTableBody {
	display: table-row-group;
	text-align:center;
	vertical-align:middle;		
}

.divTableRow {
	display: table-row;
	vertical-align:middle;
}

.divTableHead{
	border:none;
	display: table-cell;
	padding-top: 15px;
	margin: 0px;
	vertical-align:middle;
	font-size:16px;
}

.divTableSeekHead{
	border:none;
	display: table-cell;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 15px;
	vertical-align:middle;	
}

.divTableHeadFirst{
	border:none;
	display: table-cell;	
	vertical-align:middle;
	padding-right: 35px;
	text-align:right;
	font-size:16px;
	padding-top: 7px;
}

.divTableFirstCell {
	border-right: 1px solid #999999;
	border-left: none;
	border-bottom: none;
	border-top: none;
	display: table-cell;	
	padding-right: 40px;
	vertical-align:middle;
	text-align:right;
}

.divTableCell {
	border: 1px solid #999999;
	display: table-cell;
	padding: 0px;
	margin: 0px;
	vertical-align:middle;
	background-color:White;
	width:15%;
}

.feedback, .feedback td{
  	text-align:left;
	margin:auto;
	vertical-align:top;
	font-size:small; 
	padding:4px;
}

.selectedWave {
	background-color: DodgerBlue;
}

.player {		
	width:100%;
	text-align:center;
	display:inline-block;
	padding-bottom:20px;
	padding-left:30px;
}

.playerButton {
	width:70px;
	height:40px;
	color: SlateBlue;
	border-color: DodgerBlue;
}

.timer {
	width:160px;
	height:40px;
	background-color: SlateBlue;
	border-color: DodgerBlue;
	color:white;
	font-weight:bold;
	font-size:large;
}

.playline
	{
		font-size:medium;
	}

.submitCompositionButton {
	width:70px;
	height:40px;
	background-color: White;
	color: Black;
	border-color: #fef591;
}

.instrumentIcon {
	width:50px;
}

.sectionIcon {
	width:10%;
	cursor:pointer;
}

.sectionHeader {
	cursor:pointer;
}

.copyright{
	text-align:center;
	width:100%;
	font-size:14px;
	margin-top:10px;
	color: White;
	display:inline-block;
}

.exportSection a {
	text-align: center;
	font-size:18px;
	color:#5b6574;
	font-weight:600;
	padding-left:50px;
}

.helpSection {
	margin:100px;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
	font-size:18px;
	font-weight: bold;
	color: #2f4f4f;
	text-align: left;
	background-color: #eaebed;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	outline: none;
	transition: 0.4s;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active, .accordion:hover {
	background-color:#d3d3d3;
  }
  
  /* Style the accordion panel. Note: hidden by default */
  .panel {
	font-size:16px;
	text-align: left;
	padding: 0 18px;
	background-color: white;
	display: none;
	overflow: hidden;
  }

.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.menu_icon
{
	display: none;
}

@media (max-width : 420px) 
{			
	.player 
	{	
		margin-top:5px;
		width:100%;
		text-align:left;
	}

	.playerButton 
	{
		width:70px;
		height:40px;
		color: SlateBlue;
		border-color: DodgerBlue;
		font-size:small;
	}
	
	.playline
	{
		display:none;
	}
	
	.timer 
	{
		width:100px;
		height:40px;
		font-weight:bold;
		font-size:small;
	}
	
	.divTableHeadFirst
	{
		padding-right: 10px;
		padding-left: 10px;
		width:12%;
	}

	.divTableFirstCell 
	{
		padding-right: 10px;
		padding-left: 10px;
	}
	
	.divTableHead
	{
		padding: 0px;
		padding-top: 15px;
		vertical-align:middle;
		font-size:8px;
	}
	
	.instrumentIcon {
	width:30px;
	}
	
	.copyright{
	font-size:11.5px;
	}
	
	.title{
	text-align:center;
	width: 100%;
	height: auto;
	}
	
	.title img {
		width: 70%; 
		height: auto;
	}
	
	.login {
  	width: 100%;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 10px auto;
	}
	.login h1 {
		text-align: center;
		color: #5b6574;
		font-size: 20px;
		padding: 20px 0 20px 0;
		border-bottom: 1px solid #dee0e4;
	}
	.login form {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		padding-top: 20px;
	}
	.login form label {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 50px;
		height: 50px;
		background-color: #3274d6;
		color: #ffffff;
	}
	.login form input[type="password"], .login form input[type="text"] {
		width: 250px;
		height: 50px;
		border: 1px solid #dee0e4;
		margin-bottom: 20px;
		padding: 0 15px;
	}
	.login form input[type="submit"] {
		width: 100%;
		padding: 15px;
		margin-top: 20px;
		background-color: #3274d6;
		border: 0;
		cursor: pointer;
		font-weight: bold;
		color: #ffffff;
		transition: background-color 0.2s;
	}
	.login form input[type="submit"]:hover {
		background-color: #2868c7;
		transition: background-color 0.2s;
	}
	
	.loginForgot {
		text-align:right;	
		width:100%;
		margin: 4%;
	}
	
	.loginForgot a {
		color:#435165;
		font-size:smaller;
	}
	.register {
  	width: 100%;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 10px auto;
	margin-bottom: 25px;
	}
	.register h1 {
		text-align: center;
		color: #5b6574;
		font-size: 20px;
		padding: 20px 0 20px 0;
		border-bottom: 1px solid #dee0e4;
	}
	.register form {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		padding-top: 20px;
	}
	.register form label {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 30px;
		height: 30px;
		background-color: #3274d6;
		color: #ffffff;
	}
	.register form input[type="password"], .register form input[type="text"], .register form input[type="email"] {
		width: 270px;
		height: 30px;
		border: 1px solid #dee0e4;
		margin-bottom: 20px;
		padding: 0 15px;
	}
	.register form input[type="checkbox"] {
		width: 15px;
		height: 15px;
		border: 1px solid #dee0e4;
		vertical-align: middle;
		position: relative;
	}
	
	.registerDisclaimer {
		text-align:left;	
		width:100%;
		margin: 2%;
		font-size:12px;
	}
	
	.registerDisclaimer a{	
		text-decoration:none;
		font-size:12px;
		color:#435165;
	}
	
	.register form input[type="submit"] {
		width: 100%;
		padding: 15px;
		margin-top: 20px;
		background-color: #3274d6;
		border: 0;
		cursor: pointer;
		font-weight: bold;
		color: #ffffff;
		transition: background-color 0.2s;
	}
	.register form input[type="submit"]:hover {
		background-color: #2868c7;
		transition: background-color 0.2s;
	}

	/* The Modal (background) */
	.modal {		
		position: fixed; 
    		top: 3%; 
    		right: 3%; 
    		left: 3%; 
    		width: auto; 
    		margin: 0;
	}

	/* Modal Content */
	.modal-content {		
  		max-height: 540px; 		
		min-width:350px;
		max-width:400px;
    	padding: 10px; 
    	overflow-y: auto; 
    	-webkit-overflow-scrolling: touch;
	}
	.modal-content div {
		max-width: 100%;
    	display: inline-block;
		font-size:small;
	}
	
	.feedback, .feedback td, .feedback b {
  	text-align:left;
	margin:auto;
	vertical-align:top; 
	font-size:x-small; 
	overflow-wrap: break-word;
	padding: 2px;
}

}

@media (min-width : 360px ) and (max-width: 420px)
{
	.login form input[type="password"], .login form input[type="text"] {
		width: 280px;
		height: 50px;
		border: 1px solid #dee0e4;
		margin-bottom: 20px;
		padding: 0 15px;
	}
	
	.register form input[type="password"], .register form input[type="text"], .register form input[type="email"] {
		width: 310px;
		height: 30px;
		border: 1px solid #dee0e4;
		margin-bottom: 20px;
		padding: 0 15px;
	}
}


@media screen and (max-width: 850px) {
  .navtop {
	display:none;
    height: auto;
    padding: 10px;
  }
  .navtop div {
    flex-flow: wrap;
    width: 100%;
  }
  .navtop div h1 {
    display: block;
    flex-basis: 100%;
  }
  .navtop div a {
    padding: 10px 0;
    flex-basis: 50%;
  }
  .menu_icon, .menu_icon:hover
  {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	color: #CCC;
   }
  .content {
    padding: 10px;
    width: 100%;
  }
  .content form input[type="text"], .content form input[type="password"], .content form input[type="email"] {
    width: 100%;
  }
  .instrumentIcon {
	width:40px;
}

}
