/*
	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('../images/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('../images/no_cal.gif');*/

}

/* container of calendar's pop-up */
#tcal {
    position: fixed;
    visibility: hidden;
    z-index: 100;
    width: 209px;
    background-color: white;
    margin-top: 11px;
    margin-left: 10px;
    padding: 0 0px 0px 0px;
    border: 1px solid silver;
    -webkit-box-shadow: 0px 0px 10px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: 0px 0px 10px rgba(50, 50, 50, 0.2);
    box-shadow: 0px 0px 10px rgba(50, 50, 50, 0.2);
}

/* table containing navigation and current month */
#tcalControls {
    border-collapse: collapse;
    border: 0;
    width: 100%;
    background: #348ddf;
}

#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-weight: bold;
    white-space: nowrap;
    color: #fff;
}

#tcalPrevYear {
    background-image: url('../../common/images/prev_year.gif');
}

#tcalPrevMonth {
    background-image: url('../../common/images/prev_mon.gif');
}

#tcalNextMonth {
    background-image: url('../../common/images/next_mon.gif');
}

#tcalNextYear {
    background-image: url('../../common/images/next_year.gif');
}

/* table containing week days header and calendar grid */
#tcalGrid {
    border-collapse: collapse;
    width: 100%;
}

#tcalGrid tr:first-child {
    border-top: 1px solid #fff;
    border-bottom: 2px solid #c3c3c3;
}

#tcalGrid th {
    border-collapse: collapse;
    padding: 3px 0;
    text-align: center;
    font-size: 10px;
    background: #e2e2e2;
    color: #5a5a5a;
}

#tcalGrid td {
    border-right: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    border-collapse: collapse;
    padding: 6px;
    text-align: center;
    width: 14%;
    font-size: 11px;
    cursor: pointer;
}

#tcalGrid td.tcalOtherMonth {
    color: silver;
}

#tcalGrid td.tcalWeekend {
    background-color: #f9f9f9;
}

#tcalGrid td.tcalToday {
    background-color: #d3e9fd;
}

#tcalGrid td.tcalSelected {
    background-color: #348ddf;
    color: #fff;
}