/*
	date_chooser.css

	2009-09-23			(c) Johannes Frank <jfrank@aejf.de>
*/

input.date-chooser-button
{
width:20px;
height:20px;
margin:0px;

	background-image:		url("../img/icon_calendar_16x16.gif");
	background-position:		center center;
	background-repeat:		no-repeat;
}

table.date-chooser-calendar
{
	display:			inline;
	position:			absolute;
	margin:				0px;
	padding:			0px;
	border-left:			1px solid #ffffff;
	border-right:			1px solid #ffffff;
	border-top:			none;
	border-bottom:			1px solid #ffffff;
	border-collapse:		collapse;
	color:				#000000;
	background-color:		#eeeeee;
}

/*
table.date-chooser-calendar[hidden]
{
	display:			none;
}
*/

table.date-chooser-calendar.hidden { display: none; }

table.date-chooser-calendar th
{
	padding:			2px;
	text-align:			center;
	font-weight:			bold;
}

table.date-chooser-calendar tr.title th
{
	color:				#ffffff;
	background-color:		#000066;
}

table.date-chooser-calendar th.prev,
table.date-chooser-calendar th.next
{
	cursor:				pointer;
}

table.date-chooser-calendar th.prev:hover,
table.date-chooser-calendar th.next:hover
{
	background-color:		#202066;
}

table.date-chooser-calendar th.title
{
}

table.date-chooser-calendar tr.dow th
{
	color:				#666666;
	font-size:			90%;
	font-weight:			normal;
}

table.date-chooser-calendar th.sunday,
table.date-chooser-calendar td.sunday
{
	color:				#666666;
}

table.date-chooser-calendar td
{
	width:				2em;
	height:				2em;
	text-align:			center;
	cursor:				pointer;
}

table.date-chooser-calendar td.current,
table.date-chooser-calendar td:hover
{
	background-color:		#cccccc;
}

table.date-chooser-calendar td.today
{
	font-weight:			bold;
}
