/*
CSS-Design ohne Tabellen
*/

* { 
  margin: 0;
  padding: 0;
}

body {
     background-color: #E7E5FB;
     text-align:center;
     padding: 15px 0px 15px 0px;
     font-family: Verdana, Arial, Helvetica, sans-serif;
}

.wrapper {
   	 margin: 0px auto;
	 width: 960px;
         border: 1px solid black;
         background-color: white;
         padding: 10px;
         text-align:left;
         background-color: white;
 	 -webkit-border-radius: 11px;
         -webkit-box-sizing: border-box;
         -webkit-tap-highlight-color: #990000;
         -moz-border-radius: 11px;
         -moz-box-sizing: border-box;
         -moz-box-shadow: 10px 5px 5px black;
         -o-border-radius: 11px;
         -o-box-sizing: border-box;
         -o-box-shadow: 10px 5px 5px black;
         behavior: url("/fileadmin/symtec/sym-tec/html_css/border-radius.htc");
}

.container{
          padding: 5px;
}

.container .middle { 
                   width: 80%;
                   background-color: white;
}


/*
Definitionen für das Aussehen der Webseite
*/

html {
     font-familiy: verdana;
     font-size: 14px;
     font-weight: normal;
}

h1 {
   font-size: 1.2em;
   padding-bottom: 0.5em;
}

a {
  color: #990000;
  text-decoration: bold;
}

a:hover {
        color: #660000;
}

a img{
     border: none;
}

ul {
   list-style-type: disc;
}

