/*!!
Epoch Prime AJAX JavaScript Calendar
CSS style file
(c) 2006 MeanFreePath
http://www.meanfreepath.com
All rights reserved.

You can easily strip out all comments and unnecessary whitespace from this file -
visit http://www.meanfreepath.com/tools/jscompactor.html to use our free JavaScript/CSS code compactor. !!*/

/* fix relative positionning */
/* .calendar_  { margin-left: -50%; } */


table.calendar_ {
	/*font-family: Helvetica, Arial, sans-serif;
	font-size: 0.8em;
	border-collapse: collapse;
	background-color: white;
	border: solid #999999 1px;
	background-color: white;
	width: 215px;
	text-align: center;*/
	
	background-color: #ebebeb;
	color: #ffffff;
	font-family: Arial, Helvetica;
	font-size: 12px;
	/*width: 175px;*/
	font-weight: bold;
	border: 1px solid #aaaaaa;
	padding: 2px;
	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_ a {
}
table.calendar_ a:hover {
}
table.calendar_ input, table.calendar_ select {
	font-size: 10px;
}
table.calendar_ td, table.calendar_ th {
	border: 0;
	font-size: 10px;
	text-align: center;
}
div.mainheading {
	margin: 2px;
}
.closeBtn {
	/*float: right;
	width: 15px;
	/*font-size: 1.5em;
	height: 13px;
	
	padding: 0 0 3px 0;
	margin: 1px 8px 0 0;
	border: solid black 1px;*/
}
/*all styles related to the main calendar grid*/
table.cells {
	border-collapse: collapse;
	border: solid #CCCCCC 1px;
	cursor: pointer;
	empty-cells: show;
	margin: 0 6px 0 6px;
}
/*the day headings*/
table.cells th {
	border: solid #CCCCCC 1px;
	text-align: left;
	font-weight: bold;
	color: #0054E3;
	width: 22px;
}
table.cells th.wkhead {
	border-right: double #CCCCCC 3px;
	cursor: default;
	width: 22px;
}
/*The date cells*/
table.cells td {
	border: solid #CCCCCC 1px;
	vertical-align: top;
	text-align: left;
	font-weight: bold;
	height: 20px; /*IE doesn't like ems*/
	color: gray;
}
table.cells td.wkhead {
	background-color: white;
	text-align: center;
	border-right: double #CCCCCC 3px;
	color: #0054E3;
}
table.cells td.noselect {
	background-color: #EEEEEE;
	color: #BBBBBB;
	text-decoration: line-through;
	cursor: default;
}
table.cells td.hlday {
	background-color: #99FF99;
}
table.cells td.wkday {
	background-color: #ffffff;
}
table.cells td.wkend {
	background-color: #ffffff;
}
table.cells td.curdate {
	background: #99CCFF;
	color: #888888;
}
table.cells td.cell_selected {
	background-color: #419edb;
	color: black;
}
table.cells td.notmnth {
	background-color: #FFFFFF;
	color: #CCCCCC;
}
table.cells td.notallowed {
	background-color: white;
	color: #EEEEEE;
	font-style: italic;
}
table.cells td.hover {
	background-color: #c5e7fd;
}
table.cells td div {
	padding: 1px;
	margin: 0;
}