@charset "utf-8";

.calendar {
	padding: 10px 15px;
	font-size: 115%;
}
.calendar .ym {
	text-align: center;
	font-size: 115%;
}

.calendar nav {
	clear: both;
	overflow: hidden;
	margin-top: -1.6em;
}
.calendar nav * {
	font-size: 115%;
}
.calendar nav .prev {
	display: block;
	float: left;
	padding-left: 12px;
	cursor:  pointer;
}
.calendar nav .next {
	display: block;
	float: right;
	padding-right: 13px;
	cursor:  pointer;
}

.calendar table {
	width: 100%;
	margin-top: 15px;
	border-collapse: separate;
	border-spacing: 0.5em 0.5em;
}
.calendar table tr {
}
.calendar table tr th,
.calendar table tr td {
	width: 14%;
	text-align: center;
	vertical-align: middle;
}
.calendar table tr th {
	height: 1.0em;
}
.calendar table tr td {
	height: 2.0em;
}

.calendar table .week th {
	font-weight: normal;
}

.calendar table span {
	display: block;
/*	width: 100%;*/
	line-height: 2.0em;
	cursor: default;
}
.calendar table span:hover {
	background-color: #eee;
}
.calendar table .today {
	font-size: 105%;
	font-weight: bold;
	text-decoration: underline;
}
.calendar table .holiday {
	color: red;
}

.calendar table .event {
	border: 1px solid #ccc;
}
.calendar table .event span {
	cursor: pointer;
}


.hidden {
	display: none;
}
.triangle {
	width: 0;
	height: 0;
	margin-top: 1px;
/*	margin-bottom: -9px;*/
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	border-bottom: 7px solid rgba(238,238,238,1.0);
	right: 12px;
	top: 0px;
	position: absolute;
}
.triangle.inner {
	top: 2px;
	border-bottom: 7px solid #eee;
}

.arrow {
/*	display: inline-block;*/
	width: 0;
	height: 0;
	margin-top: -13px;
	margin-left: 154px;
	margin-bottom: 3px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 10px solid rgba(153,153,153,1.0);
/*	right: 0px;
	top: 0px;
	position: relative;*/
}


.calendar table .events {
	overflow: hidden;
	position: absolute;
	margin-left: -160px;
	padding-top: 8px;
	z-index: 1000;
}
.calendar table .events .frame {
	overflow: hidden;
}
.calendar table .events .list {
	display: inline-block;
	width: 185px;
	margin-top: -2px;
	border-left: 8px solid rgba(238,238,238,1.0);
	background-color: transparent;
}
.calendar table .events .list .item {
	display: block;
	line-height: 1.5em;
	text-align: left;
	margin: 2px 0 0;
}
.calendar table .events .list .item a {
	display: block;
	width: 152px;
	margin-right: -12px;
	padding: 10px 20px 10px 12px;
	background-color: rgba(238,238,238,1.0);
	text-decoration: none;
	cursor: pointer;
}

.calendar table .events .list .item a:hover {
	background-color: rgba(238,238,238,1.0);
}
