/* Default attributes of DIV containing table container for entire calendar.
 * You probably don't want to alter this style.
 */
#Calendar 
{
	z-index: +900;
	position: absolute;
	visibility: hidden;
}

/* Default attributes of table container for entire calendar */
#Calendar TD
{
	font-family: Tahoma;
	font-size: 11px;
}

#Calendar TABLE.Main
{
	border: solid 1px #000000;
	background-color: #ffffff;
	font-family: Tahoma; 
	font-size: 11px;
}

/* Default attributes used in calendar title background.*/
#Calendar TR.Header
{
	background-color: #C7CFA5;
}

/* Default attributes used in calendar title (month and year columns).*/
#Calendar TD.Title 
{
	padding: 0px;
	font-family: Tahoma;
	font-size: 11px;
	color: #000000;
}


/* Normal appearance of controls in calendar title. */
/* Note: The right, left and down icons are images, which must be edited if you need to change them. */
#Calendar .title-control-normal-style {
	font-weight: bold;
	cursor: pointer;
	cursor: hand;
}

/* Default attributes of calendar body (weekday titles and numbers). */
#Calendar TD.Body {
	padding: 0px;
	background-color: #FFFFFF;
	font-family: Tahomas;
	font-size: 10px;
}

/* Attributes of current day in calendar body. */
#Calendar A.Today {
	color: red;
	font-weight: bold;
	text-decoration: none;
}

/* Attributes of end-of-week days (Sundays) in calendar body. */
#Calendar A.EndOfWeek {
	color: #909090;
	text-decoration: none;
}

/* Attributes of all other days in calendar body. */
#Calendar A.NormalDay {
	color: black;
	text-decoration: none;
}

/* Attributes of border around selected day in calendar body. */
#Calendar A.SelectedDay {
	border-style: solid;
	border-width: 1px; 
	border-color: #a0a0a0;
}

TABLE.DateSelector,
TABLE.DateSelector TD
{
	border-collapse: collapse;
	padding: 0px;
	margin: 0px;
}

INPUT.DateSelector
{
	width: 75px;
}

INPUT.DateSelector.Left
{
	width: 65px; 
	border-right: none;
}

INPUT.DateSelector.Right
{
	width: 70px; 
	border-left: none;
}

TABLE.DateSelector IMG
{ 
	margin-left: 4px;
	vertical-align: bottom;
	width: 16px;
	height: 18px;
	cursor: hand;
}

