
/* Used to "dim" the background when the calendar window is open */
.cal_overlay {
	filter:alpha(opacity=60);
	-moz-opacity:0.6;
	-khtml-opacity: 0.6;
	opacity: 0.6;
	background-color:#000000;
	position:fixed;
	width:120%;
	height:120%;
	left:-20px;
	top:-20px;
	z-index:2435;
	display:none;
	margin:0px;
	padding:0px;
}

/* The main background of the calendar */
.cal_body {
	position:fixed;
	border:1px solid #FFFFFF;
	background-color:#F5F5F5;
	left:50%;
	
	z-index:23456;
}


