#calendar{
	font-family: Arial, Helvetica, Verdana, sans-serif;
}

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

.full-calendar-header {
	height: 32px;
	background: url(../images/calendar/title-bg.png) top left repeat-x;
}

.full-calendar-title {
	text-align: left;
	font-size: 11px;
	text-transform: uppercase;
	color: #d9d9d9;
	line-height: 32px;
	margin-left: 25px;
}
	
.full-calendar-buttons {
	float: right;
	margin: 0 0 1em;
	}
	
.full-calendar-buttons button {
	background: transparent url(../images/calendar/nav-btns.png) no-repeat;
	width: 89px; height: 32px;
	text-indent: -9999px;
	overflow: hidden;
	border: none;
	margin-left: 3px;
	}
	
.full-calendar-buttons button.prev-month{
	background-position: -89px -32px;
}

.full-calendar-buttons button.next-month{
	background-position: 0 -32px;
}

.full-calendar-buttons button.prev-month:hover{
	background-position: -89px 0;
}

.full-calendar-buttons button.next-month:hover{
	background-position: 0 0;
}

.full-calendar-buttons button.today{
	background-position: -178px -32px;
}

.full-calendar-buttons button.today:hover{
	background-position: -178px 0;
}
	
.full-calendar-buttons button span {
	padding: 0 10px;
	}
	
	/* To always display the "today" button:
	 *
	 * .full-calendar-buttons button.today {
	 *    visibility: visible !important;
	 *    }
	 */
	
	
	
	
/* table layout & outer border */

.full-calendar-month-wrap {
	clear: both;
	border: none; /* outer border color & style */
	}
	
.full-calendar-month {
	width: 100%;
	overflow: hidden;
	top: -8px;
	}

.full-calendar-month table {
	border-spacing: 2px;
	}
	
.full-calendar-month table.event {
	border-spacing: 0px;
	}
	
	
	
	
/* cell styling */
	
.full-calendar-month th,
.full-calendar-month td.day {
	padding: 0;
	vertical-align: top;
	background: url(../images/calendar/day-bg.png) top left repeat-x;
	}
	
.full-calendar-month th {
	border-top: 0;
	background: none;
	color: #d9d9d9;
	font-size: 9px;
	text-transform: uppercase;
	padding-left: 8px;
	}
	
.full-calendar-month th.first,
.full-calendar-month td.first {
	border-left: 0;
	}
	
.full-calendar-month td.today {
	background: url(../images/calendar/today-bg.png) top left repeat-x;
	}
	
.full-calendar-month .day-number {
	text-align: right;
	padding: 8px 8px 0 0;
	font-size: 11px;
	color: #d9d9d9;
	}
	
.full-calendar-month .other-month .day-number {
	color: #737373;
	}
	
.full-calendar-month .other-month{
	background: none ! important
}
	
.full-calendar-month .day-content {
	padding: 0 1px 0 0; /* distance between events and day edges */
	}
	
	/* FullCalendar automatically chooses a cell's height,
	 * but this can be overridden:
	 */
.full-calendar-month td.day {
		height: 100px !important;
}

	 
	


/* event styling */
	
.full-calendar-month .event {
	margin-bottom: 2px;
	font-size: .85em;
	cursor: pointer;
	text-align: left;
	}
	
.full-calendar-month .ui-draggable-dragging td {
	cursor: move;
	}
	
.full-calendar-month .event td {
	background: url(../images/calendar/event-bg.png) top left repeat-x;
	padding: 0;
	color: #d9d9d9;
	font-size: 10px;
	padding-bottom: 10px;
	letter-spacing: 0.05em;
	}
	
.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: url(../images/calendar/event-bg.png) top left repeat-x;
	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;
	}
	
