@charset "UTF-8";

table.calendar {
	border-collapse: separate;
	border-spacing: 0;
	width:80%;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
}

table.calendar caption {
  	background-color: #AED648;
	border-radius: 20px 20px 0 0;
	border-top: 2px solid #A1D81F;
	border-left: 2px solid #A1D81F;
	border-right: 2px solid #A1D81F;
	color: #ffffff;
	font-weight: bold;
	text-shadow: #aaaaaa 1px 1px 1px;
	padding: 3px;
}

table.calendar caption button {
	cursor: pointer;
}

table.calendar td {
	border: solid 1px #aaaaaa;
	line-height: 1em;
}

table.calendar tr.event {
	display: none;
}

table.calendar thead td {
	width: 14.2%;
	background-color: rgb(144, 102, 201);
	border-top: solid 1px;
	text-align:center;
	font-weight: bold;
	padding: 3px;
	color: #777777;
	background-color: #97BCC1;
}

table.calendar thead td.sunday {
	background-color: #F2D2D2;
}

table.calendar thead td.saturday {
	background-color: #B5D3F2;
}

table.calendar td {
	text-align:center;
	font-weight: normal;
	color: #616161;
	padding: 3px;
}

table.calendar td.sunday {
	background-color: #ffeaea;
}

table.calendar td.saturday {
	background-color: #cce5ff;
}

table.calendar tr.date td a {
	color: #6a3906;
	font-weight: bold;
}

table.calendar tr.date td a:hover {
	color: #cccccc;
	font-weight: bold;
}

table.calendar thead tr td {
	border-top: solid 2px #aaaaaa;
}
table.calendar tr td:first-child {
	border-left: solid 2px #aaaaaa;
}
table.calendar tr td:last-child {
	border-right: solid 2px #aaaaaa;
}
table.calendar tbody tr:last-child td {
	border-bottom: solid 2px #aaaaaa;
}
table.calendar tbody tr:last-child td:first-child {
	border-radius: 0 0 0 20px;
}
table.calendar tbody tr:last-child td:last-child {
	border-radius: 0 0 20px 0;
}

div#infoArea {
	background-color: #CCCCCC;
	margin: 0 auto;
	border: 1px solid #CCCCCC;
	text-align: center;
	font-weight:bold;
	height: 210px;
}

@media handheld, only screen and (max-width: 767px) {
	table.calendar {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
}