/*
 * FullCalendar v1.4.6 Stylesheet
 *
 * Feel free to edit this file to customize the look of FullCalendar.
 * When upgrading to newer versions, please upgrade this file as well,
 * porting over any customizations afterwards.
 *
 * Date: Mon May 31 10:18:29 2010 -0700
 *
 */


.fc,
.fc .fc-header,
.fc .fc-content {
	font-size: 12px;
	}
	
.fc {
	direction: ltr;
	text-align: left;
	}
	
#calendar table {
	border: none;
}
	
#calendar thead {
	background:#B5D6DD;
	border: solid 1px #B5D6DD; 
}

#calendar thead th{
	line-height: 1.2em;
	padding: 5px 0;
	border: solid 1px #FFF;
	font-weight: bold;
}



/* Header
------------------------------------------------------------------------*/
#calendar tbody td{
	border: solid 1px #B4D5DC;
}

table.fc-header {
	width: 100%;
	}
	
.fc-sat, .fc-sun {
	width: 200px;
}

.fc-header-left {
	width: 25%;
	}
	
.fc-header-left table {
	float: left;
	}
	
.fc-header-center {
	width: 50%;
	text-align: center;
	}
	
.fc-header-center table {
	margin: 0 auto;
	}
	
.fc-header-right {
	width: 25%;
	}
	
.fc-header-right table {
	float: right;
	}
	
.fc-header-title {
	margin-top: 0;
	white-space: nowrap;
	}
	
.fc-header-space {
	padding-left: 10px;
	}
	
/* right-to-left */

.fc-rtl .fc-header-title {
	direction: rtl;
	}


/* Buttons
------------------------------------------------------------------------*/

.fc-header .fc-state-default,
.fc-header .ui-state-default {
	cursor: pointer;
	}
	
.fc-header .fc-state-default a {
	display: block;
	width: 100%;
	text-decoration: none;
	}
	
.fc-header .fc-state-default span {
	display: block;
	padding: 3px 5px;
	}
	
.fc-header .ui-state-default {
	padding: 4px 6px;
	}
	
.fc-header .fc-state-default span,
.fc-header .ui-state-default span {
	white-space: nowrap;
	}
	

/* DEFAULT button COLORS */
	
.fc-header .fc-state-default,
.fc-header .fc-state-default a {
	color: #333;
	}

/* DISABLED button COLORS */
	
.fc-header .fc-state-disabled a {
	color: #999;
	}
	
	
/* Content Area & Global Cell Styles
------------------------------------------------------------------------*/
	
.fc-content {
	clear: both;
	}
	
.fc-content .fc-state-default {
	border-style: solid;
	}
	
.fc-content .fc-state-highlight { /* today */
	background: #FFF8C2;
	}
	
.fc-content .fc-not-today {
	background: none;
	}
	
.fc-cell-overlay { /* semi-transparent rectangle while dragging */
	opacity: .2;
	filter: alpha(opacity=20); /* for IE */
	}
	
.fc-view { /* prevents dragging outside of widget */
	width: 100%;
	overflow: hidden;
	}
	
	
	
/* Global Event Styles
------------------------------------------------------------------------*/

.fc-event{
color:#8C4C50;
text-align: left;
padding: 3px 5px;
line-height: 1.4em;
font-size: 10px;
font-weight: bold;
}

.endEvent{
text-decoration: none;
}
	
	
/* 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-editable {
	cursor: pointer;
	}
	
	
/* for fake rounded corners */

.fc-event a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}

.fc-event a:hover {
	text-decoration: none;
}
	
/* resizable */
	
.fc .ui-resizable-handle {
	display: block;
	position: absolute;
	z-index: 99999;
	border: 0 !important; /* important overrides pre jquery ui 1.7 styles */
	}
	
	
/* Horizontal Events
------------------------------------------------------------------------*/

.fc-event-hori {
	border: solid 2px #FFF;
}

