/*
	FONT SIZE SET
	<p>
	class :	font-xxl	MAX-SIZE
			font-xl		.
			font-l		.
			font-m		NOMAL
			font-s		.
			font-xs		.
			font-xxs	SMALL
	
	<div>
	class :	center		CENTER
 */

p.font-xxl {
	font-size: xx-large; }
p.font-xl {
	font-size: x-large; }
p.font-l {
	font-size: large; }
p.font-m {
	font-size: medium; }
p.font-s {
	font-size: small; }
p.font-xs {
	font-size: x-small; }
p.font-xxs {
	font-size: xx-small; }
div.center {
	width:80%;
	margin-left: auto;
	margin-right: auto; }
