/*
		基礎、区画
*/
#ground {
	width: 770px;			/* 全幅 */
	margin: 0px auto;
	padding: 0px 15px;
	background-color: #ffffff;
	position: relative;
}

#base {
	width: 770px;			/* range of draw */
/*	margin-left: 15px;	*/
	background-color: #CCFFFF;
	position: absolute;
}

#contents-base {			/* contents area base */
	width: 650px;
	min-height: 800px;
	top: 0px;
	float: right;
/*	margin-left: 120px;	*/
	padding: 0px 0px 20px 0px;
	background-color: #FFFFFF;
	text-align: center;
}

#menu-base {				/* menu area base */
	width: 120px;
	top: 0px;
	float: left;
/*	margin-left: 15px;	*/
	padding: 0px;
	background-color: #CCFFFF;
	background-repeat: no-repeat;
	text-align: center;
	position: absolute;
}


/*
		contents settings
*/
#contents-body {			/* main */
	width: 650px;
	margin: 0px;
	padding:0px;
	background-color: #FFFFFF;
}

#contents-title {			/* title */
	background-image : url("images/title-back1.jpg");
	color : #000080;
	text-shadow:3px 3px 3px #808080;
	background-color: #ffffff;
	background-repeat: no-repeat;
	line-height: 65px;
	margin: 0px 0px 10px 0px;
}		/* title color
	1: 000080 (navy)	2: 00ffff (Aqua)	3: 00ff00 (lime)
	4: ff6600	5: 00ccff	6: ff66cc 
	7: 33ff00	8: 0000ff (Blue)
	9: fafad2 (lightgoldenrodyellow)
	A: ff9900	B: 000066	C: 008000 (Green)
	12月は text-shadow:3px 3px 2px #000000; も着ける*/


/*
		menu list settings
*/
ul.menu-list {				/* list base */
	display:block;
	font-family: "ＭＳ ゴシック",sans-serif;
	font-size: 10px;
	text-align: left;
	margin-left: 0px;
	background-color: #CCFFFF;
	list-style: none;
}

ul.menu-list li a {			/* link */
	display:block;
	color: #000000;
	background-image: url("images/arrow.gif");
	background-repeat: no-repeat;
	background-position: 8px center;
	margin-left: -20px;
	padding: 2px 0px 2px 22px;
}

ul.menu-list li a:hover {	/* hover */
	display:block;
	color: #FFFFFF;
	background-color: #0000FF;
	background-image: url("images/arrow_h.gif");
	background-repeat: no-repeat;
	background-position: 8px center;
	margin-left: -20px;
	padding: 2px 0px 2px 22px;
}

#menu-list-now {			/* 今いるところ */
	display:block;
	color: #FFFFFF;
	background-color: #0000FF;
	background-image: url("images/arrow_h.gif");
	background-repeat: no-repeat;
	background-position: 8px center;
	cursor: default;
	margin-left: 0px;
	padding: 2px 0px 2px 22px;
}


/* 教会バナー専用 */
ul.menu-list-banner {		/* list base */
	display:block;
	font-family: "ＭＳ ゴシック",sans-serif;
	font-size: 10px;
	text-align: left;
	margin-left: -20px;
	list-style: none;
}

ul.menu-list-banner li a {	/* link */
	display:block;
	width: 120px;
	text-align: left;
	color: #CCFFFF;
	background-image: url("images/banner.gif");
	background-position:50% 50%;
	background-repeat: no-repeat;
	list-style: none;
	line-height: 37px;
}

ul.menu-list-banner a:hover {	/* hover */
	display:block;
	width: 120px;
	text-align: center;
	color: #0000FF;
	background-color: #0000FF;
	background-image: url("images/banner.gif");
	background-position:50% 50%;
	background-repeat: no-repeat;
	list-style: none;
	line-height: 37px;
}

#copyright {				/* 左リスト下の著作権表示 */
	text-align: center;		/* left,center,right */
	font-style: italic;		/* normal,italic,oblique */
	font-size: 70%;
}


