/* tool tip */
body { display:block; }
#tooltipmsg {
	padding: 5px; 
	border: 1px solid #666666;
	background-color: #999999;
	color:#ffffff; 
	width:180px;
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 12px; 
	display:none; 
	position:absolute;
	left:0px;
	top:0px; 
	z-index:101;
}

/* calendar icon */
img.tcalIcon {
	cursor: pointer;
	margin-left: 1px;
	vertical-align: top;
}
/* calendar container element */
div#tcal {
	position: relative;
	visibility: hidden;
	z-index: 100;
	width: 275px;
	padding: 2px 0 0 0;
	text-align: center;
}
/* all tables in calendar */
div#tcal table {
	width: 210px;
	margin-left: 32px;
	border-width: 0px;
	border-collapse: collapse;
	background-color: white;
}
/* navigation table */
div#tcal table.ctrl 
{
    width: 130px;
    margin-left: 72px;
	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 {
	
	text-align: center;
	padding: 3px 0;
	font-weight: bold;
	font-size: 11px;
	text-transform: lowercase;
	color: #000;
}
/* date cells */
div#tcal td {
	border: 0;
	border-collapse: collapse;
	text-align: center;
	padding: 2px 0;
	font-weight: bold;
	font-size: 11px;
	height: 30px;
	width: 30px;
	cursor: default;
	color: #999;
	background-image: url('../images/bg_calendar_date.gif');
	background-position: center;
	background-repeat: no-repeat;
}
/* navigation buttons */
div#tcal table.ctrl td 
{
    background-image: none;
	border-width: 0px;
}
/* date highlight
   in case of conflicting settings order here determines the priority from least to most important */
div#tcal td.event {

	color:#CE0436;
	cursor:pointer;
}
div#tcal td.othermonth {
	visibility: hidden;
}
div#tcal td.weekend {

}
div#tcal td.today {
	/*border: 1px solid #666666;
	background-color: #999999;
    background-image: url('../images/bg_calendar_date.gif');
	color:#ffffff; */
	background-image: url('../images/bg_calendar_date_today.gif');
}
div#tcal td.selected {
	/*color:#CE0436;*/
}
/* iframe element used to suppress windowed controls in IE5/6 */
iframe#tcalIF {
	position: absolute;
	visibility: hidden;
	z-index: 98;
	border: 0;
}

