/* Die alte Syntax, veraltet und mit Präfix versehen, für alte Browser */
#gradient_old {background: -prefix-linear-gradient(top, blue, white 80%, orange); }

/* Die neue Syntax, die von Browsern benötigt wird, die dem Standard folgen (Opera 12.1,
   IE 10, Firefox 16, Chrome 26, Safari 6.1), ohne Präfix */
#gradient_new {background: linear-gradient(to bottom, blue, white 80%, orange); }

hr {border: 2px; border-style: solid; border-color: #680014;} /*#6C0602*/

.box {
font-weight: bold; font-family: Verdana;font-size: 16px; color: black; text-shadow: 1px 1px black;
/*margin: 0px 5px 0px 5px;*/
padding: 5px 5px 5px 5px;
}

.content {
font-weight: normal; font-family: Verdana; font-size: 14px;
margin-right: 25px;
padding: 5px 5px 5px 5px;
color: black;
}

#current {
	/*text-decoration: underline;*/
	background-color: #680014;
}


.blacklink { color: white; background-color: #680014; text-decoration: underline; }

a { color: white; }

a:link {
    text-decoration: none;
}

/* visited link */
a:visited {
    text-decoration: none;
}

/* mouse over link */
a:hover {
    text-decoration: underline;
}

/* selected link */
a:active {
    text-decoration: underline;
}