/*
	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/cal.gif') 100% 50% no-repeat;
	font-family: Cambria;
	font-size: 20px;
	font-weight: normal;
	font-style: normal;
	background-color:#FFFFFF;
	width: 150px;
	height: 22px;
	border-bottom-color: #c7ccd0;
	border-top-color: #c7ccd0;
	border-left-color: #c7ccd0;
	border-right-color: #c7ccd0;
	border-style: solid;
	border-width: 1px;
	border-radius:1px;
	scrollbar-base-color: #ff8c00;
scrollbar-arrow-color: white;
cursor:pointer;
}

/* additional properties for input boxe in activated state, above still applies unless in conflict */
.tcalActive {
	
}
/* container of calendar's pop-up */
#tcal {
	position: absolute;
	visibility: hidden;
	z-index: 100;
	width: 300px;
}

/* table containing navigation and current month */
#tcalControls {
	border-collapse: collapse;
	border: 0;
	width: 100%;
	margin-bottom: 0px;
}
#tcalControls td {
background-color:#FFFFFF;
	border-collapse: collapse;
	border: 0;
	padding: 0;
	width: 25px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
}
#tcalControls th {
background-color:#000000;
	border-collapse: collapse;
	border: 0;
	padding: 0;
	line-height: 25px;
	font-size:20px;
	text-align: center;
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: bold;
	white-space: nowrap;
	color:#990000;
}
#tcalPrevYear { background-image: url('../images/prev_year.gif'); }
#tcalPrevMonth { background-image: url('../images/prev_mon.gif'); }
#tcalNextMonth { background-image: url('../images/next_mon.gif'); }
#tcalNextYear { background-image: url('../images/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: 20px;
	background-color:#006600;
	color: white;
}
#tcalGrid td {
background-color:#99FF33;
color:#0000FF;
	border: 0;
	border-collapse: collapse;
	padding: 2px 0;
	text-align: center;
	font-family: Tahoma, Geneva, sans-serif;
	width: 14%;
	font-size: 20px;
	cursor: pointer;
}		
#tcalGrid td.tcalOtherMonth {  color: silver; }
#tcalGrid td.tcalWeekend { background-color: #33FF00; color:#FF0000; }
#tcalGrid td.tcalToday { border: 1px solid red; }
#tcalGrid td.tcalSelected { background-color: #006600;color:#000000; }		
