

/* Global Event Styles
------------------------------------------------------------------------*/

/*
	reservation bookings
*/

.fc-event,
.fc-agenda .fc-event-time,
.fc-event a {
	border-style: solid; 
	/*border-color: black;  */   /* default BORDER color (probably the same as background-color) */
	background-color: #CEE7FF; /* default BACKGROUND color */
	color: black;            /* default TEXT color */
	}
	
	/* Use the 'className' CalEvent property and the following
	 * example CSS to change event color on a per-event basis:
	 *
	 * .myclass,
	 * .fc-agenda .myclass .fc-event-time,
	 * .myclass a {
	 *     background-color: black;
	 *     border-color: black;
	 *     color: red;
	 *     }
	 */
	 
.fc-event {
	text-align: left;
	white-space: nowrap;
	}
	
.fc-event a {
	overflow: hidden;
	//font-size: .85em;
	text-decoration: none;
	cursor: pointer;
	}
	
.fc-event-editable {
	cursor: pointer;
	}
	
.fc-event-time,
.fc-event-title {
	padding: 0 1px;
	}
	
/* for fake rounded corners */

.fc-event a {
	display: block;
	}
	
/* right-to-left */

.fc-rtl .fc-event a {
	text-align: right;
	}
	
/* resizable */
	
.fc .ui-resizable-handle { /*** TODO: don't use ui-resizable anoymore, change class ***/
	display: block;
	position: absolute;
	z-index: 99999;
	border: 0 !important; /* important overrides pre jquery ui 1.7 styles */
	background: url(data:image/gif;base64,AAAA); !important; /* hover fix for IE */
	}
/* 
	In-house bookings 
*/
.fc-event1,
.fc-agenda .holiday .fc-event-time,
.fc-event1 a {
    background-color: #BBFC3C; /* background color */
    color: black;           /* text color */
    }
    
/* 
	Checked-out bookings
*/
.fc-event2,
.fc-agenda .holiday .fc-event-time,
.fc-event2 a {
    background-color: #FAC854; /* background color */
    color: black;           /* text color */
    }
	
.fc-event3,
.fc-agenda .holiday .fc-event-time,
.fc-event3 a {
    background-color: #ddd; /* background color */
    color: black;           /* text color */
    }
	
/*
	Unconfirmed reservatoin bookings
*/

.fc-event7,
.fc-agenda .fc-event-time,
.fc-event7 a {
	border-style: solid; 
	background-color: white; /* default BACKGROUND color */
	color: black;            /* default TEXT color */
	}
    
/*
	Unconfirmed reservatoin bookings
*/

.fc-event5,
.fc-agenda .fc-event-time,
.fc-event5 a {
	border-style: solid; 
	background-color: #e63600; /* default BACKGROUND color */
	color: black;            /* default TEXT color */
	}
	
/* Horizontal Events
------------------------------------------------------------------------*/

.fc-event-hori {
	border-width: 1px 0;
	margin-bottom: 1px;
	}

/* Located here to override fc-event-hori making border-width 1px 0*/
.border-red {
	border-width: 2px;
	border-color: red;
	border-style: solid;
}

.fc-event-hori a {
	border-width: 0;
	}
	
/* for fake rounded corners */
	
.fc-content .fc-corner-left {
	margin-left: 1px;
	}
	
.fc-content .fc-corner-left a {
	border-left-width: 1px;
	}
	
.fc-content .fc-corner-right {
	margin-right: 1px;
	}
	
.fc-content .fc-corner-right a {
	border-right-width: 1px;
	}

.group-booking .fc-event-title {
    font-style: italic;
}
/* resizable */
	
.fc-event-hori .ui-resizable-e {
	top: 0           !important; /* importants override pre jquery ui 1.7 styles */
	right: -3px      !important;
	width: 7px       !important;
	height: 100%     !important;
	cursor: e-resize;
	}
	
.fc-event-hori .ui-resizable-w {
	top: 0           !important;
	left: -3px       !important;
	width: 7px       !important;
	height: 100%     !important;
	cursor: w-resize;
	}
	
.fc-event-hori .ui-resizable-handle {
	_padding-bottom: 14px; /* IE6 had 0 height */
	}
        
.vip a:hover {
    background-color: #DAA520;
}

.blacklist a:hover {
    background-color: #FF0000;
}
	
	
	
