
/* Month View, Basic Week View, Basic Day View
------------------------------------------------------------------------*/

.fc-grid table {
	width: 100%;
	}
	
.fc .fc-grid th {
	border: 0;
	text-align: center;
	}
	
.fc .fc-grid td {
	border: 0;
	}
	
.fc-grid th.fc-leftmost,
.fc-grid td.fc-leftmost {
	border-left: 0;
	}
	
.fc-grid .fc-day-number {
	float: right;
	padding: 0 2px;
	}
	
.fc-grid .fc-other-month .fc-day-number {
	color: #BFBB83;
	/* opacity with small font can sometimes look too faded
	   might want to set the 'color' property instead
	   making day-numbers bold also fixes the problem */
	}
	
.fc-grid .fc-day-content {
	clear: both;
	padding: 2px 2px 0; /* distance between events and day edges */
	}
	
/* event styles */
	
.fc-grid .fc-event-time {
	font-weight: bold;
	}

.fc-today, .fc-not-today
{
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden ! important;
	text-align: center !important;
	height: 14px !important;	
	overflow: hidden;
	line-height: 17px !important;
	color: #84825a;
}

.fc-day-number
{
	height: 14px !important;	
	width: 100% !important;
}	
.fc-day-content
{
	height: 0px !important;	
}
* html .fc-day-content
{
	margin: -2px !important;
	padding: 0px !important;
	overflow: hidden !important;
	
}
/* right-to-left */

.fc-rtl .fc-grid {
	direction: rtl;
	}
	
.fc-rtl .fc-grid .fc-day-number {
	float: left;
	}
	
.fc-rtl .fc-grid .fc-event-time {
	float: right;
	}
	
