/* compliance.html のスタイルシート */

* {
	margin: 0;
	padding: 0;
}

body {
	padding: 15px;
	background-color: white;
}

h1 {
	margin-bottom: 20px;
	padding: 5px;
	line-height: 130%;
	font-size: 160%;
	font-weight: bold;
	border-bottom: 5px double darkblue;
	text-align: center;
}

h2 {
	margin-bottom: 10px;
	padding: 5px;
	padding-top: 2px;
	padding-bottom: 2px;
	font-size: 120%;
	font-weight: bold;
	line-height: 130%;
	border: 1px dashed darkblue;
	color: darkblue;
	background-color: whitesmoke;
}

h3 {
	padding: 5px;
	padding-left: 20px;
	line-height: 130%;
	font-size: 100%;
	font-weight: bold;
}

ul {
	margin-bottom: 10px;
	padding-left: 50px;
	padding-right: 50px;
	padding-top: 2px;
	padding-bottom: 2px;
	list-style-type: square;
	list-style-position: outside;
}

li {
	font-size: 90%;
}

p {
	margin-bottom: 10px;
	padding: 5px;
	font-size: 70%;
	border-top: 1px solid darkblue;
	border-bottom: 1px solid darkblue;
}

.home {
	text-align: right;
	font-size: 90%;
}

