/******** CALENDAR *********/
#calendar,
#calendar table {
  width:100%;
}
#calendar > caption {
	text-align:right;
	caption-side:top;
	margin-top:5px;
}
#calendar caption a {
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	margin:0 1ex;
	padding:0.2ex 0.6ex;
	background-color:gray;
	color:white;
	cursor:pointer;
}
#calendar table caption {
	color:white;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	background-color:silver;
	margin-bottom:3px;
	caption-side:top;
}
#calendar table {
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border:1px solid silver;
  border-collapse:collapse;
	height:100%;
	color:black;
}
#calendar table th {
	color:dimgray;
}
#calendar td {
	vertical-align:top;
	text-align:center;
}
/*#calendar table td {
  text-align:center;
}*/
#calendar table td[title] {
	cursor:default;
}
.confirmed {
	background-color:red;
/*  color:silver;*/
}
.unconfirmed {
	background-color:orange;
/*  color:#eee;*/
}
.first,
.last,
.unconfirmed-confirmed,
.confirmed-unconfirmed {
  background-position: center center;
  background-repeat: no-repeat;
}
.first {
  background-image:url(/images/first.png);
}
.last {
  background-image:url(/images/last.png);
}
.unconfirmed-confirmed {
  background-image:url(/images/unconfirmed-confirmed.png);
}
.confirmed-unconfirmed {
  background-image:url(/images/confirmed-unconfirmed.png);
}

