html, body { /* html und body brauchen diese Angabe */
	height:100%;
	font-family: Arial, sans-serif;
}

div.spacer {
	width:1px;
	height:35%;
	float:left;
}
div.main {
	width: 375px;
	height: 50px;
	margin: 0 auto;
	position: relative; /* hebt den inhalt vor den space  */
	clear: both; /* hebt das float vom space auf  */

	background: -webkit-gradient(linear, left top, left bottom, from(#aaa), to(#666));
	background: -moz-linear-gradient(top, #aaa, #666);
	-pie-background: linear-gradient(#aaa, #666);

	border-radius: 25px;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;

	box-shadow: 3px 3px 5px #888;
	-moz-box-shadow: 3px 3px 5px #888;
	-webkit-box-shadow: 3px 3px 5px #888;

	behavior: url(PIE.htc);
}

.main span {
	font-size: 14pt;
	font-weight: bold;
	line-height: 50px;
	margin: 0 5px 0 20px;
	color: white;
	text-shadow: 1px 1px 3px #888;
}

.main img {
	border: 0;

	margin-left: 18px;
	vertical-align: -9px;

	box-shadow: 2px 2px 3px #555;
	-moz-box-shadow: 2px 2px 3px #555;
	-webkit-box-shadow: 2px 2px 3px #555;

	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

.main img:hover {
	margin: -1px 1px 1px 17px;

	box-shadow: 3px 3px 5px #555;
	-moz-box-shadow: 3px 3px 5px #555;
	-webkit-box-shadow: 3px 3px 5px #555;
/*
	behavior: url(PIE.htc);
*/
}

div.copy {
	margin: 3px auto 0;
	color: #999;
	width: 300px;
	font-size: 9pt;
	text-align: center;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
	clear: both;
}

.copy a {
	color: #66c;
	text-decoration: none;
}

.copy a:hover {
	text-decoration: underline;
}

