/*
	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 */
.IP_calendarInput {
    background: url('http://services.iperfect.net/js/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 */
.IP_calendarActive {
    background-image: url('http://services.iperfect.net/js/img/no_cal.gif');
}
/* container of calendar's pop-up */
#IP_calendar {
    position: absolute;
    visibility: hidden;
    z-index: 100;
    width: 265px;
    background-color: white;
    margin-top: 1px;
    padding: 0 2px 2px 2px;
    border: 1px solid silver;
    border-radius: 5px;

    -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 */
#IP_calendarControls {
    border-collapse: collapse;
    border: 0;
    width: 100%;
}
#IP_calendarControls td {
    border-collapse: collapse;
    border: 0;
    padding: 0;
    width: 25px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
}
#IP_calendarControls th {
    border-collapse: collapse;
    border: 0;
    padding: 0;
    line-height: 35px;
    font-size: 15px;
    text-align: center;
    font-family: Tahoma, Geneva, sans-serif;
    font-weight: bold;
    white-space: nowrap;
}
#IP_calendarPrevYear { background-image: url('http://services.iperfect.net/js/img/prev_year.gif'); }
#IP_calendarPrevMonth { background-image: url('http://services.iperfect.net/js/img/prev_mon.gif'); }
#IP_calendarNextMonth { background-image: url('http://services.iperfect.net/js/img/next_mon.gif'); }
#IP_calendarNextYear { background-image: url('http://services.iperfect.net/js/img/next_year.gif'); }

/* table containing week days header and calendar grid */
#IP_calendarGrid {
    border-collapse: collapse;
    border: 1px solid silver;
    width: 100%;
    height: 200px;
}
#IP_calendarGrid th {
    border: 0;
    border-collapse: collapse;
    padding: 3px 0;
    text-align: center;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 13px;
    background-color: gray;
    color: white;
}
#IP_calendarGrid td {
    border: 0;
    border-collapse: collapse;
    padding: 2px 0;
    text-align: center;
    font-family: Tahoma, Geneva, sans-serif;
    width: 14%;
    font-size: 14px;
    cursor: pointer;
}
#IP_calendarGrid td.IP_calendarOtherMonth { color: silver; }
#IP_calendarGrid td.IP_calendarWeekend { background-color: #ACD6F5; }
#IP_calendarGrid td.IP_calendarToday { border: 1px solid red; }
#IP_calendarGrid td.IP_calendarSelected { background-color: #FFB3BE; }