@charset "utf-8";
/* CSS Document */

body {
background-color:#F1DCC8;
background-image:url(../bilder/imea-2.jpg);
background-repeat:no-repeat;
background-position:center top;
}

/* Die Seite ist insgesamt 900 hoch und 1000 px breit */

#seite {
width: 1000px;
height: 900px;
/* position relative, da sonst andere absolute Container (extra) NICHT daran orientieren würden */
position:relative; top:0px; left:0px;
/* zentrieren des div auf die Seitenmitt: */
margin: 0 auto;
/* background-color:#7C4AA8;
background-image:url(../bilder/imea-hg.jpg); */
font: normal 20px verdana, sans-serif;
color:#ffffff;
/* text-shadow: 0 0 1px white; */
}

#textbox {
width: 800px;
height: 680px;
/* background-color:#98AA00; */
padding:100px;
overflow: auto;
text-align:justify;
float: left;
}

a:link {
color:#FF3300;
text-decoration: none;
}

a:active {
color:#FFF;
text-decoration: none;
}

a:visited {
color:#FF9900;
text-decoration: none;
}

a:hover {
color:#FFFF66;
text-decoration:none;
}

/* Neonfarbe für den Text in einer Class */

.neon {
    font-family: sans-serif;
    text-transform: uppercase;
    font-size: 40px;
    font-weight: bold;
    font-style: italic;
    letter-spacing: .1em;
    color: red;
    text-shadow: 0 0 5px red,
                 0 0 10px red,
                 0 0 20px red,
                 0 0 40px red,
                 0 0 60px red,
                 0 0 90px red,
                 0 0 120px red,
                 0 0 160px red;
}