/* Error.css */
/* Styles for the error alert */

#error {
	position: fixed;
	left: 0px;
	top: -75px;
	margin: 0px;
	width: 100%;
	background-color: white;
	border-bottom: 2px solid black;
	padding-top: 8px;
	padding-left: 12px;
	padding-right: 10px;
	padding-bottom: 4px;
	cursor: pointer;
	color: black;
	font-size: 12pt;
}

#error div.title {
	font-weight: bold;
	margin-left: 20px;
}

#error ul {
	margin: 0px;
	padding: 0px;
}
#error ul li {
	list-style-type: none;
	margin-bottom: 4px;
}