/* New css
--------------------------------------------------- */
.month_select{
	background-color: 		#eeeeee;
	border:					1px solid #999999;
	padding:				3px;
	width:					50px;
	margin-right:			4px;
}
.year_select{
	background-color: 		#eeeeee;
	border:					1px solid #999999;
	padding:				3px;
	width:					60px;
}
.epoch_button{
	color:					#FFFFFF;
	background-color:		#ABD7FE;
	padding:				3px;
	cursor:					pointer;
	border:					1px solid #ABD7FE;
	margin-left:			4px;
	margin-right:			4px;
}
.epoch_footer{
	height:					5px;
}

/* Original css
--------------------------------------------------- */
table.calendar {
	font-family: 			Arial, sans-serif;
	font-size: 				0.8em;
	border-collapse: 		collapse;
	background-color: 		white;
	border: 				1px solid #999999;
	background-color: 		#ffffff;
	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;*/
}
table.calendar input, table.calendar select {
	font-size: 10px;
}
table.calendar td {
	border: 0;
	font-size: 10px;
	text-align: center;
}
div.mainheading {
	margin: 2px;
}
table.caldayheading {
	text-align: center;
	border-collapse: collapse;
	cursor: pointer;
	empty-cells: show;
	margin: 0 6px 0 6px;
}
table.caldayheading td {
	border: solid #CCCCCC 1px;
	text-align: center;
	color: #666666;
	font-weight: bold;
	width: 22px; /*should match calendar cell's width*/
}
table.caldayheading td.wkhead {
	text-align: center;
	border-right: double #CCCCCC 3px;
}
table.calcells {
	border-collapse: collapse;
	cursor: pointer;
	margin: 0 6px 0 6px;
}
table.calcells td {
	border: solid #CCCCCC 1px;
	vertical-align: top;
	text-align: left;
	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: white;
	text-align: center;
	border-right: double #CCCCCC 3px;
	color: #666666;
}
table.calcells td.wkday {
	text-align: center;
	background-color: #DDDDDD;
}
table.calcells td.wkend {
	text-align: center;
	background-color: #DDDDDD;
}
table.calcells td.curdate {

}
table.calcells td.cell_selected {
	text-align: center;
	background-color: #ABD7FE;
	color: black;
}
table.calcells td.notmnth {
	text-align: center;
	background-color: #FFFFFF;
	color: #CCCCCC;
}
table.calcells td.notallowed {
	text-align: center;
	background-color: white;
	color: #EEEEEE;
	font-style: italic;
}
table.calcells td.hover {
	text-align: center;
	background-color: #ABD7FE;
}