.fc-event-hori a:hover{
	text-decoration: none;
}
	

/* Month View, Basic Week View, Basic Day View
------------------------------------------------------------------------*/

.fc-grid table {
	width: 100%;
	}
	
.fc .fc-grid th {
	text-align: center;
	}
	
	
.fc-grid .fc-day-number {
	float: right;
	padding: 5px 5px 0;
	}
	
.fc-grid .fc-other-month .fc-day-number {
	opacity: 0.3;
	filter: alpha(opacity=30); /* for IE */
	/* opacity with small font can sometimes look too faded
	   might want to set the 'color' property instead
	   making day-numbers bold also fixes the problem */
	}
	
.fc-grid .fc-day-content {
	clear: both;
	padding: 0 2px 0; /* distance between events and day edges */
	}
	
/* event styles */
	
.fc-grid .fc-event-time {
	font-weight: bold;
	}
	
/* right-to-left */

.fc-rtl .fc-grid {
	direction: rtl;
	}
	
.fc-rtl .fc-grid .fc-day-number {
	float: left;
	}
	
.fc-rtl .fc-grid .fc-event-time {
	float: right;
	}
	
/* Agenda Week View, Agenda Day View
------------------------------------------------------------------------*/



.fc-agenda-head th {
	text-align: center;
	}
	
/* the time axis running down the left side */
	
.fc-agenda .fc-axis {
	width: 50px;
	padding: 0 4px;
	vertical-align: middle;
	white-space: nowrap;
	text-align: right;
	}
	
/* all-day event cells at top */
	
.fc-agenda-head tr.fc-all-day th {
	height: 0px;
	}
	

	
.fc .fc-divider div {
	height: 0;
	}
	
/* body styles */
	
.fc .fc-agenda-body td div {
	height: 0; /* slot height */
	}
	
	
.fc-agenda .fc-day-content {
	padding: 2px 2px 0; /* distance between events and day edges */
	}
	


/* Vertical Events
------------------------------------------------------------------------*/

/* for fake rounded corners */
	

	
/* event content */
	
.fc-event-vert span {
	display: block;
	position: relative;
	z-index: 2;
	}
	
.fc-event-vert span.fc-event-time {
	white-space: nowrap;
	_white-space: normal;
	overflow: hidden;
	}
	
.fc-event-vert span.fc-event-title {
	line-height: 13px;
	}
	
.fc-event-vert span.fc-event-bg { /* makes the event lighter w/ a semi-transparent overlay  */
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .3;
	filter: alpha(opacity=30); /* for IE */
	}
	
/* resizable */
	
.fc-event-vert .ui-resizable-s {
	bottom: 0        !important; /* importants override pre jquery ui 1.7 styles */
	width: 100%      !important;
	height: 8px      !important;
	line-height: 8px !important;
	text-align: center;
	}
	
.fc-header{
    display: none;
}

.endEvent {
	padding: 0 3px;
	margin: 0 0 2px;
	border: none;
	line-height: 1.2em;
}

.endEvent a{
	color: #999;
	text-decoration: none;
	cursor: default;
}

.fc-sat {
	color:#5684DD;
}

.fc-sun {
	color:#D86F6C;
}

/* event bg color*/
.fair-color01 { background: #FDEDE8;}
.fair-color02 {background: #ECEBFD;}
.fair-color03 {background: #E2EDFF;}
.fair-color04 {background: #E2FFFA;}
.fair-color05 {background: #E0FFE5;}
.fair-color06 {background: #EDFFDF;}
.fair-color07 {background: #FFF6E3;}
.fair-color08 {background: #FDE8E9;}
.fair-color09 {background: #FDE9F7;}
.fair-color10 {background: #F9B9E6;}
.fair-summer {background: #FFF6E3;}
.fair-summer a{ color: #06C;}
.fair-strong {background: #FFCCCC;}

.fc_custom_highlight {
	color: #F00;
}


