/*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*/

table.epoch {
	font-family: Arial, sans-serif;
	font-size: 0.8em;
	padding: 1px;
	border-collapse: collapse;
	border: solid #bbb 1px;
	background-color: #fff;
    width: 20em;
	text-align: center;
	cursor: pointer;
	/*prevent user from selecting text in Mozilla & Safari - check calendar constructor for IE code)*/
	-moz-user-select: none;
    -khtml-user-select: none;
}

table.epoch a {
}

table.epoch a:hover {
}

table.epoch input, table.epoch select {
	font-size: 0.9em;
	margin: 0.2em;
}

table.epoch select {
	width: 6em;
	min-width:6em;
}

table.epoch td, table.epoch th {
	border: 0;
	font-size: 0.9em;
	text-align: center;
}

div.mainheading {
/*	margin: 0.2em;*/
}

div.mainheading div.closeBtn {
	float: right;
	color: red;
}

/*all styles related to the main calendar grid*/
table.cells {
	border-collapse: collapse;
	border: solid #ccc 1px;
	cursor: pointer;
	empty-cells: show;
	margin: 0 6px 0 6px;
}

/*the day headings*/
table.cells th {
	border: solid #ccc 1px;
	text-align: left;
	font-weight: bold;
	color: #02a;
	width: 2.5em;
}

table.cells th.wkhead {
	border-right: double #ccc 3px;
	cursor: default;
	width: 22px;
}

/*The date cells*/
table.cells td {
	border: solid #ccc 1px;
	vertical-align: top;
	text-align: left;
	font-weight: bold;
	height: 20px; /*IE doesn't like ems*/
}

table.cells td.wkhead {
	background-color: #fff;
	text-align: center;
	border-right: double #ccc 3px;
	color: #02a;
}

table.cells td.noselect {
	background-color: #eee;
	color: #bbb;
	text-decoration: line-through;
	cursor: default;
}

table.cells td.hlday {
	background-color: #9f9;
}

table.cells td.wkday {
	background-color: #ddd;
}

table.cells td.wkend {
	background-color: #ddd;
}

table.cells td.curdate {

}

table.cells td.cell_selected {
	background-color: #9cf;
	color: black;
}

table.cells td.notmnth {
	background-color: #fff;
	color: #ccc;
}

table.cells td.notallowed {
	background-color: white;
	color: #eee;
	font-style: italic;
}

table.cells td.hover {
	background-color: #999;
}

table.cells td div {
	padding: 2px;
	margin: 0;
}

