﻿@charset "utf-8";
/* CSS Document */

html{
	font-family:Verdana, Geneva, sans-serif;
	font-size: 12px;
	background-color:#9CF;
}

h3{
	font-size: 14px;
	padding:4px 10px;
	margin:0 0 4px;
}
p{
	padding: 0;
	margin: 0 0 5px;
}
/*******************************************************************/
ul.messages{
	background-color: #FF6;
	list-style-type:none;
	padding:5px;
	margin:5px 10px;
	font-weight: bold;
}
ul.messages.error{
	border:2px solid #F00;
	font-weight: bold;
}
ul.messages.info{
	border:2px solid #00F;
	font-weight: bold;
}
ul.messages.success{
	background-color: #FFC;
	border:2px solid #090;
}
ul.messages.debug{
	border:2px dashed #00C;
}
/*******************************************************************/
div.box{
	color: #363636;
	background-color: #8BE;
	min-width: 200px;
	max-width: 400px;
	padding: 0 0 4px 0;
}
div.box.full{
	max-width: 100%;
}
div.box h3{
	color: #363636;
	background-color: #69C;
	border: 1px solid #3D3834;
}
div.box p{
	padding: 0 10px;
}
/*
div#login p span{
	display:inline-block;
	width:30%;
}
*/

div.box input,
div.box select{
	background-color:#EFEFEF;
	color:#000;
	width: calc(100% - 10px);
	padding: 5px;
	border: 1px solid #3D3834;
}
div.box select{
	padding: 5px;
	width: calc(100% + 1px);
}
div.box select.datum_tag{
	width: 20%;
}
div.box select.datum_monat{
	width: 50%;
}
div.box select.datum_jahr{
	width: 20%;
}
div.box input.checkbox{
	width:auto;
}
/*
div.box input.width50{
	width:50px;
}
*/

div.box input.button{
	border:1px solid #3D3834;
	width: calc(100% + 4px);
	cursor: pointer;
	background-color: #FFC;
}
div.box a.button{
	display:inline-block;
	background-color: #FFC;
	border:1px solid #3D3834;
	width: calc(100% - 10px);
	cursor: pointer;
	padding: 5px;
	text-align:center;
	color: #000;
	text-decoration:none;
}
/*******************************************************************/
p.error{
	color:#900;
}
div.box p.error input,
div.box p.error select{
	border-color: #900;
	background-color:#FAEBD7;
}
p.info{
	color:#006;
}
/*******************************************************************/
div.box table{
	width: 100%;
}
div.box table th{
	text-align:left;
	font-weight:bold;
}
div.box table tr:nth-child(even){
	background-color: #88BBEE;
}
div.box table tr:nth-child(odd){
	background-color: #99CCFF;
}
div.box table tr.success{
	background-color: #66CC00;
}
/*******************************************************************/
p#footer{
	text-align:right;
	font-size:10px;
}
/*******************************************************************/
/*******************************************************************/
@media only screen and (max-width: 500px) {
	.hideSmall{
		display:none;
	}
}
@media only screen and (min-width: 501px) {
	.hideLarge{
		display:none;
	}
}