/*
	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, #date_ot, #date_do{
	background: url('/img/cal.png') 98% 50% no-repeat !important;
	padding-right: 20px;
	cursor: pointer;
}

/* additional properties for input boxe in activated state, above still applies unless in conflict */
.tcalActive, .tcalActive#date_ot, .tcalActive#date_do {
  background: url('/img/no_cal.png') 98% 50% no-repeat !important;
}
/* container of calendar's pop-up */
#tcal {
    position: fixed;
	visibility: hidden;
	z-index: 10000 !important;
	width: 170px;
	  background-color: #535A88;
	margin-top: 2px;
	padding: 0 2px 2px 2px;
	  border: 1px solid rgb(136, 143, 190);
	
	/*-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');*/
}
#tcal, #tcal td, #tcal tr {
-webkit-transition: all 0s ease-in-out;
-moz-transition: all 0s ease-in-out;
-o-transition: all 0s ease-in-out;
-ms-transition: all 0s ease-in-out;
}

#tcal td:hover {
background-color: #0797D7 !important;
}

/* 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: Tahoma, Geneva, sans-serif;
	font-weight: bold;
	white-space: nowrap;
}
#tcalPrevYear { background-image: url('/img/prev_year.png'); }
#tcalPrevMonth { background-image: url('/img/prev_mon.png'); }
#tcalNextMonth { background-image: url('/img/next_mon.png'); }
#tcalNextYear { background-image: url('/img/next_year.png'); }

/* table containing week days header and calendar grid */
#tcalGrid {
	border-collapse: collapse;
	/*border: 1px solid silver;*/
	width: 100%;
}
#tcalGrid th {
	
	border-collapse: collapse;
	padding: 3px 0;
	text-align: center;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 10px;
	
	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;
	color: #fff;
}		
#tcalGrid td.tcalOtherMonth { color: silver; }
#tcalGrid td.tcalWeekend { 
  background-color: #888FBE;
}
#tcalGrid td.tcalToday { 

}
#tcalGrid td.tcalSelected { background-color: #FFFFFF;
  color: #000; }	

.pos_abs {
    position: absolute !important;
}

.pos_fix {
    position: fixed !important;
}	
