/*
 * FullCalendar v1.5.4 Stylesheet
 *
 * Copyright (c) 2011 Adam Shaw
 * Dual licensed under the MIT and GPL licenses, located in
 * MIT-LICENSE.txt and GPL-LICENSE.txt respectively.
 *
 * Date: Tue Sep 4 23:38:33 2012 -0700
 *
 */


.ui {
	direction: ltr;
	text-align: left;
	}
	
.ui table {
	border-collapse: collapse;
	border-spacing: 0;
	}
	
html .ui,
.ui table {
	font-size: 1em;
	}
	
.ui td,
.ui th {
	padding: 0;
	vertical-align: top;
	}



/* Header
------------------------------------------------------------------------*/

.ui-header td {
	white-space: nowrap;
	}

.ui-header-left {
	width: 25%;
	text-align: left;
	}
	
.ui-header-center {
	text-align: center;
	}
	
.ui-header-right {
	width: 25%;
	text-align: right;
	}
	
.ui-header-title {
	display: inline-block;
	vertical-align: top;
	}
	
.ui-header-title h2 {
	margin-top: 0;
	white-space: nowrap;
	}
	
.ui .ui-header-space {
	padding-left: 10px;
	}
	
.ui-header .ui-button {
	margin-bottom: 1em;
	vertical-align: top;
	}
	
/* buttons edges butting together */

.ui-header .ui-button {
	margin-right: -1px;
	}
	
.ui-header .ui-corner-right {
	margin-right: 1px; /* back to normal */
	}
	
.ui-header .ui-corner-right {
	margin-right: 0; /* back to normal */
	}
	
/* button layering (for border precedence) */
	
.ui-header .ui-state-hover,
.ui-header .ui-state-hover {
	z-index: 2;
	}
	
.ui-header .ui-state-down {
	z-index: 3;
	}

.ui-header .ui-state-active,
.ui-header .ui-state-active {
	z-index: 4;
	}
	
	
	
/* Content
------------------------------------------------------------------------*/
	
.ui-content {
	clear: both;
	}
	
.ui-view {
	width: 100%; /* needed for view switching (when view is absolute) */
	overflow: hidden;
	}
	
	

/* Cell Styles
------------------------------------------------------------------------*/

.ui-widget-header,    /* <th>, usually */
.ui-widget-content {  /* <td>, usually */
	border: 1px solid #ccc;
	}
	
.ui-state-highlight { /* <td> today cell */ /* TODO: add .ui-today to <th> */
	background: #ffc;
	}
	
.ui-cell-overlay { /* semi-transparent rectangle while dragging */
	background: #9cf;
	opacity: .2;
	filter: alpha(opacity=20); /* for IE */
	}
	


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

.ui-button {
	position: relative;
	display: inline-block;
	cursor: pointer;
	}
	
.ui-state-default { /* non-theme */
	border-style: solid;
	border-width: 1px 0;
	}
	
.ui-button-inner {
	position: relative;
	float: left;
	overflow: hidden;
	}
	
.ui-state-default .ui-button-inner { /* non-theme */
	border-style: solid;
	border-width: 0 1px;
	}
	
.ui-button-content {
	position: relative;
	float: left;
	height: 1.9em;
	line-height: 1.9em;
	padding: 0 .6em;
	white-space: nowrap;
	}
	
/* icon (for jquery ui) */
	
.ui-button-content .ui-icon-wrap {
	position: relative;
	float: left;
	top: 50%;
	}
	
.ui-button-content .ui-icon {
	position: relative;
	float: left;
	margin-top: -50%;
	*margin-top: 0;
	*top: -50%;
	}
	
/* gloss effect */
	
.ui-state-default .ui-button-effect {
	position: absolute;
	top: 50%;
	left: 0;
	}
	
.ui-state-default .ui-button-effect span {
	position: absolute;
	top: -100px;
	left: 0;
	width: 500px;
	height: 100px;
	border-width: 100px 0 0 1px;
	border-style: solid;
	border-color: #fff;
	background: #444;
	opacity: .09;
	filter: alpha(opacity=9);
	}
	
/* button states (determines colors)  */
	
.ui-state-default,
.ui-state-default .ui-button-inner {
	border-style: solid;
	border-color: #ccc #bbb #aaa;
	background: #F3F3F3;
	color: #000;
	}
	
.ui-state-hover,
.ui-state-hover .ui-button-inner {
	border-color: #999;
	}
	
