
/*

// ======================================
// Clan {Elite} Style-Sheet - Calendar
// --------------------------------------------------------------------

// --------------------------------------------------------------------
// Code written by Conan Theobald (c) 2001
// Visit: www.conans.co.uk
// Email: software@conans.co.uk
// ======================================

*/

/* Day of week heading */

td.calTitle {
	padding: 2px;
	width: 67px;
	height: 25px;
	text-align: center;
	vertical-align: middle;
	font-weight: bold;
	background: #444444;
	border-top: 1px solid gray;
	border-left: 1px solid gray;
	cursor: default;
}

/* A day in the future */

td.calNormal {
	padding: 0px;
	width: 67px;
	height: 65px;
/*	text-align: center;
	vertical-align: middle;*/
	background: #666666;
	border-top: 1px solid gray;
	border-left: 1px solid gray;
	cursor: default;
}

/* A day in the past */

td.calExpired {
	padding: 0px;
	width: 67px;
	height: 65px;
/*	text-align: center;
	vertical-align: middle;*/
	background: #5F5F5F;
	color: gray;
	border-top: 1px solid gray;
	border-left: 1px solid gray;
	cursor: default;
}

/* A day outside of the current calendar month */

td.calOutside {
	padding: 0px;
	width: 67px;
	height: 65px;
/*	text-align: center;
	vertical-align: middle;*/
	color: #999999;
	background: #555555;
	border-top: 1px solid gray;
	border-left: 1px solid gray;
	cursor: default;
}

/* An event in the future */

td.calEvent {
	padding: 0px;
	width: 67px;
	height: 65px;
/*	text-align: center;
	vertical-align: middle;*/
	background: #5DA383;
	cursor: default;
}

/* Todays date, no event */

td.calToday {
	padding: 0px;
	width: 66px;
	height: 24px;
/*	text-align: center;
	vertical-align: middle;*/
	font-weight: bold;
	background: #888888;
	border: 1px solid white;
	cursor: default;
}
