@keyframes up {
    from { top: -3px; }
    to { top: 0px; }
}

@keyframes init {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fade {
    from { opacity: 1; }
    to { opacity: 0.2; }
}

body {
	font-family: 'Open Sans Condensed', sans-serif;
	background-color: #9B8586;
}

div.absolute {
	position: absolute;
}
div.right {
	width: 98%;
	text-align: right;
}

a:hover {
    background-color: rgb(204, 175, 204);
	animation-name: fade;
	animation-duration: 800ms;
}

p {
	display: inline;
	position: relative;
	animation-duration: 300ms;
    animation-iteration-count: 1;
    animation-direction: alternate;
}

ul { list-style-type: lower-roman; }
