@charset "utf-8";

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11pt;
}

div.error-block {
	max-width: 60%;
}

.alert {
	color: red;
	font-weight: bold;
}

div.main {
	width: 960px;
	margin: 20px auto;
	position: relative;
}

h1 {font-size: 24px; margin: 20px 0; text-transform:uppercase;}
h2 {font-size: 22px; margin: 0;}
h3 {font-size: 21px;}
h4 {font-size: 20px; margin: 0;}
h5 {font-size: 18px;}
h6 {font-size: 17px;}

textarea
{
   font-family:Arial, Helvetica, sans-serif;
   font-size: 11pt;
}

div.cert-type {
	font-weight: bold;
	font-size: 12pt;
}

div.error-highlight {
	padding: 10px;
}
.error-highlight {
	background-color: yellow;
}

table.grid {
	border-collapse: collapse;
	margin-bottom: 20px;
}
table.grid > thead > tr > td,
table.grid > tbody > tr > td {
	border: 1px solid black;
}
table.grid thead td {
	background-color: #dddddd;
	font-weight:bold;
	text-align:center;
}
div.grid {
	padding: 20px;
	border: 1px solid black;
}

table.education thead td {
	text-align: center;
}

input[type="submit"] {
	border-radius:25px;
	font-size:18px;
	padding:8px;
	width:100px;
	text-transform:uppercase;
	background:#949599;
	color:#FFFFFF;
	border:none;
	margin:10px 0px;
	cursor:pointer;
}
input[type="submit"]:hover {
	background: #FF0000;
}

input[type=checkbox] {
    transform: scale(1.5);
}


ol.lower-alpha li {
	list-style-type: lower-alpha;
}

/* Submit button waiting spinner */
div#spinner-container {
	z-index: 10;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
	/* By default, don't show the spinner: */
	display: none;
}
div.spinner {
	margin: 0px auto;
	border: 16px solid #f3f3f3; /* Light grey */
	border-top: 16px solid #3498db; /* Blue */
	border-radius: 50%;
	width: 120px;
	height: 120px;
	animation: spin 2s linear infinite;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

