Chairman: Links im gleichen Fenster öffnen

Beitrag lesen

Hi,
habe mit folgendem css Style ein problem der link lässt sich öffnen supper!!!
Ich möchte aber das er sich neben den Links öffnet.
Kann mir jemand helfen
Danke schon einmal im vorraus.:-)

<html>
<head>
<title>Dreispaltiges Layout mit Kopf- und Fußzeile</title>
<style type="text/css">
  body {
    color: black; background-color: red;
    font-size: 90.01%;
    font-family: Helvetica,Arial,sans-serif;
    margin: 0; padding: 1em;
  }

h1 {
    font-size: 1.5em;
    margin: 0 0 0.7em; padding: 0.3em;
    text-align: center;
    background-color: silver;
    border: 2px ridge gray;

}
  ul#Navigation {
    font-size: 0.83em;
    float: left; width: 12em;
    margin: 0 5 1.2em; padding: 0;
background-color: black;
border: 3px double silver;
  }
  ul#Navigation li {
    list-style: none;
    margin: 0; padding: 0.5em;
  }
  ul#Navigation a {
    display: block;
    padding: 0.2em;
    font-weight: bold;
  }
  ul#Navigation a:link {
    color: blue;
  }
  ul#Navigation a:visited {
    color: #87CEFA;
  }
  ul#Navigation a:hover {
    color: white; background-color: black;
  }
  ul#Navigation a:active {
    color: white; background-color: gray;
  }
  div#Inhalt {
    width: 55em;
    border: 0px dashed silver;
  }
  div#Inhalt h2 {
    font-size: 1.2em;
    margin: 0.2em 0;
  }
  div#Inhalt p {
    font-size: 1em;
    margin: 1em 0;
  }

p#Fusszeile {
    clear: both;
    font-size: 0.9em;
    margin: 0; padding: 0.1em;
    text-align: center;
    background-color: #fed; border: 1px solid silver;
  }
</style>
</head>
<body>

<h1>Georg's Hp</h1>
  <ul id="Navigation">
    <li><a href="tes1.htm">test1</a></li>
    <li><a href="test2.htm">test2</a></li>
    <li><a href="test3.htm">test3</a></li>
  </ul>
  <div id="Inhalt">
  </div>

<p id="Fusszeile">Fußzeile</p>

</body>
</html>