/*
	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('../images/tcal/cal.gif') 100% 50% no-repeat;
	border: 1px solid #A5ACB2;
	cursor: pointer;
}

/* container of calendar's pop-up */
#tcal {
	position: fixed;
	visibility: hidden;
	z-index: 42;
	width: 150px;
	top: 0px;				/* ### Vertical Position: Line 202 of tcal.js ### */
	background-color: #FFFFFF;
	margin: 0px 0px 0px 44px;
	padding: 0px;
	border: 1px solid silver;
}

/* table containing navigation and current month */
#tcalControls {
	border-collapse: collapse;
	border: 0;
	width: 100%;
}
#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: 25px;
	font-size: 10px;
	text-align: center;
	font-family: arial, Tahoma, Geneva, sans-serif;
	font-weight: bold;
	white-space: nowrap;
}
#tcalPrevYear { background-image: url('../images/tcal/prev_year.gif'); }
#tcalPrevMonth { background-image: url('../images/tcal/prev_mon.gif'); }
#tcalNextMonth { background-image: url('../images/tcal/next_mon.gif'); }
#tcalNextYear { background-image: url('../images/tcal/next_year.gif'); }

/* table containing week days header and calendar grid */
#tcalGrid {
	border-collapse: collapse;
	border: 1px solid #A5ACB2;
	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: 10px;
	background-color: gray;
	color: white;
}
#tcalGrid td {
	border: 0;
	border-collapse: collapse;
	padding: 2px 0;
	text-align: center;
	font-family: Tahoma, Geneva, sans-serif;
	width: 14%;
	font-size: 11px;
	cursor: pointer;
}		
#tcalGrid td.tcalOtherMonth { color: #A5ACB2; }
#tcalGrid td.tcalWeekend { background-color: #AAAAAA; }
#tcalGrid td.tcalToday { border: 1px solid red; }
#tcalGrid td.tcalSelected { background-color: #CCCCCC; }		
