
table.calendar {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 0.8em;
	border-collapse: collapse;
	/* byLex */
	/*
	background-color: white;
	border: solid #999999 1px;
	*/
	width: 210px;
	text-align: center;
	/*prevent user from selecting text in Mozilla & Safari - check calendar constructor for IE code)*/
	-moz-user-select: none;
    /*-khtml-user-select: none;*/
}
table.calendar input, table.calendar select {
	font-size: 10px;
}
table.calendar td {
	border: 0;
	font-size: 12px;
	text-align: center;
}
div.mainheading {
	margin: 2px;
}
table.caldayheading {
	border-collapse: collapse;
	cursor: pointer;
	empty-cells: show;
	margin: 0 6px 0 6px;
}
table.caldayheading td 
{
	background: #B6B7AA;
	border: solid #B6B7AA 1px;
	text-align: center;
	color: #F0F0E0;
	font-weight: bold;
	width: 22px; /*should match calendar cell's width*/
	padding: 4px 3px 4px 5px;
}
table.caldayheading td.wkhead {
	border-right: double #CCCCCC 3px;
}
table.calcells {
	border-collapse: collapse;
	cursor: pointer;
	margin: -2px 6px 0 6px;
}
table.calcells td {
	border: solid #B6B7AA 1px;
	vertical-align: top;
	text-align: right;
	font-weight: bold;
	width: 22px;
	height: 20px; /*IE doesn't like ems*/
	/* byLex */
	padding: 6px 6px 5px 1px;
	*padding: 6px 6px 0 2px;
}
table.calcells td div {
	padding: 1px;
	margin: 0;
}
table.calcells td.wkhead {
	background-color: white;
	text-align: center;
	border-right: double #CCCCCC 3px;
	color: #0054E3;
}
table.calcells td.wkday {
	background-color: #CACBAC; /* byLex */
	color: #B28C4F;
}
table.calcells td.wkend {
	background-color: #CACBAC; /* byLex */
	color: #B28C4F;
}
table.calcells td.curdate {

}
table.calcells td.cell_selected {
	background-color: #99CCFF;
	color: black;
}
table.calcells td.notmnth {
	background-color: #CACB9C;
	color: #AAAB9F;
}
table.calcells td.notallowed {
	background-color: white;
	color: #EEEEEE;
	font-style: italic;
}
table.calcells td.hover {
	background-color: #999999;
}
