#calendar_box {
	background-color: #1F3C5E;
	width: 165px;
	height: 155px;
	position: relative;
	left: 10px;
	top: 10px;
}

#calendar_box #calendar_table {
	background-color: #FFFFFF;
	margin-top: 5px;
	margin-left: 5px;
	width: 155px;
	border-width: 1px;
	border-style: none;
	border-color: #FFFFFF;
}
#calendar_box #calendar_table #ff_month_year {
	display: block;
	background-color: #86AF53;
	margin-top: 2px;
	margin-bottom: 2px;
	border-width: 1px;
	border-style: none;
	border-color: #86AF53;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bold;
}

/************************/
/* Tbale for month days */
/************************/
#calendar_box #calendar_table #month_table {
	width: 155px;
}

/* td of table*/
#calendar_box #calendar_table #month_table td {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #86AF53;
}

/* style of week days names */
#calendar_box #calendar_table #month_table .calendarweek{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #6D6D6D;
	vertical-align: middle;
	line-height: 18px;
}
/* style of calendar days */
#calendar_box #calendar_table #month_table .calendar{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-decoration: none;
	color: #6D6D6D;
	vertical-align: middle;
	line-height: 18px;
}
/* style of calendar days of current month */
#calendar_box #calendar_table #month_table .calendarbold{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
	color: #6D6D6D;
	vertical-align: middle;
	line-height: 18px;
}


