/*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 {
	direction:rtl;	
	z-index: 1;
	font-family: Tahoma;
	font-size: 11 px;
	font-weight: normal;
	border-collapse: collapse;
	background-color: white;
	border: solid #000000 1px;
	background-color: #F9F9F9;
	width: 350px;
	height: 170px;
	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;*/
}

div.calendar iframe { 
	position:absolute; 
	z-index: -1;
	border-style:none; 
	filter: Alpha(Opacity="0"); 
	width: 360 px; 
	height: 203 px; 
}

table.calendar a {
}
table.calendar a:hover {
}
table.calendar select {
	font-family: Tahoma;
	font-size: 11px;
	width: 80px;
}
table.calendar input {
	font-family: Tahoma;
	font-size: 11px;
	width: 65px;
}
table.calendar td, table.calendar th {
	border: 0;
	font-size: 10px;
	text-align: center;
}
div.mainheading {
	margin: 2px;
}
div.mainheading div.closeBtn {
	float: right;
	color: red;
}
/*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: center;
	font-size: 12px;
	font-weight: normal;
	color: #003366;
	background-color: #EAEAEA;
	width: 100px;
}
table.cells th.wkhead {
	border-right: double #CCCCCC 3px;
	cursor: default;
	width: 40px;
}
/*The date cells*/
table.cells td {
	border: solid #CCCCCC 1px;
	padding-right: 5px;
	vertical-align: top;
	text-align: right;
	font-weight: normal;
	height: 20px; /*IE doesn't like ems*/
}
table.cells td.wkhead {
	border-right: double #CCCCCC 3px;
	background-color: #EAEAEA;
	text-align: center;
	color: #800000;
}
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 {
	color: white;
	background-color: #003366;
}
table.cells td.cell_selected {
	background-color: #99CCFF;
	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: #666666;
	color: white;
}
table.cells td div {
	padding: 1px;
	margin: 0;
}