
body.login {
	background: transparent;
}


html {
	background-image: url("/static/img/html_background.png");
	background-repeat: repeat;
	background-attachment: fixed;
	height: 100%;
}


body {
	background: transparent;
}


.errorlist {
    color: red;
}


.skip-to-content-link {
	display: none;
}

/* #container #header {
	background-color: lightgray;
} */

.table-title {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}

/*
.blinking {
  animation: blinker 2s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
*/

.blinking {
	opacity: 0;
  	animation: blinker 4s linear infinite;
}

@keyframes blinker {
	0%,100% { opacity: 0 }
	50% { opacity: 1 }
}
