@charset "utf-8";
/* CSS Document */
*{
	margin: 0; 
	padding: 0;
}

#all { 
       width:100%; height:100%;
	   margin-left: auto; margin-right: auto; 
	   }
	   
#header {
       position: relative; 
	  
	   top: 0px;
	   z-index:1;
	   text-align: center;
	   float:left; 
	   width: 100%;
	   clear: both; 
        }
#body {
		position: relative;
		left:25%;
		top: 100px; 
		float: left;
		height:100%
		width: 100%;
			}
#left { 
      position: absolute;
	  top: 100px;
      float: left;
      width:240px;
	  height:500px;
      clear:left;
	  text-align: center;
       }

#center{
	    position:absolute; 
		left: 300px; 
		top: 50px;
	    float:left; 
        width:200px;
		height:500px;
		text-align: center;
        }

#right {
	position: absolute;
	left: 550px; 
	top: 50px;
	   float: left; 
	   width:200px;
	   height:500px;
	   text-align:center;
	   }
	   
#footer { 
		position: relative;
		top:120%;
        float: bottom; 
		width:100%; 
		clear:both;
		text-align: center;
		}

