/*
 * 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;
}

#calendarContainer {
	width: 252px;
	float: left;
}

.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
------------------------------------------------------------------------*/

.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;
	vertical-align: baseline;
	}
	
.fc .fc-header-space {
	padding-left: 10px;
	}
	
.fc-header .fc-button {
	margin-bottom: 0;
	vertical-align: top;
	border: none;
	background: none;
	}
	
/* 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;
	opacity: .2;
	filter: alpha(opacity=20); /* for IE */
	}
	


/* 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/library_sprite.gif) no-repeat -196px -129px;
}.fc-corner-left:hover .fc-button-inner .fc-button-content{
	background: url(./common/images/library_sprite.gif) no-repeat -274px -129px;
}

.fc-corner-right .fc-button-inner .fc-button-content{
	background: url(./common/images/library_sprite.gif) no-repeat -224px -129px;
}.fc-corner-right:hover .fc-button-inner .fc-button-content{
	background: url(./common/images/library_sprite.gif) no-repeat -302px -129px;
}
	
	
/* 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;
	}
	
.fc-grid .fc-day-number {
	float: right;
	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;
	}
	

/* calendar */

#calendar {
	font-size: .9em;
}

.fc-header {
	background-color: #fff;
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc;
}

.fc-header-title {
	width: 110px;
	padding: 0;
	margin: 0;
	height: auto;
}

.fc-header-left h2,
.fc-header-right .fc-button {
	margin:0;
	padding:0;
	font-size: .9em;
}

.fc-header-left h2 {
	margin: 3px 12px 0;
}

.fc-header-right .fc-button {
	margin: 6px 0;
}

.fc-header-right .fc-corner-right {
	margin-right: 6px;
}

.fc-widget-header {
	background-color: #ddd;
	font-size: .9em;
}

.fc-button-effect {
	display: none;
}

.fc-button .fc-button-inner {
	border: none;
	background-color: #4a3822;
	color: #fff;
	padding: 0;
	margin: 0 0 0 1px;
}

.fc-button-content {
	font-size: 1px;
	padding: 0;
	margin: 0;
}

.fc-widget-content {
	background-color: #fff;
	width: 30px;
	height:30px;
}

.fc-widget-content div {
	text-align: center;
	vertical-align: middle;
	overflow-x: hidden;
	overflow-y: hidden;
	display: inline;
	line-height: 3em;
}

.fc-day-number {
	margin: 0;
	width: 35px;
	height: 35px;
	text-align: center;
	vertical-align: middle;
}

.fc-grid .fc-day-content {
	display: none;
}

.fc-day-number {
	margin: 0;
	width: 35px;
	height: 35px;
	text-align: center;
	vertical-align: middle;
}

.fc-sun .fc-day-number{
	width: 34px;
}

/* calendar navi */

#calendarNavi {
	margin-bottom: -2px;
	width: 252px;
	overflow: hidden;
	z-index: 1000;
	float: left;
}

#calendarNavi div {
	border-right: 1px solid #ccc;
	border-top: 1px solid #ccc;
	background-color: #fff;
	padding: 2px 0 0;
	width: 54px;
	float: left;
}

#calendarNavi #calendarNaviShirokane,
#calendarNavi #calendarNaviYokohama {
	border-left: 1px solid #ccc;
	text-align: center;
	cursor: pointer;
}

#calendarNavi #calendarNaviShirokane:hover,
#calendarNavi #calendarNaviYokohama:hover {
}

#calendarNavi #calendarNaviYokohama {
	margin-right: 0;
	background-color: #4a3822;
	color: #fff;
	border-bottom: 1px solid #FFF;
}

#calendarCaption {
	margin-top: 12px;
	font-size: .8em;
	line-height: 180%;
	width: 250px;
}

#calendarCaption .icon {
	display: block;
	border: 1px solid #ccc;
	width: 10px;
	height: 10px;
	float: left;
	margin: .3em .3em 0 0;
}

#calendarCaption th,
#calendarCaption td{
		vertical-align: top;
}

#calendarNavi .bottomLine{
	width: 140px;
	border-top: none;
	border-right: none;
	border-bottom: solid 1px #CCC;
	background-color: transparent;
}

.en.ie #calendarNavi .bottom{
	width: 54px;
}

.ie #calendarContainer .bottom{
	margin-top: -3px;
	height: 1px;
}

.en.ie7 #calendarContainer #calendar{
	margin-top: -11px;
	border: solid 1px red;
}

.en.ie6 #calendarContainer #calendar{
	margin-top: -14px;
}