﻿@charset "UTF-8";
/* CSS Document */

/* Reset browser specific definitions and define universalities */
* {
	margin:0;
	padding:0;
	font-family:Arial,Helvetica,sans-serif;
	font-size:12px;
	color:#000000;
}
html {
	margin:0;
	padding:0;
}

/* Body */
body {
	background: #F6FBFF url('images/background.jpg') repeat-x;
	margin:0;
	padding:0;
}

/* Box - Background, Hack um beim IE6 den PNG Background einzubinden ohne das die Input-Felder nicht korrekt funktionieren! */
#box_background {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 320px;
	height: 220px;
	margin-left: -160px;
	margin-top: -120px;
	background: url('images/login.png') no-repeat;
	z-Index:1;
}

/* Box */
#box_login {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 320px;
	height: 220px;
	margin-left: -160px;
	margin-top: -120px;
	z-Index:2;
}

/* Box IE6 Hack */
* html #box_login{
	/*background: url('');*/
	/*background-image: none;*/
	/*filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img/login.png', sizingMethod='scale');*/
}

/* Formular */
fieldset.form {
	padding-top:65px;
	padding-left:35px;
	font-size:13px;
	border:none;
	width:100%;
}
fieldset.form p {
	height:30px;
}
fieldset.form p.red {
	margin-left:-24px;
	height:26px;
	line-height:26px;
	font-size:11px;
	color: #CC0000;
}
fieldset.form label {
	width:90px;
	line-height:16px;
	float:left;
}
fieldset.form input {
	float:left;
	width:150px;
	height:16px;
	border: 1px solid #000000;
}
fieldset.form input.login {
	margin-left:90px;
	height:18px;
	color:#FFFFFF;
	font-weight:bold;
	border: 1px solid #5a83a1;
	background: #8bb5d4;
	letter-spacing:0.5px;
}

/* Navigation */
ul.navi {
	margin-top:25px;
	width: 100%;
	list-style: none;
	float:right;
}
ul.navi li {
	float:right;
	color:#CC0000;
	line-height:14px;
	padding:0 0.25em;
}
ul.navi a {
	line-height:14px;
}

/* Font */

/* Rot */
.red {
	font-size:11px;
	color: #CC0000;
}

/* Links */
a:link, a:visited {
	font-size:11px;
	color: #CC0000;
	text-decoration: underline;
}
a:hover {
	font-size:11px;
	color: #CC0000;
	text-decoration: underline;
}
a:active {
	font-size:11px;
	color: #CC0000;
	text-decoration:none;
}