
/* CSS for "VONWEERTH" [http://www.vonweerth.com/] */
/* Site Design: formdoppel [http://www.formdoppel.de/] */
/* Last Edited: Feb. 29th, 2008 */



/* basic html-elements
---------------------------- */
* {
 margin: 0; /* wichtig für Firefox, IE, Safari & Co */
 padding: 0; /* wichtig für Opera */
}

html, body {
 height: 100%; /* PC */
}

body {
 font-family: "Trebuchet MS", Arial, Verdana, Helvetica, Geneva, sans-serif;
 text-align: center; /* wichtig für IE */
 background-color: #000;
}



/* layout divs
---------------------------- */
#midspacer { /* hält immer 50% der Browserfensterhöhe Abstand zum oberen Browserrand */
	      /* verhindert, dass #container beim Skalieren hinter den Browserrand rutscht */
 width: 100%;
 height: 50%;
 background-color: #000;
 margin-bottom: -325px; /* hälfte der containerhöhe */
 float: left;
 z-index: 1;
}

#container {
 position: relative; /* stellt container vor spacer, ist Bezug für nachfolgende divs */
 width: 950px;
 height: 650px;
 margin: 0 auto; /* wichtig für IE */
 text-align: left; /* wichtig für IE */
 clear: left; /* sonst klebt der container am oberen Rand */
 background: #000;
 z-index: 2;
}

#footer {
 position: relative;
 width:950px;
 text-align: right;
 z-index: 3;
}


/*---------------------------*/

p{
 color:#777;
 font-size:.65em;
 margin:-30px 35px;
}

a:link,a:active{
 color:#777;
 text-decoration:underline;
}

a:visited{
 color:#777;
 text-decoration:none;
}

a:hover{
 color:#999;
 text-decoration:underline;
}
