﻿@charset "utf-8";
/* CSS Document */


/** 공통 스타일 시작 *******************************************************************/


body {	
	text-align:center;
	/** 내용 위치 정렬 : 가운데 **/

	font-size:small;
	/** 글자 크기 : 보통(small) **/

	font-family:Tahoma, Geneva, sans-serif;
	/** 서체 종류: Tahoma, Geneva, sans-serif **/

	background-color:#000000;
	/** 배경 색상 : 흰색 **/

	background-image: url("bg_body.gif");
	/** 배경 이미지 : 경로 참조 **/

	background-repeat: background-image-repeat:repeat;
	/** 배경 이미지 반복 : 반복 **/

	background-position: background-image-position:0 0;
	/** 배경 이미지 위치 : 0 0 (좌측상단) **/

	margin:0;
	/** 여백 크기 : 0 **/

	padding:0;
	/** 내부 여백 크기 : 0 **/	

}

a{
	color:#222;
	/** 링크 색상 : 회색 **/

	text-decoration:none;
	/** 링크 꾸미기 : 없음 **/
}

img {
	border:0;
	/** 그림 테두리 : 없음 **/
}


/** 공통 스타일 끝   *********************************************************************/



/** 본문 스타일 시작 *********************************************************************/

.content {	
	margin-top:15px;
	/* 윗쪽 여백 크기 : 15 픽셀 */
	font-size:90%;
	/* 본문 글자 크기 : 90% */
}

/** 본문 스타일 끝   *********************************************************************/


/** 저작권 표시 시작 *********************************************************************/

.footer {
	text-align:center;
	/* 저작권 정렬 : 가운데 */
	color:#e7deba;
	/* 저작권 글자 색상 : 회색 */
	font-size:85%;
	/* 저작권 글자 크기 : 85% */
}

/** 저작권 표시 끝 ***********************************************************************/

