/* calendar icon */
img.tcalIcon {
	cursor: pointer;
	margin-left: 1px;
	vertical-align: top;
}
/* calendar container element */
div#tcal {
	position: absolute;
	visibility: hidden;
	z-index: 10000;
	width: 158px;
	padding: 2px 0 0 0;
}
/* all tables in calendar */
div#tcal table {
	width: 100%;
	border: 1px solid silver;
	border-collapse: collapse;
	background-color: white;
}
/* navigation table */
div#tcal table.ctrl {
	border-bottom: 0;
}
/* navigation buttons */
div#tcal table.ctrl td {
	width: 15px;
	height: 20px;
}
/* month year header */
div#tcal table.ctrl th {
	background-color: white;
	color: black;
	border: 0;
}
/* week days header */
div#tcal th {
	border: 1px solid silver;
	border-collapse: collapse;
	text-align: center;
	padding: 3px 0;
	font-family: tahoma, verdana, arial;
	font-size: 10px;
	background-color: gray;
	color: white;
}
/* date cells */
div#tcal td {
	border: 0;
	border-collapse: collapse;
	text-align: center;
	padding: 2px 0;
	font-family: tahoma, verdana, arial;
	font-size: 11px;
	width: 22px;
	cursor: pointer;
}
/* time cells */
div#tcal td.time, div#tcal td.time_left, div#tcal td.time_right {
	border-top:1px solid #c3c3c3;
	padding:5px 0;
	cursor: default;
	text-align:left;
}
/* week cells */
div#tcal td.tweek {
	background-color:#eeeeee;
	cursor: default;
}
div#tcal td.time_left{
	text-align:right !important;
}
div#tcal td.time_right{
	text-align:left;
}
div#tcal td.time input.timefield {
	width:67px;
	font-family: tahoma, verdana, arial;
	font-size: 11px;
	line-height:13px;
}
div#tcal .button_refreshtime{
	cursor: pointer;
	margin-left:5px;
}


/* date highlight
   in case of conflicting settings order here determines the priority from least to most important */
div#tcal td.othermonth {
	color: silver;
}
div#tcal td.weekend {
	/*background-color: #ACD6F5;*/
}
div#tcal td.today {
	border: 1px solid #555555;
}
div#tcal td.selected {
	background-color: #7db400;
	font-weight:bold;
	color:#ffffff;
}
/* iframe element used to suppress windowed controls in IE5/6 */
iframe#tcalIF {
	position: absolute;
	visibility: hidden;
	z-index: 98;
	border: 0;
}
/* transparent shadow */
div#tcalShade {
	position: absolute;
	visibility: hidden;
	z-index: 9999;
}
div#tcalShade table {
	border: 0;
	border-collapse: collapse;
	width: 100%;
}
div#tcalShade table td {
	border: 0;
	border-collapse: collapse;
	padding: 0;
}
