html, body { margin: 0;padding: 0; font-family:sans-serif; }
    a:link              { color:rgb(0,70,100); text-decoration:none; }
    a:visited           { color:rgb(0,70,100); text-decoration:underline; }
    a:hover             { color:rgb(0,97,153);; text-decoration:underline; }
    a:active            { color:red; text-decoration:underline; }

h1 { font-family:sans-serif; color:rgb(0,97,153); margin-top:6.5%; margin-bottom:1%;}
h2 { font-family:sans-serif; color:rgb(0,97,153); margin-top:6.5%; margin-bottom:1%;}
h3 { font-family:sans-serif; }
th { font-family:sans-serif; }

table {border-style:none; border-width: 0px;} td {border-style:groove; border-width:1px; margin:1em; border-color:gray;} th {border-style:groove; border-width:1px; margin:1em; border-color:gray;}

@keyframes handpointer {
	0%	{color:rgb(0,97,153,128);}
	75%	{color:rgb(0,97,153,0.5);}
}

.handpointer {
	animation-name: handpointer;
	animation-duration: 4s;
}

#grad1 {
    height: 100%;
    background: rgba(0,97,153,1); /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(rgba(40,110,160,1), rgba(0,97,153,1)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(rgba(40,110,160,1), rgba(0,97,153,1)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(rgba(40,110,160,1), rgba(0,97,153,1)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(rgba(40,110,160,1), rgba(0,97,153,1)); /* Standard syntax (must be last) */
}

.button
{
    background-color: rgba(20,120,170,0.9);
    border: none;
    padding: 2px 8px;
	border-radius: 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 1px 24px;
    cursor: pointer;
}