img {
	margin-top: 4px;
}

#registration-field {
	text-align: center;
	margin: 10px 0px;
}

.user-input {
	padding: .3em;
	margin-bottom: 1.5em;
}

.full-width {
	width: 100%;
}

.right-align {
	text-align: right;
}

*{
	box-sizing: border-box;
}
button, input[type="button"]{
	
-webkit-appearance: button;
border-radius: 8px !important;
background-color: #ddd;
}


td.error {
	background-color: #f00;
	color: #fff;
	text-align: center;
}
td.success {
	background-color: #00b;
	color: #ff0;
	text-align: center;
}

li.defaultlocation{
	    font-weight: bold;
}

table.movelisttable {
  border-collapse: collapse;
  width: 100%;
}

.movelisttable td, .movelisttable th {
  border: 1px solid #999;
  padding: 0.5rem;
  text-align: left;
}

button[disabled=disabled], button:disabled {
  background: white;
	}
.movediv {
	    border: solid 1px;
    border-radius: 5px;
    padding: 0.2em;
    margin-top: 1em;
	
}

.movediv h4{
	margin: 0;
	
	
}

.needsdisambig {
	/*background-color: indianred;*/
	color: red;
	font-weight: bold;
}
@keyframes highlight {
    0% {
        background: #ffff99; 
    }
    100% {
        background: none;
    }
}

.highlight {
    animation: highlight 2s;
}

@keyframes errorhighlight {
    0% {
        background: indianred; 
    }
    100% {
        background: none;
    }
}

.errorhighlight {
    animation: errorhighlight 2s;
}



.removebutton{
	float:right;
	
}

.strictbanner
{
	background: red;
	text-align: center;
	font-size:18px;
	color:white
	
}




.tn-box {
	/*width: 360px;*/
	width: 100%;
	position: relative;
	margin: 0 auto 20px auto;
	padding: 25px 15px;
	text-align: left;
	border-radius: 5px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.6);  
	opacity: 0;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);	
	cursor: default;
	display: none;
}

.tn-box p {
	font-weight: bold;
	font-size: 16px;
	margin: 0;
	padding: 0 10px 0 60px;
	text-shadow: 0 1px 1px rgba(255,255,255,0.6);
}
.tn-box p:before{
	text-align: center;
	border: 3px solid rgba(255, 255, 255, 1);
	margin-top: -17px;
	top: 50%;
	left: 20px;
	width: 30px;
	content: 'i';
	font-size: 30px;
	color: rgba(255, 255, 255, 1);
	position: absolute;
	height: 30px;
	line-height: 30px;
	border-radius: 50%;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
	box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.tn-progress {
	width: 0;
	height: 4px;
	background: rgba(255,255,255,0.3);
	position: absolute;
	bottom: 5px;
	left: 2%;
	border-radius: 3px;
	box-shadow: 
		inset 0 1px 1px rgba(0,0,0,0.05), 
		0 -1px 0 rgba(255,255,255,0.6);
}

/* Colors */

.tn-box-color-1{
	background: #ffe691;
	border: 1px solid #f6db7b;
}
.tn-box-color-1 p {
	color: #7d5912;
}

.tn-box-color-2{
	background: #99ffb1;
	border: 1px solid #7ce294;
}
.tn-box-color-2 p {
	color: #2d8241;
}

.tn-box-color-3{
	background: #dd9aff;
	border: 1px solid #b367db;
}
.tn-box-color-3 p {
	color: #69288b;
}


/* If you use JavaScript you could add a class instead: */

.tn-box.tn-box-active {
	display: block;
	-webkit-animation: fadeOut 3s linear forwards;
	-moz-animation: fadeOut 3s linear forwards;
	-o-animation: fadeOut 3s linear forwards;
	-ms-animation: fadeOut 3s linear forwards;
	animation: fadeOut 3s linear forwards;
}

.tn-box.tn-box-active .tn-progress {
	-webkit-animation: runProgress 2s linear forwards 0.5s;
	-moz-animation: runProgress 2s linear forwards 0.5s;
	-o-animation: runProgress 2s linear forwards 0.5s;
	-ms-animation: runProgress 2s linear forwards 0.5s;
	animation: runProgress 2s linear forwards 0.5s;
}


@-webkit-keyframes fadeOut {
	0% { opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; -webkit-transform: translateY(0px);}
	99% { opacity: 0; -webkit-transform: translateY(-30px);}
	100% { opacity: 0; }
}

@-moz-keyframes fadeOut {
	0% { opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; -moz-transform: translateY(0px);}
	99% { opacity: 0; -moz-transform: translateY(-30px);}
	100% { opacity: 0; }
}

@-o-keyframes fadeOut {
	0% { opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; -o-transform: translateY(0px);}
	99% { opacity: 0; -o-transform: translateY(-30px);}
	100% { opacity: 0; }
}

@-ms-keyframes fadeOut {
	0% { opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; -ms-transform: translateY(0px);}
	99% { opacity: 0; -ms-transform: translateY(-30px);}
	100% { opacity: 0; }
}

@keyframes fadeOut {
	0% { opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; transform: translateY(0px);}
	99% { opacity: 0; transform: translateY(-30px);}
	100% { opacity: 0; }
}

@-webkit-keyframes runProgress {
	0%{ width: 0%; background: rgba(255,255,255,0.3); }
	100%{ width: 96%; background: rgba(255,255,255,1); }
}

@-moz-keyframes runProgress {
	0%{ width: 0%; background: rgba(255,255,255,0.3); }
	100%{ width: 96%; background: rgba(255,255,255,1); }
}

@-o-keyframes runProgress {
	0%{ width: 0%; background: rgba(255,255,255,0.3); }
	100%{ width: 96%; background: rgba(255,255,255,1); }
}

@-ms-keyframes runProgress {
	0%{ width: 0%; background: rgba(255,255,255,0.3); }
	100%{ width: 96%; background: rgba(255,255,255,1); }
}

@keyframes runProgress {
	0%{ width: 0%; background: rgba(255,255,255,0.3); }
	100%{ width: 96%; background: rgba(255,255,255,1); }
}






.menu-button i {
	
	    float: left;
    margin-left: -1em;
    padding-left: 2em;
}


#afile
 {
	visibility: hidden;
	height: 0px;
	width: 0px;
}
