@charset "utf-8";
/* CSS Document */

h1 {
	font-size: large;
	text-align: center;
}
h2 {
	font-size: medium;
}

.ol-lowercase {
	list-style-type: lower-alpha;
}
.ol-uppercase {
	list-style-type: upper-alpha;
}
.ol-decimal {
	list-style-type: decimal;
}


ol {
	list-style-type: decimal;
}
li {
	font-size: small;
}
ol li {
	padding-top: .5em;
}
ol li ol {
	list-style-type: lower-alpha;
}

ol li ol li ol {
	list-style-type: lower-roman;
}
ol li ol li ol li ol {
	list-style-type: upper-alpha;
}

ul li {
	padding-top: 0.1em;
}
body {
	padding: 3em;
	font-size: small;
}
