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