body,td,th {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 24px;
	color: #FFDDF4;
}
body {
	background-color: #002;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
.smallfont{
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16px !important;
}
a:link {
	color: #f55;
	text-decoration: none;
}
a:visited {
	color: #f55;
	text-decoration: none;
}
a:hover {
	color: black;
	background-color : #f55;
	text-decoration: none;
}
a:active {
	text-decoration: none;
	color: #f55;
}

hr {
	height: 1px;
	border: none;
	background-color: #f55;
}

img:nobd {
	border: 0;
	border-color: transparent !important;
	text-decoration: none;
	background-color: transparent !important;
}
.imgf {
	float: left;
	border: 0;
	padding-right: 5px;

}

.button {
    width: auto;
    height: auto;
	border: none;
    outline: none;
	font-family: Verdana, Geneva, sans-serif;
	/*font-size: 24px; */
	/*font-weight: bold;*/
    color: #eee;
    background: #023;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.button:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ffcccc, #ff0000, #ffcccc, #ff0000, #ffcccc, #ff0000, #ffcccc, #ff0000, #ffcccc);
    background-size: 400%;
    position: absolute;
    top: -2px;
    left: -2px;
    z-index: -1;
    filter: blur(8px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: gradient 15s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}
.button:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #023;
    left: 0;
    top: 0;
    border-radius: 10px;
    z-index: -1;
}

.button:active {
    color: #000
}

.button:active:after {
    background: transparent;
}

.button:hover:before {
    opacity: 1;
}


@keyframes gradient {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}
