* {
	/* old-style reset here :) */
	border: 0px;
	padding: 0px;
}
table.calendar {
	border-collapse: collapse;
	border: 1px solid #9DABCE;
	border-top: none;
	margin: 10px auto;
	font-size: 18px;
}

table.calendar caption{
	font-size: 14px;
}

table.calendar caption .nextMonth{
	font-size: 10px;
	color: blue;
	background-color: white;
}

table.calendar caption .prevMonth{
	font-size: 10px;
	color: blue;
	background-color: white;
}

table.calendar td,
table.calendar th {
	width: 30px;
	height: 30px;
	text-align: center;
	vertical-align: middle;
	background: url(../calendar/img/cells.png);
	color: #444;
	/* position: relative; */
}
table.calendar th {
	height: 30px;
	font-weight: bold;
	font-size: 14px;
}
table.calendar th.dayNameSunday{
	color: red;
}
table.calendar th.dayNameSaturday{
	color: blue;
}
table.calendar td:hover{
	background-position: 0px -81px;
	color: #222;
}
table.calendar td.date_has_event {
	background-position: 162px 0px;
	color: white;
}
table.calendar td.date_has_event:hover {
	background-position: 162px -81px;
}
table.calendar td.padding {
	background: url(../calendar/img/calpad.jpg);
}
table.calendar td.sunday{
	color: red;
}
table.calendar td.saturday{
	color: blue;
}
table.calendar td.today {
	background-position: 81px 0px;
	color: white;
}
table.calendar td.today:hover {
	background-position: 81px -81px;
}
table.calendar .events {
	position: relative;
}
table.calendar .events ul {
	text-align: left;
	position: absolute;
	display: none;
	z-index: 1000;
	padding: 15px;
	background: #E7ECF2 url(../calendar/img/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.calendar .events li {
	padding-bottom: 5px;
}
table.calendar .events li span {
	display: block;
	font-size: 12px;
	text-align: justify;
	color: #555;
}
table.calendar .events li span.date {
	font-weight: bold;
	color: #222;
}

table.calendar .events li span.close {
	position: absolute;
	top: 0;
	right: 0;
}

table.calendar .events li span.title {
	font-weight: bold;
	color: #222;
}


