/*
	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;
}*/


/* Layout helpers
----------------------------------*/
#tcal-hidden { display: none; }
#tcal-hidden-accessible { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
#tcal-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
#tcal-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; }
#tcal-clearfix:after { clear: both; }
#tcal-clearfix { zoom: 1; }
#tcal-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }

/*----*/
/* 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 
{
    z-index: 9999999;
	position: absolute;
	visibility: hidden;
	width: 19.332%;
    padding  : 0 0em 0;
	background-color: white;
	margin-top: 2px;
	padding: 0 2px 2px 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');
}

/* table containing navigation and current month */
#tcalControls {
	border-collapse: collapse;
	border: 0;
	background: #32A2E3;
	width: 100%;
	color:#FFFFFF;
	
	
}
#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: 35px;
	font-size: 12px;
	text-align: center;
	color:#FFF;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
	white-space: nowrap;
	
}
#tcalPrevYear { background: url(../images/calprev.png) no-repeat 0px 100%; }
#tcalPrevMonth { background: url(../images/calprev.png) no-repeat 0px 100%; }
#tcalNextMonth { background: url(../images/calnext.png) no-repeat 0px 100%; }
#tcalNextYear { background: url(../images/calnext.png) no-repeat 0px 100%; }

/* 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: Tahoma, Geneva, sans-serif;
    font-size: 10px;
    padding: 1.56em 0;
    color: #000000;
}
#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;
	
}

		
#tcalGrid td.tcalOtherMonth { color: silver; }
#tcalGrid td.tcalWeekend { background-color: #FFFFFF; }
#tcalGrid td.tcalToday { border: 1px solid #32A2E3; }
#tcalGrid td.tcalSelected {padding: .56em 0;
	background: #32A2E3; }		
