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

#calendar{
	margin:10px 0 20px;
	}

#calendar h2{
	font-size:20px;
	font-weight:bold;
	letter-spacing:-1px;
	padding:0 0 5px;
	}

#legend{
	text-align:center;
	margin-bottom:20px;
	}

#legend span{
	margin-left:30px;
	padding-left:5px;
	}

#legend .oneeighty{
	border-left:30px #668cd9 solid;
	}

#legend .uwindsor{
	border-left:30px #4cb052 solid;
	}

#legend .holiday{
	border-left:30px #cc3333 solid;
	}

.full-calendar-title {
	text-align: left;
	}
	
.full-calendar-buttons {
	float: right;
	}
	
.full-calendar-buttons button {
	font-size: 14px;
	}
	
.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;
	background-color:#fff;
	}

.full-calendar-month table {
	border-collapse: collapse;
	border-spacing: 0;
	}
	
	
/* 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 0 0 1px;
	}
	
.full-calendar-month th {
	border-top: 0;
	text-align: center;
	font-weight:bold;
	}
	
.full-calendar-month th.first, 
.full-calendar-month td.first {
	border-left: 0;
	}
	
.full-calendar-month td.today {
	background: #FFFFBB;
	}
	
.full-calendar-month .day-number {
	text-align: right;
	padding: 0 2px;
	}
	
.full-calendar-month .other-month .day-number {
	color: #bbb;
	}
	
.full-calendar-month .day-content {
	padding: 2px 2px 0; /* distance between events and day edges */
	}
	 
	
/* 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: #C1D9EC;
	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-weight: bold;
	}

.full-calendar-month .oneeighty td {
	 background:#668cd9;
	 color:#fff;
	 }

.full-calendar-month .uwindsor td {
	 background:#4cb052;
	 color:#fff;
	 }
	
.full-calendar-month .holiday td {
	 background:#cc3333;
	 color:#fff;
	 }
	
	
/* 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;
	}