/*
	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 */
.tcal_enInput {
	cursor: pointer;
	background-color: #FFF;
	background-image: url(img/cal.png);
	background-repeat: no-repeat;
	background-position: 100% 50%;
}
.tcal_enInput: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 */
.tcal_enActive {
	background-image: url(img/no_cal.png);
}
.tcal_enActive:hover {
	background-image: url(img/no_cal_hover.png);
}
/* container of calendar's pop-up */
#tcal_en {
	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 */
#tcal_enControls {
	border-collapse: collapse;
	border: 0;
	width: 100%;
	background-color: #E6E6E6;
	background-image: url(../../images/efekt.png);
	background-repeat: repeat-x;
	background-position: center top;
}
#tcal_enControls td {
	border-collapse: collapse;
	border: 0;
	padding: 0;
	width: 16px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
	min-width: 0px;
}
#tcal_enControls td:hover {
	background-color: #838383;

}
#tcal_enControls td:active {
	background-color: #FC0;
}
#tcal_enControls 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;
}
#tcal_enPrevYear {

	background-image: url(img/prev_year.png);

}
#tcal_enPrevYear:hover {
	background-image: url(img/prev_year_hover.png);
}
#tcal_enPrevYear:active {
	background-image: url(img/prev_year.png);
}
#tcal_enPrevMonth {
	background-image: url(img/prev_mon.png);
}
#tcal_enPrevMonth:hover {
	background-image: url(img/prev_mon_hover.png);
}
#tcal_enPrevMonth:active {
	background-image: url(img/prev_mon.png);
}
#tcal_enNextMonth {
	background-image: url(img/next_mon.png);
}
#tcal_enNextMonth:hover {
	background-image: url(img/next_mon_hover.png);
}
#tcal_enNextMonth:active {
	background-image: url(img/next_mon.png);
}
#tcal_enNextYear {
	background-image: url(img/next_year.png);
}
#tcal_enNextYear:hover {
	background-image: url(img/next_year_hover.png);
}
#tcal_enNextYear:active {
	background-image: url(img/next_year.png);
}
/* table containing week days header and calendar grid */
#tcal_enGrid {
	border-collapse: collapse;
	width: 100%;
	background-color: #E6E6E6;

}
#tcal_enGrid 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;
}
#tcal_enGrid 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;
}
#tcal_enGrid td:hover {
	background-color: #FC0;
}
#tcal_enGrid td.tcal_enOtherMonth { color: silver; }
#tcal_enGrid td.tcal_enWeekend {
	background-color: #FFEEB3;
}
#tcal_enGrid td.tcal_enWeekend:hover {
	background-color: #FC0;
}
#tcal_enGrid td.tcal_enToday {

	border: 1px solid #F90;
}
#tcal_enGrid td.tcal_enSelected {
	background-color: #FFCC00;
}
