table.calendar {
	font-family: "Times New Roman", Times, serif;
	font-size: 15px;
	border-collapse: collapse;
	width: 240px;
	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;*/
	margin-bottom: 10px;
}
table.calendar input, table.calendar select {
	font-size: 10px;
}
table.calendar select {
	width: 80px;
	border: solid #ebe8db 1px;
	padding:2px;
	color:#5a471f;
}
table.calendar td {
	border: 0;
	font-size: 14px;
	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 {
	border: solid #ebe8db 1px;
	background-color:#ebe8db;
	text-align: center;
	color: #8c6e3d;
	font-weight: bold;
	width: 30px; /*should match calendar cell's width*/
	padding: 2px;
}
table.caldayheading td.wkhead {
	border-right: double #CCCCCC 3px;
}
table.calcells {
	border-collapse: collapse;
	cursor: pointer;
	margin: 0 6px 0 6px;
}
table.calcells td {
	border: solid #c1b189 1px;
	vertical-align: top;
	text-align: left;
	font-weight: bold;
	width: 30px;
	height: 30px; /*IE doesn't like ems*/
	background-color: #FFFFFF;
	padding: 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: #387086;
}
table.calcells td.wkday {
	background-color: #aea07e;
	color:#ebe8db;
}
table.calcells td.wkend {
	background-color: #aea07e;
	color:#ebe8db;
}
table.calcells td.curdate {

}
table.calcells td.cell_selected {
	background-color: #5a471f;
	color: #ebe8db;
}
table.calcells td.notmnth {
	background:#d3cfb7;
	color: #aea07e;
}
table.calcells td.notallowed {
	background-color: #e2d2aa;
	color: #EEEEEE;
	font-style: italic;
}
table.calcells td.hover {
	background-color: #5a471f;
	color:#ebe8db;
}
