
/* top area w/ month title and buttons */

.full-calendar-header {
	padding: 0px 0px 10px;
}

.full-calendar-title {
	text-align: center;
	font-size: 11px;
	margin: 0px;
	color: #72a1d7;
	font-weight: bold;
}
	
.full-calendar-header button {
	border: 0px;
	background-color: #4B4B4B;
	padding: 0px;
}

.full-calendar-header button span {
	font-size: 11px;
	color: #72a1d7;
}

.full-calendar-header button.next-month {
	float: right;
}

.full-calendar-header button.prev-month {
	float: left;
}
	
/* table layout & outer border */

.full-calendar-month-wrap {
	clear: both;
	border: 0px;
	}
	
.full-calendar-month {
}

.full-calendar-month table {
	width: 100%;
	border-collapse: collapse;
	border: 0;
}
	
	
/* cell styling */
	
.full-calendar-month th,
.full-calendar-month td.day {
	padding: 0;
	vertical-align: top;
	border: 0;
}
	
.full-calendar-month th {
	border-top: 0;
	text-align: center;
}

.full-calendar-month th span{
	display: block;
	background-color: #404040;
	padding: 5px 0px;
	color: #72a1d7;
	font-weight: normal;
	margin: 0px 0px 15px;
}
	
.full-calendar-month th.first,
.full-calendar-month td.first {
	border: 0;
}
	
.full-calendar-month td.today {

}
	
.full-calendar-month .day-number {
	background-color: #404040;
	cursor: default;
	text-align: center;
	padding: 3px;
	margin: 3px;
	line-height: 15px;
}

.eventPopup div.day-number {
	background-color: #616161;
}

.currentEventDate div.day-number {
	background-color: #70a2d7 !important;
	color: #ffffff !important;
}

.full-calendar-month .other-month .day-number {
	color: #6C6C6C;
}
	
.full-calendar-month .day-content {
	display: none;
}
	
/* event styling */
	
.full-calendar-month .event {
	display: none;
	}
	
.full-calendar-month .ui-draggable-dragging td {
	cursor: move;
	}
	
.full-calendar-month .event td {
	display: none;
	}
	
.full-calendar-month .event td.ne,
.full-calendar-month .event td.nw,
.full-calendar-month .event td.se,
.full-calendar-month .event td.sw {
	background: none;
	/*width: 1px;  /* <-- remove if you dont want "rounded" corners */
	/*height: 1px; /* <--                                           */
	}
	
.full-calendar-month .nobg td {
	background: none;
	}
	
.full-calendar-month .event td.c {
	padding: 0 2px;
	}
	
.full-calendar-month .event-time {
	font-weight: bold;
	}
	
	/* To change the color of events on a per-class basis (such as with the
	 * "className" attribute of a CalEvent), do something like this:
	 *
	 * .full-calendar-month .myclass td {
	 *    background: green;
	 *    }
	 */
	
	
	
	
/* the rectangle that covers a day when dragging an event */
	
.full-calendar-month .over-day {
	background: #ADDBFF;
	opacity: .2;
	filter: alpha(opacity=20); /* for IE */
	}
	
	
	
	
/* right-to-left support */

.r2l .full-calendar-title {
	text-align: right;
	}
	
.r2l .full-calendar-buttons {
	float: left;
	}
	
.r2l .full-calendar-buttons button {
	margin: 0 5px 0 0;
	}
	
.r2l .full-calendar-month .day-number {
	text-align: left;
	}
	
.r2l .full-calendar-month .event {
	text-align: right;
	}
	

