/*
 * FullCalendar v1.5.2 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: Sun Aug 21 22:06:09 2011 -0700
 *
 */
 
 
#calendar{
	clear: both;
}

.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: middle;
	}



/* Header
------------------------------------------------------------------------*/

.fc-header td {
	white-space: nowrap;
	}
	
.fc-header-left,
.fc-header-right,
.fc-header-center{
	font-size: 13px;
	line-height: 1em;
}

.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: middle;
	}
	
.fc-header-title h2 {
	margin: 0;
	white-space: nowrap;
	font-size: 13px;
	}
	
.fc .fc-header-space {
	padding-left: 10px;
	}
	
.fc-header .fc-button {
	margin-bottom: 0;
	vertical-align: top;
	}
	
/* buttons edges butting together */

.fc-header .fc-button {
	margin-right: -1px;
	}
	
.fc-header .fc-corner-right {
	margin-right: 1px; /* back to normal */
	}
	
.fc-header .ui-corner-right {
	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 {
	clear: both;
	}
	
.fc-view {
	width: 100%; /* needed for view switching (when view is absolute) */
	overflow: hidden;
	}
	
	

/* Cell Styles
------------------------------------------------------------------------*/

.fc-widget-header,    /* <th>, usually */
.fc-widget-content {  /* <td>, usually */
	border: 1px solid #ccc;
	}
	
.fc-state-highlight { /* <td> today cell */ /* TODO: add .fc-today to <th> */
	background: #ffc;
	}
	
.fc-cell-overlay { /* semi-transparent rectangle while dragging */
	background: #9cf;
	 filter: alpha(opacity=10); /* for IE */
  -moz-opacity:0.10;
  opacity:0.10;
	}
	


/* Buttons
------------------------------------------------------------------------*/

.fc-button {
	border: solid 1px transparent;
	margin-top: 3px;
	position: relative;
	display: inline-block;
	cursor: pointer;
	}
	
.fc-state-default { /* non-theme */
	}
	
.fc-button-inner {
	position: relative;
	float: left;
	overflow: hidden;
	}
	
.fc-state-default .fc-button-inner { /* non-theme */
	}
	
.fc-button-content {
	position: relative;
	float: left;
	height: 1.9em;
	line-height: 1.9em;
	padding: 0 .6em;
	white-space: nowrap;
	}

.fc-corner-left .fc-button-inner,
.fc-corner-right .fc-button-inner,
.fc-corner-left .fc-button-inner .fc-button-content,
.fc-corner-right .fc-button-inner .fc-button-content{
	width: 18px;
	height: 18px;
	direction: block;
}


.fc-corner-left .fc-button-inner .fc-button-content{
	background: url(../common/images/amjm_sprite.gif) no-repeat -178px -160px;
}.fc-corner-left:hover .fc-button-inner .fc-button-content{
	background: url(../common/images/amjm_sprite.gif) no-repeat -206px -160px;
}

.fc-corner-right .fc-button-inner .fc-button-content{
	background: url(../common/images/amjm_sprite.gif) no-repeat -234px -160px;
}.fc-corner-right:hover .fc-button-inner .fc-button-content{
	background: url(../common/images/amjm_sprite.gif) no-repeat -262px -160px;
}
	
	
/* button states (determines colors)  */
	
.fc-state-default,
.fc-state-default .fc-button-inner {
	}
	
.fc-state-hover,
.fc-state-hover .fc-button-inner {
	}
	
.fc-state-down,
.fc-state-down .fc-button-inner {
	}
	
.fc-state-active,
.fc-state-active .fc-button-inner {
	}
	
.fc-state-disabled,
.fc-state-disabled .fc-button-inner {
	}
	
.fc-state-disabled {
	cursor: default;
	}
	
.fc-state-disabled .fc-button-effect {
	display: none;
	}
	
/* Fake Rounded Corners (for buttons and events)
------------------------------------------------------------*/
	
.fc-corner-left {
	margin-left: 1px;
	}
	
.fc-corner-left .fc-button-inner,
.fc-corner-left .fc-event-inner {
	margin-left: -1px;
	}
	
.fc-corner-right {
	margin-right: 1px;
	}
	
.fc-corner-right .fc-button-inner,
.fc-corner-right .fc-event-inner {
	margin-right: -1px;
	}
	
.fc-corner-top {
	margin-top: 1px;
	}
	
.fc-corner-top .fc-event-inner {
	margin-top: -1px;
	}
	
.fc-corner-bottom {
	margin-bottom: 1px;
	}
	
.fc-corner-bottom .fc-event-inner {
	margin-bottom: -1px;
	}
	
	
	
/* Fake Rounded Corners SPECIFICALLY FOR EVENTS
-----------------------------------------------------------------*/
	
.fc-corner-left .fc-event-inner {
	border-left-width: 1px;
	}
	
.fc-corner-right .fc-event-inner {
	border-right-width: 1px;
	}
	
.fc-corner-top .fc-event-inner {
	border-top-width: 1px;
	}
	
.fc-corner-bottom .fc-event-inner {
	border-bottom-width: 1px;
	}
	
	
	
/* 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;
	vertical-align: middle;
	}
	
.fc-grid .fc-day-number {
	padding: 0 0;
	}
	
.fc-grid .fc-other-month .fc-day-number {
/*	 filter: alpha(opacity=30);
  -moz-opacity:0.30;
  opacity:0.30; */
  display: block;
  background: #eee;
  color: #ccc;
	/* 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; /* distance between events and day edges */
	height: auto;
	}
	
