/*垂直方向の中央寄せ　ここから*/
html,body{
	height: 100%;
	margin: 0 auto; padding: 0;
	display: table;
}
html{
    display:table;
}
body{
	min-height: 100%;
	max-height: 100%;
	margin: 0 auto; padding: 0;
	text-align:center;	/*中央に配置する*/
	display: table-cell;
	vertical-align:middle;
}
em{
	font-style: normal;
	font-weight: normal;
	color:rgb(140,0,0);
}strong{
	color: rgb(162,156,154);
}
/*ここまで*/

h1 {
	font-size:20px;
	margin-top:0px;
	margin-bottom:0px;
	letter-spacing: 0px;
	color: rgb(76,63,63);
}
h2{
	font-size:13px;
	margin-top:0px;
	margin-bottom:2px;
	letter-spacing: 0px;
	font-weight:bold;
	color: rgb(76,63,63);
	text-align:center;
}
p {
	font-size:12px;
	color: rgb(76,63,63);
}

/*リンク色指定等*/
a{/*リンクされた文字*/
	color: rgb(76,63,63);
	font-style:normal;
	text-decoration:none;
}
a:link {/*未訪問のリンク*/
	color: rgb(76,63,63);
	font-style:normal;
	text-decoration:none;
}
a:visited {/*訪問後のリンク*/
	color: rgb(76,63,63);
	text-decoration:none;
}
a:hover {/*マウスをのせたとき*/
	color:rgb(140,0,0);
	font-style:normal;
	text-decoration:none;
}
a:active {/*クリック中*/
	text-decoration:none;
}

/*メニュー項目のブロック全体*/
nav{
	text-align:center;
	position: fixed !important;
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	padding-top: 0.5em;
	padding-bottom: 2em;
	background-color: #fff;
}
nav ul{
	margin:0 auto 0 auto;	/*autoを左右に指定してブロック自体を中央配置*/
	text-align:center;	/*メニュー項目を中央に配置する*/
	overflow:hidden; zoom:1;	/*内側の要素にfloatプロパティがあるときのおまじない*/
	margin: 0;	/*ulタグの領域の外側の余白を0にリセット*/
	padding:0;	/*ulタグの領域の内側の余白を0にリセット*/
	list-style:none;	/*メニュー項目先頭の黒丸を消去*/
	letter-spacing: 0px;
}
/*メニュー項目のli要素*/
nav li{
	display:inline-block;		/*この要素を左から横に並べる*/
	margin:0;
	margin-left: 1px;
	margin-right: 1px;
	padding:4px;
	font-weight: bold;
}
footer{
	text-align:center;
	position: fixed !important;
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	background-color: #fff;
}
footer p{
	text-align:center;
	margin:0;
	margin-left: 1px;
	margin-right: 1px;
	padding:4px;
}
/*IE6向けの設定*/
* html footer li{
	display:inline; zoom:1;	
}
/*IE7向けの設定*/
*+html footer li{
	display:inline; zoom:1;	
}


article2 ul{
	margin:0 auto 0 auto;	/*autoを左右に指定してブロック自体を中央配置*/
	text-align:center;	/*メニュー項目を中央に配置する*/
	overflow:hidden; zoom:1;	/*内側の要素にfloatプロパティがあるときのおまじない*/
	margin:0;	/*ulタグの領域の外側の余白を0にリセット*/
	padding:0;	/*ulタグの領域の内側の余白を0にリセット*/
	list-style:none;	/*メニュー項目先頭の黒丸を消去*/
	letter-spacing: 0px;
}
article2 li{
	display:inline-block;		/*この要素を左から横に並べる*/
	margin:0;
	padding:4px;
	font-weight: bold;
}
article2 p{
	display:inline-block;		/*この要素を左から横に並べる*/
	text-align:center;
	margin:0;
}/*IE6向けの設定*/
* html .article1 li{
	display:inline; zoom:1;	
}
/*IE7向けの設定*/
*+html .article1 li{
	display:inline; zoom:1;	
}

#text_read{
	margin-left:15px;
	margin-right:15px;
}