/*
	Stylesheet for Tigra Calendar v5.0
	Product is Public Domain (Free for any kind of applicaiton, customization and derivative works are allowed)
	URL: http://www.softcomplex.com/products/tigra_calendar/

	- all image paths are relative to path of stylesheet
	- the styles below can be moved into the document or in existing stylesheet

*/

/* input box in default state */
.tcalInput {
	background: url('cal.gif') 100% 50% no-repeat;
	padding-right: 20px;
	cursor: pointer;
}
.tcalPrevDay {
	cursor: unset;
	background: rgb(242, 242, 242);
	opacity: 0.5;
	color: rgb(118, 118, 118);
}
.tcal_Today {
	font-size: 12px;
	text-align: center;
	font-family: Tahoma, Geneva, sans-serif;
	cursor: pointer;
	color: Blue;
	margin-top: 3px;
}
.tcal_Today:hover{ background-color: #CCCCFF;}

/* additional properties for input boxe in activated state, above still applies unless in conflict */
.tcalActive {
	background-image: url('no_cal.gif');
}
/* container of calendar's pop-up */
#tcal {
	position: absolute;
	visibility: hidden;
	z-index: 100;
	width: 350px;
	background-color: white;
	margin-top: 2px;
	padding: 15px;
	border: 1px solid silver;
	box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.10);
}

/* table containing navigation and current month */
#tcalControls {
	border-collapse: collapse;
	border: 0;
	width: 100%;
	margin-bottom: 3px;
}
#tcalControls td {
	border-collapse: collapse;
	border: 0;
	padding: 0;
	width: 16px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
}
#tcalControls th {
	border-collapse: collapse;
	border: 0;
	padding: 0;
	line-height: 30px;
	font-size: 12px;
	text-align: center;
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: bold;
	white-space: nowrap;
}
#tcalControls select {
	height: 25px;
}
#tcalPrevYear { background-image: url('prev_year.gif'); }
#tcalPrevMonth { background-image: url('prev_mon.gif'); }
#tcalNextMonth { background-image: url('next_mon.gif'); }
#tcalNextYear { background-image: url('next_year.gif'); }

/* table containing week days header and calendar grid */
#tcalGrid {
	border-collapse: collapse;
	border: 1px solid silver;
	width: 100%;
}
#tcalGrid th {
	border: 1px solid silver;
	border-collapse: collapse;
	padding: 3px 0;
	text-align: center;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	background-color: #fff;
	color: #333;
}
#tcalGrid th:first-child {
	color: #c5484c;
}
#tcalGrid td {
	border: 0;
	border-collapse: collapse;
	padding: 4px 0;
	text-align: center;
	font-family: Tahoma, Geneva, sans-serif;
	width: 14%;
	font-size: 12px;
	cursor: pointer;
}
#tcalGrid td sub{
	color: inherit;
}
#tcalGrid td.tcalOtherMonth { color: silver; }
/* #tcalGrid td.tcalWeekend { background-color: #ACD6F5; } */
#tcalGrid td.tcalSelected { color: #fff; background-color: #c4474b; }
#tcalGrid td:not(.tcalSelected):hover{ background-color: #ffddde;}

