/*!!
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. !!*/
table.calendar {
	font-size: 1em;
	border-collapse: collapse;
	/*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 {
}

table.calendar input {
}
table.calendar td, table.calendar th {
	border: 0;
	font-size: 11px;
	text-align: center;
	padding:2px;
}
div.mainheading {
	margin: 2px;
}
/*all styles related to the main calendar grid*/
table.cells {
	border-collapse: collapse;
	border: solid #D9DDC8 1px;
	empty-cells: show;
	margin: 0;
}
/*the day headings*/
table.cells th {
	border: solid #D9DDC8 1px;
	text-align: left;
	font-weight: bold;
	color: #FFFFFF;
	width: 55px;
}
table.cells th.wkhead {
	border-right: double #D9DDC8 3px;
	cursor: default;
	width: 55px;
}
/*The date cells*/
table.cells td {
	border: solid #D9DDC8 1px;
	vertical-align: top;
	text-align: left;
	font-weight: bold;
	padding-bottom:10px;
	/*height: 20px; IE doesn't like ems*/
}
table.cells td.wkhead {
	background-color: white;
	text-align: center;
	border-right: double #CCCCCC 3px;
	color: #0054E3;
}
table.cells td.noselect {
	background-color: #FFFFFF;
	color: #CCCCCC;
}
table.cells td.hlday {
	background-color: #3A4235;
}
table.cells td.wkday {
	background-color: #BAC29E;
}
table.cells td.wkend {
	background-color: #9EAA77;
}
table.cells td.curdate {
}
table.cells td.cottage1, table.cells td.cottage2{
	background-color:#CC0000;
	text-decoration: line-through;
}

table.cells td.cell_selected {
	background-color: inherit;
}
table.cells td.notmnth {
	background-color: #FFFFFF;
	color: #CCCCCC;
}
table.cells td.notallowed {
	background-color: white;
	color: #EEEEEE;
	font-style: italic;
}
table.cells td div {
	padding: 1px;
	margin: 0;
}

#flat_container1, #flat_container2{
	width:420px;
	float:left;
	margin-bottom:10px;
}

#flat_container1 input, #flat_container2 input{
	color:#3A4235;
	width:80px;
	text-align:center;
	padding:2px;
	font-size:11px;
	background-color:#BAC29E;
}

#flat_container1 select, #flat_container2 select{
	color:#3A4235;
	width:120px;
	margin:0 3px 0;
	padding:2px;
	font-size:11px;
	border:1px solid #BAC29E;
}
#flat_container1 select option, #flat_container2 select option{
	color:#000000;
}

#clearBtn{
	display:none;
	visibility:hidden;
}