/*----------------------- CSS reset ------------------------
------------------------------------------------------------*/
* {
	padding: 0;
	margin: 0;
	font-size: 100%;
	font-weight: normal;
}

ul, ol
{
	list-style: none;
}

b, strong
{
	font-weight: bold;
}

img, a img
{
	border: none;
}

/*----------------------- *BASICS ---------------------------
------------------------------------------------------------*/

body {
	font-family: Helvetica, Arial, Verdana, sans-serif;
	font-size: 12px;
	background-color: #fff;
	line-height: 20px;
	text-align: left;
	color: #000;
}

/* -------------- /BASICS -------------- */





/*----------------------- LAYOUT ---------------------------
------------------------------------------------------------*/

#wrap {
	position: absolute;
	min-width: 100%;
	min-height: 100%;
	background: url(../img/dr-pawlak-neue-seite-blur.jpg) center top no-repeat;
}

#con-wrap {
	position: absolute;
	width: 480px;
	height: 350px;
	padding: 10px;
	left: 50%;
	margin-left: -250px;
	top: 50%;
	margin-top: -175px;
	background-color: #fff;
	-webkit-box-shadow: 5px 5px 10px #58585a;
	-moz-box-shadow: 5px 5px #58585a;
	box-shadow: 0px 0px 6px #58585a;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;;
	-khtml-border-radius: 5px;
	border-radius: 5px;
}

#logo {
	position: relative;
	width: 250px;
	height: 67px;
	float: left;
	margin-bottom: 10px;
}

#content {
	position: relative;
	width: 480px;
	float: left;
}

a:link, a:visited {
	text-decoration: underline;
	color: #000;
}

a:hover, a:focus, a:active {
	text-decoration: none;
	color: #81197f;
}