/* version 1.0 */

	#calendarDiv {
		display: none;
		border: 2px solid black;
		background-color: white;
		padding: 2px;
		width: 150px;
		font-family: arial;
		z-index: 1;
	}
		#calendarDiv table {
		empty-cells: show;
		border: 1px solid black;
		border-collapse: collapse;
		width: 100%;
	}
	#calendarDiv table td.dayHead {
		font-weight: bold;
		border-bottom: 1px solid black;
		text-align: center;
		font-size: 10px;
	}
	#calendarDiv table td.noday {
		background-color: #dcdcdc;
		font-size: 10px;
	}	
	#calendarDiv table td.day {
		border: 1px solid black;
		cursor: pointer;
		text-align: center;
		font-size: 10px;
		padding:0;
	}
	#calendarDiv table td.heading {
		text-align: center;
		font-size: 12px;
		font-weight: bold;
	}
	#calendarDiv table td.leftTD {
		text-align: left;
		font-size: 12px;
		font-weight: bold;
		font-size: 10px;
		cursor:pointer;
		
	}
	#calendarDiv table td.rightTD {
		text-align: right;
		font-size: 12px;
		font-weight: bold;
		font-size: 10px;
		cursor:pointer;
	}
