/* CSS Document */

#webcalendar table{
	width: 99%;
	border-collapse: collapse;
	cursor: default;
}
#webcalendar td {
	height: 5em;
}
#webcalendar a:link,
#webcalendar a:visited {
	text-decoration: none;
}
#webcalendar #jahr {
	color: #4170b6;
	font-family: monospace;
	font-size: 1.5em;
	padding: 0;
	margin: 0;
	text-align: center;
}
#webcalendar #monat {
	color: #4170b6;
	font-family: monospace;
	font-size: 2em;
	padding: 0;
	margin: 0;
	text-align: center;
}
#webcalendar #tage {
	background-color: #ff9966;
	color: white;
	font-family: monospace;
}
#webcalendar #datum,
#webcalendar #leer {
	border-right: 1px solid;
	border-bottom: 1px solid;
	font-family: monospace;
	float: left;
	width: 1.5em;
	height: 1.5em;
	background-color: white;
	color: black;
	text-align: center;
}
#webcalendar #newEvent {
	display: block;
	float: left;
	width: 1em;
	height: 1em;
	text-align: center;
	background-color: #666;
	color: white;
	font-weight: bold;
	font-size: 1.2em;
	cursor: pointer;
}
#webcalendar .termin {
	color: #fff;
	font-weight: bold;
	clear: both;
	padding-left: 1em;
	padding-bottom: .75em;
	display: block;
	font-size: .75em;
}
#webcalendar .termin:hover {
	text-decoration: underline;
}
#webcalendar td {
	width: 14%;
	background-color: #90a7c9;
	border: 1px solid white;
	vertical-align: top;
}
#webcalendar span {
	cursor: pointer;
	color: blue;
}
#webcalendar span:hover {
	font-weight: bold;
	color: #330000;
}
#webcalendar .wochenende {
	background-color: #4170b6;
}
#webcalendar #leer {
	background-color: #fff;
}

#eventPanel,
#newPanel {
	position: absolute;
	left: 25em;
	top: 30em;
	width: 400px;
	background-color: #4170b6;
	border: 1px solid;
	height: 25em;
	color: #fff;
}
#eventTitle,
#newTitle {
	background-color: #ff9966;
	color: #fcfcfc;
	font-weight: bold;
	border-bottom: 1px solid #fff;
	padding: 2px;
}
#eventTitle span,
#newTitle span {
	display: block;
	float: right;
	width: 1em;
	cursor: pointer;
	margin-right: .5em;
}
#eventBody,
#newBody {
	padding: 1em .5em;
	height: 27em;
	overflow: auto;
}

.delete{
	background-color: #f0ffff;
	color: #000;
	border: 1px solid #000;
	width: 75px;
	padding: .2em;
}

#newForm input, #eventPanel input, #newForm textarea, #eventPanel textarea {
	display: block;
	margin: 0 0 .5em 0;
	padding: .2em;
	width: 300px;
	font: Arial, Helvetica, sans-serif .75em;
	border: 1px solid;
	background-color: #fcfcfc;
	color: #000000;
}
#newForm textarea {
	height: 8em;
}
#newForm input:focus, #newForm textarea:focus {
	background-color: #f0ffff;
	color: #000;
}
#newForm label, #eventPanel label {
	margin:0;
	padding: .2em;
	background-color: #ff9966;
	color: #fff;
	border: 1px solid #fff;
	border-bottom: none;
	font-weight: bold;
}
#newForm label:after {
	content: " : ";
}
#newForm ul {
	margin: .2em 0 0 0;
	padding: 0;
	text-align: right;
}
#newForm li {
	display: inline;
}
#newForm br {
	display: none;
}
#newBtnReset,
#newBtnSubmit {
	margin: 0;
	padding: .2em;
	width: auto;
	cursor: pointer;
	display: inline;
	border: 1px solid;
	background-color: #f0ffff;
	color: #000000;
}
