/* This CSS comes from: http://www.stefanoverna.com/log/create-astonishing-ical-like-calendars-with-jquery */
/* A Wonderful calendar CSS by Stefano Verna. Additional styles added by Daniel Reedy */
table.cal {
	border-collapse: separate;
	border: 1px solid #9DABCE;
	border-width: 0px 0px 1px 1px;
	margin: 10px auto;
	font-size: 20px;
}
table.cal td, table.cal th {
	width: 81px;
	height: 81px;
	text-align: center;
	vertical-align: middle;
	background: url(../images/cells.png);
	color: #444;
	position: relative;
}
table.cal th {
	height: 30px;
	font-weight: bold;
	font-size: 14px;
}
table.cal td:hover, table.cal th:hover {
	background-position: 0px -81px;
	color: #222;
}
table.cal th.monthName {
	background: #BCC2CB;
	color: #000;
	font-size: 20px;
}
table.cal td.date_has_event {
	background-position: 162px 0px;
	color: white;
}
table.cal td.date_has_event:hover, table.cal td.date_has_event_hover {
	background-position: 162px -81px;
}
table.cal td.otherMonth {
	background: url(../images/calpad.jpg);
	color: #C1C8CF;
}
table.cal td.today {
	background-position: 81px 0px;
	color: white;
}
table.cal td.today:hover {
	background-position: 81px -81px;
}
table.cal .events {
	position: relative;
}
table.cal .events ul {
	text-align: left;
	position: absolute;
	display: none;
	z-index: 1000;
	padding: 5px;
	background: #E7ECF2 url(../images/popup.png) no-repeat;
	color: white;
	border: 1px solid white;
	font-size: 15px;
	width: 200px;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	-border-radius: 3px;
	list-style: none;
	color: #444444;
	-webkit-box-shadow: 0px 8px 8px #333;
}
table.cal .events li {
	margin-left: 0px;
	padding-bottom: 5px;
}
table.cal .events li span {
	display: block;
	font-size: 12px;
	color: #555;
}
table.cal .events li span.title {
	font-weight: bold;
	color: #222;
}

div.event {
	display: block;
	width: 100%;
	background: #E9EDF1;
	border: 1px solid #BCC2CB;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	-border-radius: 3px;
	margin-bottom: 5px;
}

div.event:hover {
	background: #BCC2CB;
}

div.event dl {
	margin: 5px auto 0px 10px;
}

div.event dt { 
	font-size: 14px;
	font-weight: bold;
}