/*****************************************
■index.html用スタイルシート
・ただし以下を除く
	/index.html
	/menu.html
	/bible/index.html
*****************************************/
body {
	margin:0;
	font-family:"ＭＳ ゴシック";
	font-size:100%;
}

/*************************************************
** 本文の配置									**
** HTMLでは「本文→ナビ」の順で記述しているのを	**
** 「ナビ→本文」の順で表示する。				**
*************************************************/

/* ナビゲーションバー */
.navi {
	position:absolute;
	top:0px;
	font-size: 80%;
	width:100%;
}
.navi-left{
	margin-left:10px;
	width:60%;
	float:left;
}

.navi-right{
	text-align:right;
	margin-right:10px;
}

/* 本文 */
.main {
	position:relative;
	top:1em;
}

/* フッタ */
.footer {
	position:relative;
	top:2em;
	padding:0em;
	margin:0em;
	width:100%;
	height:35px;
}
.footer-banner{
	width:100px;
	float:left;
	margin:0em;
}
.footer-history{
	float:left;
	font-size:70%;
}

/****************/
/* その他の要素 */
/****************/

.menu {
	font-size: 80%;
}

p {
	margin-left:20px;
	margin-right:20px;
	line-height:1.5em;
}

li {
	margin-left:20px;
	margin-right:20px;
	line-height:1.5em;
}