/* 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;
	display: none;
	}
	

/* calendar */

#calendar {
	font-size: .9em;
}

.fc-header {
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-top: 1px solid #ccc;
	background-color: transparent;
}

.fc-header-left h2,
.fc-header-right .fc-button {
	margin:0;
	padding:0;
	font-size: .9em;
}

.fc-header-left h2 {
	margin: 0 9px 0;
  width: 92px\9;
}

.fc-header-right .fc-button {
	margin: 9px 0;
}

.fc-header-right .fc-corner-right {
	margin-right: 9px;
}

.fc-widget-header {
	background-color: #ddd;
	font-size: 1em;
}

.fc-button-effect {
	display: none;
}

.fc-button .fc-button-inner {
	border: none;
	color: #fff;
	padding: 0;
	margin: 0 0 0 1px;
}

.fc-button-content {
	font-size: 1px;
	padding: 0;
	margin: 0;
}

.fc-widget-content {
	background-color: transparent;
	width: 13%;
	text-align: center;
	vertical-align: middle;
}

.fc-widget-content div {
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
	display: inline;
	line-height: 3em;
	
}

.fc-day-number {
	margin: 0;
	width: 100%;
	text-align: center;
	vertical-align: middle;
}

.fc-grid .fc-day-content {
	display: none;
}

#calendar-list .fc-header-left h2{
	margin:0 0 0 12px;
	padding:0;
	font-size: 12px;
	line-height: 3em;
}

#calendar-list .calendar td,
#calendar-list .calendar th{
	font-size: .9em;
}

#home .fc-header {
	border-top: none;
	border-left: none;
	border-right: none;
	background-color: transparent;
	width: 311px;
	background: url(/library/amjm/common/images/bottom_line.gif) no-repeat left top;
}

#home .fc-header td {
	padding-top: 9px;
}

#home .fc-header-left{
	width: 72px;
	padding-right: 9px;
	font-size: 14px;
}

#home .fc-header-center{
	text-align: left;
}

#home.lang-en .fc-header {
	background: none;
}

#home.lang-en .fc-header td {
	padding-top: 0;
}

#home.lang-en h2{
	padding: 0;
	margin: 0;
	font-size: 15px;
}

#home.lang-en .fc-header-left{
	padding-right: 12px;
}