.glowred
{
color:rgb(255,225,200);
text-shadow:0 0 3px rgb(255,0,0);
}

.glowgold
{
color:rgb(255,255,255);
text-shadow:0 0 3px rgb(255,200,0);
}

.glowyellow
{
color:rgb(255,255,180);
text-shadow:0 0 3px rgb(255,255,0);
}

.glowgreen
{
color:rgb(255,255,255);
text-shadow:0 0 3px rgb(0,255,0);
}

.glowteal
{
color:rgb(255,255,255);
text-shadow:0 0 3px rgb(0,255,255);
}

.glowblue
{
color:rgb(255,255,255);
text-shadow:0 0 3px rgb(0,127,255);
}

.glowpurple
{
color:rgb(255,255,255);
text-shadow:0 0 3px rgb(255,0,180);
}

.glowwhite
{
color:rgb(255,255,255);
text-shadow:0 0 3px rgb(255,245,235);
}

.glowpink
{
color:rgb(255,200,255);
text-shadow:0 0 5px rgb(255,50,225);
}



@keyframes glowangel
{
0%
 {
  color:rgb(255,255,255);
  text-shadow:0 0 2px hsl(0,100%,50%);
 }

25%
 {
  color:rgb(255,255,255);
  text-shadow:0 0 2px hsl(90,100%,50%);
 }

50%
 {
  color:rgb(255,255,255);
  text-shadow:0 0 2px hsl(180,100%,50%);
 }

75%
 {
  color:rgb(255,255,255);
  text-shadow:0 0 2px hsl(270,100%,50%);
 }

100%
 {
  color:rgb(255,255,255);
  text-shadow:0 0 2px hsl(360,100%,50%);
 }
}

.glowangelic
{
animation-name: glowangel;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}





.glowhuman
{
animation-name: glowhuman;
animation-duration: 5s;
animation-direction: alternate;
animation-iteration-count: infinite;
animation-timing-function: linear;
}

@keyframes glowhuman
{
0%
 {
  color:rgb(0,255,0);
  text-shadow:0 0 1px rgb(255,255,255);
 }

50%
 {
  color:rgb(0,200,0);
  text-shadow:0 0 2px rgb(255,255,255);
 }

100%
 {
  color:rgb(0,255,0);
  text-shadow:0 0 1px rgb(255,255,255);
 }
}



@keyframes yinyangglow
{
0% {text-shadow: 0 0 1px rgb(255,180,0), 0 0 6px rgb(255,255,255);}
100% {text-shadow: 0 0 1px rgb(255,255,255), 0 0 6px rgb(255,180,0);}
}

.glowyinyang
{
animation-name: yinyangglow;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-direction: alternate;
}



.comment
{
color:rgb(255,255,127);
}

.tc-tiddler-title h2
{
font-size: 0.50em;
font-weight: bold;
text-shadow: 0 0 5px rgb(0,127,255);
}

.tc-tiddler-body a
{
text-decoration: underline;
}

@keyframes hoverlink
{
 0%
 {
  color: rgb(0,255,255);
  text-shadow: 0 0 0px rgb(0,100,255);
 }

 100%
 {
  color:white;
  text-shadow: 0px 0px 3px rgb(0,255,255);
 }
}

.tc-tiddler-body a:hover
{
text-decoration: none;
animation-name: hoverlink;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-timing-function: linear;
}

.tc-tiddler-body
{
text-align: justify;
}
