@charset "utf-8";
/* CSS Document */

body {
	background-image:url(../images/bg1.gif);
	background-repeat: no-repeat;
	background-position:center;
	background-color:#aaa;
	margin: 0px;
언제나 전체 body에는 margin 값을 0으로 세팅해준다
;
 }
 #wrapper {
  position: relative;
  height: auto;
  width: auto;
  margin: auto;  레이아웃을 싸고 있는 box의 margin을 auto로 주면 중앙정렬 효과
 }
 #header {
	height: auto;
	width: auto;
	position: relative;
	background-image:url(bg-hd.gif);background-repeat: repeat-x;
 }
 #middle {
  height: 700px;
  width: auto;
  position: relative;
 }
 #submiddle {
  height: auto;
  width: auto;
  position: relative;
 }
 #left {
	float: left;
	height: 500px;
	width: 300px;
	position: relative;
 }
 #main {
	float: right;
	height: auto;
	width: 700px;
	position: relative;
	font-size: 16px;
 }
 #footer {
  background-color: #fff;
  height: auto;
  width: auto;
  position: relative;
  background-image:url(bg-ft.gif);background-repeat: repeat-x;
  clear: both;  상단의 흐름을 한번 끊어주기 위해 clear를 해준다.. -.-;;?? 
  float: left;  새로운 흐름을 지정해줘야 깨지지 않는다.
 }
