/* 
*  global.css
*  @project WebdesignWagner - Florian Wagner
*  @description Allgemeine Klassen, die die Layoutstruktur betreffen
*  @author Florian Wagner
*  @date 07.10.2009
*/

*{margin:0; padding:0;}

body{
 margin:0;
 text-align:center;      /* Wichtig um die horizontale Zentrierung des Gesamtlayout zu erreichen */
 font-family:Verdana,Arial,Helvetica,Sans-Serif; 
 font-size:12px;
 background: #65AE24;
 width:100%;
 }
 
 img{
 border:0;
 }

 #wrapper{
 margin: 0 auto;
 width: 720px; 
 }

 #center{
 float:left;
 width: 720px;
 }

 
 * html #sdontent{
  	width: 500px;             /* For IE 5.x */
  	wid\th: 440px;            /* For IE 6   */ 
 }

#left{
 float:left;
 width: 510px;
 background: #FFF url(images/layout/logo.jpg) no-repeat center 25px;
}

	#content{
	margin: 210px 0px 0 100px;
	}

#footer{
width: 510px;
height: 15px;
}

