/*
###
# kalender.css
# Little javascript based calendar which is supposed to be a date-selector on
# websites.
#
# (c) 2007 by K. Ahlers
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
###
*/

.kalender {
	width: 793px;
	height: 493px;
	font-size: 9pt;
	border: 2px solid #0570AD;
	font-family: sans-serif;
}

.kalender td {
	font-size: 9pt;
	
}

.kalender a:link, .kalender a:visited, .kalender a:active {
	color: black;
	text-decoration: none;
}

.kal-header {
	text-align: center; 
	background: #FFFEA6; /*header mitte */
	color: #001A8A;
}

.kal-header-lnk {
	text-align: center;
	background: #FFFEA6; /*header button */
	color: #FFFF00;
	font-weight: bold;
	cursor: pointer;
}

.kal-day {
	background: #trans; /* Wochentage */
	text-align: center;
	cursor: pointer;

}

.kal-weday {
	background: #trans; /* Wochenende */
	text-align: center;
	font-weight: bold;
	cursor: pointer;
}

.kal-today {
	background: #trans; /* Heute */
	text-align: center;
	font-weight: bold;
	font-size:11pt;
	border: 3px solid red;
	color: red;
	cursor: pointer;
}

.kal-head {
	text-align: center;
	background: #95B3FF; /* Wochenanzeige TAGE */
	color: #001A8A;
	width: 12%;
}

.kal-week {
	background: #95B3FF; /* JahresWochenanzeige TAGE Leiste */
	text-align: center;
	font-size: 11pt;
	font-weight: bold;
	font-style: italic;
	color: #ffffff;
}

.kal-weekhead {
	text-align: center;
	background: #95B3FF;
	width: 16%;
}

.today {
	text-align: center;
	border: 1px solid #0570AD;
	background: #95B3FF; /* hintergrund HEUTE LEISTE */
	cursor: pointer;
}

.choose {
	background: #yellow; /* Push Button Farbe */
	border: 4px solid #white;
	color: #002B40;
	height: 27px;
	font-size: 11pt;
}
