/**
* Reset browser default margins and paddings
*/
* {
	padding: 0px;
	margin: 0px;
}

/**
* Set standard font and a background color for the page
*/
body {
	background-color: #ddd;
	font-family: Arial;
	font-size: 0.8em;
}

/**
* Set styles for heads
*/
h1 { font-size: 1.5em; }
h2 { }
h3 { }


/**
* Set style for the container div
*/
#warning {
	background-image: url("about.jpg");
	background-repeat: no-repeat;
	background-position: center left;
	background-color: white;
	border: 1px solid #999;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 580px;
	height: 300px;
	margin-left: -375px;
	margin-top: -200px;
	padding-left: 190px;
	text-align: center;
}

#warning h1 {
	margin-top: 135px;
}