.ui-state-down,
.ui-state-down .ui-button-inner {
	border-color: #555;
	background: #777;
	}
	
.ui-state-active,
.ui-state-active .ui-button-inner {
	border-color: #555;
	background: #777;
	color: #fff;
	}
	
.ui-state-disabled,
.ui-state-disabled .ui-button-inner {
	color: #999;
	border-color: #ddd;
	}
	
.ui-state-disabled {
	cursor: default;
	}
	
.ui-state-disabled .ui-button-effect {
	display: none;
	}
	
	

/* Global Event Styles
------------------------------------------------------------------------*/
	 
.ui-event {
	border-style: solid;
	border-width: 0;
	font-size: .85em;
	cursor: default;
	}
	
a.ui-event,
.ui-event-draggable {
	cursor: pointer;
	}
	
a.ui-event {
	text-decoration: none;
	}
	
.ui-rtl .ui-event {
	text-align: right;
	}
	
.ui-event-skin {
	border-color: #36c;     /* default BORDER color */
	background-color: #36c; /* default BACKGROUND color */
	color: #fff;            /* default TEXT color */
	}
	
.ui-event-inner {
	position: relative;
	width: 100%;
	height: 100%;
	border-style: solid;
	border-width: 0;
	overflow: hidden;
	}
	
.ui-event-time,
.ui-event-title {
	padding: 0 1px;
	}
	
.ui .ui-resizable-handle { /*** TODO: don't use ui-resizable anymore, change class ***/
	display: block;
	position: absolute;
	z-index: 99999;
	overflow: hidden; /* hacky spaces (IE6/7) */
	font-size: 300%;  /* */
	line-height: 50%; /* */
	}
	
	
	
/* Horizontal Events
------------------------------------------------------------------------*/

.ui-event-hori {
	border-width: 1px 0;
	margin-bottom: 1px;
	}
	
/* resizable */
	
.ui-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;
	}
	
.ui-event-hori .ui-resizable-w {
	top: 0           !important;
	left: -3px       !important;
	width: 7px       !important;
	height: 100%     !important;
	cursor: w-resize;
	}
	
.ui-event-hori .ui-resizable-handle {
	_padding-bottom: 14px; /* IE6 had 0 height */
	}
	
	
	
/* Fake Rounded Corners (for buttons and events)
------------------------------------------------------------*/
	
.ui-corner-left {
	margin-left: 1px;
	}
	
.ui-corner-left .ui-button-inner,
.ui-corner-left .ui-event-inner {
	margin-left: -1px;
	}
	
.ui-corner-right {
	margin-right: 1px;
	}
	
.ui-corner-right .ui-button-inner,
.ui-corner-right .ui-event-inner {
	margin-right: -1px;
	}
	
.ui-corner-top {
	margin-top: 1px;
	}
	
.ui-corner-top .ui-event-inner {
	margin-top: -1px;
	}
	
.ui-corner-bottom {
	margin-bottom: 1px;
	}
	
.ui-corner-bottom .ui-event-inner {
	margin-bottom: -1px;
	}
	
	
	
/* Fake Rounded Corners SPECIFICALLY FOR EVENTS
-----------------------------------------------------------------*/
	
.ui-corner-left .ui-event-inner {
	border-left-width: 1px;
	}
	
.ui-corner-right .ui-event-inner {
	border-right-width: 1px;
	}
	
.ui-corner-top .ui-event-inner {
	border-top-width: 1px;
	}
	
.ui-corner-bottom .ui-event-inner {
	border-bottom-width: 1px;
	}
	
	
	
/* Reusable Separate-border Table
------------------------------------------------------------*/

table.ui-border-separate {
	border-collapse: separate;
	}
	
.ui-border-separate th,
.ui-border-separate td {
	border-width: 1px 0 0 1px;
	}
	
.ui-border-separate th.ui-last,
.ui-border-separate td.ui-last {
	border-right-width: 1px;
	}
	
.ui-border-separate tr.ui-last th,
.ui-border-separate tr.ui-last td {
	border-bottom-width: 1px;
	}
	
.ui-border-separate tbody tr.ui-first td,
.ui-border-separate tbody tr.ui-first th {
	border-top-width: 0;
	}
	
	

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

.ui-grid th {
	text-align: center;
	}
	
.ui-grid .ui-day-number {
	float: right;
	padding: 0 2px;
	}
	
