/*
	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('img/cal.gif') 100% 50% no-repeat;
	padding-right: 20px;
	cursor: pointer;
}

/* additional properties for input boxe in activated state, above still applies unless in conflict */
.tcalActive {
	background-image: url('img/no_cal.gif');
}
/* container of calendar's pop-up */
#tcal {
	border-top: 1px solid #ccc;
	position: absolute;
	visibility: hidden;
	z-index: 100;
	width: 240px;
	background-color: #e6eef2;
	-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
	margin-left: -15px;
	padding: 0 2px 2px 2px;
}

/* table containing navigation and current month */
#tcalControls {
	border-collapse: collapse;
	border: 0;
	width: 100%;
}
#tcalControls td {
	border-collapse: collapse;
	border: 0;
	padding: 0;
	width: 25px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
}
#tcalControls th {
	border-collapse: collapse;
	border: 0;
	padding: 0;
	line-height: 25px;
	font-size: 14px;
	text-align: center;
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: bold;
	white-space: nowrap;
	color: #4a4a4a;
}
#tcalPrevYear { background-image: url('img/left-two.svg'); }
#tcalPrevMonth { background-image: url('img/left-one.svg'); }
#tcalNextMonth { background-image: url('img/right-one.svg'); }
#tcalNextYear { background-image: url('img/right-two.svg'); }
#tcalNextMonth,
#tcalPrevMonth {
	-webkit-background-size: 10px;
	background-size: 10px;
}
#tcalNextYear,
#tcalPrevYear {
	-webkit-background-size: 15px;
	background-size: 15px;
}

/* table containing week days header and calendar grid */
#tcalGrid {
	border-collapse: collapse;
	width: 100%;
}
#tcalGrid th {
	border-collapse: collapse;
	padding: 3px 0;
	text-align: center;
	font-family: 'InterstateMazdaRegular', 'Helvetica', 'Arial', sans-serif;
	font-size: 14px;
	background-color: transparent;
	color: #4A4A4A;
}
#tcalGrid td {
	border: 0;
	border-collapse: collapse;
	padding: 2px 0;
	text-align: center;
	font-family: 'InterstateMazdaRegular', 'Helvetica', 'Arial', sans-serif;
	width: 14%;
	font-size: 14px;
	cursor: pointer;
	color: #000000;
}		
#tcalGrid td.tcalOtherMonth {
	color: #cccccc;
}
#tcalGrid td.tcalWeekend:not(.tcalOtherMonth) {
	color: #ff1b56;
}
#tcalGrid td.tcalToday {
	border: 2px solid #000000;
}
#tcalGrid td.tcalSelected {
	background-color: #0086d3;
	color: #ffffff;
}
#tcalGrid td:hover {
	background-color: #ffffff !important;
	color: #1f2426 !important;
}
