body {
	padding: 5px;
	margin: 0px;
}

hr {
	border: solid 1px rgb(0,0,0);
}

h1 {
	font-weight: bold;
	font-size: 25px;
}

span {
	padding-left: 10px;
	padding-right: 10px;
}

p {
	padding-left: 10px;
}

.page-title {
	margin: -5px -5px 0px -5px;
	font-weight: bold;
	font-size: 35px;
	background-color: rgb(220,220,220);
	padding: 5px 0px 5px 10px;
}

ul.alt > li {
	list-style-type: none;
}

.date {
/*
	border-left: solid 5px rgb(0,0,0);
	border-bottom: solid 2px rgb(0,0,0);
	padding: 2px 5px 2px 5px;
	margin-right: 10px;
*/
}
.date:before {
	content: "[";
}
.date:after {
	content: "]";
}

.button {
	/* 基本 */
	cursor: pointer;
	color: rgb(222,222,222);
	background-color: rgb(54,153,203);
	font-weight: bold;
	border-style: none;
	border-radius: 10px;
	padding: 5px 10px 5px 10px;
	/* グラデーション */
	background-image:
		-webkit-gradient(
			linear,
			left top,
			left bottom,
			color-stop(25%, rgb(147,202,233)),
			color-stop(75%, rgb(54,153,203))
		);
	background-image:
		-moz-linear-gradient(
			center top,
			rgb(147,202,233) 25%,
			rgb(54,153,203) 75%
		);
	/* 1pxのライン */
	border: 1px solid #669;
	/* 左上のライン */
	box-shadow:
		1px 1px 0 rgba(255,255,255,.5) inset,
		0 15px 10px -10px rgba(0, 0, 0, 0.5);
	/* シャドウ
	 * http://nicolasgallagher.com/css-drop-shadows-without-images/
	 */
	box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5);
	/* レタープレス効果 */
	text-shadow:
		1px 1px 1px rgba(255,255,255,.3),
		-1px -1px 1px rgba(0,0,0,.3);
}
