#calendar {
		width: 780px;
		float:left;
		margin-left:0px;
		margin-top:20px;
			
		}
		
#calendarleft {
		width: 200px;
		float:left;
		height:550px;
		border-right:1px solid #efefef;
		
		}
/* top area w/ month title and buttons */

.full-calendar-title {
	text-align: left;
	font-size:20px;
	font-weight:normal;

	}
	
.full-calendar-buttons {
	float: right;
	margin: 0 0 1em;
	}
	
.full-calendar-buttons input {
	vertical-align: middle;
	margin: 0 0 0 5px;
	font-size: 1em;
	}
	
.full-calendar-prev,
.full-calendar-next {
	width: 40px;
	}
	
	
	
/* table layout & outer border */

.full-calendar-month-wrap {
	clear: both;
		border:1px solid #cccccc;		
	}
	
.full-calendar-month {
	width: 100%;
	overflow: hidden;
	}

.full-calendar-month table {
	border-collapse: collapse;
	border-spacing: 0;
	}
	
	
	
/* cell styling */
	
.full-calendar-month th,
.full-calendar-month td.day {
	
	vertical-align: top;	
	border: 1px solid #cccccc;
	font-size:11px;
	padding:5px;
	background-image:url(img/dayback.jpg);
	
	}
	

	
.full-calendar-month th {
	border-top: 0;
	text-align: left;
	background-color:#FFFFFF;
	background-image:url(img/monthback.jpg); background-repeat:no-repeat; background-position: top left;
	
	}
	
.full-calendar-month th.first,
.full-calendar-month td.first {
	border-left: 0;
	}
	
.full-calendar-month td.today {
	background: #efefef;
	}
	
.full-calendar-month .day-number {
	text-align: right;
	padding: 0 2px;
	}
	
.full-calendar-month .other-month .day-number {
	color: #dfdedf;
	}
	
.full-calendar-month .day-content {
	padding: 2px; /* distance between events and day edges */
	}
	
.full-calendar-month td.day {
	/* FullCalendar automatically chooses a height, but this can be overridden: */
	/* height: 100px !important; */
	}
	


/* event styling */
	
.full-calendar-month .event {
	
	font-size: 11px;
	cursor: pointer;
	text-align: left;
	color:#414141;
	
	
	}
	
	/* .full-calendar-month .event:hover {color:#FFFFFF;} */
	
.full-calendar-month .ui-draggable-dragging td {
	cursor: move;
	}
	
.full-calendar-month .event td {
	background: #f4cadf;
	
	}
	.full-calendar-month .event td:hover {background: #f284b5; }
	

	
.full-calendar-month .nobg td {
	background: #f4cadf;
	}
	
	.full-calendar-month .nobg td:hover {background: #f284b5; }

.full-calendar-month .event td.c {
	padding: 0 2px;
	}
	
.full-calendar-month .event-time {
	font-weight: normal; 
	font-style:italic;
	display:none;
	}
	
	
	
/* the rectangle that covers a day when dragging an event */
	
.full-calendar-month .over-day {
	background: #ADDBFF;
	opacity: .2;
	filter: alpha(opacity=20);
	}
	
	
	
/* right-to-left support */

.r2l .full-calendar-title {
	text-align: right;
	}
	
.r2l .full-calendar-buttons {
	float: left;
	}
	
.r2l .full-calendar-buttons input {
	margin: 0 5px 0 0;
	}
	
.r2l .full-calendar-month .day-number {
	text-align: left;
	}
	
.r2l .full-calendar-month .event {
	text-align: right;
	}
	
