/*
	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 {
	cursor: pointer;
	background-color: #FFF;
	background-image: url(img/cal.png);
	background-repeat: no-repeat;
	background-position: 100% 50%;
}
.tcalInput:hover {
	background-image: url(img/cal_hover.png);
	/*border: 1px solid #FC0;*/
}
/* additional properties for input boxe in activated state, above still applies unless in conflict */
.tcalActive {
	background-image: url(img/no_cal.png);
}
.tcalActive:hover {
	background-image: url(img/no_cal_hover.png);
}
/* container of calendar's pop-up */
#tcal {
	position: absolute;
	visibility: hidden;
	z-index: 99999999;
	width: 170px;
	background-color: #E6E6E6;
	margin-top: 2px;
	border: 1px solid silver;	/*-moz-box-shadow: 3px 3px 4px silver;*/	/*-webkit-box-shadow: 3px 3px 4px silver;*/
	/*box-shadow: 3px 3px 4px silver;*/
	/*-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='silver')";*/
	/*filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='silver');*/
	border-radius: 5px;
	padding: 0px;
}

/* table containing navigation and current month */
#tcalControls {
	border-collapse: collapse;
	border: 0;
	width: 100%;
	background-color: #E6E6E6;
	background-repeat: repeat-x;
	background-position: center top;
	display:table;
	margin: 0;
}
#tcalControls td {
	border-collapse: collapse;
	border: 0;
	padding: 0;
	width: 16px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
	min-width: 0px;
}
#tcalControls td:hover {
	background-color: #838383;	
	
}
#tcalControls td:active {
	background-color: #FC0;	
}
#tcalControls th {
	border-collapse: collapse;
	border: 0;
	padding: 0;
	line-height: 25px;
	font-size: 10px;
	text-align: center;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: normal;
	white-space: nowrap;
	color: #000;
	border-radius: 0px;
	cursor: default;
	min-width: 0px;
}
#tcalPrevYear {
		
	background-image: url(img/prev_year.png);
	
}
#tcalPrevYear:hover {
	background-image: url(img/prev_year_hover.png);
}
#tcalPrevYear:active {
	background-image: url(img/prev_year.png);
}
#tcalPrevMonth {
	background-image: url(img/prev_mon.png);
}
#tcalPrevMonth:hover {
	background-image: url(img/prev_mon_hover.png);
}
#tcalPrevMonth:active {
	background-image: url(img/prev_mon.png);
}
#tcalNextMonth {
	background-image: url(img/next_mon.png);
}
#tcalNextMonth:hover {
	background-image: url(img/next_mon_hover.png);
}
#tcalNextMonth:active {
	background-image: url(img/next_mon.png);
}
#tcalNextYear {
	background-image: url(img/next_year.png);
}
#tcalNextYear:hover {
	background-image: url(img/next_year_hover.png);
}
#tcalNextYear:active {
	background-image: url(img/next_year.png);
}
/* table containing week days header and calendar grid */
#tcalGrid {
	border-collapse: collapse;
	width: 100%;
	background-color: #E6E6E6;
	display:table;
	margin:0;
}
#tcalGrid th {
	border-collapse: collapse;
	padding: 3px 0;
	text-align: center;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 10px;
	background-color: #CCC;
	color: #000;
	border-radius: 0px;
	font-weight: normal;
	cursor: default;
	min-width: 0px;
}
#tcalGrid td {
	border-collapse: collapse;
	padding: 2px 0;
	text-align: center;
	font-family: Tahoma, Geneva, sans-serif;
	min-width: 0px;
	width: 14%;
	font-size: 11px;
	cursor: pointer;
	background-color: #FFFFFF;
}	
#tcalGrid td:hover {
	background-color: #FC0;
}		
#tcalGrid td.tcalOtherMonth { color: silver; }
#tcalGrid td.tcalWeekend {
	background-color: #FFEEB3;
}
#tcalGrid td.tcalWeekend:hover {
	background-color: #FC0;
}
#tcalGrid td.tcalToday {
	
	border: 1px solid #F90;
}
#tcalGrid td.tcalSelected {
	background-color: #FFCC00;
}		
