#calendar {
	float: left;
	width: 174px;
	padding: 0;
	margin: 0;
}
.calendar_top {
	float: left;
	width: 174px;
	height: 27px;
	padding: 0 0 23px 0;
	background-image: url(../img/calendar_top.gif);
	background-position: top left;
	background-repeat: no-repeat;
}
.calendar_arrow {
	float: left;
	width: 6px;
	height: 5px;
	padding: 11px 10px 11px 10px;
}
.calendar_arrow img{
	border: 0;
}
.calendar_month {
	float: left;
	width: 122px;
	height: 27px;
	font-family: Arial;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	line-height: 27px;
	color: #777777;
}
.calendar_week {
	float: left;
	width: 174px;
	height: 24px;
	border-top: solid 1px white;
}
/* DAY CELL */
	.calendar_day, .calendar_day_over, .calendar_day_event , .calendar_day_event_red , .calendar_today 
	{
		float: left;
		width: 24px;
		height: 24px;
		border-right: solid 1px white;
		font-family: Arial;
		font-size: 12px;
		font-weight: bold;
		text-align: center;
		text-decoration: none;
		line-height: 24px;
	}
	.calendar_day_event :hover, .calendar_day_event_red:hover {
		cursor: pointer;
		color: #555;
	}
	.calendar_day {
		background-color: #D5F1A7;
		color: #777777;
	}
	.calendar_day_over {
		background-color: #D5F1A7;
		color: #bbb;
	}
	.calendar_day_event {
		background-color: #FFDB6F;
		color: white;
	}
	.calendar_day_event_red {
		background-color: #fec200;
		color: white;
	}
	.calendar_today {
		background-color: #B3DC64;
		color: white;
	}
/* DAY CELL FOR EVEN ON TODAY */
	.event_today {
		border: 2px #97CF3C solid;
		position: relative;
		left: -2px;
		top: -2px;
		margin-right: -3px;
		
	}

.calendar_bot {
	width: 100%;
	display: block;
	line-height: 6px;
	padding: 0;
	margin: 0;
	color: white;
}
/* CALENDAR EVENT BOX */
	.ceb {
		position: absolute;
		width: 200px;
		z-index: 999;
		font-size: 11px;
	}
	.ceb:hover {
		cursor: default;
	}
	.ceb a {
		color: white;
		font-weight: bold;
	}
	.ceb, .ceb * {
		text-align: center;
		text-align: left;
		font-weight: normal;
		margin: none;
		padding: none;
		height: auto;
		width: auto;
		min-height: auto;
		z-index: 999;
	}
/* event box middle */
	.cebMid {
		padding: 0px 5px 5px 5px;
		height: auto;
		width: 190px;
		min-height: auto;
		background-color: #97CF3C;
	}
	.cebMid * {
		padding: 0px;
		margin: 0px;
		height: auto;
		width: auto;
	}
	.cebDate {
		width: auto;
		font-weight: normal;
		font-size: 10px;
	}
/* event box top */
	.cebTop {
		background: url('../img/cebTop.gif');
		background-repeat: no-repeat;
		height: 19px;
		width: 200px;
	}
/* event box bottom */
	.cebBottom {
		background: url('../img/cebBottom.gif');
		background-repeat: no-repeat;
		height: 7px;
		width: 200px;
	}