/* calendar icon */
img.tcalIcon {
	cursor: pointer;
	margin-left: 1px;
	vertical-align: middle;
}
/* calendar container element */
#tcal {
	position: absolute;
	visibility: hidden;
	z-index: 100;
	width: 158px;
	padding: 2px 0 0 0;
}
/* all tables in calendar */
#tcal table {
	width: 100%;
	border: 1px solid #cacaca;
	background-color: white;
}
/* navigation table */
#tcal table.ctrl {
	border-bottom: 0;
}
/* navigation buttons */
#tcal table.ctrl td {
	width: 15px;
	height: 20px;
}
/* month year header */
#tcal table.ctrl th {
	background-color: white;
	color: black;
	border: 0;
}
/* week days header */
#tcal th {
	border-collapse: collapse;
	text-align: center;
	padding: 3px 0;
	font-family: Arial,Helvetica,sans-serif;
	font-size: 10px;
	background-color: #99ccff;
	color: white;
	font-weight:bold;
}
/* date cells */
#tcal td {
	border: 0;
	border-collapse: collapse;
	text-align: center;
	padding: 2px 0;
	font-family: Arial,Helvetica,sans-serif;
	font-size: 11px;
	width: 22px;
	cursor: pointer;
	background:#f7f7f7;
}
/* date highlight
   in case of conflicting settings order here determines the priority from least to most important */
#tcal td.othermonth {
	color: silver;
}
#tcal td.noclicks {
	color: #cacaca;
}
#tcal td.weekend {
	background-color: #ddf1fb;
}
#tcal td.selected {
	background-color: #ff9900;
}
#tcal td.checkin {
	background-color: #ff9900;
}
#tcal td.checkout {
	background-color: #ff9900;
}
/* iframe element used to suppress windowed controls in IE5/6 */
iframe#tcalIF {
	position: absolute;
	visibility: hidden;
	z-index: 98;
	border: 0;
}


