/*!
 * FullCalendar v2.0.3 Stylesheet
 * Docs & License: http://arshaw.com/fullcalendar/
 * (c) 2013 Adam Shaw
 */


.fc {
	direction: ltr;
	text-align: left;
	}

.fc table {
	border-collapse: collapse;
	border-spacing: 0;
	}

html .fc,
.fc table {
	font-size: 1em;
	}

.fc td,
.fc th {
	padding: 0;
	vertical-align: top;
	}



/* Header
------------------------------------------------------------------------*/
table.fc-header {padding:0px;line-height:8px;border:1px solid #E7E7E7;margin:0px;background-color:#FFFFFF;}   /* ajouté par tristan */


.fc-header td {white-space: nowrap;}

.fc-header-left {
	width: 25%;
	text-align: left;
	}

.fc-header-center {
	text-align: center;
	}

.fc-header-right {
	width: 25%;
	text-align: right;
	}

.fc-header-title {
	display: inline-block;
	vertical-align: top;
	}

.fc-header-title h2 {
	margin-top: 0;
	white-space: nowrap;
	letter-spacing:1px;text-transform:uppercase;padding:0px; background-image:none;padding-top:6px;padding-bottom:6px;line-height:14px; font-size:14px; color:#318CA5;cursor:default;  /* ajouté par tristan */
	}

.fc .fc-header-space {
	padding-left: 10px;
	}

.fc-header .fc-button {
	margin-bottom: 1em;
	vertical-align: top;
	}

/* buttons edges butting together */

.fc-header .fc-button {
	margin-right: -1px;
	}

.fc-header .fc-corner-right,  /* non-theme */
.fc-header .ui-corner-right { /* theme */
	margin-right: 0; /* back to normal */
	}

/* button layering (for border precedence) */

.fc-header .fc-state-hover,
.fc-header .ui-state-hover {
	z-index: 2;
	}

.fc-header .fc-state-down {
	z-index: 3;
	}

.fc-header .fc-state-active,
.fc-header .ui-state-active {
	z-index: 4;
	}



/* Content
------------------------------------------------------------------------*/

.fc-content {
	position: relative;
	z-index: 1; /* scopes all other z-index's to be inside this container */
	clear: both;
	zoom: 1; /* for IE7, gives accurate coordinates for [un]freezeContentHeight */
	}

.fc-view {
	position: relative;
	width: 100%;
	overflow: hidden;
	}



/* Cell Styles
------------------------------------------------------------------------*/

.fc-widget-header,    /* <th>, usually */
.fc-widget-content {  /* <td>, usually */
	border: 1px solid #ddd;
	}

.fc-state-highlight { /* <td> today cell */ /* TODO: add .fc-today to <th> */
	background: #fcf8e3;
	}

.fc-cell-overlay { /* semi-transparent rectangle while dragging */
	background: #bce8f1;
	opacity: .3;
	filter: alpha(opacity=30); /* for IE */
	}



/* Buttons
------------------------------------------------------------------------*/

.fc-button {
	position: relative;
	display: inline-block;
	padding: 0 .6em;
	overflow: hidden;
	height: 1.9em;
	line-height: 1.9em;
	white-space: nowrap;
	cursor: pointer;
	}

.fc-state-default { /* non-theme */
	border: 1px solid;
	}

.fc-state-default.fc-corner-left { /* non-theme */
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	}

.fc-state-default.fc-corner-right { /* non-theme */
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	}


/*
	Our default prev/next buttons use HTML entities like &lsaquo; &rsaquo; &laquo; &raquo;
	and we'll try to make them look good cross-browser.
*/

.fc-button .fc-icon {
	margin: 0 .1em;
	font-size: 2em;
	font-family: "Courier New", Courier, monospace;
	vertical-align: baseline; /* for IE7 */
	}

.fc-icon-left-single-arrow:after {
	content: "\02039";
	font-weight: bold;
	color:#318CA5;/* ajouté par tristan */
	}

.fc-icon-right-single-arrow:after {
	content: "\0203A";
	font-weight: bold;
	color:#318CA5;/* ajouté par tristan */
	}


/* ajouté par tristan - style boutons prev / next */
.fc-state-default,.fc-state-default.fc-corner-left,.fc-state-default.fc-corner-right  {box-shadow:none;background:#FFFFFF;margin:0px;	border:none;border-radius:0px;}


/* Global Event Styles
------------------------------------------------------------------------*/

.fc-event-container > * {
	z-index: 8;
	}

.fc-event-container > .ui-draggable-dragging,
.fc-event-container > .ui-resizable-resizing {
	z-index: 9;
	}

.fc-event {
	border: 1px solid #3a87ad; /* default BORDER color */
	background-color: #3a87ad; /* default BACKGROUND color */
	color: #fff;               /* default TEXT color */
	font-size: .85em;
	cursor: default;
	font-size: .05em;border:none; /* ajouté par tristan le 24/08/14 */
	height:8px; /* hauteur barres des événements */
	}

a.fc-event {
	text-decoration: none;
	}

a.fc-event,
.fc-event-draggable {
	cursor: pointer;
	}

.fc-rtl .fc-event {
	text-align: right;
	}

.fc-event-inner {
	width: 100%;
	height: 100%;
	overflow: hidden;
	}

.fc-event-time,
.fc-event-title {
	padding: 0 1px;
	}

.fc .ui-resizable-handle {
	display: block;
	position: absolute;
	z-index: 99999;
	overflow: hidden; /* hacky spaces (IE6/7) */
	font-size: 300%;  /* */
	line-height: 50%; /* */
	}



/* Horizontal Events
------------------------------------------------------------------------*/

.fc-event-hori {
	border-width: 1px 0;
	margin-bottom: 1px;
	}

.fc-ltr .fc-event-hori.fc-event-start,
.fc-rtl .fc-event-hori.fc-event-end {
	border-left-width: 1px;
	border-top-left-radius: 3px;border-bottom-left-radius: 3px;
	border-left-width: 0px;border-top-left-radius: 0px;border-bottom-left-radius: 0px; /*ajouté  par tristan le 24/08/14 */
	}

.fc-ltr .fc-event-hori.fc-event-end,
.fc-rtl .fc-event-hori.fc-event-start {
	border-right-width: 1px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	border-right-width: 0px;border-top-right-radius: 0px;border-bottom-right-radius: 0px; /*ajouté  par tristan le 24/08/14 */
	}

/* 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;
	cursor: default;  /*ajouté  par tristan le 24/08/14 */
	}

.fc-event-hori .ui-resizable-w {
	top: 0           !important;
	left: -3px       !important;
	width: 7px       !important;
	height: 100%     !important;
	cursor: w-resize;
	cursor: default;  /*ajouté  par tristan le 24/08/14 */
	}

.fc-event-hori .ui-resizable-handle {
	_padding-bottom: 14px; /* IE6 had 0 height */
	}



/* Reusable Separate-border Table
------------------------------------------------------------*/

table.fc-border-separate {
	border-collapse: separate;
	}

.fc-border-separate th,
.fc-border-separate td {
	border-width: 1px 0 0 1px;
	}

.fc-border-separate th.fc-last,
.fc-border-separate td.fc-last {
	border-right-width: 1px;
	}

.fc-border-separate tr.fc-last th,
.fc-border-separate tr.fc-last td {
	border-bottom-width: 1px;
	}

.fc-border-separate tbody tr.fc-first td,
.fc-border-separate tbody tr.fc-first th {
	border-top-width: 0;
	}



/* Month View, Basic Week View, Basic Day View
------------------------------------------------------------------------*/

.fc-grid th {
	text-align: center;
	cursor:default;color:#949494; font-weight:normal;border-right:0px;border-left:0px; border-top:0px;line-height:10px;padding-top:8px;padding-bottom:8px;/* ajouté par tistan - couleur nom de jours - lun mar mer jeu ven sam dim */
	}

.fc .fc-week-number {
	width: 22px;
	text-align: center;
	}

.fc .fc-week-number div {
	padding: 0 2px;
	}
.fc-day {   background-color:#FFFFFF;color:#318CA5;cursor:default; }   /* ajouté par tistan - couleur fond cellules jours actifs */
.fc-other-month.fc-day {background-color:transparent;color:#999999;}  /* ajouté par tistan - couleur fond cellules jours désactivés */

 /* jour actuel */
.fc-today {font-weight:bold;}
.fc-today {color:#FFFFFF;
background-color:#389ABE;
-moz-box-shadow: inset -1px 1px 3px 0px #216179;
-webkit-box-shadow: inset -1px 1px 3px 0px #216179;
-o-box-shadow: inset -1px 1px 3px 0px #216179;
box-shadow: inset -1px 1px 3px 0px #216179;
filter:progid:DXImageTransform.Microsoft.Shadow(color=#216179, Direction=224, Strength=3);
background-image: url(data:image/gif;base64,R0lGODlhPAAKAMIAADyavESixDyevESmxDyexDiavgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQICgAAACwAAAAAPAAKAAADiDga1RVqMAeXe3G2Ki/XmFVEgENIEmFCkNoQ7OAWMDrX7Wo3kgZ8jl8mCGwIRYVjx1gcgSqB50La80ytVcqV4oF2kQ8vRbwhh8EBgS5Lg2pqbHh0PX+5V8QhU59sKn1+gQNabGd1ZYVRiSxPjF8bKI1oZopLiJZnmJU0EQMll4dyb3d2W22mcgkAIfkECAoAAAAsAAAAADwACgAAA34Ys1Feij24RnvRznwd31UTghI2mqV3qilVWgOBBUoge7R1Q7k91zsa8KdzpAAfB3K1PCYLTY3yKcVZOrzrpobtdblbLSZczZZz58i3he4KHgBGlaDu0Bn2+uMuLvBpex1xanBPUYKGiUwKKGl9WYAzj15hkVYslmZrjpybmwkAIfkECAoAAAAsAAAAADwACgAAA49YNDxUULQBoJovzgpXy4XUcNc4BRYQDCsKqY1bwG26MjLN2nG7W4GbrCAc3n6QooUYWyqbQKFTGmUZqcnWFQdhIWFWC8EnG4+q4c6RFMS5uK9jrv1Vqr1zt5hsQRKxf3BZgoF+dFuGU4SHioZajVtBTgIpOEhmNXdpCkcgZpufDnuVWCqlfHGPcVAzbZKrCQAh+QQICgAAACwAAAAAPAAKAAADh1gV06GKObjaeFBeqnG0XtUUxHUREMEwqKKaLbkO8cumcz0D1qYAHQgQJAz+jIXh5AiahSSBp0N6oUY5U2y1QMxAOV/vMhImjxdhk8fmk2Vd0HUc93ZvuW1gWZlH8j1/RV1cT2Vod2ZXYoqJhYgLYGdRkoaTbYeXlk8CQg5tL4igjKJydaQ4CQAh+QQICgAAACwAAAAAPAAKAAADglgK0xOqMAeXe3G2Ki/XmDVEwRMqQZlGRfpwrQq7KymzLkrh5RlvPKBNiOrNegWCKUDIbE6aWmfzoVSpzg3o04OqvMvMlxtejMc4LGk39LncxiCGXST+pD+4/X0UlpNoCgRdTYJGHINqgIqJLwpEAHxiipF0lSqTmGZ/ep19nnKfMAkAIfkECAoAAAAsAAAAADwACgAAA44otTQ+YJX2iBQPSurswk/EZF6BSUAwqAGqOu2Srqv7xMXM2rAtvbUfDFcAEl+B401SHDJfC1YwinyyjtXf1drT1jiBEkGKG4e8qzJQVESqQ7TprJtzb8i85J2GmyftQjtoWHRthUmHVUuDXHqMj1RpXEF8e5IMQGKAE5tmHZaOdHNyiI51i6eCdVsyRhIJACH5BAgKAAAALAAAAAA8AAoAAAODOFFcMXC1F5uDytI8sWTb52geWXUnWKKcmjpCQzwPMQW0DeKK7vABHy53I+4agBBSyUiuCs5UtDX9OFE4DU0E5G61Cm8YrKKBW78XD70WsykFAmYAuEU+s7uMkmXkx358eHwACoBxNFRMUItVS09Vi2lvh2l9O5VdYFl6dpSfbqFnEgkAIfkECAoAAAAsAAAAADwACgAAA4M4E9Wgijm4WnlQXqpxtF7ViE0QLFphopZ6mu0KW3Jax/FJuh+t279crxSkCSyEHwGU6TSZEWcUypqAdCQAtvPKdrkLbxhMm5arpYxwt2IXiYP0aw1E89zDez1OoAB8ZgVJEEsNg2iHM4I/GokPL41fV4Faag6Sl2OTkJZweJ97oXQFCQA7);
}
/* animated stripes : http://preloaders.net/en/horizontal */


.fc-grid .fc-day-number {
	float: right;
	padding: 0 2px;
	 /* couleur par défaut texte des jours */
	}

.fc-grid .fc-other-month .fc-day-number {
	opacity: 30;
	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: 1px 1px 1px; /* distance between events and day edges */
	}

/* event styles */

.fc-grid .fc-event-time {
	font-weight: bold;
	}

/* right-to-left */

.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 table {
	border-collapse: separate;
	}

.fc-agenda-days th {
	text-align: center;
	}

.fc-agenda .fc-agenda-axis {
	width: 50px;
	padding: 0 4px;
	vertical-align: middle;
	text-align: right;
	font-weight: normal;
	}

.fc-agenda-slots .fc-agenda-axis {
	white-space: nowrap;
	}

.fc-agenda .fc-week-number {
	font-weight: bold;
	}

.fc-agenda .fc-day-content {
	padding: 3px 3px 1px;
	}

/* make axis border take precedence */

.fc-agenda-days .fc-agenda-axis {
	border-right-width: 1px;
	}

.fc-agenda-days .fc-col0 {
	border-left-width: 0;
	}

/* all-day area */

.fc-agenda-allday th {
	border-width: 0 1px;
	}

.fc-agenda-allday .fc-day-content {
	min-height: 34px; /* TODO: doesnt work well in quirksmode */
	_height: 34px;
	}

/* divider (between all-day and slots) */

.fc-agenda-divider-inner {
	height: 2px;
	overflow: hidden;
	}

.fc-widget-header .fc-agenda-divider-inner {
	background: #eee;
	}


/* resizable */

.fc-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;
	}

.fc-agenda .ui-resizable-resizing { /* TODO: better selector */
	_overflow: hidden;
	}


