/* Default CSS */
/* Generated by the CoffeeCup HTML Editor - www.coffeecup.com */

html {
	/* Ensure the html element always takes up the full height of the browser window */
	min-height: 100%;
	/* The Magic */
	background-size: cover;
}
* {
	font-weight: bold;
	font-style: italic;
	font-family: Georgia, serif;
}
@-webkit-keyframes glowing {
	0% {border: yellow;-webkit-box-shadow: 0 0 3px yellow;}
	50% {border: orange;-webkit-box-shadow: 0 0 40px orange;}
	100% {border: pink;-webkit-box-shadow: 0 0 3px pink;}
}
@-moz-keyframes glowing {
	0% {border: yellow;-moz-box-shadow: 0 0 3px yellow;}
	50% {border: orange;-moz-box-shadow: 0 0 40px orange;}
	100% {border: pink;-moz-box-shadow: 0 0 3px yellow;}
}
@-o-keyframes glowing {
	0% {border: yellow;box-shadow: 0 0 3px yellow;}
	50% {border: orange;box-shadow: 0 0 40px orange;}
	100% {border: pink;box-shadow: 0 0 3px pink;}
}
@keyframes glowing {
	0% {border: gold;box-shadow: 0 0 30px darkred;}
	25% {border: yellow;box-shadow: 0 0 40px red;}
	50% {border: orange;box-shadow: 0 0 30px crimson;}
	75% {border: deeppink;box-shadow: 0 0 40px firebrick;}
	100% {border: red;box-shadow: 0 0 30px salmon;}
}
 /* routing */
.note {
	-webkit-animation: glowing 500ms infinite;
	-moz-animation: glowing 500ms infinite;
	-o-animation: glowing 500ms infinite;
	animation: glowing 500ms infinite;
	border-radius: 50px;
	background-color: almondwhite;
	border: 4px solid midnightblue;
	color: black;
	padding: 2px 2px;
	width: auto;
	height: auto;
}
.update {
	background: url('n:/w0avq.org/pics/update.png') no-repeat center center;
	color: black;
	padding: 0px 0px;
	border-radius: 60px;
	width: 100px;
	height: 100px;
}

  