@charset "utf-8";
/* CSS Document */
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #1D2675;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #ffffff;
}

div {
	top: 50%;
	left: 50%;
	width: 20em;
	height: 180px;
	margin-top: -90px; /*set to a negative number 1/2 of your height*/
	margin-left: -10em; /*set to a negative number 1/2 of your width*/
	position: absolute;
	text-align: center;
}
div img {
	padding: 0 0 0px 0;
	/*border-bottom: 1px dotted #bebebe;*/
}

div p {
	margin: 0 auto;
	padding: 5px 0 0 0;
	width: 20em;
	font: 1em Georgia, serif;
	/*color: #777;*/
	font-style: italic;
	text-align: center;
	display: block;
}
