/*!!
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-family: Helvetica, Arial, sans-serif;
	font-size: 0.8em;
	border-collapse: collapse;
	background-color: transparent;
	border: dotted #CCCCCC 1px;
    
	width: 180px;
	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; padding-left:2px;padding-right:2px;
}
table.calendar td, table.calendar th {
	border: 0;
	font-size: 11px;
	text-align: center;
	
	background-color:white;
}
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 8px 0 8px;
}
/*the day headings*/
table.cells th {
	border: solid #CCCCCC 1px;
	text-align: center;
	font-weight: bold;
	color: #0054E3;
	width: 20px;
	height:18px;
}
table.cells th.wkhead {
	border-right: double #CCCCCC 3px;
	cursor: default;
	width: 2px;
}
/*The date cells*/
table.cells td {
	border: solid #CCCCCC 1px;
	vertical-align: top;
	text-align: center;
	font-weight: bold;
	height: 15px; /*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:#EAEAEA;
	color: gray;
	/*text-decoration: line-through;*/
	cursor: default;
}

table.cells td.booked {
    color: white;
    font-style: normal;
    background-color: #66CC66;
}

table.cells td.paused {
    color: white;
    font-style: normal;
    background-color: #3399CC;
}

table.cells td.disabled {
    color: white;
    font-style: normal;
    background-color: #663366;
}

table.cells td.hlday {
	background-color:#dfeff3;
	color:green;
}
table.cells td.wkday {
        /*normal week day*/
	background-color: none;
}
table.cells td.wkend {
       /* normal week-end day */
	background-color: none;
}
table.cells td.curdate {
border:2px solid black;
}
table.cells td.cell_selected {
	background-color: #99CCFF;
	color: black;
}
table.cells td.notmnth {
      /* normal day but not in the month*/
	background-color: none;

}
table.cells td.notallowed {
	background-color: white;
	color: #EEEEEE;
	font-style: italic;
}
table.cells td.hover {
	background-color: #dfeff3;
}
table.cells td div {
	padding: 1px;
	margin: 0;
}