/*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.calendar {
	font-family: Arial, sans-serif;
	font-size: 12px;
	background-color: #e3e3e3;
	border: solid #d4d4d4 1px;
	width: 248px;
	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 select {
	font-size: 12px;
	margin:2px;
	padding:2px;
	border:1px solid #CCC;
}

table.calendar input {
	border:0;
	background:#fff;
	cursor:pointer;
	font-size:14px;
	padding:5px;
}

table.calendar td, table.calendar th {
	border: 0;
	font-size: 12px;
	text-align: center;
	font-weight:normal;
}
div.mainheading {
	margin:5px 8px;
	background:#fff;
	padding:5px;
}
div.mainheading div.closeBtn {
	float: right;
	color: red;
}
/*all styles related to the main calendar grid*/
table.cells {
	cursor: pointer;
	empty-cells: show;
}
/*the day headings*/
table.cells th {
	text-align: center;
	font-weight: bold;
	color: #fff;
	background:#b2d600;
	width: 22px;
	padding:8px;
	margin:1px;
}
table.cells th.wkhead {
	border-right: double #CCCCCC 3px;
	cursor: default;
	width: 22px;
}
/*The date cells*/
table.cells td {
	vertical-align: top;
	text-align: center;
	font-weight: bold;
	height: 20px; /*IE doesn't like ems*/
	padding:8px;
	margin:1px;
}
table.cells td.wkhead {
	background-color: white;
	text-align: center;
	border-right: double #CCCCCC 3px;
	color: #0054E3;
}
table.cells td.noselect {
	background-color: #fff;
	color: #d6d6d6;
	cursor: default;
}
table.cells td.hlday {
	background-color: #e9f1c3;
}
table.cells td.wkday {
	background-color: #fff;
}
table.cells td.wkend {
	background-color: #fff;
}
table.cells td.curdate {
}
table.cells td.cell_selected {
	background-color: #f0ffa3;
}
table.cells td.notmnth {
	background-color: #fff;
	color: #d6d6d6;
}
table.cells td.notallowed {
	background-color: white;
	color: #d6d6d6;
	font-style: italic;
}
table.cells td.hover {
	background-color: #f0ffa3;
}
table.cells td div {
	padding: 2px;
	margin: 0;
}

