/*COMMON.CSS*/
body {
	font-family: Lato, Serif;
}
#Title {
	text-align: center;
	width: 100%;
}
.pClear {
	margin: 0;
	padding: 0;
	width: 100%;
	display: block;
}
.button {
	background-color: #008CBA;
	border: none;
	color: #FFF;
	padding: 10px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	transition: all .25s;
}
.button:hover {
	background-color: #006384;
}
#Message {
	text-align: justify;
}
#TotalFineAmount {
	text-align: center;
	color: red;
	font-size: 14pt;
}
/* The Modal (background) */
.modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: #000;
	/* Fallback color */
	background-color: rgba(0,0,0,0.4);/* Black w/ opacity */
}
/* Modal Content/Box */
.modal-content {
	background-color: #fefefe;
	margin: 15% auto;
	/* 15% from the top and centered */
	padding: 20px;
	border: 1px solid #888;
}
.close {
	float: right;
	cursor: pointer;
}
.DialogTitle {
	float: left;
	padding-bottom: 1em;
	font-weight: bolder;
	font-size: larger;
}
