*{
	margin: 0;
	padding: 0;
	font-family: pyidaungsu;
}
@font-face{
	font-family: "pyidaungsu";
	src:
	url("../Font/PyidaungsuRegular.ttf") format("ttf"),
	url("../Font/PyidaungsuBold.ttf") format("ttf")
}

/*Background*/
	.main-background {
		position: fixed;
		width: 100%;
		height: 100%;
		box-sizing: border-box;
		min-width: 1300px;
		min-height: 600px;
	}
	.centered-box {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
	}
	.pop-bg {
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		box-sizing: border-box;
	}
	.pop-box {
		display: inline-block;
		box-sizing: border-box;
	}
	.label-box {
		display: inline-block;
		box-sizing: border-box;
		margin: 5px;
	}
	.label-box p {
		font-size: 13px;
		margin-bottom: 2px;
	}

/*Border Radius*/
	.br10 {border-radius: 10px;}
	.br5 {border-radius: 5px;}
	.br3 {border-radius: 3px;}
/*Shadow*/
	.sd3 {box-shadow: 0 0 3px black;}
	.sd5 {box-shadow: 0 0 5px black;}
	.sd10 {box-shadow: 0 0 10px black;}
	.sd15 {box-shadow: 0 0 15px black;}
/*Padding*/
	.pd15 {padding: 15px;}
/*Float*/
	.fLeft {
		float: left;
	}
	.fRight {
		float: right;
	}
/*Scroll*/
	.scroll {
		overflow-y: auto;
	}