table.calendar {
	font-family: 'Lucida Grande',Tahoma,Arial,Helvetica,sans-serif;
	font-size: 0.8em;
	border-collapse: collapse;
	background-color: #91F500;
	border: solid #999999 1px;
	width: 200px;
	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;*/
    color:#2E4D00;
}
table.calendar input, table.calendar select {
	font-size: 10px;
}
table.calendar td {
	border: 0;
	font-size: 10px;
	text-align: center;
}
div.mainheading {
	margin: 2px;
	background-color: #33373F;
	width: 98%;
}
table.caldayheading {
	border-collapse: collapse;
	cursor: pointer;
	empty-cells: show;
	margin: 0 6px 0 6px;
}
table.caldayheading td {
	border: solid #CCCCCC 1px;
	text-align: left;
	color: #0054E3;
	font-weight: bold;
	width: 22px; /*should match calendar cell's width*/
}
table.caldayheading td.wkhead {
	border-right: double #CCCCCC 3px;
	background-color: #91F510;
}
table.calcells {
	border-collapse: collapse;
	cursor: pointer;
	margin: 0 6px 0 6px;
}
table.calcells td {
	border: solid #CCCCCC 1px;
	vertical-align: top;
	text-align: center;
	font-weight: bold;
	width: 22px;
	height: 20px; /*IE doesn't like ems*/
}
table.calcells td div {
	padding: 1px;
	margin: 0;
}
table.calcells td.wkhead {
	background-color: #91F510;
	text-align: center;
	border-right: double #CCCCCC 3px;
	color: #0054E3;
}
table.calcells td.wkday {
	background-color: #91F500;
}
table.calcells td.wkend {
	background-color: #91F500;
}
table.calcells td.curdate {
	background-color: #99CCCC;
	color:#FFFEA3 !important;
}
table.calcells td.cell_selected {
	background:#91F500 url('/img/events/calCurrentDayBG.gif') no-repeat scroll -2px -2px;
	color: black;
}
table.calcells td.notmnth {
	background-color: #91F530;
	color: #bbbbbb;
}
table.calcells td.notallowed {
	background-color: white;
	color: #EEEEEE;
	font-style: italic;
}
table.calcells td.hover {
	background-color: #999999;
}
div.mainheading select {
	margin: 3px;
	float: left;
}
input.button_down {
	width: 20px;
	height: 20px;
	background: transparent url('/img/events/navPrev.gif') no-repeat scroll center top;
	text-indent: -1000em;
	cursor: pointer; /* hand-shaped cursor */
	cursor: hand; /* for IE 5.x */
	margin: 0;
	padding: 0;
	border: 0;
	float: left;
}
input.button_up {
	width: 20px;
	height: 20px;
	background: transparent url('/img/events/navNext.gif') no-repeat scroll center top;
	text-indent: -1000em;
	cursor: pointer; /* hand-shaped cursor */
	cursor: hand; /* for IE 5.x */
	margin: 0;
	padding: 0;
	border: 0;
	float: right;
}
