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

.full-calendar-title {
/*	background-image:url(/images/cal_head_desat.jpg);*/
	background-repeat: no-repeat;
	text-indent:160px;
	margin:0;
	margin-top:12px;
	height:120px;
	font:80px impact, sans-serif;
	text-transform: uppercase;
	color:#89ace2;
/*	color:#ffffff;*/
	}

/*full-calendar-header {
	background-image:url(/images/cal_head_opt1.jpg);
	background-repeat: no-repeat;
}	*/	
.full-calendar-buttons {
	float: right;
	margin: 12px 6px 0px 0px;
		background-color: transparent;
		background-image: none;}
	
.full-calendar-buttons button {
	vertical-align: middle;
	margin: 0 0 0 5px;
	font-size: 10px;
	}
	
.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: 1px solid #ccc;*/ /* outer border color & style */
	}
	
.full-calendar-month {
	width: 100%;
	overflow: hidden;
	}

.full-calendar-month table {
	border-collapse: collapse;
	border-spacing: 0px;
		}
	
/*.full-calendar-month tbody tr {
	visibility: collapse;
}	*/

	
	
/* cell styling */
	
.full-calendar-month th,
.full-calendar-month td.day {
	padding: 0;
	vertical-align: top;
	border-style: solid;    /* inner border style */
	border-color: #ccc;     /* inner border color */
	border-width: 1px;
	}
	
.full-calendar-month th {
	border: 0;
	text-align: center;
	color:#888;
	text-transform:uppercase;
	font:12px verdana, arial, sans-serif;
	}
	
	
.full-calendar-month th.first,
.full-calendar-month td.first {
/*	border-left: 1px solid #ccc;*/
	}
	
.full-calendar-month td.today {
	background: #FFFFCC;
	}
	
.full-calendar-month .day-number {
	float: right;
	padding:2px;
	font:bold 80px  helvetica, arial, sans-serif;
	color:#888;
	text-indent:-9999px;
	width:100%;
	background-repeat: no-repeat;
	background-position: center center;
	}

	
.full-calendar-month .other-month .day-number {
	color: #ddd;
	background-image:none;
	font-size:14px;
	padding:2px;
	text-indent:0px;
	text-align:right;
	}

	
.full-calendar-month .day-content {
	padding: 2px 2px 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: 10px;
	cursor: pointer;
	text-align: left;
	}
	
.full-calendar-month .ui-draggable-dragging td {
	cursor: move;
	}
	
.full-calendar-month .event td {
	padding: 0;
	}
	
.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:10px verdana, sans-serif;
	}

.full-calendar-month .event-title {
	font:10px verdana, sans-serif;
	color:#c1272d;
	}	

.full-calendar-month .event-title:hover {
	font:10px verdana, sans-serif;
	color:#fff;
	background-color:#c1272d;
	}	

	
	/* 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;
	}
	
