@charset "utf-8";
/* 
	Name 		: font.css.
	Date		: 29/10/2023.
	Detail		: CSS File for setting Lao font on website.
	Author		: GDK. 
*/
/* Define font of program */
@font-face {
    font-family: "Phetsarath";
    src: url("../fonts/Phetsarath_OT.ttf");
}
input[type=button]{
	font:14px "Phetsarath";
	cursor:pointer;
}
input[type=submit]{
	font:14px "Phetsarath";
	cursor:pointer;
}
input[type=text]{
	font:14px "Phetsarath";
}
input[type=password]{
	font:14px "Phetsarath";
}
textarea{
	font:14px "Phetsarath";
}
body{
	font:14px "Phetsarath";
}

.alertbox{
	position: fixed;
    top: 0;
    left: 0;
	width:100%;
	height:100%;
	
	z-index: 10000000 !important;
}
#alert_box{
	position: fixed;
    top: 40%;
    left: 50%;
	width:300px;
	height:150px;
}
