a.abs:link {
	background-color: #e1ffdd;
	font-weight: bold;
	font-size: 130%;
	color: red;
	text-decoration: none
	}
a.abs:visited {
	font-weight: bold;
	font-size: 110%;
	color: #1bb7ea;
	text-decoration: none
	}
a.abs:hover {
	background-color: white;
	font-size: 140%;
	font-weight: bold;
	color: #16734f;
	text-decoration:underline
	}
h2.absh {
    display: block;
    font-size: 1.5em;
    margin-top: 0.83em;
    margin-bottom: 0.83em;
    margin-left: 0;
    margin-right: 0;
    color: #e1ffdd;
    font-weight: bold;
}

button.absStyle:hover {
   background-color: red;
   color: blue;
   }
.blink_text
{
    animation:2s blinker linear infinite;
    -webkit-animation:2s blinker linear infinite;
    -moz-animation:2s blinker linear infinite;
    color: black;
    font-weight: bold;
    font-size: 300%;
}

@-moz-keyframes blinker
{  
    40% { opacity: 1.0; }
    60% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker
{  
    40% { opacity: 1.0; }
    60% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker
{  
    40% { opacity: 1.0; }
    60% { opacity: 0.0; }
    100% { opacity: 1.0; }
 }
