@charset "utf-8";

/*==============================================================================
  タイトル: ベースデータ
  Name    : K.Takagi 
  説明    : ページ全体の余白・背景・枠線・リスト除去・位置・タイトル
==============================================================================*/


/* 全体の余白（左寄せ時空白を除去）
---------------------------------------------*/

* {
	margin: 0;
	padding: 0;
}


/* 全体の位置
---------------------------------------------*/

body {
	background:#FFFFFF;
}

/* 全体の画像の枠線除去
---------------------------------------------*/

img {
	border: none;
	vertical-align:top;/* img周辺の空白除去 */
}

/* 全体のリスト表示の除去
---------------------------------------------*/

ul {
	margin: 0;
	padding: 0;
}

li {
        list-style-type: none;
}

/* 表示エリア
---------------------------------------------*/

#contanier {
	width:790px;
	margin:auto;
}
/* ヘッダー */
	
#header {
	overflow: hidden;
	background: url("../images/bk-header.jpg") no-repeat top; 
}

/* メイン */
	
#main {

	background: url("../images/bk.jpg") repeat-y bottom; 
}

/* フッター */
	
#footer {
	clear: both;
	background: url("../images/bk-bottom.jpg") no-repeat bottom; 
	height: 90px;
}



















