/* Layout ----------------------------------------------------------- */

#wrap_header 
	{
	position: fixed;
	top: 0px;
	width: 100%;
	background-color: rgba(255,255,255,1.0);
	transition: all 0.5s;
	
	/* Schlag-Schatten */
	box-shadow: 4px 1px 4px #210;
	-webkit-box-shadow: 4px 1px 4px #300;
	-moz-box-shadow: 4px 1px 4px #300;
	z-index: 50;
	}

header {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0px 2px;
	transition: all 0.35s;
	font-size: 1em;
	/* border: 1px solid #ccc; */
	box-sizing: border-box;
	}

header.big {
	height: 150px;
	}

header.small {
	height: 80px; 
	}

img.logo
	{
	float: left;
	transition: all 0.5s;
	}

img.logo_big {
	height: 70px;
	margin-top: 10px;
	}

img.logo_small {
	height: 40px;
	margin-top: 5px;
	text-align: right;
	}
/* ende Header 2018  */

#login_top
	{ 
	position: fixed;
	top: 0; left: 50%;
	margin-left: -600px;
	margin-bottom: 60px;
	text-align: right;
	width: 100%;
	max-width: 1200px;
	transition: all 0.5s;
	/* border: 1px dotted #6593D9; */
	z-index: 999;
	}

#login_top.big { margin-bottom: 60px; }
#login_top.small { margin-bottom: 20px; }

nav { 
	float: right;
	width: 1190px;
	text-align: right;
	/* border-left: 1px dotted #999; */
	}

nav.sub { border-top: 1px solid #6593D9; }

nav.big { width: 1190px; }
nav.small { width: 1060px; }
	

#wrap_main
	{
	position: absolute;
	width: 100%;
	top: 140px;
	background-color: none;
	}

main {
	display: block;
	width: 100%;
	max-width: 1200px;
	padding: 20px 40px;
	background-color: #fff;
	margin: 20px auto;
	box-sizing: border-box; /* */
	}

#wrap_footer {
	position: fixed;
	clear: both; 
	display: block;
	margin: 0;
	bottom: 0px;
	width: 100%;
	background-color: #fff; 
	border-top: 1px solid #bbb;
	/* Schlag-Schatten */
	box-shadow: 4px 1px 4px #210;
	-webkit-box-shadow: 4px 1px 4px #300;
	-moz-box-shadow: 4px 1px 4px #300;
	z-index: 50;	
	}

footer {
	display: block; 
	width: 100%;
	max-width: 1200px;
	height: 40px;
	line-height: 40px;
	margin: 0 auto;
	text-align: center;
	}

#service 
	{
	float: right; 
	margin-top: 88px;
	width: 580px;
	text-align: right;
	font-size: 12px;
	}

.box
	{ 
	background-color: #fff; 
	/* runde Ecken */
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	
	border: 1px solid #aaa;
	
	/* Schlag-Schatten */
    -webkit-box-shadow: 4px 1px 4px #333;
    -moz-box-shadow: 4px 1px 4px #333;
    box-shadow: 4px 1px 4px #333;
	padding: 10px;
	}
	
.home_box 
	{
	float: left;
	width: 31%;
	min-width: 255px;
	min-height: 100px;
	margin-right: 1%;
	margin-bottom: 10px;
	box-sizing: border-box;
	}
	
#claim_home
	{
	float: left;
	width: 700px;
	font-size: 16px;
	color: #fff;
	margin-bottom: 20px;
	}

#links
	{
	float: left;
	width: 188px; /* gesamt: 190px */
	margin-top: 10px;	
	}

#navi
	{
	float: left;
	width: 180px; /* gesamt: 190px */
	}

#login, .register_link
	{
	float: left;
	width: 180px; /* gesamt: 190px */
	margin-top: 10px;
	}

/*  Hinweisboxen ----------------------------- */
.box_ok, .box_notice, .box_error
	{
	background-color: #eee;
	background-repeat: no-repeat;
	background-position:  10px 10px;
	width: 450px; 
	padding: 7px 7px 7px 35px; 
	margin-buttom: 15px;
	}

.box_ok
	{
	background-image: url(/pic/symb_haken.gif);
	border: 1px solid #090; 
	}

.box_notice
	{
	background-image: url(/pic/symb_notice.gif);
	border: 1px solid #fc0; 
	}

.box_error
	{
	background-image: url(/pic/symb_kreuz_rot.gif);
	border: 1px solid #900; 
	}
