table.calendar {
	width: 50%;
	line-height: 2;
}
table.calendar th {
	background-color: transparent;
}
table.calendar th,
table.calendar td {
	width: 14.28571428571429%;
 	border: 1px solid #ccc;
 	padding: 0;
 	text-align: center;
	box-shadow: inset 1px 1px 0 rgba(255,255,255,0.5);
}
table.calendar tbody td {
	background-color: #dcdfde;
}
table.calendar a {
	display: block;
	text-decoration: none;
	text-shadow: 0 1px 0 #fff;
}
table.calendar a:hover, table.calendar a:focus {
	text-shadow: none;
}
table.calendar td.cal-year a {
	display: inline;
}
table.calendar td.cal-entry { /* daten mit events */
	font-weight: bold;
}
table.calendar td.cal-selected { /* selektiertes datum */
	background-color: #94c72f;
	box-shadow: inset 1px 1px 5px rgba(0,0,0,0.25);
}
table.calendar td.cal-selected a {
	color: #fff;
	text-shadow: none;
}
table.calendar td.cal-noentry { /* daten ohne events */
	
}
table.calendar td.cal-noentry a {
	color: #707070;
}
table.calendar td.cal-noentry a:hover, table.calendar td.cal-noentry a:focus {
	color: #fff;
}
table.calendar td.cal-disabled { /* inaktive tage */
	color: #adadad;
	background-color: #fff;
}

@media only screen and (max-width: 600px) {

	table.calendar {
		width: 100%;
		}

}