div.calendar {
	background-color: white;
	border: 1px solid #CCCCCC;

    position:absolute;
	z-index:10;
	cursor:move;

	overflow:hidden;/*must have*/
    -moz-border-radius: 5px;
}



div.calendar iframe
{
	display:none;/*sorry for IE5*/
	display/**/:block;/*sorry for IE5*/
	position:absolute;/*must have*/
	top:0;/*must have*/
	left:0;/*must have*/
	z-index:-1;/*must have*/
	filter:mask();/*must have*/
	width:3000px;/*must have for any big value*/
	height:3000px/*must have for any big value*/;
}



div.calendar * {
	font-family: arial;
	font-size: 11px;
	color: black;
	cursor: default;
}

div.calendar table.structure {
	border-collapse: collapse;
	margin: 0px;
	padding: 0px;
}

div.calendar table.structure {
	background-image: url("calendar-ground.gif");
}

div.calendar table.structure td {
	color: black;
	text-align: center;
	vertical-align: middle;
	width: 20px; height : 20px;
	cursor: pointer;
	height: 20px;
}

div.calendar table.structure tr.head td {
	background-image: url("calendar-head.gif");
	cursor: default;
}

div.calendar table.structure td.weekend {
	color: #d25656;
}

div.calendar table.structure td.current {
	font-weight: bold;
}

div.calendar table.structure div.select {
	background-color: #82b3ce;
	border: 1px solid #4b9ac5;
	cursor: pointer;
}

div.calendar table.structure td.empty {
	background-color: transparent;
	cursor: default;
}

div.calendar table td.info {
	border-top: 1px solid #b3b2b2;
	text-align: center;
	vertical-align: middle;
	height: 20px;
	text-align: center;
}

