body { 
	background-color: #ffffff;
        background-image: url(../../pics/links.jpg);
        background-repeat:repeat-y;
        float:left;
	font-family:arial; 
        margin-top: 20px;
        font-size:10pt; 
}

ul {
    padding-left: 2em;
    list-style-type: none;
    color: #945e37;
}

ul ul {
/*    background-color: orange;*/
    list-style-type: square;
    padding-top: 0.5em;
    padding-left: 2em;
} 

 li {
    padding-bottom: 0.8em;
	
}

 a {
/*    background-color: yellow;*/
    text-decoration: none;
    display: inline-block;
    width: 100%;
    color: #fe2a02;
	text-shadow: 1px 1px 2px grey;
}

 a:hover {
    text-decoration: underline;
    -webkit-animation-name: animation_steuerung_links;
    animation-name: animation_steuerung_links;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

@-webkit-keyframes animation_steuerung_links {
    0%   { color: #fe2a02; }
    50%  { color: #6dcc0e; }
    100% { color: #fe2a02; }
}

@keyframes animation_steuerung_links {
    0%   { color: #fe2a02; }
    50%  { color: #6dcc0e; }
    100% { color: #fe2a02; }
}