.ui-grid .ui-other-month .ui-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 */
	}
	
.ui-grid .ui-day-content {
	clear: both;
	padding: 2px 2px 1px; /* distance between events and day edges */
	}
	
/* event styles */
	
.ui-grid .ui-event-time {
	font-weight: bold;
	}
	
/* right-to-left */
	
.ui-rtl .ui-grid .ui-day-number {
	float: left;
	}
	
.ui-rtl .ui-grid .ui-event-time {
	float: right;
	}
	
	

/* Agenda Week View, Agenda Day View
------------------------------------------------------------------------*/

.ui-agenda table {
	border-collapse: separate;
	}
	
.ui-agenda-days th {
	text-align: center;
	}
	
.ui-agenda .ui-agenda-axis {
	width: 50px;
	padding: 0 4px;
	vertical-align: middle;
	text-align: right;
	white-space: nowrap;
	font-weight: normal;
	}
	
.ui-agenda .ui-day-content {
	padding: 2px 2px 1px;
	}
	
/* make axis border take precedence */
	
.ui-agenda-days .ui-agenda-axis {
	border-right-width: 1px;
	}
	
.ui-agenda-days .ui-col0 {
	border-left-width: 0;
	}
	
/* all-day area */
	
.ui-agenda-allday th {
	border-width: 0 1px;
	}
	
.ui-agenda-allday .ui-day-content {
	min-height: 34px; /* TODO: doesnt work well in quirksmode */
	_height: 34px;
	}
	
/* divider (between all-day and slots) */
	
.ui-agenda-divider-inner {
	height: 2px;
	overflow: hidden;
	}
	
.ui-widget-header .ui-agenda-divider-inner {
	background: #eee;
	}
	
/* slot rows */
	
.ui-agenda-slots th {
	border-width: 1px 1px 0;
	}
	
.ui-agenda-slots td {
	border-width: 1px 0 0;
	background: none;
	}
	
.ui-agenda-slots td div {
	height: 20px;
	}
	
.ui-agenda-slots tr.ui-slot0 th,
.ui-agenda-slots tr.ui-slot0 td {
	border-top-width: 0;
	}

.ui-agenda-slots tr.ui-minor th,
.ui-agenda-slots tr.ui-minor td {
	border-top-style: dotted;
	}
	
.ui-agenda-slots tr.ui-minor th.ui-widget-header {
	*border-top-style: solid; /* doesn't work with background in IE6/7 */
	}
	


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

.ui-event-vert {
	border-width: 0 1px;
	}
	
.ui-event-vert .ui-event-head,
.ui-event-vert .ui-event-content {
	position: relative;
	z-index: 2;
	width: 100%;
	overflow: hidden;
	}
	
.ui-event-vert .ui-event-time {
	white-space: nowrap;
	font-size: 10px;
	}
	
.ui-event-vert .ui-event-bg { /* makes the event lighter w/ a semi-transparent overlay  */
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: .3;
	filter: alpha(opacity=30);
	}
	
.ui .ui-draggable-dragging .ui-event-bg, /* TODO: something nicer like .ui-opacity */
.ui-select-helper .ui-event-bg {
	display: none\9; /* for IE6/7/8. nested opacity filters while dragging don't work */
	}
	
/* resizable */
	
.ui-event-vert .ui-resizable-s {
	bottom: 0        !important; /* importants override pre jquery ui 1.7 styles */
	width: 100%      !important;
	height: 8px      !important;
	overflow: hidden !important;
	line-height: 8px !important;
	font-size: 11px  !important;
	font-family: monospace;
	text-align: center;
	cursor: s-resize;
	}
	
.ui-agenda .ui-resizable-resizing { /* TODO: better selector */
	_overflow: hidden;
	}
	
	

.ui-header-title h2 {
	font-size: 15px;
	line-height: 20px;
}

.ui-event-skin {
	background-color: #ff5d5e;
	border-color: #ff3839;
}	

.ui-button-month, .ui-button-agendaWeek, .ui-button-agendaDay {
	margin-top: -48px;
	right: 20px;
}


.ui-widget-header {
	padding: 7px 0px !important;
	color: #666;
	background: #eee;
	border-color: #ccc;
}

.ui-content {
	background: #fff;	
}

.ui-content td:hover{
	background: #f3f3f3;	
}
.php-calendar h1
{
	display:none;
}
.phpc-logged 
{
	display:none;
}