body, td, input {
	font-family: Arial, sans-serif;
	font-size: small;
}

div#site_frame {
	width: 900px;
	margin-right: auto;
	margin-left: auto;
}

input[type='text'] {
	background-color: #fcfcfc;
}

input[required], select[required] {
	background-color: #fff0f0;
}

li {
	margin-bottom: 0.5em;
}

/* Notice banner */
.notice {
	border: solid 1px gray;
	margin: 3px;
	text-align: center;
	font-weight: bold;
	background-color: #f4f4f4;
	border-radius: 6px;
}

/* Main form table */
table.form-table {
	width: 100%;
}

/* Hidden dialog/info panels */
#dialog-confirm,
#calgary-info,
#judge_approval {
	display: none;
}

/* Equipment table */
#equipment {
	width: 100%;
}

/* Submit button */
input[type="submit"] {
	padding: 10px 20px;
}

input.invalid{
	outline:1px solid gold;
}

div.errormsg{
	padding:5px;
	position:absolute;
	display:inline-block;
	color:black;
	font-size:14px;
	margin:0;
	margin-left:10px;
	font-weight:normal;
	background-color:white;
	border:1px solid black;
	border-radius:5px;
	box-shadow:5px 5px 5px rgba(0,0,0,0.5);
	z-index:1;
}

div.errormsg:before,div.errormsg:after{
	position:absolute;
	left:-10px;
	bottom:5px;
	content:" ";
	width:0;
	height:0;
	padding:0;
	border:10px solid transparent;
	border-width:8px 10px;
	border-right-color:inherit;
	border-left-width:0;
}

div.errormsg:after{
	border-right-color:white;
	left:-8px;
}